diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/.gitignore b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/.gitignore
deleted file mode 100644
index 4a7f73a2e..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/.gitignore
+++ /dev/null
@@ -1,24 +0,0 @@
-# Nuxt dev/build outputs
-.output
-.data
-.nuxt
-.nitro
-.cache
-dist
-
-# Node dependencies
-node_modules
-
-# Logs
-logs
-*.log
-
-# Misc
-.DS_Store
-.fleet
-.idea
-
-# Local env files
-.env
-.env.*
-!.env.example
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/README.md b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/README.md
deleted file mode 100644
index d77b503f4..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/README.md
+++ /dev/null
@@ -1,77 +0,0 @@
-# Nuxt Minimal Starter
-
-Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
-
-## Setup
-
-You need to have **Node.js** - ```18.x``` or newer. A good way to install different versions of Node.js is using Node Version Manager ([nvm](https://github.com/nvm-sh/nvm)).
-
-Make sure to install dependencies:
-
-```bash
-# npm
-npm install
-
-# pnpm
-pnpm install
-
-# yarn
-yarn install
-
-# bun
-bun install
-```
-
-## Development Server
-
-Start the development server on `http://localhost:3000`:
-
-```bash
-# npm
-npm run dev
-
-# pnpm
-pnpm dev
-
-# yarn
-yarn dev
-
-# bun
-bun run dev
-```
-
-## Production
-
-Build the application for production:
-
-```bash
-# npm
-npm run build
-
-# pnpm
-pnpm build
-
-# yarn
-yarn build
-
-# bun
-bun run build
-```
-
-Locally preview production build:
-
-```bash
-# npm
-npm run preview
-
-# pnpm
-pnpm preview
-
-# yarn
-yarn preview
-
-# bun
-bun run preview
-```
-
-Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/app.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/app.vue
deleted file mode 100644
index 2b1be0907..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/app.vue
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/AxesReference.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/AxesReference.vue
deleted file mode 100644
index 693fc97de..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/AxesReference.vue
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Car.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Car.js
deleted file mode 100644
index 92496ada6..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Car.js
+++ /dev/null
@@ -1,149 +0,0 @@
-import * as THREE from "three";
-import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";
-import URDFLoader from 'urdf-loader';
-const CAR_X = 19651.6005859375;
-const CAR_Y = 14238.344896316528;
-const CAR_Z = 47565.92169100046;
-const SCALE_RATE = 0.0002;
-export const CAR_WIDTH = CAR_X * SCALE_RATE;
-export const CAR_HEIGHT = CAR_Y * SCALE_RATE;
-export const CAR_LENGTH = CAR_Z * SCALE_RATE;
-
-export class Car {
- constructor(modelPath, position = { x: 0, y: 0, z: 0 }, heading = Math.PI / 2, onLoadCallback) {
- this.position = new THREE.Vector3(position.x, position.y, position.z);
- this.heading = heading;
- this.velocity = 0;
- this.wheelBase = CAR_LENGTH * 5 / 8;
- this.maxSpeed = 20;
- this.acceleration = 0.5;
- this.friction = 0.98;
- this.steerAngle = 0;
- this.maxSteerAngle = Math.PI / 6;
-
- const loader = new GLTFLoader();
- loader.load(
- modelPath,
- (gltf) => {
- this.group = gltf.scene;
- const bodyColor = '#ffffff';
- this.group.traverse((child) => {
- if (
- child instanceof THREE.Mesh &&
- child.material instanceof THREE.MeshStandardMaterial
- ) {
- child.material = child.material.clone();
- child.material.color.set(bodyColor);
- }
- });
- this.group.position.set(this.position.x, this.position.y, this.position.z);
- // this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
- this.group.rotation.y = this.heading;
-
- if (onLoadCallback) onLoadCallback(this);
- },
- undefined,
- (error) => console.error("Error loading car model:", error)
- );
- // const loader = new URDFLoader();
- // loader.load(
- // modelPath,
- // (car) => {
- // this.group = car;
- // this.group.position.set(this.position.x, this.position.y, this.position.z);
- // // this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
- // this.group.rotation.x = -Math.PI / 2;
- // this.group.rotation.z = -this.heading;
-
- // if (onLoadCallback) onLoadCallback(this);
- // },
- // undefined,
- // (error) => console.error("Error loading car model:", error)
- // );
- }
-
- update(keys, dt) {
- if (!this.group) return;
-
- if (keys.forward) this.velocity = Math.min(this.velocity + this.acceleration, this.maxSpeed);
- if (keys.backward) this.velocity = Math.max(this.velocity - this.acceleration, -this.maxSpeed);
- this.velocity *= this.friction;
-
- if (keys.right) this.steerAngle = Math.max(this.steerAngle - 0.02, -this.maxSteerAngle);
- if (keys.left) this.steerAngle = Math.min(this.steerAngle + 0.02, this.maxSteerAngle);
- if (!keys.left && !keys.right) this.steerAngle *= 0.9;
-
- const frontWheel = this.position.clone().add(new THREE.Vector3(
- Math.sin(this.heading) * (this.wheelBase / 2) - Math.cos(this.heading) * (CAR_WIDTH / 2),
- 0,
- Math.cos(this.heading) * (this.wheelBase / 2) + Math.sin(this.heading) * (CAR_WIDTH / 2)
- ));
- const backWheel = this.position.clone().add(new THREE.Vector3(
- -Math.sin(this.heading) * (this.wheelBase / 2) - Math.cos(this.heading) * (CAR_WIDTH / 2),
- 0,
- -Math.cos(this.heading) * (this.wheelBase / 2) + Math.sin(this.heading) * (CAR_WIDTH / 2)
- ));
-
- backWheel.add(new THREE.Vector3(
- Math.sin(this.heading) * this.velocity * dt,
- 0,
- Math.cos(this.heading) * this.velocity * dt
- ));
- frontWheel.add(new THREE.Vector3(
- Math.sin(this.heading + this.steerAngle) * this.velocity * dt,
- 0,
- Math.cos(this.heading + this.steerAngle) * this.velocity * dt
- ));
-
- this.position = frontWheel.clone().add(backWheel).multiplyScalar(0.5).add(new THREE.Vector3(
- Math.cos(this.heading) * (CAR_WIDTH / 2),
- 0,
- -Math.sin(this.heading) * (CAR_WIDTH / 2)
- ));
- this.heading = Math.atan2(frontWheel.x - backWheel.x, frontWheel.z - backWheel.z);
-
- this.group.position.copy(this.position);
- this.group.rotation.z = -this.heading;
- }
- updateFromLog(logData) {
- if (!this.group) return;
- this.velocity = logData.velocity;
- this.acceleration = logData.acceleration;
- this.steerAngle = logData.steering_wheel_angle;
- this.position.set(logData.position[1], logData.position[2], logData.position[0]);
- this.heading = logData.rotation[1];
- this.group.position.copy(this.position);
- this.group.rotation.y = this.heading;
- }
-
-
- dispose() {
- if (!this.group) return;
-
- this.group.traverse((child) => {
- if (child.isMesh) {
- child.geometry.dispose();
-
- if (child.material) {
- if (Array.isArray(child.material)) {
- child.material.forEach((material) => {
- material.map?.dispose();
- material.normalMap?.dispose();
- material.roughnessMap?.dispose();
- material.dispose();
- });
- } else {
- child.material.map?.dispose();
- child.material.normalMap?.dispose();
- child.material.roughnessMap?.dispose();
- child.material.dispose();
- }
- }
- }
- });
-
- this.group.removeFromParent();
- this.group = null;
- }
-}
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Human.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Human.js
deleted file mode 100644
index 9ccc6dbd2..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/Human.js
+++ /dev/null
@@ -1,86 +0,0 @@
-import * as THREE from "three";
-import { CAR_HEIGHT } from "./Car.js";
-import { HUMAN_BODY_RATIOS, HUMAN_TO_CAR_HEIGHT_RATIO } from "../utils/constants.js";
-
-const HUMAN_HEIGHT = CAR_HEIGHT * HUMAN_TO_CAR_HEIGHT_RATIO;
-const HUMAN_BODY_LENGTH = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.body;
-const HUMAN_HEAD_RADIUS = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.head;
-const HUMAN_HEAD_COLOR = 0xffcc99;
-const HUMAN_ARM_LENGTH = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.arm;
-const HUMAN_LEG_LENGTH = HUMAN_HEIGHT * HUMAN_BODY_RATIOS.leg;
-const HUMAN_LEG_COLOR = 0x555555;
-
-export default class Human {
- constructor(color = 0x00aaff, position = { x: 0, y: 0, z: 0 }, rotation = 0) {
- this.group = new THREE.Group();
-
- const bodyGeometry = new THREE.BoxGeometry(HUMAN_BODY_LENGTH / 1.2, HUMAN_BODY_LENGTH, HUMAN_BODY_LENGTH / 1.6);
- const bodyMaterial = new THREE.MeshStandardMaterial({ color });
- this.body = new THREE.Mesh(bodyGeometry, bodyMaterial);
- this.body.position.y = HUMAN_LEG_LENGTH + (HUMAN_BODY_LENGTH / 2);
- this.group.add(this.body);
-
- const headGeometry = new THREE.SphereGeometry(HUMAN_HEAD_RADIUS);
- const headMaterial = new THREE.MeshStandardMaterial({ color: HUMAN_HEAD_COLOR });
- this.head = new THREE.Mesh(headGeometry, headMaterial);
- this.head.position.y = HUMAN_LEG_LENGTH + HUMAN_BODY_LENGTH + HUMAN_HEAD_RADIUS;
- this.group.add(this.head);
-
- const armGeometry = new THREE.CylinderGeometry(HUMAN_ARM_LENGTH / 6, HUMAN_ARM_LENGTH / 6, HUMAN_ARM_LENGTH);
- const armMaterial = new THREE.MeshStandardMaterial({ color });
-
- this.leftShoulderPivot = new THREE.Group();
- this.leftShoulderPivot.position.set(
- (HUMAN_BODY_LENGTH / 1.2) / 2 + HUMAN_ARM_LENGTH / 6,
- HUMAN_LEG_LENGTH + HUMAN_BODY_LENGTH - HUMAN_ARM_LENGTH / 1.7,
- 0
- );
- this.group.add(this.leftShoulderPivot);
-
- this.leftArm = new THREE.Mesh(armGeometry, armMaterial);
- this.leftShoulderPivot.add(this.leftArm);
-
- this.rightShoulderPivot = new THREE.Group();
- this.rightShoulderPivot.position.set(
- -(HUMAN_BODY_LENGTH / 1.2) / 2 - HUMAN_ARM_LENGTH / 6,
- HUMAN_LEG_LENGTH + HUMAN_BODY_LENGTH - HUMAN_ARM_LENGTH / 1.7,
- 0
- );
- this.group.add(this.rightShoulderPivot);
-
- this.rightArm = new THREE.Mesh(armGeometry, armMaterial);
- this.rightShoulderPivot.add(this.rightArm);
-
- const legGeometry = new THREE.CylinderGeometry(HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH);
- const legMaterial = new THREE.MeshStandardMaterial({ color: HUMAN_LEG_COLOR });
- this.leftLeg = new THREE.Mesh(legGeometry, legMaterial);
- this.rightLeg = new THREE.Mesh(legGeometry, legMaterial);
- this.leftLeg.position.set(-HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH / 2, 0);
- this.rightLeg.position.set(HUMAN_LEG_LENGTH / 6, HUMAN_LEG_LENGTH / 2, 0);
- this.group.add(this.leftLeg, this.rightLeg);
-
- this.group.position.set(position.x, position.y, position.z);
- this.group.rotation.y = rotation;
-
- this.walkingSpeed = 0;
- this.walkingPhase = 0;
- }
- updateFromLog(logData) {
- if (!this.group) return;
- this.group.position.set(logData.position[1], logData.position[2], logData.position[0]);
- this.group.rotation.y = logData.rotation[1];
- this.walkingSpeed = logData.velocity;
- }
-
- walk() {
- this.walkingPhase += this.walkingSpeed;
-
- const swingAmount = Math.PI / 6;
-
- this.leftShoulderPivot.rotation.x = Math.sin(this.walkingPhase) * swingAmount;
- this.rightShoulderPivot.rotation.x = -Math.sin(this.walkingPhase) * swingAmount;
-
- this.leftLeg.rotation.x = -Math.sin(this.walkingPhase) * swingAmount;
- this.rightLeg.rotation.x = Math.sin(this.walkingPhase) * swingAmount;
- }
-}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/LogReader.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/LogReader.js
deleted file mode 100644
index e9f4eede5..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/LogReader.js
+++ /dev/null
@@ -1,63 +0,0 @@
-export default class LogReader {
- constructor(logData, scene, createFuncs) {
- this.framerate = logData.framerate || 60;
- this.totalFrames = logData.totalFrames || 0;
- this.frames = logData.data || [];
- this.scene = scene;
- this.currentFrame = 0;
- this.playing = true;
- this.createFuncs = createFuncs;
- this.models = {}
- this.car = null;
- for (const type of Object.keys(createFuncs)) {
- this.models[type] = new Map();
- }
- }
-
- update(dt) {
- if (!this.playing) return;
-
- const frameData = this.frames[this.currentFrame];
- if (!frameData) return;
-
- frameData.objects.forEach(obj => {
- const id = obj.id;
- const type = obj.type;
- const position = obj.position;
- if (this.models[type].has(id)) {
- const model = this.models[type].get(id);
- if ((type === 'vehicle' && obj.frame === 0) || type !== 'vehicle') {
- model.updateFromLog(obj);
- }
- } else {
- const createFunc = this.createFuncs[type];
- if (createFunc) {
- const orientation = obj.orientation || obj.misc.orientation;
- const model = createFunc(position[1], position[2], position[0], orientation);
- if (type === 'vehicle' && id === 0) {
- this.car = model;
- }
- this.models[type].set(id, model);
- }
- }
- });
-
- this.currentFrame++;
- if (this.currentFrame >= this.frames.length) {
- this.playing = false;
- }
- }
-
- reset() {
- this.currentFrame = 0;
- this.playing = true;
- }
-
- pause() {
- this.playing = false;
- }
-
- play() {
- this.playing = true;
- }
-}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/RoadVehicleViz.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/RoadVehicleViz.vue
deleted file mode 100644
index d30159bc3..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/RoadVehicleViz.vue
+++ /dev/null
@@ -1,328 +0,0 @@
-
-
-
-
-
-
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/StreetLight.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/StreetLight.js
deleted file mode 100644
index 8bd998ba8..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/StreetLight.js
+++ /dev/null
@@ -1,51 +0,0 @@
-import * as THREE from "three";
-import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";
-const SCALE_RATE = 1;
-const MODEL_MAPS = {
- 0: "single-arm",
- 1: "double-arm",
-};
-const TEXTURE_MAPS = {
- "BaseColor": "map",
- "Metalness": "metalnessMap",
- "Roughness": "roughnessMap",
- "Normal": "normalMap",
- "Transmission": "transmissionMap",
- "Emission": "emissiveMap",
-};
-
-export default class StreetLight {
- constructor(modelPath, position = { x: 0, y: 0, z: 0 }, onLoadCallback) {
- this.position = new THREE.Vector3(position.x, position.y, position.z);
-
- const loader = new GLTFLoader();
- loader.load(
- modelPath,
- (gltf) => {
- this.group = gltf.scene;
- for (let i = 0; i < this.group.children.length; i++) {
- const model = MODEL_MAPS[i];
- const model_texture_folder_path = `/textures/${model} street light pole/`;
- for (const [textureName, textureMap] of Object.entries(TEXTURE_MAPS)) {
- const texturePath = model_texture_folder_path + model + '_' + textureName + ".jpg";
- const textureLoader = new THREE.TextureLoader();
- const texture = textureLoader.load(texturePath);
- this.group.children[i].material[textureMap] = texture;
- }
- this.group.children[i].material.transparent = true;
- this.group.children[i].material.emissive = new THREE.Color(0xffffff);
- this.group.children[i].material.roughness = 0.5;
- }
- this.group.position.set(this.position.x, this.position.y, this.position.z);
- this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
-
- if (onLoadCallback) onLoadCallback(this);
- console.log(this.group);
- },
- (xhr) => {
- console.log((xhr.loaded / xhr.total * 100) + '% loaded');
- },
- (error) => console.error("Error loading street light model:", error)
- );
- }
-}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/TrafficLight.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/TrafficLight.js
deleted file mode 100644
index 4762c2867..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/TrafficLight.js
+++ /dev/null
@@ -1,94 +0,0 @@
-// import * as THREE from "three";
-
-// const POLE_RADIUS = 0.1;
-// const POLE_HEIGHT = 4;
-// const POLE_COLOR = 0x555555;
-// const BOX_WIDTH = 0.5;
-// const BOX_HEIGHT = 1.5;
-// const BOX_DEPTH = 0.4;
-// const BOX_COLOR = 0x222222;
-// const LIGHT_RADIUS = 0.15;
-// const LIGHT_OFFSET = 0.2;
-
-// export default class TrafficLight {
-// constructor(position, direction = 0) {
-// this.group = new THREE.Group();
-// this.createPole();
-// this.createLightBox();
-// this.createLights();
-// this.group.position.set(position.x, 0, position.z);
-// this.group.rotation.y = direction;
-// }
-
-// createPole() {
-// const poleGeometry = new THREE.CylinderGeometry(POLE_RADIUS, POLE_RADIUS, POLE_HEIGHT, 8);
-// const poleMaterial = new THREE.MeshStandardMaterial({ color: POLE_COLOR });
-// this.pole = new THREE.Mesh(poleGeometry, poleMaterial);
-// this.pole.position.y = POLE_HEIGHT / 2;
-// this.group.add(this.pole);
-// }
-
-// createLightBox() {
-// const boxGeometry = new THREE.BoxGeometry(BOX_WIDTH, BOX_HEIGHT, BOX_DEPTH);
-// const boxMaterial = new THREE.MeshStandardMaterial({ color: BOX_COLOR });
-// this.lightBox = new THREE.Mesh(boxGeometry, boxMaterial);
-// this.lightBox.position.set(0, POLE_HEIGHT * 7 / 8, 0);
-// this.group.add(this.lightBox);
-// }
-
-// createLights() {
-// this.lights = {
-// red: this.createLight(0xff0000, this.lightBox.position.y + 2 * LIGHT_RADIUS),
-// yellow: this.createLight(0xffff00, this.lightBox.position.y),
-// green: this.createLight(0x00ff00, this.lightBox.position.y - 2 * LIGHT_RADIUS),
-// };
-// Object.values(this.lights).forEach(light => this.group.add(light));
-// this.setLightState("red"); // Default state
-// }
-
-// createLight(color, yPos) {
-// const lightGeometry = new THREE.SphereGeometry(LIGHT_RADIUS);
-// const lightMaterial = new THREE.MeshStandardMaterial({ color, emissive: color, emissiveIntensity: 0 });
-// const light = new THREE.Mesh(lightGeometry, lightMaterial);
-// light.position.set(0, yPos, LIGHT_OFFSET);
-// return light;
-// }
-
-// setLightState(state) {
-// Object.keys(this.lights).forEach(key => {
-// this.lights[key].material.emissiveIntensity = key === state ? 1 : 0;
-// });
-// }
-// }
-import * as THREE from "three";
-import { GLTFLoader } from "three/examples/jsm/loaders/GLTFLoader.js";
-const SCALE_RATE = 1;
-
-export default class TrafficLight {
- constructor(modelPath, position = { x: 0, y: 0, z: 0 }, rotation = 0, onLoadCallback) {
- this.position = new THREE.Vector3(position.x, position.y, position.z);
- // this.durations = {
- // red: 5,
- // yellow: 2,
- // green: 5,
- // };
- // this.tick = 0;
-
- const loader = new GLTFLoader();
- loader.load(
- modelPath,
- (gltf) => {
- this.group = gltf.scene;
-
- this.group.position.set(this.position.x, this.position.y, this.position.z);
- this.group.scale.set(SCALE_RATE, SCALE_RATE, SCALE_RATE);
- this.group.rotation.y = rotation;
-
- if (onLoadCallback) onLoadCallback(this);
- },
- undefined,
- (error) => console.error("Error loading traffic light model:", error)
- );
- }
- updateFromLog(logData) { }
-}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/data.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/data.json
deleted file mode 100644
index 3a2b3178c..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/components/data.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "framerate": 60,
- "totalFrames": 100,
- "data": [
- {
- "frame": 0,
- "objects": [
- {
- "type": "vehicle",
- "id": 0 (current),
- "position": [x, y, z],
- "steering_wheel_angle": 0,
- "velocity": 0,
- "acceleration": 0,
- "rotation": [pitch, yaw, roll],
- "misc": [
- ...(rest of the vehicle data)
- ]
- },
- {
- "type": "pedestrian",
- "id": 0,
- "position": [x, y, z],
- "velocity": 0,
- "acceleration": 0,
- "misc": [
- ...(rotation, etc.)
- ]
- },
- {
- "type": "traffic_light",
- "id": 0,
- "position": [x, y, z],
- "misc": [
- ...(rest of the traffic_light data)
- ]
- }
- ]
- }
- ]
-}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/nuxt.config.ts b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/nuxt.config.ts
deleted file mode 100644
index e11336ba3..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/nuxt.config.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-// https://nuxt.com/docs/api/configuration/nuxt-config
-export default defineNuxtConfig({
- compatibilityDate: '2024-11-01',
- devtools: { enabled: true },
- modules: ['@unocss/nuxt'],
-})
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package-lock.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package-lock.json
deleted file mode 100644
index 92d191e46..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package-lock.json
+++ /dev/null
@@ -1,10338 +0,0 @@
-{
- "name": "nuxt-app",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "name": "nuxt-app",
- "hasInstallScript": true,
- "dependencies": {
- "nuxt": "^3.16.1",
- "nuxt-app": "file:",
- "three": "^0.174.0",
- "urdf-loader": "^0.12.4",
- "vue": "^3.5.13",
- "vue-router": "^4.5.0"
- },
- "devDependencies": {
- "@unocss/nuxt": "^66.1.0-beta.6",
- "unocss": "^66.1.0-beta.6"
- }
- },
- "node_modules/@ampproject/remapping": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
- "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
- "license": "Apache-2.0",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@antfu/install-pkg": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-1.0.0.tgz",
- "integrity": "sha512-xvX6P/lo1B3ej0OsaErAjqgFYzYVcJpamjLAFLYh9vRJngBrMoUG7aVnrGTeqM7yxbyTD5p3F2+0/QUEh8Vzhw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "package-manager-detector": "^0.2.8",
- "tinyexec": "^0.3.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@antfu/install-pkg/node_modules/package-manager-detector": {
- "version": "0.2.11",
- "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.11.tgz",
- "integrity": "sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "quansync": "^0.2.7"
- }
- },
- "node_modules/@antfu/utils": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-8.1.1.tgz",
- "integrity": "sha512-Mex9nXf9vR6AhcXmMrlz/HVgYYZpVGJ6YlPgwl7UnaFpnshXs6EK/oa5Gpf3CzENMjkvEx2tQtntGnb7UtSTOQ==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
- "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.25.9",
- "js-tokens": "^4.0.0",
- "picocolors": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.26.8",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz",
- "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.26.10",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz",
- "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==",
- "license": "MIT",
- "dependencies": {
- "@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.26.2",
- "@babel/generator": "^7.26.10",
- "@babel/helper-compilation-targets": "^7.26.5",
- "@babel/helper-module-transforms": "^7.26.0",
- "@babel/helpers": "^7.26.10",
- "@babel/parser": "^7.26.10",
- "@babel/template": "^7.26.9",
- "@babel/traverse": "^7.26.10",
- "@babel/types": "^7.26.10",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/core/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.26.10",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz",
- "integrity": "sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==",
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.26.10",
- "@babel/types": "^7.26.10",
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.25",
- "jsesc": "^3.0.2"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
- "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
- "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.26.5",
- "@babel/helper-validator-option": "^7.25.9",
- "browserslist": "^4.24.0",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz",
- "integrity": "sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.25.9",
- "@babel/helper-member-expression-to-functions": "^7.25.9",
- "@babel/helper-optimise-call-expression": "^7.25.9",
- "@babel/helper-replace-supers": "^7.26.5",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
- "@babel/traverse": "^7.26.9",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz",
- "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.25.9",
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
- "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.25.9",
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
- "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.25.9",
- "@babel/helper-validator-identifier": "^7.25.9",
- "@babel/traverse": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz",
- "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
- "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-replace-supers": {
- "version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz",
- "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-member-expression-to-functions": "^7.25.9",
- "@babel/helper-optimise-call-expression": "^7.25.9",
- "@babel/traverse": "^7.26.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz",
- "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==",
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.25.9",
- "@babel/types": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
- "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
- "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
- "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.26.10",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz",
- "integrity": "sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==",
- "license": "MIT",
- "dependencies": {
- "@babel/template": "^7.26.9",
- "@babel/types": "^7.26.10"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.26.10",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz",
- "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.26.10"
- },
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz",
- "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-typescript": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz",
- "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-typescript": {
- "version": "7.26.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.8.tgz",
- "integrity": "sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.25.9",
- "@babel/helper-create-class-features-plugin": "^7.25.9",
- "@babel/helper-plugin-utils": "^7.26.5",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
- "@babel/plugin-syntax-typescript": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
- "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.26.2",
- "@babel/parser": "^7.26.9",
- "@babel/types": "^7.26.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.26.10",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.10.tgz",
- "integrity": "sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==",
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.26.2",
- "@babel/generator": "^7.26.10",
- "@babel/parser": "^7.26.10",
- "@babel/template": "^7.26.9",
- "@babel/types": "^7.26.10",
- "debug": "^4.3.1",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.26.10",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz",
- "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-string-parser": "^7.25.9",
- "@babel/helper-validator-identifier": "^7.25.9"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@cloudflare/kv-asset-handler": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.0.tgz",
- "integrity": "sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==",
- "license": "MIT OR Apache-2.0",
- "dependencies": {
- "mime": "^3.0.0"
- },
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/@cloudflare/kv-asset-handler/node_modules/mime": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz",
- "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==",
- "license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=10.0.0"
- }
- },
- "node_modules/@emnapi/core": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.3.1.tgz",
- "integrity": "sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/wasi-threads": "1.0.1",
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@emnapi/runtime": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz",
- "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@emnapi/wasi-threads": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz",
- "integrity": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@esbuild/aix-ppc64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz",
- "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "aix"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/android-arm": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz",
- "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/android-arm64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz",
- "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/android-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz",
- "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/darwin-arm64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz",
- "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/darwin-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz",
- "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/freebsd-arm64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz",
- "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/freebsd-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz",
- "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-arm": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz",
- "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-arm64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz",
- "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-ia32": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz",
- "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-loong64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz",
- "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==",
- "cpu": [
- "loong64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-mips64el": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz",
- "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==",
- "cpu": [
- "mips64el"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-ppc64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz",
- "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-riscv64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz",
- "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==",
- "cpu": [
- "riscv64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-s390x": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz",
- "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==",
- "cpu": [
- "s390x"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/linux-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz",
- "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/netbsd-arm64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz",
- "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/netbsd-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz",
- "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "netbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/openbsd-arm64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz",
- "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/openbsd-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz",
- "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "openbsd"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/sunos-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz",
- "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "sunos"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/win32-arm64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz",
- "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/win32-ia32": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz",
- "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@esbuild/win32-x64": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz",
- "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@iconify/types": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz",
- "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@iconify/utils": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.3.0.tgz",
- "integrity": "sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@antfu/install-pkg": "^1.0.0",
- "@antfu/utils": "^8.1.0",
- "@iconify/types": "^2.0.0",
- "debug": "^4.4.0",
- "globals": "^15.14.0",
- "kolorist": "^1.8.0",
- "local-pkg": "^1.0.0",
- "mlly": "^1.7.4"
- }
- },
- "node_modules/@iconify/utils/node_modules/globals": {
- "version": "15.15.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz",
- "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@ioredis/commands": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz",
- "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==",
- "license": "MIT"
- },
- "node_modules/@isaacs/cliui": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
- "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
- "license": "ISC",
- "dependencies": {
- "string-width": "^5.1.2",
- "string-width-cjs": "npm:string-width@^4.2.0",
- "strip-ansi": "^7.0.1",
- "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
- "wrap-ansi": "^8.1.0",
- "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/@isaacs/fs-minipass": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
- "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
- "license": "ISC",
- "dependencies": {
- "minipass": "^7.0.4"
- },
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
- "license": "MIT",
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/source-map": {
- "version": "0.3.6",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
- "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.25"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
- "license": "MIT"
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
- }
- },
- "node_modules/@kwsites/file-exists": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz",
- "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==",
- "license": "MIT",
- "dependencies": {
- "debug": "^4.1.1"
- }
- },
- "node_modules/@kwsites/promise-deferred": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz",
- "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==",
- "license": "MIT"
- },
- "node_modules/@mapbox/node-pre-gyp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-2.0.0.tgz",
- "integrity": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==",
- "license": "BSD-3-Clause",
- "dependencies": {
- "consola": "^3.2.3",
- "detect-libc": "^2.0.0",
- "https-proxy-agent": "^7.0.5",
- "node-fetch": "^2.6.7",
- "nopt": "^8.0.0",
- "semver": "^7.5.3",
- "tar": "^7.4.0"
- },
- "bin": {
- "node-pre-gyp": "bin/node-pre-gyp"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@mapbox/node-pre-gyp/node_modules/detect-libc": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
- "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@napi-rs/wasm-runtime": {
- "version": "0.2.7",
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.7.tgz",
- "integrity": "sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emnapi/core": "^1.3.1",
- "@emnapi/runtime": "^1.3.1",
- "@tybys/wasm-util": "^0.9.0"
- }
- },
- "node_modules/@netlify/functions": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-3.0.4.tgz",
- "integrity": "sha512-Ox8+ABI+nsLK+c4/oC5dpquXuEIjzfTlJrdQKgQijCsDQoje7inXFAtKDLvvaGvuvE+PVpMLwQcIUL6P9Ob1hQ==",
- "license": "MIT",
- "dependencies": {
- "@netlify/serverless-functions-api": "1.36.0"
- },
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/@netlify/serverless-functions-api": {
- "version": "1.36.0",
- "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.36.0.tgz",
- "integrity": "sha512-z6okREyK8in0486a22Oro0k+YsuyEjDXJt46FpgeOgXqKJ9ElM8QPll0iuLBkpbH33ENiNbIPLd1cuClRQnhiw==",
- "license": "MIT",
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/@nodelib/fs.scandir": {
- "version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "2.0.5",
- "run-parallel": "^1.1.9"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.stat": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nodelib/fs.walk": {
- "version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.scandir": "2.1.5",
- "fastq": "^1.6.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@nuxt/cli": {
- "version": "3.23.1",
- "resolved": "https://registry.npmjs.org/@nuxt/cli/-/cli-3.23.1.tgz",
- "integrity": "sha512-vwHicydSXkpQlrjSOHOMLx4rULMNke1tqT+B2rGkVX9RMWJu9jdvp6GqRWJfqeeLoFG0gYNr02pSp6ulxuwOMQ==",
- "license": "MIT",
- "dependencies": {
- "c12": "^3.0.2",
- "chokidar": "^4.0.3",
- "citty": "^0.1.6",
- "clipboardy": "^4.0.0",
- "consola": "^3.4.2",
- "defu": "^6.1.4",
- "fuse.js": "^7.1.0",
- "giget": "^2.0.0",
- "h3": "^1.15.1",
- "httpxy": "^0.1.7",
- "jiti": "^2.4.2",
- "listhen": "^1.9.0",
- "nypm": "^0.6.0",
- "ofetch": "^1.4.1",
- "ohash": "^2.0.11",
- "pathe": "^2.0.3",
- "perfect-debounce": "^1.0.0",
- "pkg-types": "^2.1.0",
- "scule": "^1.3.0",
- "semver": "^7.7.1",
- "std-env": "^3.8.1",
- "tinyexec": "^0.3.2",
- "ufo": "^1.5.4"
- },
- "bin": {
- "nuxi": "bin/nuxi.mjs",
- "nuxi-ng": "bin/nuxi.mjs",
- "nuxt": "bin/nuxi.mjs",
- "nuxt-cli": "bin/nuxi.mjs"
- },
- "engines": {
- "node": "^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@nuxt/devalue": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz",
- "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==",
- "license": "MIT"
- },
- "node_modules/@nuxt/devtools": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/@nuxt/devtools/-/devtools-2.3.1.tgz",
- "integrity": "sha512-SA/ShgsB/E1DMAC7BZI6sP00djvOXfhrwaqdpb1rNNOqNJ/JX1oc+LVNtKTPAzxUouDsv5sAeEVdPT5enync2g==",
- "license": "MIT",
- "dependencies": {
- "@nuxt/devtools-kit": "2.3.1",
- "@nuxt/devtools-wizard": "2.3.1",
- "@nuxt/kit": "^3.16.1",
- "@vue/devtools-core": "^7.7.2",
- "@vue/devtools-kit": "^7.7.2",
- "birpc": "^2.2.0",
- "consola": "^3.4.2",
- "destr": "^2.0.3",
- "error-stack-parser-es": "^1.0.5",
- "execa": "^8.0.1",
- "fast-npm-meta": "^0.3.1",
- "get-port-please": "^3.1.2",
- "hookable": "^5.5.3",
- "image-meta": "^0.2.1",
- "is-installed-globally": "^1.0.0",
- "launch-editor": "^2.10.0",
- "local-pkg": "^1.1.1",
- "magicast": "^0.3.5",
- "nypm": "^0.6.0",
- "ohash": "^2.0.11",
- "pathe": "^2.0.3",
- "perfect-debounce": "^1.0.0",
- "pkg-types": "^2.1.0",
- "semver": "^7.7.1",
- "simple-git": "^3.27.0",
- "sirv": "^3.0.1",
- "structured-clone-es": "^1.0.0",
- "tinyglobby": "^0.2.12",
- "vite-plugin-inspect": "^11.0.0",
- "vite-plugin-vue-tracer": "^0.1.1",
- "which": "^5.0.0",
- "ws": "^8.18.1"
- },
- "bin": {
- "devtools": "cli.mjs"
- },
- "peerDependencies": {
- "vite": ">=6.0"
- }
- },
- "node_modules/@nuxt/devtools-kit": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-2.3.1.tgz",
- "integrity": "sha512-sggap7UTV0823cZk1buCEdd3KG+dMo73DpBuN+zHFC8UG3PfSKDlbVmQGb0TegxWTXG6BwItNQo8gd+pZzf/MA==",
- "license": "MIT",
- "dependencies": {
- "@nuxt/kit": "^3.16.1",
- "@nuxt/schema": "^3.16.1",
- "execa": "^8.0.1"
- },
- "peerDependencies": {
- "vite": ">=6.0"
- }
- },
- "node_modules/@nuxt/devtools-wizard": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-2.3.1.tgz",
- "integrity": "sha512-FqJVncQ9XiVR3uVwnqxHysCShfwrsK8JL4Q8rNrQoY9ly0Q7h6vimX44asFZSSCQ25WYo74PikdvVKV/bZW+qg==",
- "license": "MIT",
- "dependencies": {
- "consola": "^3.4.2",
- "diff": "^7.0.0",
- "execa": "^8.0.1",
- "magicast": "^0.3.5",
- "pathe": "^2.0.3",
- "pkg-types": "^2.1.0",
- "prompts": "^2.4.2",
- "semver": "^7.7.1"
- },
- "bin": {
- "devtools-wizard": "cli.mjs"
- }
- },
- "node_modules/@nuxt/kit": {
- "version": "3.16.1",
- "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.16.1.tgz",
- "integrity": "sha512-Perby8hJGUeCWad5oTVXb/Ibvp18ZCUC5PxHHu+acMDmVfnxSo48yqk7qNd09VkTF3LEzoEjNZpmW2ZWN0ry7A==",
- "license": "MIT",
- "dependencies": {
- "c12": "^3.0.2",
- "consola": "^3.4.2",
- "defu": "^6.1.4",
- "destr": "^2.0.3",
- "errx": "^0.1.0",
- "exsolve": "^1.0.4",
- "globby": "^14.1.0",
- "ignore": "^7.0.3",
- "jiti": "^2.4.2",
- "klona": "^2.0.6",
- "knitwork": "^1.2.0",
- "mlly": "^1.7.4",
- "ohash": "^2.0.11",
- "pathe": "^2.0.3",
- "pkg-types": "^2.1.0",
- "scule": "^1.3.0",
- "semver": "^7.7.1",
- "std-env": "^3.8.1",
- "ufo": "^1.5.4",
- "unctx": "^2.4.1",
- "unimport": "^4.1.2",
- "untyped": "^2.0.0"
- },
- "engines": {
- "node": ">=18.12.0"
- }
- },
- "node_modules/@nuxt/schema": {
- "version": "3.16.1",
- "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.16.1.tgz",
- "integrity": "sha512-Ri8bmT6MljpVR4DlXf9+acfgGaI4OTEdAzJU5aF2rJS78abtpnBxjXBG65kuhoL1LUlfKppDl8fTkUw5LM2JXQ==",
- "license": "MIT",
- "dependencies": {
- "consola": "^3.4.2",
- "defu": "^6.1.4",
- "pathe": "^2.0.3",
- "std-env": "^3.8.1"
- },
- "engines": {
- "node": "^14.18.0 || >=16.10.0"
- }
- },
- "node_modules/@nuxt/telemetry": {
- "version": "2.6.6",
- "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.6.6.tgz",
- "integrity": "sha512-Zh4HJLjzvm3Cq9w6sfzIFyH9ozK5ePYVfCUzzUQNiZojFsI2k1QkSBrVI9BGc6ArKXj/O6rkI6w7qQ+ouL8Cag==",
- "license": "MIT",
- "dependencies": {
- "@nuxt/kit": "^3.15.4",
- "citty": "^0.1.6",
- "consola": "^3.4.2",
- "destr": "^2.0.3",
- "dotenv": "^16.4.7",
- "git-url-parse": "^16.0.1",
- "is-docker": "^3.0.0",
- "ofetch": "^1.4.1",
- "package-manager-detector": "^1.1.0",
- "pathe": "^2.0.3",
- "rc9": "^2.1.2",
- "std-env": "^3.8.1"
- },
- "bin": {
- "nuxt-telemetry": "bin/nuxt-telemetry.mjs"
- },
- "engines": {
- "node": ">=18.12.0"
- }
- },
- "node_modules/@nuxt/vite-builder": {
- "version": "3.16.1",
- "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.16.1.tgz",
- "integrity": "sha512-6A/cK743xeGcoMh//Ev1HAybb5VDwovxRsNeubfuqlDxBR7WL695SAfIhEAmxpVDz8LYQBuz/NwGhTaBh7hgaQ==",
- "license": "MIT",
- "dependencies": {
- "@nuxt/kit": "3.16.1",
- "@rollup/plugin-replace": "^6.0.2",
- "@vitejs/plugin-vue": "^5.2.3",
- "@vitejs/plugin-vue-jsx": "^4.1.2",
- "autoprefixer": "^10.4.21",
- "consola": "^3.4.2",
- "cssnano": "^7.0.6",
- "defu": "^6.1.4",
- "esbuild": "^0.25.1",
- "escape-string-regexp": "^5.0.0",
- "exsolve": "^1.0.4",
- "externality": "^1.0.2",
- "get-port-please": "^3.1.2",
- "h3": "^1.15.1",
- "jiti": "^2.4.2",
- "knitwork": "^1.2.0",
- "magic-string": "^0.30.17",
- "mlly": "^1.7.4",
- "mocked-exports": "^0.1.1",
- "ohash": "^2.0.11",
- "pathe": "^2.0.3",
- "perfect-debounce": "^1.0.0",
- "pkg-types": "^2.1.0",
- "postcss": "^8.5.3",
- "rollup-plugin-visualizer": "^5.14.0",
- "std-env": "^3.8.1",
- "ufo": "^1.5.4",
- "unenv": "^2.0.0-rc.15",
- "unplugin": "^2.2.1",
- "vite": "^6.2.2",
- "vite-node": "^3.0.9",
- "vite-plugin-checker": "^0.9.1",
- "vue-bundle-renderer": "^2.1.1"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0.0"
- },
- "peerDependencies": {
- "vue": "^3.3.4"
- }
- },
- "node_modules/@oxc-parser/binding-darwin-arm64": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-arm64/-/binding-darwin-arm64-0.56.5.tgz",
- "integrity": "sha512-rj4WZqQVJQgLnGnDu2ciIOC5SqcBPc4x11RN0NwuedSGzny5mtBdNVLwt0+8iB15lIjrOKg5pjYJ8GQVPca5HA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-darwin-x64": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-darwin-x64/-/binding-darwin-x64-0.56.5.tgz",
- "integrity": "sha512-Rr7aMkqcxGIM6fgkpaj9SJj0u1O1g+AT7mJwmdi5PLSQRPR4CkDKfztEnAj5k+d2blWvh9nPZH8G0OCwxIHk1Q==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-linux-arm-gnueabihf": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-0.56.5.tgz",
- "integrity": "sha512-jcFCThrWUt5k1GM43tdmI1m2dEnWUPPHHTWKBJbZBXzXLrJJzkqv5OU87Spf1004rYj9swwpa13kIldFwMzglA==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-linux-arm64-gnu": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-0.56.5.tgz",
- "integrity": "sha512-zo/9RDgWvugKxCpHHcAC5EW0AqoEvODJ4Iv4aT1Xonv6kcydbyPSXJBQhhZUvTXTAFIlQKl6INHl+Xki9Qs3fw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-linux-arm64-musl": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-arm64-musl/-/binding-linux-arm64-musl-0.56.5.tgz",
- "integrity": "sha512-SCIqrL5apVbrtMoqOpKX/Ez+c46WmW0Tyhtu+Xby281biH+wYu70m+fux9ZsGmbHc2ojd4FxUcaUdCZtb5uTOQ==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-linux-x64-gnu": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-gnu/-/binding-linux-x64-gnu-0.56.5.tgz",
- "integrity": "sha512-I2mpX35NWo83hay4wrnzFLk3VuGK1BBwHaqvEdqsCode8iG8slYJRJPICVbCEWlkR3rotlTQ+608JcRU0VqZ5Q==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-linux-x64-musl": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-linux-x64-musl/-/binding-linux-x64-musl-0.56.5.tgz",
- "integrity": "sha512-xfzUHGYOh3PGWZdBuY5r1czvE8EGWPAmhTWHqkw3/uAfUVWN/qrrLjMojiaiWyUgl/9XIFg05m5CJH9dnngh5Q==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-wasm32-wasi": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-wasm32-wasi/-/binding-wasm32-wasi-0.56.5.tgz",
- "integrity": "sha512-+z3Ofmc1v5kcu8fXgG5vn7T1f52P47ceTTmTXsm5HPY7rq5EMYRUaBnxH6cesXwY1OVVCwYlIZbCiy8Pm1w8zQ==",
- "cpu": [
- "wasm32"
- ],
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@napi-rs/wasm-runtime": "^0.2.7"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-win32-arm64-msvc": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-0.56.5.tgz",
- "integrity": "sha512-pRg8QrbMh8PgnXBreiONoJBR306u+JN19BXQC7oKIaG4Zxt9Mn8XIyuhUv3ytqjLudSiG2ERWQUoCGLs+yfW0A==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/binding-win32-x64-msvc": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-parser/binding-win32-x64-msvc/-/binding-win32-x64-msvc-0.56.5.tgz",
- "integrity": "sha512-VALZNcuyw/6rwsxOACQ2YS6rey2d/ym4cNfXqJrHB/MZduAPj4xvij72gHGu3Ywm31KVGLVWk/mrMRiM9CINcA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/@oxc-parser/wasm": {
- "version": "0.60.0",
- "resolved": "https://registry.npmjs.org/@oxc-parser/wasm/-/wasm-0.60.0.tgz",
- "integrity": "sha512-Dkf9/D87WGBCW3L0+1DtpAfL4SrNsgeRvxwjpKCtbH7Kf6K+pxrT0IridaJfmWKu1Ml+fDvj+7HEyBcfUC/TXQ==",
- "license": "MIT",
- "dependencies": {
- "@oxc-project/types": "^0.60.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/Boshen"
- }
- },
- "node_modules/@oxc-project/types": {
- "version": "0.60.0",
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.60.0.tgz",
- "integrity": "sha512-prhfNnb3ATFHOCv7mzKFfwLij5RzoUz6Y1n525ZhCEqfq5wreCXL+DyVoq3ShukPo7q45ZjYIdjFUgjj+WKzng==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/Boshen"
- }
- },
- "node_modules/@parcel/watcher": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz",
- "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
- "hasInstallScript": true,
- "license": "MIT",
- "dependencies": {
- "detect-libc": "^1.0.3",
- "is-glob": "^4.0.3",
- "micromatch": "^4.0.5",
- "node-addon-api": "^7.0.0"
- },
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- },
- "optionalDependencies": {
- "@parcel/watcher-android-arm64": "2.5.1",
- "@parcel/watcher-darwin-arm64": "2.5.1",
- "@parcel/watcher-darwin-x64": "2.5.1",
- "@parcel/watcher-freebsd-x64": "2.5.1",
- "@parcel/watcher-linux-arm-glibc": "2.5.1",
- "@parcel/watcher-linux-arm-musl": "2.5.1",
- "@parcel/watcher-linux-arm64-glibc": "2.5.1",
- "@parcel/watcher-linux-arm64-musl": "2.5.1",
- "@parcel/watcher-linux-x64-glibc": "2.5.1",
- "@parcel/watcher-linux-x64-musl": "2.5.1",
- "@parcel/watcher-win32-arm64": "2.5.1",
- "@parcel/watcher-win32-ia32": "2.5.1",
- "@parcel/watcher-win32-x64": "2.5.1"
- }
- },
- "node_modules/@parcel/watcher-android-arm64": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
- "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-darwin-arm64": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
- "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-darwin-x64": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
- "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-freebsd-x64": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
- "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-linux-arm-glibc": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
- "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-linux-arm-musl": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
- "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-linux-arm64-glibc": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
- "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-linux-arm64-musl": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
- "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-linux-x64-glibc": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
- "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-linux-x64-musl": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
- "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-wasm": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.5.1.tgz",
- "integrity": "sha512-RJxlQQLkaMMIuWRozy+z2vEqbaQlCuaCgVZIUCzQLYggY22LZbP5Y1+ia+FD724Ids9e+XIyOLXLrLgQSHIthw==",
- "bundleDependencies": [
- "napi-wasm"
- ],
- "license": "MIT",
- "dependencies": {
- "is-glob": "^4.0.3",
- "micromatch": "^4.0.5",
- "napi-wasm": "^1.1.0"
- },
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": {
- "version": "1.1.0",
- "inBundle": true,
- "license": "MIT"
- },
- "node_modules/@parcel/watcher-win32-arm64": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
- "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-win32-ia32": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
- "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@parcel/watcher-win32-x64": {
- "version": "2.5.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
- "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
- }
- },
- "node_modules/@pkgjs/parseargs": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/@polka/url": {
- "version": "1.0.0-next.28",
- "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz",
- "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==",
- "license": "MIT"
- },
- "node_modules/@poppinss/colors": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.4.tgz",
- "integrity": "sha512-FA+nTU8p6OcSH4tLDY5JilGYr1bVWHpNmcLr7xmMEdbWmKHa+3QZ+DqefrXKmdjO/brHTnQZo20lLSjaO7ydog==",
- "license": "MIT",
- "dependencies": {
- "kleur": "^4.1.5"
- },
- "engines": {
- "node": ">=18.16.0"
- }
- },
- "node_modules/@poppinss/colors/node_modules/kleur": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
- "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@poppinss/dumper": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.3.tgz",
- "integrity": "sha512-iombbn8ckOixMtuV1p3f8jN6vqhXefNjJttoPaJDMeIk/yIGhkkL3OrHkEjE9SRsgoAx1vBUU2GtgggjvA5hCA==",
- "license": "MIT",
- "dependencies": {
- "@poppinss/colors": "^4.1.4",
- "@sindresorhus/is": "^7.0.1",
- "supports-color": "^10.0.0"
- }
- },
- "node_modules/@poppinss/dumper/node_modules/supports-color": {
- "version": "10.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.0.0.tgz",
- "integrity": "sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/@poppinss/exception": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.1.tgz",
- "integrity": "sha512-aQypoot0HPSJa6gDPEPTntc1GT6QINrSbgRlRhadGW2WaYqUK3tK4Bw9SBMZXhmxd3GeAlZjVcODHgiu+THY7A==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@quansync/fs": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@quansync/fs/-/fs-0.1.1.tgz",
- "integrity": "sha512-sx8J1O/+j2lqs8MvsEz6rs/6UAUpCb4fu7C6EqtMqzbS3CmqLkTDTOMK+DrWukvyUuHzl8DhMjfNJzQDTqfGJg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "quansync": "^0.2.4"
- },
- "engines": {
- "node": ">=20.18.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sxzz"
- }
- },
- "node_modules/@redocly/ajv": {
- "version": "8.11.2",
- "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz",
- "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==",
- "license": "MIT",
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js-replace": "^1.0.1"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/@redocly/config": {
- "version": "0.22.1",
- "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.22.1.tgz",
- "integrity": "sha512-1CqQfiG456v9ZgYBG9xRQHnpXjt8WoSnDwdkX6gxktuK69v2037hTAR1eh0DGIqpZ1p4k82cGH8yTNwt7/pI9g==",
- "license": "MIT"
- },
- "node_modules/@redocly/openapi-core": {
- "version": "1.34.0",
- "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.34.0.tgz",
- "integrity": "sha512-Ji00EiLQRXq0pJIz5pAjGF9MfQvQVsQehc6uIis6sqat8tG/zh25Zi64w6HVGEDgJEzUeq/CuUlD0emu3Hdaqw==",
- "license": "MIT",
- "dependencies": {
- "@redocly/ajv": "^8.11.2",
- "@redocly/config": "^0.22.0",
- "colorette": "^1.2.0",
- "https-proxy-agent": "^7.0.5",
- "js-levenshtein": "^1.1.6",
- "js-yaml": "^4.1.0",
- "minimatch": "^5.0.1",
- "pluralize": "^8.0.0",
- "yaml-ast-parser": "0.0.43"
- },
- "engines": {
- "node": ">=18.17.0",
- "npm": ">=9.5.0"
- }
- },
- "node_modules/@redocly/openapi-core/node_modules/minimatch": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@rollup/plugin-alias": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.1.1.tgz",
- "integrity": "sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==",
- "license": "MIT",
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/plugin-commonjs": {
- "version": "28.0.3",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.3.tgz",
- "integrity": "sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==",
- "license": "MIT",
- "dependencies": {
- "@rollup/pluginutils": "^5.0.1",
- "commondir": "^1.0.1",
- "estree-walker": "^2.0.2",
- "fdir": "^6.2.0",
- "is-reference": "1.2.1",
- "magic-string": "^0.30.3",
- "picomatch": "^4.0.2"
- },
- "engines": {
- "node": ">=16.0.0 || 14 >= 14.17"
- },
- "peerDependencies": {
- "rollup": "^2.68.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
- "license": "MIT"
- },
- "node_modules/@rollup/plugin-inject": {
- "version": "5.0.5",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz",
- "integrity": "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==",
- "license": "MIT",
- "dependencies": {
- "@rollup/pluginutils": "^5.0.1",
- "estree-walker": "^2.0.2",
- "magic-string": "^0.30.3"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/plugin-inject/node_modules/estree-walker": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
- "license": "MIT"
- },
- "node_modules/@rollup/plugin-json": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz",
- "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==",
- "license": "MIT",
- "dependencies": {
- "@rollup/pluginutils": "^5.1.0"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/plugin-node-resolve": {
- "version": "16.0.1",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.1.tgz",
- "integrity": "sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==",
- "license": "MIT",
- "dependencies": {
- "@rollup/pluginutils": "^5.0.1",
- "@types/resolve": "1.20.2",
- "deepmerge": "^4.2.2",
- "is-module": "^1.0.0",
- "resolve": "^1.22.1"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^2.78.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/plugin-replace": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-6.0.2.tgz",
- "integrity": "sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==",
- "license": "MIT",
- "dependencies": {
- "@rollup/pluginutils": "^5.0.1",
- "magic-string": "^0.30.3"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/plugin-terser": {
- "version": "0.4.4",
- "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz",
- "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==",
- "license": "MIT",
- "dependencies": {
- "serialize-javascript": "^6.0.1",
- "smob": "^1.0.0",
- "terser": "^5.17.4"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^2.0.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/pluginutils": {
- "version": "5.1.4",
- "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz",
- "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "^1.0.0",
- "estree-walker": "^2.0.2",
- "picomatch": "^4.0.2"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "peerDependencies": {
- "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
- },
- "peerDependenciesMeta": {
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/@rollup/pluginutils/node_modules/estree-walker": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
- "license": "MIT"
- },
- "node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.36.0.tgz",
- "integrity": "sha512-jgrXjjcEwN6XpZXL0HUeOVGfjXhPyxAbbhD0BlXUB+abTOpbPiN5Wb3kOT7yb+uEtATNYF5x5gIfwutmuBA26w==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@rollup/rollup-android-arm64": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.36.0.tgz",
- "integrity": "sha512-NyfuLvdPdNUfUNeYKUwPwKsE5SXa2J6bCt2LdB/N+AxShnkpiczi3tcLJrm5mA+eqpy0HmaIY9F6XCa32N5yzg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "android"
- ]
- },
- "node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.36.0.tgz",
- "integrity": "sha512-JQ1Jk5G4bGrD4pWJQzWsD8I1n1mgPXq33+/vP4sk8j/z/C2siRuxZtaUA7yMTf71TCZTZl/4e1bfzwUmFb3+rw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.36.0.tgz",
- "integrity": "sha512-6c6wMZa1lrtiRsbDziCmjE53YbTkxMYhhnWnSW8R/yqsM7a6mSJ3uAVT0t8Y/DGt7gxUWYuFM4bwWk9XCJrFKA==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.36.0.tgz",
- "integrity": "sha512-KXVsijKeJXOl8QzXTsA+sHVDsFOmMCdBRgFmBb+mfEb/7geR7+C8ypAml4fquUt14ZyVXaw2o1FWhqAfOvA4sg==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.36.0.tgz",
- "integrity": "sha512-dVeWq1ebbvByI+ndz4IJcD4a09RJgRYmLccwlQ8bPd4olz3Y213uf1iwvc7ZaxNn2ab7bjc08PrtBgMu6nb4pQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "freebsd"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.36.0.tgz",
- "integrity": "sha512-bvXVU42mOVcF4le6XSjscdXjqx8okv4n5vmwgzcmtvFdifQ5U4dXFYaCB87namDRKlUL9ybVtLQ9ztnawaSzvg==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.36.0.tgz",
- "integrity": "sha512-JFIQrDJYrxOnyDQGYkqnNBtjDwTgbasdbUiQvcU8JmGDfValfH1lNpng+4FWlhaVIR4KPkeddYjsVVbmJYvDcg==",
- "cpu": [
- "arm"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.36.0.tgz",
- "integrity": "sha512-KqjYVh3oM1bj//5X7k79PSCZ6CvaVzb7Qs7VMWS+SlWB5M8p3FqufLP9VNp4CazJ0CsPDLwVD9r3vX7Ci4J56A==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.36.0.tgz",
- "integrity": "sha512-QiGnhScND+mAAtfHqeT+cB1S9yFnNQ/EwCg5yE3MzoaZZnIV0RV9O5alJAoJKX/sBONVKeZdMfO8QSaWEygMhw==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.36.0.tgz",
- "integrity": "sha512-1ZPyEDWF8phd4FQtTzMh8FQwqzvIjLsl6/84gzUxnMNFBtExBtpL51H67mV9xipuxl1AEAerRBgBwFNpkw8+Lg==",
- "cpu": [
- "loong64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.36.0.tgz",
- "integrity": "sha512-VMPMEIUpPFKpPI9GZMhJrtu8rxnp6mJR3ZzQPykq4xc2GmdHj3Q4cA+7avMyegXy4n1v+Qynr9fR88BmyO74tg==",
- "cpu": [
- "ppc64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.36.0.tgz",
- "integrity": "sha512-ttE6ayb/kHwNRJGYLpuAvB7SMtOeQnVXEIpMtAvx3kepFQeowVED0n1K9nAdraHUPJ5hydEMxBpIR7o4nrm8uA==",
- "cpu": [
- "riscv64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.36.0.tgz",
- "integrity": "sha512-4a5gf2jpS0AIe7uBjxDeUMNcFmaRTbNv7NxI5xOCs4lhzsVyGR/0qBXduPnoWf6dGC365saTiwag8hP1imTgag==",
- "cpu": [
- "s390x"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.36.0.tgz",
- "integrity": "sha512-5KtoW8UWmwFKQ96aQL3LlRXX16IMwyzMq/jSSVIIyAANiE1doaQsx/KRyhAvpHlPjPiSU/AYX/8m+lQ9VToxFQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.36.0.tgz",
- "integrity": "sha512-sycrYZPrv2ag4OCvaN5js+f01eoZ2U+RmT5as8vhxiFz+kxwlHrsxOwKPSA8WyS+Wc6Epid9QeI/IkQ9NkgYyQ==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "linux"
- ]
- },
- "node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.36.0.tgz",
- "integrity": "sha512-qbqt4N7tokFwwSVlWDsjfoHgviS3n/vZ8LK0h1uLG9TYIRuUTJC88E1xb3LM2iqZ/WTqNQjYrtmtGmrmmawB6A==",
- "cpu": [
- "arm64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.36.0.tgz",
- "integrity": "sha512-t+RY0JuRamIocMuQcfwYSOkmdX9dtkr1PbhKW42AMvaDQa+jOdpUYysroTF/nuPpAaQMWp7ye+ndlmmthieJrQ==",
- "cpu": [
- "ia32"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.36.0.tgz",
- "integrity": "sha512-aRXd7tRZkWLqGbChgcMMDEHjOKudo1kChb1Jt1IfR8cY/KIpgNviLeJy5FUb9IpSuQj8dU2fAYNMPW/hLKOSTw==",
- "cpu": [
- "x64"
- ],
- "license": "MIT",
- "optional": true,
- "os": [
- "win32"
- ]
- },
- "node_modules/@sindresorhus/is": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.0.1.tgz",
- "integrity": "sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/is?sponsor=1"
- }
- },
- "node_modules/@sindresorhus/merge-streams": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz",
- "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@speed-highlight/core": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.7.tgz",
- "integrity": "sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==",
- "license": "CC0-1.0"
- },
- "node_modules/@trysound/sax": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz",
- "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==",
- "license": "ISC",
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/@tybys/wasm-util": {
- "version": "0.9.0",
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz",
- "integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "tslib": "^2.4.0"
- }
- },
- "node_modules/@types/eslint": {
- "version": "9.6.1",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz",
- "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@types/estree": "*",
- "@types/json-schema": "*"
- }
- },
- "node_modules/@types/eslint-scope": {
- "version": "3.7.7",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
- "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@types/eslint": "*",
- "@types/estree": "*"
- }
- },
- "node_modules/@types/estree": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
- "license": "MIT"
- },
- "node_modules/@types/json-schema": {
- "version": "7.0.15",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@types/node": {
- "version": "22.13.11",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.11.tgz",
- "integrity": "sha512-iEUCUJoU0i3VnrCmgoWCXttklWcvoCIx4jzcP22fioIVSdTmjgoEvmAO/QPw6TcS9k5FrNgn4w7q5lGOd1CT5g==",
- "devOptional": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "undici-types": "~6.20.0"
- }
- },
- "node_modules/@types/parse-path": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/@types/parse-path/-/parse-path-7.0.3.tgz",
- "integrity": "sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==",
- "license": "MIT"
- },
- "node_modules/@types/resolve": {
- "version": "1.20.2",
- "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz",
- "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==",
- "license": "MIT"
- },
- "node_modules/@unhead/vue": {
- "version": "2.0.0-rc.13",
- "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-2.0.0-rc.13.tgz",
- "integrity": "sha512-9jF2Y85HtEdxfaa6Y4wn2Gh1eXJHVNvvecWs3+qfEV83kSOFFowOpm6nIYmNpVGPQtnS0OW1JeIZjQEPZR+LAQ==",
- "license": "MIT",
- "dependencies": {
- "hookable": "^5.5.3",
- "unhead": "2.0.0-rc.13"
- },
- "funding": {
- "url": "https://github.com/sponsors/harlan-zw"
- },
- "peerDependencies": {
- "vue": ">=3.5.13"
- }
- },
- "node_modules/@unocss/astro": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/astro/-/astro-66.1.0-beta.6.tgz",
- "integrity": "sha512-LL4DqqMB5D++c5aPZAis1YjzqvwstLVOYwcoXfuA8Ty96/HgCK8XZINpfZUwUND8FqlpFjnqs0NgUm4NkDDexg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/reset": "66.1.0-beta.6",
- "@unocss/vite": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
- },
- "peerDependenciesMeta": {
- "vite": {
- "optional": true
- }
- }
- },
- "node_modules/@unocss/cli": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/cli/-/cli-66.1.0-beta.6.tgz",
- "integrity": "sha512-HLO04NOfTWjrGtpXxpB41vO8oj/pL+R4Ma/E4pnh4Zzq2e5RDMhyQvgiYSdS6PeIGB5AQDrgmd41EuGHsp23qg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ampproject/remapping": "^2.3.0",
- "@unocss/config": "66.1.0-beta.6",
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/preset-uno": "66.1.0-beta.6",
- "cac": "^6.7.14",
- "chokidar": "^3.6.0",
- "colorette": "^2.0.20",
- "consola": "^3.4.0",
- "magic-string": "^0.30.17",
- "pathe": "^2.0.3",
- "perfect-debounce": "^1.0.0",
- "tinyglobby": "^0.2.12",
- "unplugin-utils": "^0.2.4"
- },
- "bin": {
- "unocss": "bin/unocss.mjs"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/cli/node_modules/chokidar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/@unocss/cli/node_modules/colorette": {
- "version": "2.0.20",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
- "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@unocss/cli/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/@unocss/cli/node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/@unocss/config": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/config/-/config-66.1.0-beta.6.tgz",
- "integrity": "sha512-jLAxHSgMCEhIjCwOwfENtFM3gevU4QDQeaG4VVEYGFJ/oj27JJrl/j6HlUBdhFiR0Q7yf6QFCXlKTP/+put0/Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "unconfig": "^7.3.1"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/core": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/core/-/core-66.1.0-beta.6.tgz",
- "integrity": "sha512-TQLxpBZPl6m4HhS6/FMr0Vbn22tGWgbGPyfJyjTSYY/LTug42aIUPnTQnqFSRwGiUnBfp3+oAhG/t/lZ6U74tw==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/extractor-arbitrary-variants": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-66.1.0-beta.6.tgz",
- "integrity": "sha512-jUI5Ncppngy8NKv8p9ubUi0FAw6Vcrx7hC7aWaqEFdfA2cDGpR5XHyWJozkT7BbfZs+SnA76b6qwuEtcXwYTAg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/inspector": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/inspector/-/inspector-66.1.0-beta.6.tgz",
- "integrity": "sha512-YjK017dGMtN8Q067d9n9aCKFXGB8jD13PomKmKOWs3YfmPQE1qQjqQUXH4Zf/jhGMvaB72BHevqctLRHguHfww==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/rule-utils": "66.1.0-beta.6",
- "colorette": "^2.0.20",
- "gzip-size": "^6.0.0",
- "sirv": "^3.0.1",
- "vue-flow-layout": "^0.1.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/inspector/node_modules/colorette": {
- "version": "2.0.20",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
- "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@unocss/inspector/node_modules/gzip-size": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz",
- "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "duplexer": "^0.1.2"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@unocss/nuxt": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/nuxt/-/nuxt-66.1.0-beta.6.tgz",
- "integrity": "sha512-W+Fl1NAjOuZeB4mG5p2lTPk4CltYtzmbnVMVhg1wpk6ttePR1PcP3bCaFwa+/e/CGAdK6vQOi9Ui6zon3pkQ4g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@nuxt/kit": "^3.16.0",
- "@unocss/config": "66.1.0-beta.6",
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/preset-attributify": "66.1.0-beta.6",
- "@unocss/preset-icons": "66.1.0-beta.6",
- "@unocss/preset-tagify": "66.1.0-beta.6",
- "@unocss/preset-typography": "66.1.0-beta.6",
- "@unocss/preset-uno": "66.1.0-beta.6",
- "@unocss/preset-web-fonts": "66.1.0-beta.6",
- "@unocss/preset-wind": "66.1.0-beta.6",
- "@unocss/reset": "66.1.0-beta.6",
- "@unocss/vite": "66.1.0-beta.6",
- "@unocss/webpack": "66.1.0-beta.6",
- "unocss": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/postcss": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/postcss/-/postcss-66.1.0-beta.6.tgz",
- "integrity": "sha512-WvpOKr7rPRfb8ttUYpta/WlH/rk0hwZUj59hSW5aMFs/EfaKolIurcSz6UU/yDGBly4T3F+MadqbjSU91iJ8xg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/config": "66.1.0-beta.6",
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/rule-utils": "66.1.0-beta.6",
- "css-tree": "^3.1.0",
- "postcss": "^8.5.3",
- "tinyglobby": "^0.2.12"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "postcss": "^8.4.21"
- }
- },
- "node_modules/@unocss/postcss/node_modules/css-tree": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
- "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mdn-data": "2.12.2",
- "source-map-js": "^1.0.1"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
- }
- },
- "node_modules/@unocss/postcss/node_modules/mdn-data": {
- "version": "2.12.2",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
- "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
- "dev": true,
- "license": "CC0-1.0"
- },
- "node_modules/@unocss/preset-attributify": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-attributify/-/preset-attributify-66.1.0-beta.6.tgz",
- "integrity": "sha512-JTSTh7x+DXa1hWe4xCztOeYc0zNpbv0USiHfgM303ZcDr5zNKG4iGAebBqcmAu8CUB+Tq3OJOA4m/dqfkVAAuQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-icons": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-icons/-/preset-icons-66.1.0-beta.6.tgz",
- "integrity": "sha512-zj+PaJ7gSIebtnMnLmzzn9e3tVCO9r2+nOz5v0DWpBfMfpSId4EkXtG3hMllRG8WEH8frZz5qBM3yFuhk8NqqQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@iconify/utils": "^2.3.0",
- "@unocss/core": "66.1.0-beta.6",
- "ofetch": "^1.4.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-mini": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-mini/-/preset-mini-66.1.0-beta.6.tgz",
- "integrity": "sha512-MoF32nio5jzKi40VOeOU4k2uZvYUm2GKIxTRZ8C8mb7bFFphoMQD0/Pfr9oWpNC7jl7msuKt8i4xUknK5GAVDQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/extractor-arbitrary-variants": "66.1.0-beta.6",
- "@unocss/rule-utils": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-tagify": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-tagify/-/preset-tagify-66.1.0-beta.6.tgz",
- "integrity": "sha512-pym/P+A8CtSp6ek/twe82hW50lsh8miJ7m/oNfU9oHNM/Lo0XQhnIaVvHwefprX+isyKW4KJWBBZ/gX3tbz+9Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-typography": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-typography/-/preset-typography-66.1.0-beta.6.tgz",
- "integrity": "sha512-M6o4oXUMXo6RmclqsnUCXYJCW9cBJYYZcl4M2ofejNkCaqplAwWvc7X7TPvUjcURfwHf+CiXx42DXB0k+FCmlA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/preset-mini": "66.1.0-beta.6",
- "@unocss/rule-utils": "66.1.0-beta.6"
- }
- },
- "node_modules/@unocss/preset-uno": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-uno/-/preset-uno-66.1.0-beta.6.tgz",
- "integrity": "sha512-zFvQ8sxSGcHoZBkMNngQIdQTFJgoNx5UosydUynLMzs86NFkwd/BAcS2cZBy+buLiuqV1oM2uSyxjLeAqury8g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/preset-wind3": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-web-fonts": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-web-fonts/-/preset-web-fonts-66.1.0-beta.6.tgz",
- "integrity": "sha512-G9EUBFuFT5sbh1rHsc5oJVHTKK9FMUvtoELaS5HRnxYtr6CR9iepXMNNRb8tmjwx5ewStn7cBKHCGHxnoij3Ew==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "ofetch": "^1.4.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-wind": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-wind/-/preset-wind-66.1.0-beta.6.tgz",
- "integrity": "sha512-1H1YH5OQTGG3mFo54BZELkKWO4iE0UgH4W2+RdnWHEKYIpXImk8JtAkiO5iK0gJafoSQjx592fZ70krQKmNamQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/preset-wind3": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-wind3": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-wind3/-/preset-wind3-66.1.0-beta.6.tgz",
- "integrity": "sha512-AWLf5bT/tjXao5BIdgeDG/XxQoRKvh+G7DQGzJJe4vkOv8QK7QHG8LuqaadEkLTgTY1DaIXshK9d7+E/fFAcFw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/preset-mini": "66.1.0-beta.6",
- "@unocss/rule-utils": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/preset-wind4": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/preset-wind4/-/preset-wind4-66.1.0-beta.6.tgz",
- "integrity": "sha512-8OuBpnPbwId4/6sZe4j52+2shnyY/A3/y7RvhRow2xMgvEPBpJdkGHDDE+igwXF3Bhpd7FZS93NpyMLLX42imA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/extractor-arbitrary-variants": "66.1.0-beta.6",
- "@unocss/rule-utils": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/reset": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/reset/-/reset-66.1.0-beta.6.tgz",
- "integrity": "sha512-HIB+JT1/1LbDChcbYmWAmSNMHMBYMcgubc5W0nIEZbfT4JGF/ZsbFeAhpbau/k/Ny5w5XlBD24CESkYewldgyw==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/rule-utils": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/rule-utils/-/rule-utils-66.1.0-beta.6.tgz",
- "integrity": "sha512-9RxYUGq96Ro+5XbevFlzKKwtROIv9c6VZbG+i34pMaw8ALFsCj34iGFvBs4ohTf03XkCCyMlr2f2KdFc9cj/Sw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "^66.1.0-beta.6",
- "magic-string": "^0.30.17"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/transformer-attributify-jsx": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-66.1.0-beta.6.tgz",
- "integrity": "sha512-Qp9kvq7nRjFRuUfM5zJ1Mz/JxjRNvRReL1m0t9lrgDQl3pc1+7pIxlQSEn0NJHaOQc8CBpLgTDRmwWLOtlB6SQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/transformer-compile-class": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/transformer-compile-class/-/transformer-compile-class-66.1.0-beta.6.tgz",
- "integrity": "sha512-MckRTk6zh9GwjxIhvbckKko4VqESkaYLOLmHK0eVOioEPyV2B8eCqgrMLpYJlrpCIRbZV8ttAGNCiB8MsQgR/w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/transformer-directives": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/transformer-directives/-/transformer-directives-66.1.0-beta.6.tgz",
- "integrity": "sha512-+/U6MV9IiPuCoE2+CKkXbpAlN7X8WembjdtM0jFTXJWJdrb11xI8bMTfGnhohKs94naQL6lEmow/wZVFgIIJug==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/rule-utils": "66.1.0-beta.6",
- "css-tree": "^3.1.0"
- }
- },
- "node_modules/@unocss/transformer-directives/node_modules/css-tree": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
- "integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mdn-data": "2.12.2",
- "source-map-js": "^1.0.1"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
- }
- },
- "node_modules/@unocss/transformer-directives/node_modules/mdn-data": {
- "version": "2.12.2",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
- "integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
- "dev": true,
- "license": "CC0-1.0"
- },
- "node_modules/@unocss/transformer-variant-group": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/transformer-variant-group/-/transformer-variant-group-66.1.0-beta.6.tgz",
- "integrity": "sha512-Liug/F5nHYBLoUbo+47unrzKjYKxmN7HAw/jjQpzjKGn4bN6ZzCDodY3h6q5e8XsxFIkZlt3JZPZkMKjSf1E0Q==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/core": "66.1.0-beta.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@unocss/vite": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/vite/-/vite-66.1.0-beta.6.tgz",
- "integrity": "sha512-/3yAxOJm8UFiNOBcuRQELrgQX55fJnb0wBNNSeW1YsE5vLCDNvP0acibDmqyKk2O+Ch9yw8duC60FKIptVzJhQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ampproject/remapping": "^2.3.0",
- "@unocss/config": "66.1.0-beta.6",
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/inspector": "66.1.0-beta.6",
- "chokidar": "^3.6.0",
- "magic-string": "^0.30.17",
- "tinyglobby": "^0.2.12",
- "unplugin-utils": "^0.2.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
- }
- },
- "node_modules/@unocss/vite/node_modules/chokidar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/@unocss/vite/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/@unocss/vite/node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/@unocss/webpack": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/@unocss/webpack/-/webpack-66.1.0-beta.6.tgz",
- "integrity": "sha512-c6RSh8l2R2wBJ/PBUGLg0GCMrcLOWoQrKf+EEadNsFfXFFC2FqGrGNCDHkA3IpJXZdLiVAYVf4RAWEeMa1EEUQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@ampproject/remapping": "^2.3.0",
- "@unocss/config": "66.1.0-beta.6",
- "@unocss/core": "66.1.0-beta.6",
- "chokidar": "^3.6.0",
- "magic-string": "^0.30.17",
- "tinyglobby": "^0.2.12",
- "unplugin": "^2.2.0",
- "unplugin-utils": "^0.2.4",
- "webpack-sources": "^3.2.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "webpack": "^4 || ^5"
- }
- },
- "node_modules/@unocss/webpack/node_modules/chokidar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/@unocss/webpack/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/@unocss/webpack/node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/@vercel/nft": {
- "version": "0.29.2",
- "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.29.2.tgz",
- "integrity": "sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==",
- "license": "MIT",
- "dependencies": {
- "@mapbox/node-pre-gyp": "^2.0.0",
- "@rollup/pluginutils": "^5.1.3",
- "acorn": "^8.6.0",
- "acorn-import-attributes": "^1.9.5",
- "async-sema": "^3.1.1",
- "bindings": "^1.4.0",
- "estree-walker": "2.0.2",
- "glob": "^10.4.5",
- "graceful-fs": "^4.2.9",
- "node-gyp-build": "^4.2.2",
- "picomatch": "^4.0.2",
- "resolve-from": "^5.0.0"
- },
- "bin": {
- "nft": "out/cli.js"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/@vercel/nft/node_modules/estree-walker": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
- "license": "MIT"
- },
- "node_modules/@vitejs/plugin-vue": {
- "version": "5.2.3",
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.3.tgz",
- "integrity": "sha512-IYSLEQj4LgZZuoVpdSUCw3dIynTWQgPlaRP6iAvMle4My0HdYwr5g5wQAfwOeHQBmYwEkqF70nRpSilr6PoUDg==",
- "license": "MIT",
- "engines": {
- "node": "^18.0.0 || >=20.0.0"
- },
- "peerDependencies": {
- "vite": "^5.0.0 || ^6.0.0",
- "vue": "^3.2.25"
- }
- },
- "node_modules/@vitejs/plugin-vue-jsx": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.1.2.tgz",
- "integrity": "sha512-4Rk0GdE0QCdsIkuMmWeg11gmM4x8UmTnZR/LWPm7QJ7+BsK4tq08udrN0isrrWqz5heFy9HLV/7bOLgFS8hUjA==",
- "license": "MIT",
- "dependencies": {
- "@babel/core": "^7.26.7",
- "@babel/plugin-transform-typescript": "^7.26.7",
- "@vue/babel-plugin-jsx": "^1.2.5"
- },
- "engines": {
- "node": "^18.0.0 || >=20.0.0"
- },
- "peerDependencies": {
- "vite": "^5.0.0 || ^6.0.0",
- "vue": "^3.0.0"
- }
- },
- "node_modules/@vue-macros/common": {
- "version": "1.16.1",
- "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.16.1.tgz",
- "integrity": "sha512-Pn/AWMTjoMYuquepLZP813BIcq8DTZiNCoaceuNlvaYuOTd8DqBZWc5u0uOMQZMInwME1mdSmmBAcTluiV9Jtg==",
- "license": "MIT",
- "dependencies": {
- "@vue/compiler-sfc": "^3.5.13",
- "ast-kit": "^1.4.0",
- "local-pkg": "^1.0.0",
- "magic-string-ast": "^0.7.0",
- "pathe": "^2.0.2",
- "picomatch": "^4.0.2"
- },
- "engines": {
- "node": ">=16.14.0"
- },
- "peerDependencies": {
- "vue": "^2.7.0 || ^3.2.25"
- },
- "peerDependenciesMeta": {
- "vue": {
- "optional": true
- }
- }
- },
- "node_modules/@vue/babel-helper-vue-transform-on": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.4.0.tgz",
- "integrity": "sha512-mCokbouEQ/ocRce/FpKCRItGo+013tHg7tixg3DUNS+6bmIchPt66012kBMm476vyEIJPafrvOf4E5OYj3shSw==",
- "license": "MIT"
- },
- "node_modules/@vue/babel-plugin-jsx": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.4.0.tgz",
- "integrity": "sha512-9zAHmwgMWlaN6qRKdrg1uKsBKHvnUU+Py+MOCTuYZBoZsopa90Di10QRjB+YPnVss0BZbG/H5XFwJY1fTxJWhA==",
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.25.9",
- "@babel/helper-plugin-utils": "^7.26.5",
- "@babel/plugin-syntax-jsx": "^7.25.9",
- "@babel/template": "^7.26.9",
- "@babel/traverse": "^7.26.9",
- "@babel/types": "^7.26.9",
- "@vue/babel-helper-vue-transform-on": "1.4.0",
- "@vue/babel-plugin-resolve-type": "1.4.0",
- "@vue/shared": "^3.5.13"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- },
- "peerDependenciesMeta": {
- "@babel/core": {
- "optional": true
- }
- }
- },
- "node_modules/@vue/babel-plugin-resolve-type": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.4.0.tgz",
- "integrity": "sha512-4xqDRRbQQEWHQyjlYSgZsWj44KfiF6D+ktCuXyZ8EnVDYV3pztmXJDf1HveAjUAXxAnR8daCQT51RneWWxtTyQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.26.2",
- "@babel/helper-module-imports": "^7.25.9",
- "@babel/helper-plugin-utils": "^7.26.5",
- "@babel/parser": "^7.26.9",
- "@vue/compiler-sfc": "^3.5.13"
- },
- "funding": {
- "url": "https://github.com/sponsors/sxzz"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@vue/compiler-core": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz",
- "integrity": "sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==",
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.25.3",
- "@vue/shared": "3.5.13",
- "entities": "^4.5.0",
- "estree-walker": "^2.0.2",
- "source-map-js": "^1.2.0"
- }
- },
- "node_modules/@vue/compiler-core/node_modules/estree-walker": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
- "license": "MIT"
- },
- "node_modules/@vue/compiler-dom": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz",
- "integrity": "sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==",
- "license": "MIT",
- "dependencies": {
- "@vue/compiler-core": "3.5.13",
- "@vue/shared": "3.5.13"
- }
- },
- "node_modules/@vue/compiler-sfc": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz",
- "integrity": "sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.25.3",
- "@vue/compiler-core": "3.5.13",
- "@vue/compiler-dom": "3.5.13",
- "@vue/compiler-ssr": "3.5.13",
- "@vue/shared": "3.5.13",
- "estree-walker": "^2.0.2",
- "magic-string": "^0.30.11",
- "postcss": "^8.4.48",
- "source-map-js": "^1.2.0"
- }
- },
- "node_modules/@vue/compiler-sfc/node_modules/estree-walker": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
- "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
- "license": "MIT"
- },
- "node_modules/@vue/compiler-ssr": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz",
- "integrity": "sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==",
- "license": "MIT",
- "dependencies": {
- "@vue/compiler-dom": "3.5.13",
- "@vue/shared": "3.5.13"
- }
- },
- "node_modules/@vue/devtools-api": {
- "version": "6.6.4",
- "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
- "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
- "license": "MIT"
- },
- "node_modules/@vue/devtools-core": {
- "version": "7.7.2",
- "resolved": "https://registry.npmjs.org/@vue/devtools-core/-/devtools-core-7.7.2.tgz",
- "integrity": "sha512-lexREWj1lKi91Tblr38ntSsy6CvI8ba7u+jmwh2yruib/ltLUcsIzEjCnrkh1yYGGIKXbAuYV2tOG10fGDB9OQ==",
- "license": "MIT",
- "dependencies": {
- "@vue/devtools-kit": "^7.7.2",
- "@vue/devtools-shared": "^7.7.2",
- "mitt": "^3.0.1",
- "nanoid": "^5.0.9",
- "pathe": "^2.0.2",
- "vite-hot-client": "^0.2.4"
- },
- "peerDependencies": {
- "vue": "^3.0.0"
- }
- },
- "node_modules/@vue/devtools-kit": {
- "version": "7.7.2",
- "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.2.tgz",
- "integrity": "sha512-CY0I1JH3Z8PECbn6k3TqM1Bk9ASWxeMtTCvZr7vb+CHi+X/QwQm5F1/fPagraamKMAHVfuuCbdcnNg1A4CYVWQ==",
- "license": "MIT",
- "dependencies": {
- "@vue/devtools-shared": "^7.7.2",
- "birpc": "^0.2.19",
- "hookable": "^5.5.3",
- "mitt": "^3.0.1",
- "perfect-debounce": "^1.0.0",
- "speakingurl": "^14.0.1",
- "superjson": "^2.2.1"
- }
- },
- "node_modules/@vue/devtools-kit/node_modules/birpc": {
- "version": "0.2.19",
- "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.19.tgz",
- "integrity": "sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/@vue/devtools-shared": {
- "version": "7.7.2",
- "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.2.tgz",
- "integrity": "sha512-uBFxnp8gwW2vD6FrJB8JZLUzVb6PNRG0B0jBnHsOH8uKyva2qINY8PTF5Te4QlTbMDqU5K6qtJDr6cNsKWhbOA==",
- "license": "MIT",
- "dependencies": {
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@vue/reactivity": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz",
- "integrity": "sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==",
- "license": "MIT",
- "dependencies": {
- "@vue/shared": "3.5.13"
- }
- },
- "node_modules/@vue/runtime-core": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz",
- "integrity": "sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==",
- "license": "MIT",
- "dependencies": {
- "@vue/reactivity": "3.5.13",
- "@vue/shared": "3.5.13"
- }
- },
- "node_modules/@vue/runtime-dom": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz",
- "integrity": "sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==",
- "license": "MIT",
- "dependencies": {
- "@vue/reactivity": "3.5.13",
- "@vue/runtime-core": "3.5.13",
- "@vue/shared": "3.5.13",
- "csstype": "^3.1.3"
- }
- },
- "node_modules/@vue/server-renderer": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz",
- "integrity": "sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==",
- "license": "MIT",
- "dependencies": {
- "@vue/compiler-ssr": "3.5.13",
- "@vue/shared": "3.5.13"
- },
- "peerDependencies": {
- "vue": "3.5.13"
- }
- },
- "node_modules/@vue/shared": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz",
- "integrity": "sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==",
- "license": "MIT"
- },
- "node_modules/@webassemblyjs/ast": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz",
- "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/helper-numbers": "1.13.2",
- "@webassemblyjs/helper-wasm-bytecode": "1.13.2"
- }
- },
- "node_modules/@webassemblyjs/floating-point-hex-parser": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz",
- "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz",
- "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz",
- "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-numbers": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz",
- "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/floating-point-hex-parser": "1.13.2",
- "@webassemblyjs/helper-api-error": "1.13.2",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz",
- "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz",
- "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.14.1",
- "@webassemblyjs/helper-buffer": "1.14.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
- "@webassemblyjs/wasm-gen": "1.14.1"
- }
- },
- "node_modules/@webassemblyjs/ieee754": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz",
- "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@webassemblyjs/leb128": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz",
- "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==",
- "dev": true,
- "license": "Apache-2.0",
- "peer": true,
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/utf8": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz",
- "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz",
- "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.14.1",
- "@webassemblyjs/helper-buffer": "1.14.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
- "@webassemblyjs/helper-wasm-section": "1.14.1",
- "@webassemblyjs/wasm-gen": "1.14.1",
- "@webassemblyjs/wasm-opt": "1.14.1",
- "@webassemblyjs/wasm-parser": "1.14.1",
- "@webassemblyjs/wast-printer": "1.14.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz",
- "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.14.1",
- "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
- "@webassemblyjs/ieee754": "1.13.2",
- "@webassemblyjs/leb128": "1.13.2",
- "@webassemblyjs/utf8": "1.13.2"
- }
- },
- "node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz",
- "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.14.1",
- "@webassemblyjs/helper-buffer": "1.14.1",
- "@webassemblyjs/wasm-gen": "1.14.1",
- "@webassemblyjs/wasm-parser": "1.14.1"
- }
- },
- "node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz",
- "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.14.1",
- "@webassemblyjs/helper-api-error": "1.13.2",
- "@webassemblyjs/helper-wasm-bytecode": "1.13.2",
- "@webassemblyjs/ieee754": "1.13.2",
- "@webassemblyjs/leb128": "1.13.2",
- "@webassemblyjs/utf8": "1.13.2"
- }
- },
- "node_modules/@webassemblyjs/wast-printer": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz",
- "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.14.1",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@xtuc/ieee754": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
- "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
- "dev": true,
- "license": "BSD-3-Clause",
- "peer": true
- },
- "node_modules/@xtuc/long": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
- "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
- "dev": true,
- "license": "Apache-2.0",
- "peer": true
- },
- "node_modules/abbrev": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.0.tgz",
- "integrity": "sha512-+/kfrslGQ7TNV2ecmQwMJj/B65g5KVq1/L3SGVZ3tCYGqlzFuFCGBZJtMP99wH3NpEUyAjn0zPdPUg0D+DwrOA==",
- "license": "ISC",
- "engines": {
- "node": "^18.17.0 || >=20.5.0"
- }
- },
- "node_modules/abort-controller": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
- "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
- "license": "MIT",
- "dependencies": {
- "event-target-shim": "^5.0.0"
- },
- "engines": {
- "node": ">=6.5"
- }
- },
- "node_modules/acorn": {
- "version": "8.14.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
- "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
- "license": "MIT",
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/acorn-import-attributes": {
- "version": "1.9.5",
- "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz",
- "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==",
- "license": "MIT",
- "peerDependencies": {
- "acorn": "^8"
- }
- },
- "node_modules/agent-base": {
- "version": "7.1.3",
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz",
- "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==",
- "license": "MIT",
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/ajv": {
- "version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3",
- "fast-uri": "^3.0.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/ajv-formats": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
- "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "ajv": "^8.0.0"
- },
- "peerDependencies": {
- "ajv": "^8.0.0"
- },
- "peerDependenciesMeta": {
- "ajv": {
- "optional": true
- }
- }
- },
- "node_modules/ajv-keywords": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.3"
- },
- "peerDependencies": {
- "ajv": "^8.8.2"
- }
- },
- "node_modules/ansi-colors": {
- "version": "4.1.3",
- "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
- "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/ansi-regex": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
- }
- },
- "node_modules/ansi-styles": {
- "version": "6.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
- "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/ansis": {
- "version": "3.17.0",
- "resolved": "https://registry.npmjs.org/ansis/-/ansis-3.17.0.tgz",
- "integrity": "sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==",
- "license": "ISC",
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/anymatch": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
- "license": "ISC",
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/anymatch/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/archiver": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz",
- "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==",
- "license": "MIT",
- "dependencies": {
- "archiver-utils": "^5.0.2",
- "async": "^3.2.4",
- "buffer-crc32": "^1.0.0",
- "readable-stream": "^4.0.0",
- "readdir-glob": "^1.1.2",
- "tar-stream": "^3.0.0",
- "zip-stream": "^6.0.1"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/archiver-utils": {
- "version": "5.0.2",
- "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz",
- "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==",
- "license": "MIT",
- "dependencies": {
- "glob": "^10.0.0",
- "graceful-fs": "^4.2.0",
- "is-stream": "^2.0.1",
- "lazystream": "^1.0.0",
- "lodash": "^4.17.15",
- "normalize-path": "^3.0.0",
- "readable-stream": "^4.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/archiver-utils/node_modules/is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/argparse": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
- "license": "Python-2.0"
- },
- "node_modules/ast-kit": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-1.4.2.tgz",
- "integrity": "sha512-lvGehj1XsrIoQrD5CfPduIzQbcpuX2EPjlk/vDMDQF9U9HLRB6WwMTdighj5n52hdhh8xg9VgPTU7Q25MuJ/rw==",
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.26.9",
- "pathe": "^2.0.3"
- },
- "engines": {
- "node": ">=16.14.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sxzz"
- }
- },
- "node_modules/ast-walker-scope": {
- "version": "0.6.2",
- "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.6.2.tgz",
- "integrity": "sha512-1UWOyC50xI3QZkRuDj6PqDtpm1oHWtYs+NQGwqL/2R11eN3Q81PHAHPM0SWW3BNQm53UDwS//Jv8L4CCVLM1bQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.25.3",
- "ast-kit": "^1.0.1"
- },
- "engines": {
- "node": ">=16.14.0"
- }
- },
- "node_modules/async": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
- "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
- "license": "MIT"
- },
- "node_modules/async-sema": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz",
- "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==",
- "license": "MIT"
- },
- "node_modules/autoprefixer": {
- "version": "10.4.21",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
- "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.24.4",
- "caniuse-lite": "^1.0.30001702",
- "fraction.js": "^4.3.7",
- "normalize-range": "^0.1.2",
- "picocolors": "^1.1.1",
- "postcss-value-parser": "^4.2.0"
- },
- "bin": {
- "autoprefixer": "bin/autoprefixer"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- },
- "peerDependencies": {
- "postcss": "^8.1.0"
- }
- },
- "node_modules/b4a": {
- "version": "1.6.7",
- "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz",
- "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==",
- "license": "Apache-2.0"
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "license": "MIT"
- },
- "node_modules/bare-events": {
- "version": "2.5.4",
- "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz",
- "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==",
- "license": "Apache-2.0",
- "optional": true
- },
- "node_modules/base64-js": {
- "version": "1.5.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
- "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/binary-extensions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/bindings": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
- "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
- "license": "MIT",
- "dependencies": {
- "file-uri-to-path": "1.0.0"
- }
- },
- "node_modules/birpc": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.2.0.tgz",
- "integrity": "sha512-1/22obknhoj56PcE+pZPp6AbWDdY55M81/ofpPW3Ltlp9Eh4zoFFLswvZmNpRTb790CY5tsNfgbYeNOqIARJfQ==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/boolbase": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
- "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
- "license": "ISC"
- },
- "node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
- "license": "MIT",
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/braces": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
- "license": "MIT",
- "dependencies": {
- "fill-range": "^7.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browserslist": {
- "version": "4.24.4",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
- "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "caniuse-lite": "^1.0.30001688",
- "electron-to-chromium": "^1.5.73",
- "node-releases": "^2.0.19",
- "update-browserslist-db": "^1.1.1"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- }
- },
- "node_modules/buffer": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
- "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "base64-js": "^1.3.1",
- "ieee754": "^1.2.1"
- }
- },
- "node_modules/buffer-crc32": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz",
- "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==",
- "license": "MIT",
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "license": "MIT"
- },
- "node_modules/bundle-name": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
- "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
- "license": "MIT",
- "dependencies": {
- "run-applescript": "^7.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/c12": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/c12/-/c12-3.0.2.tgz",
- "integrity": "sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==",
- "license": "MIT",
- "dependencies": {
- "chokidar": "^4.0.3",
- "confbox": "^0.1.8",
- "defu": "^6.1.4",
- "dotenv": "^16.4.7",
- "exsolve": "^1.0.0",
- "giget": "^2.0.0",
- "jiti": "^2.4.2",
- "ohash": "^2.0.5",
- "pathe": "^2.0.3",
- "perfect-debounce": "^1.0.0",
- "pkg-types": "^2.0.0",
- "rc9": "^2.1.2"
- },
- "peerDependencies": {
- "magicast": "^0.3.5"
- },
- "peerDependenciesMeta": {
- "magicast": {
- "optional": true
- }
- }
- },
- "node_modules/cac": {
- "version": "6.7.14",
- "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
- "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/caniuse-api": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
- "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.0.0",
- "caniuse-lite": "^1.0.0",
- "lodash.memoize": "^4.1.2",
- "lodash.uniq": "^4.5.0"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001706",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001706.tgz",
- "integrity": "sha512-3ZczoTApMAZwPKYWmwVbQMFpXBDds3/0VciVoUwPUbldlYyVLmRVuRs/PcUZtHpbLRpzzDvrvnFuREsGt6lUug==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "CC-BY-4.0"
- },
- "node_modules/change-case": {
- "version": "5.4.4",
- "resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz",
- "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==",
- "license": "MIT"
- },
- "node_modules/chokidar": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
- "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
- "license": "MIT",
- "dependencies": {
- "readdirp": "^4.0.1"
- },
- "engines": {
- "node": ">= 14.16.0"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- }
- },
- "node_modules/chownr": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
- "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/chrome-trace-event": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
- "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=6.0"
- }
- },
- "node_modules/citty": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz",
- "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==",
- "license": "MIT",
- "dependencies": {
- "consola": "^3.2.3"
- }
- },
- "node_modules/clipboardy": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz",
- "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==",
- "license": "MIT",
- "dependencies": {
- "execa": "^8.0.1",
- "is-wsl": "^3.1.0",
- "is64bit": "^2.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/cliui": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
- "license": "ISC",
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/cliui/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cliui/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/cliui/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "license": "MIT"
- },
- "node_modules/cliui/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cliui/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cliui/node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/cluster-key-slot": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz",
- "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "license": "MIT",
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "license": "MIT"
- },
- "node_modules/colord": {
- "version": "2.9.3",
- "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz",
- "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==",
- "license": "MIT"
- },
- "node_modules/colorette": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz",
- "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==",
- "license": "MIT"
- },
- "node_modules/commander": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
- "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==",
- "license": "MIT",
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/commondir": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
- "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
- "license": "MIT"
- },
- "node_modules/compatx": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/compatx/-/compatx-0.1.8.tgz",
- "integrity": "sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==",
- "license": "MIT"
- },
- "node_modules/compress-commons": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz",
- "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==",
- "license": "MIT",
- "dependencies": {
- "crc-32": "^1.2.0",
- "crc32-stream": "^6.0.0",
- "is-stream": "^2.0.1",
- "normalize-path": "^3.0.0",
- "readable-stream": "^4.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/compress-commons/node_modules/is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/confbox": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz",
- "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==",
- "license": "MIT"
- },
- "node_modules/consola": {
- "version": "3.4.2",
- "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz",
- "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==",
- "license": "MIT",
- "engines": {
- "node": "^14.18.0 || >=16.10.0"
- }
- },
- "node_modules/convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "license": "MIT"
- },
- "node_modules/cookie": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
- "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/cookie-es": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-2.0.0.tgz",
- "integrity": "sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==",
- "license": "MIT"
- },
- "node_modules/copy-anything": {
- "version": "3.0.5",
- "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz",
- "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==",
- "license": "MIT",
- "dependencies": {
- "is-what": "^4.1.8"
- },
- "engines": {
- "node": ">=12.13"
- },
- "funding": {
- "url": "https://github.com/sponsors/mesqueeb"
- }
- },
- "node_modules/core-util-is": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
- "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
- "license": "MIT"
- },
- "node_modules/crc-32": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
- "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
- "license": "Apache-2.0",
- "bin": {
- "crc32": "bin/crc32.njs"
- },
- "engines": {
- "node": ">=0.8"
- }
- },
- "node_modules/crc32-stream": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-6.0.0.tgz",
- "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==",
- "license": "MIT",
- "dependencies": {
- "crc-32": "^1.2.0",
- "readable-stream": "^4.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/croner": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/croner/-/croner-9.0.0.tgz",
- "integrity": "sha512-onMB0OkDjkXunhdW9htFjEhqrD54+M94i6ackoUkjHKbRnXdyEyKRelp4nJ1kAz32+s27jP1FsebpJCVl0BsvA==",
- "license": "MIT",
- "engines": {
- "node": ">=18.0"
- }
- },
- "node_modules/cross-spawn": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/cross-spawn/node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "license": "ISC"
- },
- "node_modules/cross-spawn/node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/crossws": {
- "version": "0.3.4",
- "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.3.4.tgz",
- "integrity": "sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==",
- "license": "MIT",
- "dependencies": {
- "uncrypto": "^0.1.3"
- }
- },
- "node_modules/css-declaration-sorter": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz",
- "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==",
- "license": "ISC",
- "engines": {
- "node": "^14 || ^16 || >=18"
- },
- "peerDependencies": {
- "postcss": "^8.0.9"
- }
- },
- "node_modules/css-select": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
- "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^6.1.0",
- "domhandler": "^5.0.2",
- "domutils": "^3.0.1",
- "nth-check": "^2.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/css-tree": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
- "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
- "license": "MIT",
- "dependencies": {
- "mdn-data": "2.0.30",
- "source-map-js": "^1.0.1"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
- }
- },
- "node_modules/css-what": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
- "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">= 6"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
- "node_modules/cssesc": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
- "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
- "license": "MIT",
- "bin": {
- "cssesc": "bin/cssesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/cssnano": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.0.6.tgz",
- "integrity": "sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==",
- "license": "MIT",
- "dependencies": {
- "cssnano-preset-default": "^7.0.6",
- "lilconfig": "^3.1.2"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/cssnano"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/cssnano-preset-default": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.6.tgz",
- "integrity": "sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "css-declaration-sorter": "^7.2.0",
- "cssnano-utils": "^5.0.0",
- "postcss-calc": "^10.0.2",
- "postcss-colormin": "^7.0.2",
- "postcss-convert-values": "^7.0.4",
- "postcss-discard-comments": "^7.0.3",
- "postcss-discard-duplicates": "^7.0.1",
- "postcss-discard-empty": "^7.0.0",
- "postcss-discard-overridden": "^7.0.0",
- "postcss-merge-longhand": "^7.0.4",
- "postcss-merge-rules": "^7.0.4",
- "postcss-minify-font-values": "^7.0.0",
- "postcss-minify-gradients": "^7.0.0",
- "postcss-minify-params": "^7.0.2",
- "postcss-minify-selectors": "^7.0.4",
- "postcss-normalize-charset": "^7.0.0",
- "postcss-normalize-display-values": "^7.0.0",
- "postcss-normalize-positions": "^7.0.0",
- "postcss-normalize-repeat-style": "^7.0.0",
- "postcss-normalize-string": "^7.0.0",
- "postcss-normalize-timing-functions": "^7.0.0",
- "postcss-normalize-unicode": "^7.0.2",
- "postcss-normalize-url": "^7.0.0",
- "postcss-normalize-whitespace": "^7.0.0",
- "postcss-ordered-values": "^7.0.1",
- "postcss-reduce-initial": "^7.0.2",
- "postcss-reduce-transforms": "^7.0.0",
- "postcss-svgo": "^7.0.1",
- "postcss-unique-selectors": "^7.0.3"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/cssnano-utils": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.0.tgz",
- "integrity": "sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==",
- "license": "MIT",
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/csso": {
- "version": "5.0.5",
- "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz",
- "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==",
- "license": "MIT",
- "dependencies": {
- "css-tree": "~2.2.0"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
- "npm": ">=7.0.0"
- }
- },
- "node_modules/csso/node_modules/css-tree": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz",
- "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==",
- "license": "MIT",
- "dependencies": {
- "mdn-data": "2.0.28",
- "source-map-js": "^1.0.1"
- },
- "engines": {
- "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0",
- "npm": ">=7.0.0"
- }
- },
- "node_modules/csso/node_modules/mdn-data": {
- "version": "2.0.28",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz",
- "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==",
- "license": "CC0-1.0"
- },
- "node_modules/csstype": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
- "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
- "license": "MIT"
- },
- "node_modules/db0": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/db0/-/db0-0.3.1.tgz",
- "integrity": "sha512-3RogPLE2LLq6t4YiFCREyl572aBjkfMvfwPyN51df00TbPbryL3XqBYuJ/j6mgPssPK8AKfYdLxizaO5UG10sA==",
- "license": "MIT",
- "peerDependencies": {
- "@electric-sql/pglite": "*",
- "@libsql/client": "*",
- "better-sqlite3": "*",
- "drizzle-orm": "*",
- "mysql2": "*",
- "sqlite3": "*"
- },
- "peerDependenciesMeta": {
- "@electric-sql/pglite": {
- "optional": true
- },
- "@libsql/client": {
- "optional": true
- },
- "better-sqlite3": {
- "optional": true
- },
- "drizzle-orm": {
- "optional": true
- },
- "mysql2": {
- "optional": true
- },
- "sqlite3": {
- "optional": true
- }
- }
- },
- "node_modules/debug": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
- "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
- "license": "MIT",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/deepmerge": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/default-browser": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz",
- "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==",
- "license": "MIT",
- "dependencies": {
- "bundle-name": "^4.1.0",
- "default-browser-id": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/default-browser-id": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz",
- "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/define-lazy-prop": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
- "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/defu": {
- "version": "6.1.4",
- "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz",
- "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==",
- "license": "MIT"
- },
- "node_modules/denque": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
- "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/depd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/destr": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz",
- "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==",
- "license": "MIT"
- },
- "node_modules/destroy": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8",
- "npm": "1.2.8000 || >= 1.4.16"
- }
- },
- "node_modules/detect-libc": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
- "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
- "license": "Apache-2.0",
- "bin": {
- "detect-libc": "bin/detect-libc.js"
- },
- "engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/devalue": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz",
- "integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==",
- "license": "MIT"
- },
- "node_modules/diff": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz",
- "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.3.1"
- }
- },
- "node_modules/dom-serializer": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
- "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
- "license": "MIT",
- "dependencies": {
- "domelementtype": "^2.3.0",
- "domhandler": "^5.0.2",
- "entities": "^4.2.0"
- },
- "funding": {
- "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
- }
- },
- "node_modules/domelementtype": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
- "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause"
- },
- "node_modules/domhandler": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
- "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "domelementtype": "^2.3.0"
- },
- "engines": {
- "node": ">= 4"
- },
- "funding": {
- "url": "https://github.com/fb55/domhandler?sponsor=1"
- }
- },
- "node_modules/domutils": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
- "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "dom-serializer": "^2.0.0",
- "domelementtype": "^2.3.0",
- "domhandler": "^5.0.3"
- },
- "funding": {
- "url": "https://github.com/fb55/domutils?sponsor=1"
- }
- },
- "node_modules/dot-prop": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-9.0.0.tgz",
- "integrity": "sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==",
- "license": "MIT",
- "dependencies": {
- "type-fest": "^4.18.2"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/dotenv": {
- "version": "16.4.7",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz",
- "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://dotenvx.com"
- }
- },
- "node_modules/duplexer": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz",
- "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==",
- "license": "MIT"
- },
- "node_modules/eastasianwidth": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
- "license": "MIT"
- },
- "node_modules/ee-first": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
- "license": "MIT"
- },
- "node_modules/electron-to-chromium": {
- "version": "1.5.123",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.123.tgz",
- "integrity": "sha512-refir3NlutEZqlKaBLK0tzlVLe5P2wDKS7UQt/3SpibizgsRAPOsqQC3ffw1nlv3ze5gjRQZYHoPymgVZkplFA==",
- "license": "ISC"
- },
- "node_modules/emoji-regex": {
- "version": "9.2.2",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
- "license": "MIT"
- },
- "node_modules/encodeurl": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
- "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/enhanced-resolve": {
- "version": "5.18.1",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
- "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/entities": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
- "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
- "license": "BSD-2-Clause",
- "engines": {
- "node": ">=0.12"
- },
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/error-stack-parser-es": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz",
- "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/errx": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/errx/-/errx-0.1.0.tgz",
- "integrity": "sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==",
- "license": "MIT"
- },
- "node_modules/es-module-lexer": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz",
- "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==",
- "license": "MIT"
- },
- "node_modules/esbuild": {
- "version": "0.25.1",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz",
- "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==",
- "hasInstallScript": true,
- "license": "MIT",
- "bin": {
- "esbuild": "bin/esbuild"
- },
- "engines": {
- "node": ">=18"
- },
- "optionalDependencies": {
- "@esbuild/aix-ppc64": "0.25.1",
- "@esbuild/android-arm": "0.25.1",
- "@esbuild/android-arm64": "0.25.1",
- "@esbuild/android-x64": "0.25.1",
- "@esbuild/darwin-arm64": "0.25.1",
- "@esbuild/darwin-x64": "0.25.1",
- "@esbuild/freebsd-arm64": "0.25.1",
- "@esbuild/freebsd-x64": "0.25.1",
- "@esbuild/linux-arm": "0.25.1",
- "@esbuild/linux-arm64": "0.25.1",
- "@esbuild/linux-ia32": "0.25.1",
- "@esbuild/linux-loong64": "0.25.1",
- "@esbuild/linux-mips64el": "0.25.1",
- "@esbuild/linux-ppc64": "0.25.1",
- "@esbuild/linux-riscv64": "0.25.1",
- "@esbuild/linux-s390x": "0.25.1",
- "@esbuild/linux-x64": "0.25.1",
- "@esbuild/netbsd-arm64": "0.25.1",
- "@esbuild/netbsd-x64": "0.25.1",
- "@esbuild/openbsd-arm64": "0.25.1",
- "@esbuild/openbsd-x64": "0.25.1",
- "@esbuild/sunos-x64": "0.25.1",
- "@esbuild/win32-arm64": "0.25.1",
- "@esbuild/win32-ia32": "0.25.1",
- "@esbuild/win32-x64": "0.25.1"
- }
- },
- "node_modules/escalade": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-html": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
- "license": "MIT"
- },
- "node_modules/escape-string-regexp": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
- "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/eslint-scope": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
- "dev": true,
- "license": "BSD-2-Clause",
- "peer": true,
- "dependencies": {
- "esrecurse": "^4.3.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/esrecurse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
- "license": "BSD-2-Clause",
- "peer": true,
- "dependencies": {
- "estraverse": "^5.2.0"
- },
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/esrecurse/node_modules/estraverse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
- "dev": true,
- "license": "BSD-2-Clause",
- "peer": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estraverse": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
- "dev": true,
- "license": "BSD-2-Clause",
- "peer": true,
- "engines": {
- "node": ">=4.0"
- }
- },
- "node_modules/estree-walker": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
- "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "^1.0.0"
- }
- },
- "node_modules/etag": {
- "version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/event-target-shim": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
- "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/events": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
- "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
- "license": "MIT",
- "engines": {
- "node": ">=0.8.x"
- }
- },
- "node_modules/execa": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
- "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==",
- "license": "MIT",
- "dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^8.0.1",
- "human-signals": "^5.0.0",
- "is-stream": "^3.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^5.1.0",
- "onetime": "^6.0.0",
- "signal-exit": "^4.1.0",
- "strip-final-newline": "^3.0.0"
- },
- "engines": {
- "node": ">=16.17"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/exsolve": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/exsolve/-/exsolve-1.0.4.tgz",
- "integrity": "sha512-xsZH6PXaER4XoV+NiT7JHp1bJodJVT+cxeSH1G0f0tlT0lJqYuHUP3bUx2HtfTDvOagMINYp8rsqusxud3RXhw==",
- "license": "MIT"
- },
- "node_modules/externality": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.2.tgz",
- "integrity": "sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==",
- "license": "MIT",
- "dependencies": {
- "enhanced-resolve": "^5.14.1",
- "mlly": "^1.3.0",
- "pathe": "^1.1.1",
- "ufo": "^1.1.2"
- }
- },
- "node_modules/externality/node_modules/pathe": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
- "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
- "license": "MIT"
- },
- "node_modules/fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "license": "MIT"
- },
- "node_modules/fast-fifo": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
- "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
- "license": "MIT"
- },
- "node_modules/fast-glob": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
- "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
- "license": "MIT",
- "dependencies": {
- "@nodelib/fs.stat": "^2.0.2",
- "@nodelib/fs.walk": "^1.2.3",
- "glob-parent": "^5.1.2",
- "merge2": "^1.3.0",
- "micromatch": "^4.0.8"
- },
- "engines": {
- "node": ">=8.6.0"
- }
- },
- "node_modules/fast-npm-meta": {
- "version": "0.3.1",
- "resolved": "https://registry.npmjs.org/fast-npm-meta/-/fast-npm-meta-0.3.1.tgz",
- "integrity": "sha512-W9gVhqRyz2O3j20I0nFmYEyaMC/046oaMRxxAQ0w6noakfbhpLmlIXmnnqSOmVVuJZ6x5hOPVwlv7PocuawZsw==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/fast-uri": {
- "version": "3.0.6",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz",
- "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fastify"
- },
- {
- "type": "opencollective",
- "url": "https://opencollective.com/fastify"
- }
- ],
- "license": "BSD-3-Clause",
- "peer": true
- },
- "node_modules/fastq": {
- "version": "1.19.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
- "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
- "license": "ISC",
- "dependencies": {
- "reusify": "^1.0.4"
- }
- },
- "node_modules/fdir": {
- "version": "6.4.3",
- "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz",
- "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==",
- "license": "MIT",
- "peerDependencies": {
- "picomatch": "^3 || ^4"
- },
- "peerDependenciesMeta": {
- "picomatch": {
- "optional": true
- }
- }
- },
- "node_modules/file-uri-to-path": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
- "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
- "license": "MIT"
- },
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
- "license": "MIT",
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/foreground-child": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
- "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
- "license": "ISC",
- "dependencies": {
- "cross-spawn": "^7.0.6",
- "signal-exit": "^4.0.1"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/fraction.js": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz",
- "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==",
- "license": "MIT",
- "engines": {
- "node": "*"
- },
- "funding": {
- "type": "patreon",
- "url": "https://github.com/sponsors/rawify"
- }
- },
- "node_modules/fresh": {
- "version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/fuse.js": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-7.1.0.tgz",
- "integrity": "sha512-trLf4SzuuUxfusZADLINj+dE8clK1frKdmqiJNb1Es75fmI5oY6X2mxLVUciLLjxqw/xr72Dhy+lER6dGd02FQ==",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "license": "ISC",
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/get-port-please": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz",
- "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==",
- "license": "MIT"
- },
- "node_modules/get-stream": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz",
- "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==",
- "license": "MIT",
- "engines": {
- "node": ">=16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/giget": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/giget/-/giget-2.0.0.tgz",
- "integrity": "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==",
- "license": "MIT",
- "dependencies": {
- "citty": "^0.1.6",
- "consola": "^3.4.0",
- "defu": "^6.1.4",
- "node-fetch-native": "^1.6.6",
- "nypm": "^0.6.0",
- "pathe": "^2.0.3"
- },
- "bin": {
- "giget": "dist/cli.mjs"
- }
- },
- "node_modules/git-up": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/git-up/-/git-up-8.0.1.tgz",
- "integrity": "sha512-2XFu1uNZMSjkyetaF+8rqn6P0XqpMq/C+2ycjI6YwrIKcszZ5/WR4UubxjN0lILOKqLkLaHDaCr2B6fP1cke6g==",
- "license": "MIT",
- "dependencies": {
- "is-ssh": "^1.4.0",
- "parse-url": "^9.2.0"
- }
- },
- "node_modules/git-url-parse": {
- "version": "16.0.1",
- "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-16.0.1.tgz",
- "integrity": "sha512-mcD36GrhAzX5JVOsIO52qNpgRyFzYWRbU1VSRFCvJt1IJvqfvH427wWw/CFqkWvjVPtdG5VTx4MKUeC5GeFPDQ==",
- "license": "MIT",
- "dependencies": {
- "git-up": "^8.0.0"
- }
- },
- "node_modules/glob": {
- "version": "10.4.5",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
- "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
- "license": "ISC",
- "dependencies": {
- "foreground-child": "^3.1.0",
- "jackspeak": "^3.1.2",
- "minimatch": "^9.0.4",
- "minipass": "^7.1.2",
- "package-json-from-dist": "^1.0.0",
- "path-scurry": "^1.11.1"
- },
- "bin": {
- "glob": "dist/esm/bin.mjs"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/glob-to-regexp": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
- "dev": true,
- "license": "BSD-2-Clause",
- "peer": true
- },
- "node_modules/global-directory": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz",
- "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==",
- "license": "MIT",
- "dependencies": {
- "ini": "4.1.1"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/globby": {
- "version": "14.1.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz",
- "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==",
- "license": "MIT",
- "dependencies": {
- "@sindresorhus/merge-streams": "^2.1.0",
- "fast-glob": "^3.3.3",
- "ignore": "^7.0.3",
- "path-type": "^6.0.0",
- "slash": "^5.1.0",
- "unicorn-magic": "^0.3.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "license": "ISC"
- },
- "node_modules/gzip-size": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz",
- "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==",
- "license": "MIT",
- "dependencies": {
- "duplexer": "^0.1.2"
- },
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/h3": {
- "version": "1.15.1",
- "resolved": "https://registry.npmjs.org/h3/-/h3-1.15.1.tgz",
- "integrity": "sha512-+ORaOBttdUm1E2Uu/obAyCguiI7MbBvsLTndc3gyK3zU+SYLoZXlyCP9Xgy0gikkGufFLTZXCXD6+4BsufnmHA==",
- "license": "MIT",
- "dependencies": {
- "cookie-es": "^1.2.2",
- "crossws": "^0.3.3",
- "defu": "^6.1.4",
- "destr": "^2.0.3",
- "iron-webcrypto": "^1.2.1",
- "node-mock-http": "^1.0.0",
- "radix3": "^1.1.2",
- "ufo": "^1.5.4",
- "uncrypto": "^0.1.3"
- }
- },
- "node_modules/h3/node_modules/cookie-es": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz",
- "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==",
- "license": "MIT"
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
- "license": "MIT",
- "dependencies": {
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/hookable": {
- "version": "5.5.3",
- "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
- "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
- "license": "MIT"
- },
- "node_modules/http-errors": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
- "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
- "license": "MIT",
- "dependencies": {
- "depd": "2.0.0",
- "inherits": "2.0.4",
- "setprototypeof": "1.2.0",
- "statuses": "2.0.1",
- "toidentifier": "1.0.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/http-shutdown": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz",
- "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==",
- "license": "MIT",
- "engines": {
- "iojs": ">= 1.0.0",
- "node": ">= 0.12.0"
- }
- },
- "node_modules/https-proxy-agent": {
- "version": "7.0.6",
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
- "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
- "license": "MIT",
- "dependencies": {
- "agent-base": "^7.1.2",
- "debug": "4"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/httpxy": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/httpxy/-/httpxy-0.1.7.tgz",
- "integrity": "sha512-pXNx8gnANKAndgga5ahefxc++tJvNL87CXoRwxn1cJE2ZkWEojF3tNfQIEhZX/vfpt+wzeAzpUI4qkediX1MLQ==",
- "license": "MIT"
- },
- "node_modules/human-signals": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz",
- "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==",
- "license": "Apache-2.0",
- "engines": {
- "node": ">=16.17.0"
- }
- },
- "node_modules/ieee754": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
- "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "BSD-3-Clause"
- },
- "node_modules/ignore": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz",
- "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==",
- "license": "MIT",
- "engines": {
- "node": ">= 4"
- }
- },
- "node_modules/image-meta": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/image-meta/-/image-meta-0.2.1.tgz",
- "integrity": "sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==",
- "license": "MIT"
- },
- "node_modules/impound": {
- "version": "0.2.2",
- "resolved": "https://registry.npmjs.org/impound/-/impound-0.2.2.tgz",
- "integrity": "sha512-9CNg+Ly8QjH4FwCUoE9nl1zeqY1NPK1s1P6Btp4L8lJxn8oZLN/0p6RZhitnyEL0BnVWrcVPfbs0Q3x+O/ucHg==",
- "license": "MIT",
- "dependencies": {
- "@rollup/pluginutils": "^5.1.4",
- "mlly": "^1.7.4",
- "mocked-exports": "^0.1.0",
- "pathe": "^2.0.3",
- "unplugin": "^2.2.0"
- }
- },
- "node_modules/index-to-position": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-1.0.0.tgz",
- "integrity": "sha512-sCO7uaLVhRJ25vz1o8s9IFM3nVS4DkuQnyjMwiQPKvQuBYBDmb8H7zx8ki7nVh4HJQOdVWebyvLE0qt+clruxA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "license": "ISC"
- },
- "node_modules/ini": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz",
- "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==",
- "license": "ISC",
- "engines": {
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
- }
- },
- "node_modules/ioredis": {
- "version": "5.6.0",
- "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.6.0.tgz",
- "integrity": "sha512-tBZlIIWbndeWBWCXWZiqtOF/yxf6yZX3tAlTJ7nfo5jhd6dctNxF7QnYlZLZ1a0o0pDoen7CgZqO+zjNaFbJAg==",
- "license": "MIT",
- "dependencies": {
- "@ioredis/commands": "^1.1.1",
- "cluster-key-slot": "^1.1.0",
- "debug": "^4.3.4",
- "denque": "^2.1.0",
- "lodash.defaults": "^4.2.0",
- "lodash.isarguments": "^3.1.0",
- "redis-errors": "^1.2.0",
- "redis-parser": "^3.0.0",
- "standard-as-callback": "^2.1.0"
- },
- "engines": {
- "node": ">=12.22.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/ioredis"
- }
- },
- "node_modules/iron-webcrypto": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz",
- "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/brc-dd"
- }
- },
- "node_modules/is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-core-module": {
- "version": "2.16.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
- "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
- "license": "MIT",
- "dependencies": {
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-docker": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
- "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
- "license": "MIT",
- "bin": {
- "is-docker": "cli.js"
- },
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-inside-container": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
- "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
- "license": "MIT",
- "dependencies": {
- "is-docker": "^3.0.0"
- },
- "bin": {
- "is-inside-container": "cli.js"
- },
- "engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-installed-globally": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-1.0.0.tgz",
- "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==",
- "license": "MIT",
- "dependencies": {
- "global-directory": "^4.0.1",
- "is-path-inside": "^4.0.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-module": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
- "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==",
- "license": "MIT"
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "license": "MIT",
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-path-inside": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz",
- "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-reference": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
- "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "*"
- }
- },
- "node_modules/is-ssh": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.1.tgz",
- "integrity": "sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==",
- "license": "MIT",
- "dependencies": {
- "protocols": "^2.0.1"
- }
- },
- "node_modules/is-stream": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
- "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
- "license": "MIT",
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is-what": {
- "version": "4.1.16",
- "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz",
- "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==",
- "license": "MIT",
- "engines": {
- "node": ">=12.13"
- },
- "funding": {
- "url": "https://github.com/sponsors/mesqueeb"
- }
- },
- "node_modules/is-wsl": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
- "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==",
- "license": "MIT",
- "dependencies": {
- "is-inside-container": "^1.0.0"
- },
- "engines": {
- "node": ">=16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/is64bit": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz",
- "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==",
- "license": "MIT",
- "dependencies": {
- "system-architecture": "^0.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/isarray": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
- "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
- "license": "MIT"
- },
- "node_modules/isexe": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
- "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
- "license": "ISC",
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/jackspeak": {
- "version": "3.4.3",
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
- "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
- "license": "BlueOak-1.0.0",
- "dependencies": {
- "@isaacs/cliui": "^8.0.2"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- },
- "optionalDependencies": {
- "@pkgjs/parseargs": "^0.11.0"
- }
- },
- "node_modules/jest-worker": {
- "version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@types/node": "*",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- }
- },
- "node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/jiti": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
- "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
- "license": "MIT",
- "bin": {
- "jiti": "lib/jiti-cli.mjs"
- }
- },
- "node_modules/js-levenshtein": {
- "version": "1.1.6",
- "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz",
- "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "license": "MIT"
- },
- "node_modules/js-yaml": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
- "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
- "license": "MIT",
- "dependencies": {
- "argparse": "^2.0.1"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsesc": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
- "license": "MIT",
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
- "license": "MIT"
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "license": "MIT",
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/klona": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
- "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/knitwork": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.2.0.tgz",
- "integrity": "sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==",
- "license": "MIT"
- },
- "node_modules/kolorist": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz",
- "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/launch-editor": {
- "version": "2.10.0",
- "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.10.0.tgz",
- "integrity": "sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==",
- "license": "MIT",
- "dependencies": {
- "picocolors": "^1.0.0",
- "shell-quote": "^1.8.1"
- }
- },
- "node_modules/lazystream": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz",
- "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==",
- "license": "MIT",
- "dependencies": {
- "readable-stream": "^2.0.5"
- },
- "engines": {
- "node": ">= 0.6.3"
- }
- },
- "node_modules/lazystream/node_modules/readable-stream": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
- "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
- "license": "MIT",
- "dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- }
- },
- "node_modules/lazystream/node_modules/safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
- "license": "MIT"
- },
- "node_modules/lazystream/node_modules/string_decoder": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
- "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.1.0"
- }
- },
- "node_modules/lilconfig": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz",
- "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==",
- "license": "MIT",
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antonk52"
- }
- },
- "node_modules/listhen": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.9.0.tgz",
- "integrity": "sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==",
- "license": "MIT",
- "dependencies": {
- "@parcel/watcher": "^2.4.1",
- "@parcel/watcher-wasm": "^2.4.1",
- "citty": "^0.1.6",
- "clipboardy": "^4.0.0",
- "consola": "^3.2.3",
- "crossws": ">=0.2.0 <0.4.0",
- "defu": "^6.1.4",
- "get-port-please": "^3.1.2",
- "h3": "^1.12.0",
- "http-shutdown": "^1.2.2",
- "jiti": "^2.1.2",
- "mlly": "^1.7.1",
- "node-forge": "^1.3.1",
- "pathe": "^1.1.2",
- "std-env": "^3.7.0",
- "ufo": "^1.5.4",
- "untun": "^0.1.3",
- "uqr": "^0.1.2"
- },
- "bin": {
- "listen": "bin/listhen.mjs",
- "listhen": "bin/listhen.mjs"
- }
- },
- "node_modules/listhen/node_modules/pathe": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
- "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
- "license": "MIT"
- },
- "node_modules/loader-runner": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
- "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=6.11.5"
- }
- },
- "node_modules/local-pkg": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-1.1.1.tgz",
- "integrity": "sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==",
- "license": "MIT",
- "dependencies": {
- "mlly": "^1.7.4",
- "pkg-types": "^2.0.1",
- "quansync": "^0.2.8"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/lodash": {
- "version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
- "license": "MIT"
- },
- "node_modules/lodash.defaults": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
- "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==",
- "license": "MIT"
- },
- "node_modules/lodash.isarguments": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
- "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==",
- "license": "MIT"
- },
- "node_modules/lodash.memoize": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
- "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
- "license": "MIT"
- },
- "node_modules/lodash.uniq": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
- "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==",
- "license": "MIT"
- },
- "node_modules/lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "license": "ISC",
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/magic-string": {
- "version": "0.30.17",
- "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
- "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
- "license": "MIT",
- "dependencies": {
- "@jridgewell/sourcemap-codec": "^1.5.0"
- }
- },
- "node_modules/magic-string-ast": {
- "version": "0.7.1",
- "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-0.7.1.tgz",
- "integrity": "sha512-ub9iytsEbT7Yw/Pd29mSo/cNQpaEu67zR1VVcXDiYjSFwzeBxNdTd0FMnSslLQXiRj8uGPzwsaoefrMD5XAmdw==",
- "license": "MIT",
- "dependencies": {
- "magic-string": "^0.30.17"
- },
- "engines": {
- "node": ">=16.14.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sxzz"
- }
- },
- "node_modules/magicast": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
- "integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/parser": "^7.25.4",
- "@babel/types": "^7.25.4",
- "source-map-js": "^1.2.0"
- }
- },
- "node_modules/mdn-data": {
- "version": "2.0.30",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz",
- "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
- "license": "CC0-1.0"
- },
- "node_modules/merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "license": "MIT"
- },
- "node_modules/merge2": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
- "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
- "license": "MIT",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/micromatch": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
- "license": "MIT",
- "dependencies": {
- "braces": "^3.0.3",
- "picomatch": "^2.3.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/micromatch/node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "license": "MIT",
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/mime": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.6.tgz",
- "integrity": "sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==",
- "funding": [
- "https://github.com/sponsors/broofa"
- ],
- "license": "MIT",
- "bin": {
- "mime": "bin/cli.js"
- },
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/mime-db": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "mime-db": "1.52.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mimic-fn": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
- "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/minimatch": {
- "version": "9.0.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=16 || 14 >=14.17"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/minipass": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
- "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
- "license": "ISC",
- "engines": {
- "node": ">=16 || 14 >=14.17"
- }
- },
- "node_modules/minizlib": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz",
- "integrity": "sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==",
- "license": "MIT",
- "dependencies": {
- "minipass": "^7.0.4",
- "rimraf": "^5.0.5"
- },
- "engines": {
- "node": ">= 18"
- }
- },
- "node_modules/mitt": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
- "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
- "license": "MIT"
- },
- "node_modules/mkdirp": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
- "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
- "license": "MIT",
- "bin": {
- "mkdirp": "dist/cjs/src/bin.js"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/mlly": {
- "version": "1.7.4",
- "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.4.tgz",
- "integrity": "sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==",
- "license": "MIT",
- "dependencies": {
- "acorn": "^8.14.0",
- "pathe": "^2.0.1",
- "pkg-types": "^1.3.0",
- "ufo": "^1.5.4"
- }
- },
- "node_modules/mlly/node_modules/pkg-types": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
- "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
- "license": "MIT",
- "dependencies": {
- "confbox": "^0.1.8",
- "mlly": "^1.7.4",
- "pathe": "^2.0.1"
- }
- },
- "node_modules/mocked-exports": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/mocked-exports/-/mocked-exports-0.1.1.tgz",
- "integrity": "sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==",
- "license": "MIT"
- },
- "node_modules/mrmime": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
- "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "license": "MIT"
- },
- "node_modules/nanoid": {
- "version": "5.1.5",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.1.5.tgz",
- "integrity": "sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "bin": {
- "nanoid": "bin/nanoid.js"
- },
- "engines": {
- "node": "^18 || >=20"
- }
- },
- "node_modules/nanotar": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/nanotar/-/nanotar-0.2.0.tgz",
- "integrity": "sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==",
- "license": "MIT"
- },
- "node_modules/neo-async": {
- "version": "2.6.2",
- "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
- "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
- "dev": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/nitropack": {
- "version": "2.11.7",
- "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-2.11.7.tgz",
- "integrity": "sha512-ghqLa3Q4X9qaQiUyspWxxoU1fY2nwfSJqhOH+COqyCp7Vgj4oM1EM1L0YNSQUF16T2tAoOWg8woXGq0EH5Y6wQ==",
- "license": "MIT",
- "dependencies": {
- "@cloudflare/kv-asset-handler": "^0.4.0",
- "@netlify/functions": "^3.0.2",
- "@rollup/plugin-alias": "^5.1.1",
- "@rollup/plugin-commonjs": "^28.0.3",
- "@rollup/plugin-inject": "^5.0.5",
- "@rollup/plugin-json": "^6.1.0",
- "@rollup/plugin-node-resolve": "^16.0.1",
- "@rollup/plugin-replace": "^6.0.2",
- "@rollup/plugin-terser": "^0.4.4",
- "@vercel/nft": "^0.29.2",
- "archiver": "^7.0.1",
- "c12": "^3.0.2",
- "chokidar": "^4.0.3",
- "citty": "^0.1.6",
- "compatx": "^0.1.8",
- "confbox": "^0.2.1",
- "consola": "^3.4.2",
- "cookie-es": "^2.0.0",
- "croner": "^9.0.0",
- "crossws": "^0.3.4",
- "db0": "^0.3.1",
- "defu": "^6.1.4",
- "destr": "^2.0.3",
- "dot-prop": "^9.0.0",
- "esbuild": "^0.25.1",
- "escape-string-regexp": "^5.0.0",
- "etag": "^1.8.1",
- "exsolve": "^1.0.4",
- "globby": "^14.1.0",
- "gzip-size": "^7.0.0",
- "h3": "^1.15.1",
- "hookable": "^5.5.3",
- "httpxy": "^0.1.7",
- "ioredis": "^5.6.0",
- "jiti": "^2.4.2",
- "klona": "^2.0.6",
- "knitwork": "^1.2.0",
- "listhen": "^1.9.0",
- "magic-string": "^0.30.17",
- "magicast": "^0.3.5",
- "mime": "^4.0.6",
- "mlly": "^1.7.4",
- "node-fetch-native": "^1.6.6",
- "node-mock-http": "^1.0.0",
- "ofetch": "^1.4.1",
- "ohash": "^2.0.11",
- "openapi-typescript": "^7.6.1",
- "pathe": "^2.0.3",
- "perfect-debounce": "^1.0.0",
- "pkg-types": "^2.1.0",
- "pretty-bytes": "^6.1.1",
- "radix3": "^1.1.2",
- "rollup": "^4.36.0",
- "rollup-plugin-visualizer": "^5.14.0",
- "scule": "^1.3.0",
- "semver": "^7.7.1",
- "serve-placeholder": "^2.0.2",
- "serve-static": "^1.16.2",
- "source-map": "^0.7.4",
- "std-env": "^3.8.1",
- "ufo": "^1.5.4",
- "ultrahtml": "^1.5.3",
- "uncrypto": "^0.1.3",
- "unctx": "^2.4.1",
- "unenv": "^2.0.0-rc.15",
- "unimport": "^4.1.2",
- "unplugin-utils": "^0.2.4",
- "unstorage": "^1.15.0",
- "untyped": "^2.0.0",
- "unwasm": "^0.3.9",
- "youch": "^4.1.0-beta.6",
- "youch-core": "^0.3.2"
- },
- "bin": {
- "nitro": "dist/cli/index.mjs",
- "nitropack": "dist/cli/index.mjs"
- },
- "engines": {
- "node": "^16.11.0 || >=17.0.0"
- },
- "peerDependencies": {
- "xml2js": "^0.6.2"
- },
- "peerDependenciesMeta": {
- "xml2js": {
- "optional": true
- }
- }
- },
- "node_modules/nitropack/node_modules/confbox": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.2.1.tgz",
- "integrity": "sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==",
- "license": "MIT"
- },
- "node_modules/node-addon-api": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
- "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
- "license": "MIT"
- },
- "node_modules/node-fetch": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
- "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
- "license": "MIT",
- "dependencies": {
- "whatwg-url": "^5.0.0"
- },
- "engines": {
- "node": "4.x || >=6.0.0"
- },
- "peerDependencies": {
- "encoding": "^0.1.0"
- },
- "peerDependenciesMeta": {
- "encoding": {
- "optional": true
- }
- }
- },
- "node_modules/node-fetch-native": {
- "version": "1.6.6",
- "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.6.tgz",
- "integrity": "sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==",
- "license": "MIT"
- },
- "node_modules/node-forge": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
- "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==",
- "license": "(BSD-3-Clause OR GPL-2.0)",
- "engines": {
- "node": ">= 6.13.0"
- }
- },
- "node_modules/node-gyp-build": {
- "version": "4.8.4",
- "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
- "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
- "license": "MIT",
- "bin": {
- "node-gyp-build": "bin.js",
- "node-gyp-build-optional": "optional.js",
- "node-gyp-build-test": "build-test.js"
- }
- },
- "node_modules/node-mock-http": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/node-mock-http/-/node-mock-http-1.0.0.tgz",
- "integrity": "sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==",
- "license": "MIT"
- },
- "node_modules/node-releases": {
- "version": "2.0.19",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
- "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
- "license": "MIT"
- },
- "node_modules/nopt": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz",
- "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==",
- "license": "ISC",
- "dependencies": {
- "abbrev": "^3.0.0"
- },
- "bin": {
- "nopt": "bin/nopt.js"
- },
- "engines": {
- "node": "^18.17.0 || >=20.5.0"
- }
- },
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/normalize-range": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
- "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-path": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
- "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
- "license": "MIT",
- "dependencies": {
- "path-key": "^4.0.0"
- },
- "engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/npm-run-path/node_modules/path-key": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
- "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/nth-check": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
- "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "boolbase": "^1.0.0"
- },
- "funding": {
- "url": "https://github.com/fb55/nth-check?sponsor=1"
- }
- },
- "node_modules/nuxt": {
- "version": "3.16.1",
- "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.16.1.tgz",
- "integrity": "sha512-V0odAW9Yo8s58yGnSy0RuX+rQwz0wtQp3eOgMTsh1YDDZdIIYZmAlZaLypNeieO/mbmvOOUcnuRyIGIRrF4+5A==",
- "license": "MIT",
- "dependencies": {
- "@nuxt/cli": "^3.23.1",
- "@nuxt/devalue": "^2.0.2",
- "@nuxt/devtools": "^2.3.0",
- "@nuxt/kit": "3.16.1",
- "@nuxt/schema": "3.16.1",
- "@nuxt/telemetry": "^2.6.6",
- "@nuxt/vite-builder": "3.16.1",
- "@oxc-parser/wasm": "^0.60.0",
- "@unhead/vue": "^2.0.0-rc.13",
- "@vue/shared": "^3.5.13",
- "c12": "^3.0.2",
- "chokidar": "^4.0.3",
- "compatx": "^0.1.8",
- "consola": "^3.4.2",
- "cookie-es": "^2.0.0",
- "defu": "^6.1.4",
- "destr": "^2.0.3",
- "devalue": "^5.1.1",
- "errx": "^0.1.0",
- "esbuild": "^0.25.1",
- "escape-string-regexp": "^5.0.0",
- "estree-walker": "^3.0.3",
- "exsolve": "^1.0.4",
- "globby": "^14.1.0",
- "h3": "^1.15.1",
- "hookable": "^5.5.3",
- "ignore": "^7.0.3",
- "impound": "^0.2.2",
- "jiti": "^2.4.2",
- "klona": "^2.0.6",
- "knitwork": "^1.2.0",
- "magic-string": "^0.30.17",
- "mlly": "^1.7.4",
- "mocked-exports": "^0.1.1",
- "nanotar": "^0.2.0",
- "nitropack": "^2.11.7",
- "nypm": "^0.6.0",
- "ofetch": "^1.4.1",
- "ohash": "^2.0.11",
- "on-change": "^5.0.1",
- "oxc-parser": "^0.56.3",
- "pathe": "^2.0.3",
- "perfect-debounce": "^1.0.0",
- "pkg-types": "^2.1.0",
- "radix3": "^1.1.2",
- "scule": "^1.3.0",
- "semver": "^7.7.1",
- "std-env": "^3.8.1",
- "strip-literal": "^3.0.0",
- "tinyglobby": "0.2.12",
- "ufo": "^1.5.4",
- "ultrahtml": "^1.5.3",
- "uncrypto": "^0.1.3",
- "unctx": "^2.4.1",
- "unimport": "^4.1.2",
- "unplugin": "^2.2.1",
- "unplugin-vue-router": "^0.12.0",
- "unstorage": "^1.15.0",
- "untyped": "^2.0.0",
- "vue": "^3.5.13",
- "vue-bundle-renderer": "^2.1.1",
- "vue-devtools-stub": "^0.1.0",
- "vue-router": "^4.5.0"
- },
- "bin": {
- "nuxi": "bin/nuxt.mjs",
- "nuxt": "bin/nuxt.mjs"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0.0"
- },
- "peerDependencies": {
- "@parcel/watcher": "^2.1.0",
- "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0"
- },
- "peerDependenciesMeta": {
- "@parcel/watcher": {
- "optional": true
- },
- "@types/node": {
- "optional": true
- }
- }
- },
- "node_modules/nuxt-app": {
- "resolved": "",
- "link": true
- },
- "node_modules/nypm": {
- "version": "0.6.0",
- "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.6.0.tgz",
- "integrity": "sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==",
- "license": "MIT",
- "dependencies": {
- "citty": "^0.1.6",
- "consola": "^3.4.0",
- "pathe": "^2.0.3",
- "pkg-types": "^2.0.0",
- "tinyexec": "^0.3.2"
- },
- "bin": {
- "nypm": "dist/cli.mjs"
- },
- "engines": {
- "node": "^14.16.0 || >=16.10.0"
- }
- },
- "node_modules/ofetch": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.4.1.tgz",
- "integrity": "sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==",
- "license": "MIT",
- "dependencies": {
- "destr": "^2.0.3",
- "node-fetch-native": "^1.6.4",
- "ufo": "^1.5.4"
- }
- },
- "node_modules/ohash": {
- "version": "2.0.11",
- "resolved": "https://registry.npmjs.org/ohash/-/ohash-2.0.11.tgz",
- "integrity": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==",
- "license": "MIT"
- },
- "node_modules/on-change": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/on-change/-/on-change-5.0.1.tgz",
- "integrity": "sha512-n7THCP7RkyReRSLkJb8kUWoNsxUIBxTkIp3JKno+sEz6o/9AJ3w3P9fzQkITEkMwyTKJjZciF3v/pVoouxZZMg==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/on-change?sponsor=1"
- }
- },
- "node_modules/on-finished": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "license": "MIT",
- "dependencies": {
- "ee-first": "1.1.1"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/onetime": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
- "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
- "license": "MIT",
- "dependencies": {
- "mimic-fn": "^4.0.0"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/open": {
- "version": "8.4.2",
- "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
- "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
- "license": "MIT",
- "dependencies": {
- "define-lazy-prop": "^2.0.0",
- "is-docker": "^2.1.1",
- "is-wsl": "^2.2.0"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/open/node_modules/is-docker": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
- "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
- "license": "MIT",
- "bin": {
- "is-docker": "cli.js"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/open/node_modules/is-wsl": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
- "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
- "license": "MIT",
- "dependencies": {
- "is-docker": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/openapi-typescript": {
- "version": "7.6.1",
- "resolved": "https://registry.npmjs.org/openapi-typescript/-/openapi-typescript-7.6.1.tgz",
- "integrity": "sha512-F7RXEeo/heF3O9lOXo2bNjCOtfp7u+D6W3a3VNEH2xE6v+fxLtn5nq0uvUcA1F5aT+CMhNeC5Uqtg5tlXFX/ag==",
- "license": "MIT",
- "dependencies": {
- "@redocly/openapi-core": "^1.28.0",
- "ansi-colors": "^4.1.3",
- "change-case": "^5.4.4",
- "parse-json": "^8.1.0",
- "supports-color": "^9.4.0",
- "yargs-parser": "^21.1.1"
- },
- "bin": {
- "openapi-typescript": "bin/cli.js"
- },
- "peerDependencies": {
- "typescript": "^5.x"
- }
- },
- "node_modules/oxc-parser": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.56.5.tgz",
- "integrity": "sha512-MNT32sqiTFeSbQZP2WZIRQ/mlIpNNq4sua+/4hBG4qT5aef2iQe+1/BjezZURPlvucZeSfN1Y6b60l7OgBdyUA==",
- "license": "MIT",
- "dependencies": {
- "@oxc-project/types": "^0.56.5"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/Boshen"
- },
- "optionalDependencies": {
- "@oxc-parser/binding-darwin-arm64": "0.56.5",
- "@oxc-parser/binding-darwin-x64": "0.56.5",
- "@oxc-parser/binding-linux-arm-gnueabihf": "0.56.5",
- "@oxc-parser/binding-linux-arm64-gnu": "0.56.5",
- "@oxc-parser/binding-linux-arm64-musl": "0.56.5",
- "@oxc-parser/binding-linux-x64-gnu": "0.56.5",
- "@oxc-parser/binding-linux-x64-musl": "0.56.5",
- "@oxc-parser/binding-wasm32-wasi": "0.56.5",
- "@oxc-parser/binding-win32-arm64-msvc": "0.56.5",
- "@oxc-parser/binding-win32-x64-msvc": "0.56.5"
- }
- },
- "node_modules/oxc-parser/node_modules/@oxc-project/types": {
- "version": "0.56.5",
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.56.5.tgz",
- "integrity": "sha512-skY3kOJwp22W4RkaadH1hZ3hqFHjkRrIIE0uQ4VUg+/Chvbl+2pF+B55IrIk2dgsKXS57YEUsJuN6I6s4rgFjA==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/Boshen"
- }
- },
- "node_modules/package-json-from-dist": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
- "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
- "license": "BlueOak-1.0.0"
- },
- "node_modules/package-manager-detector": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-1.1.0.tgz",
- "integrity": "sha512-Y8f9qUlBzW8qauJjd/eu6jlpJZsuPJm2ZAV0cDVd420o4EdpH5RPdoCv+60/TdJflGatr4sDfpAL6ArWZbM5tA==",
- "license": "MIT"
- },
- "node_modules/parse-json": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.2.0.tgz",
- "integrity": "sha512-eONBZy4hm2AgxjNFd8a4nyDJnzUAH0g34xSQAwWEVGCjdZ4ZL7dKZBfq267GWP/JaS9zW62Xs2FeAdDvpHHJGQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.26.2",
- "index-to-position": "^1.0.0",
- "type-fest": "^4.37.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/parse-path": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.1.tgz",
- "integrity": "sha512-6ReLMptznuuOEzLoGEa+I1oWRSj2Zna5jLWC+l6zlfAI4dbbSaIES29ThzuPkbhNahT65dWzfoZEO6cfJw2Ksg==",
- "license": "MIT",
- "dependencies": {
- "protocols": "^2.0.0"
- }
- },
- "node_modules/parse-url": {
- "version": "9.2.0",
- "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-9.2.0.tgz",
- "integrity": "sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==",
- "license": "MIT",
- "dependencies": {
- "@types/parse-path": "^7.0.0",
- "parse-path": "^7.0.0"
- },
- "engines": {
- "node": ">=14.13.0"
- }
- },
- "node_modules/parseurl": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "license": "MIT"
- },
- "node_modules/path-scurry": {
- "version": "1.11.1",
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
- "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
- "license": "BlueOak-1.0.0",
- "dependencies": {
- "lru-cache": "^10.2.0",
- "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
- },
- "engines": {
- "node": ">=16 || 14 >=14.18"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/path-scurry/node_modules/lru-cache": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
- "license": "ISC"
- },
- "node_modules/path-type": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz",
- "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/pathe": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
- "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
- "license": "MIT"
- },
- "node_modules/perfect-debounce": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
- "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
- "license": "MIT"
- },
- "node_modules/picocolors": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
- "license": "ISC"
- },
- "node_modules/picomatch": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
- "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pkg-types": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-2.1.0.tgz",
- "integrity": "sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==",
- "license": "MIT",
- "dependencies": {
- "confbox": "^0.2.1",
- "exsolve": "^1.0.1",
- "pathe": "^2.0.3"
- }
- },
- "node_modules/pkg-types/node_modules/confbox": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.2.1.tgz",
- "integrity": "sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==",
- "license": "MIT"
- },
- "node_modules/pluralize": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz",
- "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==",
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss": {
- "version": "8.5.3",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz",
- "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/postcss"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "nanoid": "^3.3.8",
- "picocolors": "^1.1.1",
- "source-map-js": "^1.2.1"
- },
- "engines": {
- "node": "^10 || ^12 || >=14"
- }
- },
- "node_modules/postcss-calc": {
- "version": "10.1.1",
- "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz",
- "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==",
- "license": "MIT",
- "dependencies": {
- "postcss-selector-parser": "^7.0.0",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12 || ^20.9 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.38"
- }
- },
- "node_modules/postcss-colormin": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.2.tgz",
- "integrity": "sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "caniuse-api": "^3.0.0",
- "colord": "^2.9.3",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-convert-values": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.4.tgz",
- "integrity": "sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-discard-comments": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.3.tgz",
- "integrity": "sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==",
- "license": "MIT",
- "dependencies": {
- "postcss-selector-parser": "^6.1.2"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-discard-comments/node_modules/postcss-selector-parser": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
- "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-discard-duplicates": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.1.tgz",
- "integrity": "sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==",
- "license": "MIT",
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-discard-empty": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.0.tgz",
- "integrity": "sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==",
- "license": "MIT",
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-discard-overridden": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.0.tgz",
- "integrity": "sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==",
- "license": "MIT",
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-merge-longhand": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.4.tgz",
- "integrity": "sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0",
- "stylehacks": "^7.0.4"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-merge-rules": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.4.tgz",
- "integrity": "sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "caniuse-api": "^3.0.0",
- "cssnano-utils": "^5.0.0",
- "postcss-selector-parser": "^6.1.2"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
- "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-minify-font-values": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-7.0.0.tgz",
- "integrity": "sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-minify-gradients": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-7.0.0.tgz",
- "integrity": "sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==",
- "license": "MIT",
- "dependencies": {
- "colord": "^2.9.3",
- "cssnano-utils": "^5.0.0",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-minify-params": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.2.tgz",
- "integrity": "sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "cssnano-utils": "^5.0.0",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-minify-selectors": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.4.tgz",
- "integrity": "sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==",
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "postcss-selector-parser": "^6.1.2"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
- "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-normalize-charset": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.0.tgz",
- "integrity": "sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==",
- "license": "MIT",
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-display-values": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-7.0.0.tgz",
- "integrity": "sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-positions": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-7.0.0.tgz",
- "integrity": "sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-repeat-style": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-7.0.0.tgz",
- "integrity": "sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-string": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-7.0.0.tgz",
- "integrity": "sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-timing-functions": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-7.0.0.tgz",
- "integrity": "sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-unicode": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.2.tgz",
- "integrity": "sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-url": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-7.0.0.tgz",
- "integrity": "sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-normalize-whitespace": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-7.0.0.tgz",
- "integrity": "sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-ordered-values": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz",
- "integrity": "sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==",
- "license": "MIT",
- "dependencies": {
- "cssnano-utils": "^5.0.0",
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-reduce-initial": {
- "version": "7.0.2",
- "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.2.tgz",
- "integrity": "sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "caniuse-api": "^3.0.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-reduce-transforms": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-7.0.0.tgz",
- "integrity": "sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-selector-parser": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz",
- "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==",
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-svgo": {
- "version": "7.0.1",
- "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-7.0.1.tgz",
- "integrity": "sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==",
- "license": "MIT",
- "dependencies": {
- "postcss-value-parser": "^4.2.0",
- "svgo": "^3.3.2"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >= 18"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-unique-selectors": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-7.0.3.tgz",
- "integrity": "sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==",
- "license": "MIT",
- "dependencies": {
- "postcss-selector-parser": "^6.1.2"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/postcss-unique-selectors/node_modules/postcss-selector-parser": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
- "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-value-parser": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
- "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
- "license": "MIT"
- },
- "node_modules/postcss/node_modules/nanoid": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
- "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "bin": {
- "nanoid": "bin/nanoid.cjs"
- },
- "engines": {
- "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
- }
- },
- "node_modules/pretty-bytes": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz",
- "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==",
- "license": "MIT",
- "engines": {
- "node": "^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/process": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
- "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6.0"
- }
- },
- "node_modules/process-nextick-args": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
- "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
- "license": "MIT"
- },
- "node_modules/prompts": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
- "license": "MIT",
- "dependencies": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/protocols": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.2.tgz",
- "integrity": "sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==",
- "license": "MIT"
- },
- "node_modules/quansync": {
- "version": "0.2.10",
- "resolved": "https://registry.npmjs.org/quansync/-/quansync-0.2.10.tgz",
- "integrity": "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==",
- "funding": [
- {
- "type": "individual",
- "url": "https://github.com/sponsors/antfu"
- },
- {
- "type": "individual",
- "url": "https://github.com/sponsors/sxzz"
- }
- ],
- "license": "MIT"
- },
- "node_modules/queue-microtask": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/radix3": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz",
- "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==",
- "license": "MIT"
- },
- "node_modules/randombytes": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "^5.1.0"
- }
- },
- "node_modules/range-parser": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/rc9": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.2.tgz",
- "integrity": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==",
- "license": "MIT",
- "dependencies": {
- "defu": "^6.1.4",
- "destr": "^2.0.3"
- }
- },
- "node_modules/readable-stream": {
- "version": "4.7.0",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz",
- "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==",
- "license": "MIT",
- "dependencies": {
- "abort-controller": "^3.0.0",
- "buffer": "^6.0.3",
- "events": "^3.3.0",
- "process": "^0.11.10",
- "string_decoder": "^1.3.0"
- },
- "engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- }
- },
- "node_modules/readdir-glob": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz",
- "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==",
- "license": "Apache-2.0",
- "dependencies": {
- "minimatch": "^5.1.0"
- }
- },
- "node_modules/readdir-glob/node_modules/minimatch": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
- "license": "ISC",
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/readdirp": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
- "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
- "license": "MIT",
- "engines": {
- "node": ">= 14.18.0"
- },
- "funding": {
- "type": "individual",
- "url": "https://paulmillr.com/funding/"
- }
- },
- "node_modules/redis-errors": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz",
- "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==",
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/redis-parser": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz",
- "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==",
- "license": "MIT",
- "dependencies": {
- "redis-errors": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/require-from-string": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/resolve": {
- "version": "1.22.10",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
- "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
- "license": "MIT",
- "dependencies": {
- "is-core-module": "^2.16.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/reusify": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
- "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
- "license": "MIT",
- "engines": {
- "iojs": ">=1.0.0",
- "node": ">=0.10.0"
- }
- },
- "node_modules/rfdc": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
- "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
- "license": "MIT"
- },
- "node_modules/rimraf": {
- "version": "5.0.10",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.10.tgz",
- "integrity": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==",
- "license": "ISC",
- "dependencies": {
- "glob": "^10.3.7"
- },
- "bin": {
- "rimraf": "dist/esm/bin.mjs"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/rollup": {
- "version": "4.36.0",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.36.0.tgz",
- "integrity": "sha512-zwATAXNQxUcd40zgtQG0ZafcRK4g004WtEl7kbuhTWPvf07PsfohXl39jVUvPF7jvNAIkKPQ2XrsDlWuxBd++Q==",
- "license": "MIT",
- "dependencies": {
- "@types/estree": "1.0.6"
- },
- "bin": {
- "rollup": "dist/bin/rollup"
- },
- "engines": {
- "node": ">=18.0.0",
- "npm": ">=8.0.0"
- },
- "optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.36.0",
- "@rollup/rollup-android-arm64": "4.36.0",
- "@rollup/rollup-darwin-arm64": "4.36.0",
- "@rollup/rollup-darwin-x64": "4.36.0",
- "@rollup/rollup-freebsd-arm64": "4.36.0",
- "@rollup/rollup-freebsd-x64": "4.36.0",
- "@rollup/rollup-linux-arm-gnueabihf": "4.36.0",
- "@rollup/rollup-linux-arm-musleabihf": "4.36.0",
- "@rollup/rollup-linux-arm64-gnu": "4.36.0",
- "@rollup/rollup-linux-arm64-musl": "4.36.0",
- "@rollup/rollup-linux-loongarch64-gnu": "4.36.0",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.36.0",
- "@rollup/rollup-linux-riscv64-gnu": "4.36.0",
- "@rollup/rollup-linux-s390x-gnu": "4.36.0",
- "@rollup/rollup-linux-x64-gnu": "4.36.0",
- "@rollup/rollup-linux-x64-musl": "4.36.0",
- "@rollup/rollup-win32-arm64-msvc": "4.36.0",
- "@rollup/rollup-win32-ia32-msvc": "4.36.0",
- "@rollup/rollup-win32-x64-msvc": "4.36.0",
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/rollup-plugin-visualizer": {
- "version": "5.14.0",
- "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.14.0.tgz",
- "integrity": "sha512-VlDXneTDaKsHIw8yzJAFWtrzguoJ/LnQ+lMpoVfYJ3jJF4Ihe5oYLAqLklIK/35lgUY+1yEzCkHyZ1j4A5w5fA==",
- "license": "MIT",
- "dependencies": {
- "open": "^8.4.0",
- "picomatch": "^4.0.2",
- "source-map": "^0.7.4",
- "yargs": "^17.5.1"
- },
- "bin": {
- "rollup-plugin-visualizer": "dist/bin/cli.js"
- },
- "engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "rolldown": "1.x",
- "rollup": "2.x || 3.x || 4.x"
- },
- "peerDependenciesMeta": {
- "rolldown": {
- "optional": true
- },
- "rollup": {
- "optional": true
- }
- }
- },
- "node_modules/run-applescript": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz",
- "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/run-parallel": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "queue-microtask": "^1.2.2"
- }
- },
- "node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ],
- "license": "MIT"
- },
- "node_modules/schema-utils": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
- "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/scule": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz",
- "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==",
- "license": "MIT"
- },
- "node_modules/semver": {
- "version": "7.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/send": {
- "version": "0.19.0",
- "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
- "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
- "license": "MIT",
- "dependencies": {
- "debug": "2.6.9",
- "depd": "2.0.0",
- "destroy": "1.2.0",
- "encodeurl": "~1.0.2",
- "escape-html": "~1.0.3",
- "etag": "~1.8.1",
- "fresh": "0.5.2",
- "http-errors": "2.0.0",
- "mime": "1.6.0",
- "ms": "2.1.3",
- "on-finished": "2.4.1",
- "range-parser": "~1.2.1",
- "statuses": "2.0.1"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/send/node_modules/debug": {
- "version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
- "license": "MIT",
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/send/node_modules/debug/node_modules/ms": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
- "license": "MIT"
- },
- "node_modules/send/node_modules/encodeurl": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
- "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/send/node_modules/mime": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
- "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
- "license": "MIT",
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/serialize-javascript": {
- "version": "6.0.2",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
- "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
- "license": "BSD-3-Clause",
- "dependencies": {
- "randombytes": "^2.1.0"
- }
- },
- "node_modules/serve-placeholder": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.2.tgz",
- "integrity": "sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==",
- "license": "MIT",
- "dependencies": {
- "defu": "^6.1.4"
- }
- },
- "node_modules/serve-static": {
- "version": "1.16.2",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
- "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
- "license": "MIT",
- "dependencies": {
- "encodeurl": "~2.0.0",
- "escape-html": "~1.0.3",
- "parseurl": "~1.3.3",
- "send": "0.19.0"
- },
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/setprototypeof": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
- "license": "ISC"
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shell-quote": {
- "version": "1.8.2",
- "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz",
- "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/signal-exit": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
- "license": "ISC",
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/simple-git": {
- "version": "3.27.0",
- "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-3.27.0.tgz",
- "integrity": "sha512-ivHoFS9Yi9GY49ogc6/YAi3Fl9ROnF4VyubNylgCkA+RVqLaKWnDSzXOVzya8csELIaWaYNutsEuAhZrtOjozA==",
- "license": "MIT",
- "dependencies": {
- "@kwsites/file-exists": "^1.1.1",
- "@kwsites/promise-deferred": "^1.1.1",
- "debug": "^4.3.5"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/steveukx/git-js?sponsor=1"
- }
- },
- "node_modules/sirv": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.1.tgz",
- "integrity": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==",
- "license": "MIT",
- "dependencies": {
- "@polka/url": "^1.0.0-next.24",
- "mrmime": "^2.0.0",
- "totalist": "^3.0.0"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "license": "MIT"
- },
- "node_modules/slash": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
- "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
- "license": "MIT",
- "engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/smob": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz",
- "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==",
- "license": "MIT"
- },
- "node_modules/source-map": {
- "version": "0.7.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz",
- "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/source-map-js": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
- "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-support": {
- "version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
- "license": "MIT",
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/source-map-support/node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/speakingurl": {
- "version": "14.0.1",
- "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz",
- "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
- "license": "BSD-3-Clause",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/standard-as-callback": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz",
- "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==",
- "license": "MIT"
- },
- "node_modules/statuses": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
- "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.8"
- }
- },
- "node_modules/std-env": {
- "version": "3.8.1",
- "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.1.tgz",
- "integrity": "sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==",
- "license": "MIT"
- },
- "node_modules/streamx": {
- "version": "2.22.0",
- "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.0.tgz",
- "integrity": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==",
- "license": "MIT",
- "dependencies": {
- "fast-fifo": "^1.3.2",
- "text-decoder": "^1.1.0"
- },
- "optionalDependencies": {
- "bare-events": "^2.2.0"
- }
- },
- "node_modules/string_decoder": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
- "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
- "license": "MIT",
- "dependencies": {
- "safe-buffer": "~5.2.0"
- }
- },
- "node_modules/string-width": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
- "license": "MIT",
- "dependencies": {
- "eastasianwidth": "^0.2.0",
- "emoji-regex": "^9.2.2",
- "strip-ansi": "^7.0.1"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/string-width-cjs": {
- "name": "string-width",
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/string-width-cjs/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/string-width-cjs/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "license": "MIT"
- },
- "node_modules/string-width-cjs/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-ansi": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^6.0.1"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/strip-ansi?sponsor=1"
- }
- },
- "node_modules/strip-ansi-cjs": {
- "name": "strip-ansi",
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-final-newline": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
- "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/strip-literal": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.0.0.tgz",
- "integrity": "sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==",
- "license": "MIT",
- "dependencies": {
- "js-tokens": "^9.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/strip-literal/node_modules/js-tokens": {
- "version": "9.0.1",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz",
- "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==",
- "license": "MIT"
- },
- "node_modules/structured-clone-es": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/structured-clone-es/-/structured-clone-es-1.0.0.tgz",
- "integrity": "sha512-FL8EeKFFyNQv5cMnXI31CIMCsFarSVI2bF0U0ImeNE3g/F1IvJQyqzOXxPBRXiwQfyBTlbNe88jh1jFW0O/jiQ==",
- "license": "ISC"
- },
- "node_modules/stylehacks": {
- "version": "7.0.4",
- "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.4.tgz",
- "integrity": "sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==",
- "license": "MIT",
- "dependencies": {
- "browserslist": "^4.23.3",
- "postcss-selector-parser": "^6.1.2"
- },
- "engines": {
- "node": "^18.12.0 || ^20.9.0 || >=22.0"
- },
- "peerDependencies": {
- "postcss": "^8.4.31"
- }
- },
- "node_modules/stylehacks/node_modules/postcss-selector-parser": {
- "version": "6.1.2",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz",
- "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==",
- "license": "MIT",
- "dependencies": {
- "cssesc": "^3.0.0",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/superjson": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.2.tgz",
- "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==",
- "license": "MIT",
- "dependencies": {
- "copy-anything": "^3.0.2"
- },
- "engines": {
- "node": ">=16"
- }
- },
- "node_modules/supports-color": {
- "version": "9.4.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
- "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "license": "MIT",
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/svgo": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz",
- "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==",
- "license": "MIT",
- "dependencies": {
- "@trysound/sax": "0.2.0",
- "commander": "^7.2.0",
- "css-select": "^5.1.0",
- "css-tree": "^2.3.1",
- "css-what": "^6.1.0",
- "csso": "^5.0.5",
- "picocolors": "^1.0.0"
- },
- "bin": {
- "svgo": "bin/svgo"
- },
- "engines": {
- "node": ">=14.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/svgo"
- }
- },
- "node_modules/system-architecture": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz",
- "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/tapable": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/tar": {
- "version": "7.4.3",
- "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz",
- "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
- "license": "ISC",
- "dependencies": {
- "@isaacs/fs-minipass": "^4.0.0",
- "chownr": "^3.0.0",
- "minipass": "^7.1.2",
- "minizlib": "^3.0.1",
- "mkdirp": "^3.0.1",
- "yallist": "^5.0.0"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/tar-stream": {
- "version": "3.1.7",
- "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz",
- "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
- "license": "MIT",
- "dependencies": {
- "b4a": "^1.6.4",
- "fast-fifo": "^1.2.0",
- "streamx": "^2.15.0"
- }
- },
- "node_modules/tar/node_modules/yallist": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
- "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
- "license": "BlueOak-1.0.0",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/terser": {
- "version": "5.39.0",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz",
- "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==",
- "license": "BSD-2-Clause",
- "dependencies": {
- "@jridgewell/source-map": "^0.3.3",
- "acorn": "^8.8.2",
- "commander": "^2.20.0",
- "source-map-support": "~0.5.20"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/terser-webpack-plugin": {
- "version": "5.3.14",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz",
- "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.25",
- "jest-worker": "^27.4.5",
- "schema-utils": "^4.3.0",
- "serialize-javascript": "^6.0.2",
- "terser": "^5.31.1"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^5.1.0"
- },
- "peerDependenciesMeta": {
- "@swc/core": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- },
- "uglify-js": {
- "optional": true
- }
- }
- },
- "node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
- "license": "MIT"
- },
- "node_modules/text-decoder": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz",
- "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
- "license": "Apache-2.0",
- "dependencies": {
- "b4a": "^1.6.4"
- }
- },
- "node_modules/three": {
- "version": "0.174.0",
- "resolved": "https://registry.npmjs.org/three/-/three-0.174.0.tgz",
- "integrity": "sha512-p+WG3W6Ov74alh3geCMkGK9NWuT62ee21cV3jEnun201zodVF4tCE5aZa2U122/mkLRmhJJUQmLLW1BH00uQJQ==",
- "license": "MIT"
- },
- "node_modules/tiny-invariant": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
- "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
- "license": "MIT"
- },
- "node_modules/tinyexec": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz",
- "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==",
- "license": "MIT"
- },
- "node_modules/tinyglobby": {
- "version": "0.2.12",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz",
- "integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==",
- "license": "MIT",
- "dependencies": {
- "fdir": "^6.4.3",
- "picomatch": "^4.0.2"
- },
- "engines": {
- "node": ">=12.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/SuperchupuDev"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "license": "MIT",
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/toidentifier": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
- "license": "MIT",
- "engines": {
- "node": ">=0.6"
- }
- },
- "node_modules/totalist": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
- "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/tr46": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
- "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
- "license": "MIT"
- },
- "node_modules/tslib": {
- "version": "2.8.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
- "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
- "license": "0BSD",
- "optional": true
- },
- "node_modules/type-fest": {
- "version": "4.37.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.37.0.tgz",
- "integrity": "sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==",
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/typescript": {
- "version": "5.8.2",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
- "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
- "license": "Apache-2.0",
- "peer": true,
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=14.17"
- }
- },
- "node_modules/ufo": {
- "version": "1.5.4",
- "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz",
- "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==",
- "license": "MIT"
- },
- "node_modules/ultrahtml": {
- "version": "1.5.3",
- "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.5.3.tgz",
- "integrity": "sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==",
- "license": "MIT"
- },
- "node_modules/unconfig": {
- "version": "7.3.1",
- "resolved": "https://registry.npmjs.org/unconfig/-/unconfig-7.3.1.tgz",
- "integrity": "sha512-LH5WL+un92tGAzWS87k7LkAfwpMdm7V0IXG2FxEjZz/QxiIW5J5LkcrKQThj0aRz6+h/lFmKI9EUXmK/T0bcrw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@quansync/fs": "^0.1.1",
- "defu": "^6.1.4",
- "jiti": "^2.4.2",
- "quansync": "^0.2.8"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- }
- },
- "node_modules/uncrypto": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz",
- "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==",
- "license": "MIT"
- },
- "node_modules/unctx": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.4.1.tgz",
- "integrity": "sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==",
- "license": "MIT",
- "dependencies": {
- "acorn": "^8.14.0",
- "estree-walker": "^3.0.3",
- "magic-string": "^0.30.17",
- "unplugin": "^2.1.0"
- }
- },
- "node_modules/undici-types": {
- "version": "6.20.0",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
- "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
- "devOptional": true,
- "license": "MIT",
- "peer": true
- },
- "node_modules/unenv": {
- "version": "2.0.0-rc.15",
- "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.15.tgz",
- "integrity": "sha512-J/rEIZU8w6FOfLNz/hNKsnY+fFHWnu9MH4yRbSZF3xbbGHovcetXPs7sD+9p8L6CeNC//I9bhRYAOsBt2u7/OA==",
- "license": "MIT",
- "dependencies": {
- "defu": "^6.1.4",
- "exsolve": "^1.0.4",
- "ohash": "^2.0.11",
- "pathe": "^2.0.3",
- "ufo": "^1.5.4"
- }
- },
- "node_modules/unhead": {
- "version": "2.0.0-rc.13",
- "resolved": "https://registry.npmjs.org/unhead/-/unhead-2.0.0-rc.13.tgz",
- "integrity": "sha512-cuG4Uu6kS9/zF2+XL/5od6S1J4GJqm3xB/I6PVoXgqEVCKryziGdLo+uaqewgOWnv5y5kDRiSuRQz/7fh0nUfw==",
- "license": "MIT",
- "dependencies": {
- "hookable": "^5.5.3"
- },
- "funding": {
- "url": "https://github.com/sponsors/harlan-zw"
- }
- },
- "node_modules/unicorn-magic": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz",
- "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/unimport": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/unimport/-/unimport-4.1.2.tgz",
- "integrity": "sha512-oVUL7PSlyVV3QRhsdcyYEMaDX8HJyS/CnUonEJTYA3//bWO+o/4gG8F7auGWWWkrrxBQBYOO8DKe+C53ktpRXw==",
- "license": "MIT",
- "dependencies": {
- "acorn": "^8.14.0",
- "escape-string-regexp": "^5.0.0",
- "estree-walker": "^3.0.3",
- "local-pkg": "^1.0.0",
- "magic-string": "^0.30.17",
- "mlly": "^1.7.4",
- "pathe": "^2.0.3",
- "picomatch": "^4.0.2",
- "pkg-types": "^1.3.1",
- "scule": "^1.3.0",
- "strip-literal": "^3.0.0",
- "tinyglobby": "^0.2.11",
- "unplugin": "^2.2.0",
- "unplugin-utils": "^0.2.4"
- },
- "engines": {
- "node": ">=18.12.0"
- }
- },
- "node_modules/unimport/node_modules/pkg-types": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
- "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
- "license": "MIT",
- "dependencies": {
- "confbox": "^0.1.8",
- "mlly": "^1.7.4",
- "pathe": "^2.0.1"
- }
- },
- "node_modules/unocss": {
- "version": "66.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/unocss/-/unocss-66.1.0-beta.6.tgz",
- "integrity": "sha512-ULv6jB5abJO1ciKreq0xW9WOKnWImK4uvWXmPR1d+JX0CvcHTtgO0HxR+UWToUcuvEFyLjQ1MKvovLMydo6+Lw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@unocss/astro": "66.1.0-beta.6",
- "@unocss/cli": "66.1.0-beta.6",
- "@unocss/core": "66.1.0-beta.6",
- "@unocss/postcss": "66.1.0-beta.6",
- "@unocss/preset-attributify": "66.1.0-beta.6",
- "@unocss/preset-icons": "66.1.0-beta.6",
- "@unocss/preset-mini": "66.1.0-beta.6",
- "@unocss/preset-tagify": "66.1.0-beta.6",
- "@unocss/preset-typography": "66.1.0-beta.6",
- "@unocss/preset-uno": "66.1.0-beta.6",
- "@unocss/preset-web-fonts": "66.1.0-beta.6",
- "@unocss/preset-wind": "66.1.0-beta.6",
- "@unocss/preset-wind3": "66.1.0-beta.6",
- "@unocss/preset-wind4": "66.1.0-beta.6",
- "@unocss/transformer-attributify-jsx": "66.1.0-beta.6",
- "@unocss/transformer-compile-class": "66.1.0-beta.6",
- "@unocss/transformer-directives": "66.1.0-beta.6",
- "@unocss/transformer-variant-group": "66.1.0-beta.6",
- "@unocss/vite": "66.1.0-beta.6"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "@unocss/webpack": "66.1.0-beta.6",
- "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
- },
- "peerDependenciesMeta": {
- "@unocss/webpack": {
- "optional": true
- },
- "vite": {
- "optional": true
- }
- }
- },
- "node_modules/unplugin": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-2.2.2.tgz",
- "integrity": "sha512-Qp+iiD+qCRnUek+nDoYvtWX7tfnYyXsrOnJ452FRTgOyKmTM7TUJ3l+PLPJOOWPTUyKISKp4isC5JJPSXUjGgw==",
- "license": "MIT",
- "dependencies": {
- "acorn": "^8.14.1",
- "webpack-virtual-modules": "^0.6.2"
- },
- "engines": {
- "node": ">=18.12.0"
- }
- },
- "node_modules/unplugin-utils": {
- "version": "0.2.4",
- "resolved": "https://registry.npmjs.org/unplugin-utils/-/unplugin-utils-0.2.4.tgz",
- "integrity": "sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==",
- "license": "MIT",
- "dependencies": {
- "pathe": "^2.0.2",
- "picomatch": "^4.0.2"
- },
- "engines": {
- "node": ">=18.12.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sxzz"
- }
- },
- "node_modules/unplugin-vue-router": {
- "version": "0.12.0",
- "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.12.0.tgz",
- "integrity": "sha512-xjgheKU0MegvXQcy62GVea0LjyOdMxN0/QH+ijN29W62ZlMhG7o7K+0AYqfpprvPwpWtuRjiyC5jnV2SxWye2w==",
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.26.8",
- "@vue-macros/common": "^1.16.1",
- "ast-walker-scope": "^0.6.2",
- "chokidar": "^4.0.3",
- "fast-glob": "^3.3.3",
- "json5": "^2.2.3",
- "local-pkg": "^1.0.0",
- "magic-string": "^0.30.17",
- "micromatch": "^4.0.8",
- "mlly": "^1.7.4",
- "pathe": "^2.0.2",
- "scule": "^1.3.0",
- "unplugin": "^2.2.0",
- "unplugin-utils": "^0.2.3",
- "yaml": "^2.7.0"
- },
- "peerDependencies": {
- "vue-router": "^4.4.0"
- },
- "peerDependenciesMeta": {
- "vue-router": {
- "optional": true
- }
- }
- },
- "node_modules/unstorage": {
- "version": "1.15.0",
- "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.15.0.tgz",
- "integrity": "sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==",
- "license": "MIT",
- "dependencies": {
- "anymatch": "^3.1.3",
- "chokidar": "^4.0.3",
- "destr": "^2.0.3",
- "h3": "^1.15.0",
- "lru-cache": "^10.4.3",
- "node-fetch-native": "^1.6.6",
- "ofetch": "^1.4.1",
- "ufo": "^1.5.4"
- },
- "peerDependencies": {
- "@azure/app-configuration": "^1.8.0",
- "@azure/cosmos": "^4.2.0",
- "@azure/data-tables": "^13.3.0",
- "@azure/identity": "^4.6.0",
- "@azure/keyvault-secrets": "^4.9.0",
- "@azure/storage-blob": "^12.26.0",
- "@capacitor/preferences": "^6.0.3",
- "@deno/kv": ">=0.9.0",
- "@netlify/blobs": "^6.5.0 || ^7.0.0 || ^8.1.0",
- "@planetscale/database": "^1.19.0",
- "@upstash/redis": "^1.34.3",
- "@vercel/blob": ">=0.27.1",
- "@vercel/kv": "^1.0.1",
- "aws4fetch": "^1.0.20",
- "db0": ">=0.2.1",
- "idb-keyval": "^6.2.1",
- "ioredis": "^5.4.2",
- "uploadthing": "^7.4.4"
- },
- "peerDependenciesMeta": {
- "@azure/app-configuration": {
- "optional": true
- },
- "@azure/cosmos": {
- "optional": true
- },
- "@azure/data-tables": {
- "optional": true
- },
- "@azure/identity": {
- "optional": true
- },
- "@azure/keyvault-secrets": {
- "optional": true
- },
- "@azure/storage-blob": {
- "optional": true
- },
- "@capacitor/preferences": {
- "optional": true
- },
- "@deno/kv": {
- "optional": true
- },
- "@netlify/blobs": {
- "optional": true
- },
- "@planetscale/database": {
- "optional": true
- },
- "@upstash/redis": {
- "optional": true
- },
- "@vercel/blob": {
- "optional": true
- },
- "@vercel/kv": {
- "optional": true
- },
- "aws4fetch": {
- "optional": true
- },
- "db0": {
- "optional": true
- },
- "idb-keyval": {
- "optional": true
- },
- "ioredis": {
- "optional": true
- },
- "uploadthing": {
- "optional": true
- }
- }
- },
- "node_modules/unstorage/node_modules/lru-cache": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
- "license": "ISC"
- },
- "node_modules/untun": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz",
- "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==",
- "license": "MIT",
- "dependencies": {
- "citty": "^0.1.5",
- "consola": "^3.2.3",
- "pathe": "^1.1.1"
- },
- "bin": {
- "untun": "bin/untun.mjs"
- }
- },
- "node_modules/untun/node_modules/pathe": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
- "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
- "license": "MIT"
- },
- "node_modules/untyped": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/untyped/-/untyped-2.0.0.tgz",
- "integrity": "sha512-nwNCjxJTjNuLCgFr42fEak5OcLuB3ecca+9ksPFNvtfYSLpjf+iJqSIaSnIile6ZPbKYxI5k2AfXqeopGudK/g==",
- "license": "MIT",
- "dependencies": {
- "citty": "^0.1.6",
- "defu": "^6.1.4",
- "jiti": "^2.4.2",
- "knitwork": "^1.2.0",
- "scule": "^1.3.0"
- },
- "bin": {
- "untyped": "dist/cli.mjs"
- }
- },
- "node_modules/unwasm": {
- "version": "0.3.9",
- "resolved": "https://registry.npmjs.org/unwasm/-/unwasm-0.3.9.tgz",
- "integrity": "sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==",
- "license": "MIT",
- "dependencies": {
- "knitwork": "^1.0.0",
- "magic-string": "^0.30.8",
- "mlly": "^1.6.1",
- "pathe": "^1.1.2",
- "pkg-types": "^1.0.3",
- "unplugin": "^1.10.0"
- }
- },
- "node_modules/unwasm/node_modules/pathe": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
- "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
- "license": "MIT"
- },
- "node_modules/unwasm/node_modules/pkg-types": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.3.1.tgz",
- "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==",
- "license": "MIT",
- "dependencies": {
- "confbox": "^0.1.8",
- "mlly": "^1.7.4",
- "pathe": "^2.0.1"
- }
- },
- "node_modules/unwasm/node_modules/pkg-types/node_modules/pathe": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
- "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
- "license": "MIT"
- },
- "node_modules/unwasm/node_modules/unplugin": {
- "version": "1.16.1",
- "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.16.1.tgz",
- "integrity": "sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==",
- "license": "MIT",
- "dependencies": {
- "acorn": "^8.14.0",
- "webpack-virtual-modules": "^0.6.2"
- },
- "engines": {
- "node": ">=14.0.0"
- }
- },
- "node_modules/update-browserslist-db": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
- "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "license": "MIT",
- "dependencies": {
- "escalade": "^3.2.0",
- "picocolors": "^1.1.1"
- },
- "bin": {
- "update-browserslist-db": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/uqr": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz",
- "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==",
- "license": "MIT"
- },
- "node_modules/urdf-loader": {
- "version": "0.12.4",
- "resolved": "https://registry.npmjs.org/urdf-loader/-/urdf-loader-0.12.4.tgz",
- "integrity": "sha512-CmBVJmsGDQpWLN3cg9lYkgMGlpbdKqaXDhvG4XXkpADRcYMDWGxHsu0U/1FQcvMq5oke7C65WJoSG2/MyX7HrA==",
- "license": "Apache-2.0",
- "peerDependencies": {
- "three": ">=0.152.0"
- }
- },
- "node_modules/uri-js-replace": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/uri-js-replace/-/uri-js-replace-1.0.1.tgz",
- "integrity": "sha512-W+C9NWNLFOoBI2QWDp4UT9pv65r2w5Cx+3sTYFvtMdDBxkKt1syCqsUdSFAChbEe1uK5TfS04wt/nGwmaeIQ0g==",
- "license": "MIT"
- },
- "node_modules/util-deprecate": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
- "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
- "license": "MIT"
- },
- "node_modules/vite": {
- "version": "6.2.2",
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.2.tgz",
- "integrity": "sha512-yW7PeMM+LkDzc7CgJuRLMW2Jz0FxMOsVJ8Lv3gpgW9WLcb9cTW+121UEr1hvmfR7w3SegR5ItvYyzVz1vxNJgQ==",
- "license": "MIT",
- "dependencies": {
- "esbuild": "^0.25.0",
- "postcss": "^8.5.3",
- "rollup": "^4.30.1"
- },
- "bin": {
- "vite": "bin/vite.js"
- },
- "engines": {
- "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
- },
- "funding": {
- "url": "https://github.com/vitejs/vite?sponsor=1"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.3"
- },
- "peerDependencies": {
- "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
- "jiti": ">=1.21.0",
- "less": "*",
- "lightningcss": "^1.21.0",
- "sass": "*",
- "sass-embedded": "*",
- "stylus": "*",
- "sugarss": "*",
- "terser": "^5.16.0",
- "tsx": "^4.8.1",
- "yaml": "^2.4.2"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "jiti": {
- "optional": true
- },
- "less": {
- "optional": true
- },
- "lightningcss": {
- "optional": true
- },
- "sass": {
- "optional": true
- },
- "sass-embedded": {
- "optional": true
- },
- "stylus": {
- "optional": true
- },
- "sugarss": {
- "optional": true
- },
- "terser": {
- "optional": true
- },
- "tsx": {
- "optional": true
- },
- "yaml": {
- "optional": true
- }
- }
- },
- "node_modules/vite-dev-rpc": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/vite-dev-rpc/-/vite-dev-rpc-1.0.7.tgz",
- "integrity": "sha512-FxSTEofDbUi2XXujCA+hdzCDkXFG1PXktMjSk1efq9Qb5lOYaaM9zNSvKvPPF7645Bak79kSp1PTooMW2wktcA==",
- "license": "MIT",
- "dependencies": {
- "birpc": "^2.0.19",
- "vite-hot-client": "^2.0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.1"
- }
- },
- "node_modules/vite-dev-rpc/node_modules/vite-hot-client": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-2.0.4.tgz",
- "integrity": "sha512-W9LOGAyGMrbGArYJN4LBCdOC5+Zwh7dHvOHC0KmGKkJhsOzaKbpo/jEjpPKVHIW0/jBWj8RZG0NUxfgA8BxgAg==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
- }
- },
- "node_modules/vite-hot-client": {
- "version": "0.2.4",
- "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-0.2.4.tgz",
- "integrity": "sha512-a1nzURqO7DDmnXqabFOliz908FRmIppkBKsJthS8rbe8hBEXwEwe4C3Pp33Z1JoFCYfVL4kTOMLKk0ZZxREIeA==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 || ^6.0.0-0"
- }
- },
- "node_modules/vite-node": {
- "version": "3.0.9",
- "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.0.9.tgz",
- "integrity": "sha512-w3Gdx7jDcuT9cNn9jExXgOyKmf5UOTb6WMHz8LGAm54eS1Elf5OuBhCxl6zJxGhEeIkgsE1WbHuoL0mj/UXqXg==",
- "license": "MIT",
- "dependencies": {
- "cac": "^6.7.14",
- "debug": "^4.4.0",
- "es-module-lexer": "^1.6.0",
- "pathe": "^2.0.3",
- "vite": "^5.0.0 || ^6.0.0"
- },
- "bin": {
- "vite-node": "vite-node.mjs"
- },
- "engines": {
- "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/vitest"
- }
- },
- "node_modules/vite-plugin-checker": {
- "version": "0.9.1",
- "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.9.1.tgz",
- "integrity": "sha512-neH3CSNWdkZ+zi+WPt/0y5+IO2I0UAI0NX6MaXqU/KxN1Lz6np/7IooRB6VVAMBa4nigqm1GRF6qNa4+EL5jDQ==",
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.26.2",
- "chokidar": "^4.0.3",
- "npm-run-path": "^6.0.0",
- "picocolors": "^1.1.1",
- "picomatch": "^4.0.2",
- "strip-ansi": "^7.1.0",
- "tiny-invariant": "^1.3.3",
- "tinyglobby": "^0.2.12",
- "vscode-uri": "^3.1.0"
- },
- "engines": {
- "node": ">=14.16"
- },
- "peerDependencies": {
- "@biomejs/biome": ">=1.7",
- "eslint": ">=7",
- "meow": "^13.2.0",
- "optionator": "^0.9.4",
- "stylelint": ">=16",
- "typescript": "*",
- "vite": ">=2.0.0",
- "vls": "*",
- "vti": "*",
- "vue-tsc": "~2.2.2"
- },
- "peerDependenciesMeta": {
- "@biomejs/biome": {
- "optional": true
- },
- "eslint": {
- "optional": true
- },
- "meow": {
- "optional": true
- },
- "optionator": {
- "optional": true
- },
- "stylelint": {
- "optional": true
- },
- "typescript": {
- "optional": true
- },
- "vls": {
- "optional": true
- },
- "vti": {
- "optional": true
- },
- "vue-tsc": {
- "optional": true
- }
- }
- },
- "node_modules/vite-plugin-checker/node_modules/npm-run-path": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz",
- "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==",
- "license": "MIT",
- "dependencies": {
- "path-key": "^4.0.0",
- "unicorn-magic": "^0.3.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/vite-plugin-checker/node_modules/path-key": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
- "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/vite-plugin-inspect": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-11.0.0.tgz",
- "integrity": "sha512-Q0RDNcMs1mbI2yGRwOzSapnnA6NFO0j88+Vb8pJX0iYMw34WczwKJi3JgheItDhbWRq/CLUR0cs+ajZpcUaIFQ==",
- "license": "MIT",
- "dependencies": {
- "ansis": "^3.16.0",
- "debug": "^4.4.0",
- "error-stack-parser-es": "^1.0.5",
- "ohash": "^2.0.4",
- "open": "^10.1.0",
- "perfect-debounce": "^1.0.0",
- "sirv": "^3.0.1",
- "unplugin-utils": "^0.2.0",
- "vite-dev-rpc": "^1.0.7"
- },
- "engines": {
- "node": ">=14"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "vite": "^6.0.0"
- },
- "peerDependenciesMeta": {
- "@nuxt/kit": {
- "optional": true
- }
- }
- },
- "node_modules/vite-plugin-inspect/node_modules/define-lazy-prop": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
- "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/vite-plugin-inspect/node_modules/open": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz",
- "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==",
- "license": "MIT",
- "dependencies": {
- "default-browser": "^5.2.1",
- "define-lazy-prop": "^3.0.0",
- "is-inside-container": "^1.0.0",
- "is-wsl": "^3.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/vite-plugin-vue-tracer": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/vite-plugin-vue-tracer/-/vite-plugin-vue-tracer-0.1.1.tgz",
- "integrity": "sha512-8BuReHmbSPd6iRQDQhlyK5+DexY1Hmb4K0GUVo9Te1Yaz8gyOZspBm9qdG1SvebdSIKw3WNlzpdstJ47TJ4bOw==",
- "license": "MIT",
- "dependencies": {
- "estree-walker": "^3.0.3",
- "magic-string": "^0.30.17",
- "pathe": "^2.0.3",
- "source-map-js": "^1.2.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/antfu"
- },
- "peerDependencies": {
- "vite": "^6.0.0",
- "vue": "^3.5.0"
- }
- },
- "node_modules/vscode-uri": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.1.0.tgz",
- "integrity": "sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==",
- "license": "MIT"
- },
- "node_modules/vue": {
- "version": "3.5.13",
- "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz",
- "integrity": "sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==",
- "license": "MIT",
- "dependencies": {
- "@vue/compiler-dom": "3.5.13",
- "@vue/compiler-sfc": "3.5.13",
- "@vue/runtime-dom": "3.5.13",
- "@vue/server-renderer": "3.5.13",
- "@vue/shared": "3.5.13"
- },
- "peerDependencies": {
- "typescript": "*"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "node_modules/vue-bundle-renderer": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-2.1.1.tgz",
- "integrity": "sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g==",
- "license": "MIT",
- "dependencies": {
- "ufo": "^1.5.4"
- }
- },
- "node_modules/vue-devtools-stub": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz",
- "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==",
- "license": "MIT"
- },
- "node_modules/vue-flow-layout": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/vue-flow-layout/-/vue-flow-layout-0.1.1.tgz",
- "integrity": "sha512-JdgRRUVrN0Y2GosA0M68DEbKlXMqJ7FQgsK8CjQD2vxvNSqAU6PZEpi4cfcTVtfM2GVOMjHo7GKKLbXxOBqDqA==",
- "dev": true,
- "license": "MIT",
- "peerDependencies": {
- "vue": "^3.4.37"
- }
- },
- "node_modules/vue-router": {
- "version": "4.5.0",
- "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.5.0.tgz",
- "integrity": "sha512-HDuk+PuH5monfNuY+ct49mNmkCRK4xJAV9Ts4z9UFc4rzdDnxQLyCMGGc8pKhZhHTVzfanpNwB/lwqevcBwI4w==",
- "license": "MIT",
- "dependencies": {
- "@vue/devtools-api": "^6.6.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/posva"
- },
- "peerDependencies": {
- "vue": "^3.2.0"
- }
- },
- "node_modules/watchpack": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
- "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.1.2"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webidl-conversions": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
- "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
- "license": "BSD-2-Clause"
- },
- "node_modules/webpack": {
- "version": "5.98.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz",
- "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==",
- "dev": true,
- "license": "MIT",
- "peer": true,
- "dependencies": {
- "@types/eslint-scope": "^3.7.7",
- "@types/estree": "^1.0.6",
- "@webassemblyjs/ast": "^1.14.1",
- "@webassemblyjs/wasm-edit": "^1.14.1",
- "@webassemblyjs/wasm-parser": "^1.14.1",
- "acorn": "^8.14.0",
- "browserslist": "^4.24.0",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^5.17.1",
- "es-module-lexer": "^1.2.1",
- "eslint-scope": "5.1.1",
- "events": "^3.2.0",
- "glob-to-regexp": "^0.4.1",
- "graceful-fs": "^4.2.11",
- "json-parse-even-better-errors": "^2.3.1",
- "loader-runner": "^4.2.0",
- "mime-types": "^2.1.27",
- "neo-async": "^2.6.2",
- "schema-utils": "^4.3.0",
- "tapable": "^2.1.1",
- "terser-webpack-plugin": "^5.3.11",
- "watchpack": "^2.4.1",
- "webpack-sources": "^3.2.3"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- }
- }
- },
- "node_modules/webpack-sources": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
- "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/webpack-virtual-modules": {
- "version": "0.6.2",
- "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
- "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
- "license": "MIT"
- },
- "node_modules/whatwg-url": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
- "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
- "license": "MIT",
- "dependencies": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
- }
- },
- "node_modules/which": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz",
- "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==",
- "license": "ISC",
- "dependencies": {
- "isexe": "^3.1.1"
- },
- "bin": {
- "node-which": "bin/which.js"
- },
- "engines": {
- "node": "^18.17.0 || >=20.5.0"
- }
- },
- "node_modules/wrap-ansi": {
- "version": "8.1.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
- "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^6.1.0",
- "string-width": "^5.0.1",
- "strip-ansi": "^7.0.1"
- },
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/wrap-ansi-cjs": {
- "name": "wrap-ansi",
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "license": "MIT",
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "license": "MIT"
- },
- "node_modules/wrap-ansi-cjs/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ws": {
- "version": "8.18.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz",
- "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==",
- "license": "MIT",
- "engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": ">=5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/y18n": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
- "license": "ISC",
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "license": "ISC"
- },
- "node_modules/yaml": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
- "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
- "license": "ISC",
- "bin": {
- "yaml": "bin.mjs"
- },
- "engines": {
- "node": ">= 14"
- }
- },
- "node_modules/yaml-ast-parser": {
- "version": "0.0.43",
- "resolved": "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz",
- "integrity": "sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==",
- "license": "Apache-2.0"
- },
- "node_modules/yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
- "license": "MIT",
- "dependencies": {
- "cliui": "^8.0.1",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/yargs-parser": {
- "version": "21.1.1",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
- "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
- "license": "ISC",
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/yargs/node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/yargs/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "license": "MIT"
- },
- "node_modules/yargs/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "license": "MIT",
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/yargs/node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/youch": {
- "version": "4.1.0-beta.6",
- "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.6.tgz",
- "integrity": "sha512-y1aNsEeoLXnWb6pI9TvfNPIxySyo4Un3OGxKn7rsNj8+tgSquzXEWkzfA5y6gU0fvzmQgvx3JBn/p51qQ8Xg9A==",
- "license": "MIT",
- "dependencies": {
- "@poppinss/dumper": "^0.6.3",
- "@speed-highlight/core": "^1.2.7",
- "cookie": "^1.0.2",
- "youch-core": "^0.3.1"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/youch-core": {
- "version": "0.3.2",
- "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.2.tgz",
- "integrity": "sha512-fusrlIMLeRvTFYLUjJ9KzlGC3N+6MOPJ68HNj/yJv2nz7zq8t4HEviLms2gkdRPUS7F5rZ5n+pYx9r88m6IE1g==",
- "license": "MIT",
- "dependencies": {
- "@poppinss/exception": "^1.2.0",
- "error-stack-parser-es": "^1.0.5"
- },
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/zip-stream": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz",
- "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==",
- "license": "MIT",
- "dependencies": {
- "archiver-utils": "^5.0.0",
- "compress-commons": "^6.0.2",
- "readable-stream": "^4.0.0"
- },
- "engines": {
- "node": ">= 14"
- }
- }
- }
-}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package.json
deleted file mode 100644
index f0b32f728..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "nuxt-app",
- "private": true,
- "type": "module",
- "scripts": {
- "build": "nuxt build",
- "dev": "nuxt dev",
- "generate": "nuxt generate",
- "preview": "nuxt preview",
- "postinstall": "nuxt prepare"
- },
- "dependencies": {
- "nuxt": "^3.16.1",
- "nuxt-app": "file:",
- "three": "^0.174.0",
- "urdf-loader": "^0.12.4",
- "vue": "^3.5.13",
- "vue-router": "^4.5.0"
- },
- "devDependencies": {
- "@unocss/nuxt": "^66.1.0-beta.6",
- "unocss": "^66.1.0-beta.6"
- }
-}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/pages/index.vue b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/pages/index.vue
deleted file mode 100644
index c2b2e642d..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/pages/index.vue
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/favicon.ico b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/favicon.ico
deleted file mode 100644
index 18993ad91..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/favicon.ico and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Cadillac+CT4+V+2022.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Cadillac+CT4+V+2022.glb
deleted file mode 100644
index 24d501917..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Cadillac+CT4+V+2022.glb and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/StreetLightPoles.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/StreetLightPoles.glb
deleted file mode 100644
index b92fdfdf3..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/StreetLightPoles.glb and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Traffic Light_01.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Traffic Light_01.glb
deleted file mode 100644
index ad0a379ca..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/Traffic Light_01.glb and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e2.urdf b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e2.urdf
deleted file mode 100644
index 1989feab6..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e2.urdf
+++ /dev/null
@@ -1,1473 +0,0 @@
-
-
-
-
-
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- 10000
- 100000000
- 1000000
- 1e8
- 0.001
- 100.0
- Gazebo/Blue
-
-
- 10000
- 100000000
- 1000000
- 1e8
- 0.001
- 100.0
- Gazebo/Blue
-
-
- 0.9
- 1000000
- 0.005
- 1e8
- Gazebo/Black
-
-
- 0.9
- 1000000
- 0.005
- 1e8
- Gazebo/Black
-
-
- 0.9
- 1000000
- 0.005
- 1e8
- Gazebo/Black
-
-
- 0.9
- 1000000
- 0.005
- 1e8
- Gazebo/Black
-
-
-
-
- Gazebo/White
-
-
- Gazebo/Grey
-
-
- Gazebo/White
-
-
-
- Gazebo/Black
-
-
- Gazebo/Black
-
-
- Gazebo/Black
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/White
-
-
- Gazebo/White
-
-
- Gazebo/Orange
-
-
- Gazebo/Orange
-
-
- Gazebo/Orange
-
-
- Gazebo/Orange
-
-
- Gazebo/Blue
-
-
- Gazebo/Blue
-
-
- Gazebo/Grey
-
-
- Gazebo/Grey
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Red
-
-
- Gazebo/Orange
-
-
- Gazebo/Orange
-
-
- Gazebo/Red
-
-
-
- true
- gazebo_ros_control/DefaultRobotHWSim
-
-
-
-
-
- 30.0
-
-
- 1.5707963
-
- 640
- 480
-
- R8G8B8
-
-
- 0.02
- 300
-
-
- gaussian
- 0.0
- 0.007
-
-
-
- true
- 0.0
- front_single_camera
- image_raw
- camera_info
- front_single_camera_link
- 0.07
- 0.0
- 0.0
- 0.0
- 0.0
- 0.0
-
-
-
-
-
-
- true
- IMU_link
- IMU_link
- imu
- imu_service
- 0.0
- 50.0
-
-
-
-
-
- 20.0
- GPS_link
- GPS_link
- /gps/fix
- /gps/fix_velocity
- 40.09302494
- -88.23575484
- 90
- 220
- 0 0 0
- 0.001 0.001 0.001
- 0.05 0.05 0.05
- 0.001 0.001 0.001
- 0.5 0.5 0.5
-
-
-
-
-
-
-
-
-
- true
- 20
- 0 0 0 0 0 0
- false
-
-
-
- 2
- 1
- -28
- 28
-
-
- 2
- 1
- -28
- 28
-
-
-
- 0.3
- 5
- 0.01
-
-
-
- 0.005
- /front_sonar_distance
- front_sonar_link
-
-
-
-
-
-
- true
- 20
- 0 0 0 0 0 0
- false
-
-
-
- 2
- 1
- -28
- 28
-
-
- 2
- 1
- -28
- 28
-
-
-
- 0.3
- 5
- 0.01
-
-
-
- 0.005
- /rear_sonar_distance
- rear_sonar_link
-
-
-
-
-
-
- 30.0
-
- 1.5707963
-
- 800
- 600
- R8G8B8
-
-
- 0.02
- 300
-
-
- gaussian
- 0.0
- 0.007
-
-
-
- 0 -0.07 0 0 0 0
- 1.5707963
-
- 800
- 600
- R8G8B8
-
-
- 0.02
- 300
-
-
- gaussian
- 0.0
- 0.007
-
-
-
- true
- 0.0
- stereo/camera
- image_raw
- camera_info
- stereo_camera_link
-
-
- 0.5
- 0.0
- 0.0
- 0.0
- 0.0
- 0.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- transmission_interface/SimpleTransmission
-
- hardware_interface/EffortJointInterface
-
-
- hardware_interface/EffortJointInterface
- 1
-
-
-
- transmission_interface/SimpleTransmission
-
- hardware_interface/EffortJointInterface
-
-
- hardware_interface/EffortJointInterface
- 1
-
-
-
- transmission_interface/SimpleTransmission
-
- hardware_interface/EffortJointInterface
-
-
- hardware_interface/EffortJointInterface
- 1
-
-
-
- transmission_interface/SimpleTransmission
-
- hardware_interface/EffortJointInterface
-
-
- hardware_interface/EffortJointInterface
- 1
-
-
-
- transmission_interface/SimpleTransmission
-
- hardware_interface/EffortJointInterface
-
-
- hardware_interface/EffortJointInterface
- 1
-
-
-
- transmission_interface/SimpleTransmission
-
- hardware_interface/EffortJointInterface
-
-
- hardware_interface/EffortJointInterface
- 1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e4.urdf b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e4.urdf
deleted file mode 100644
index 5ddb5a0eb..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/gem_e4.urdf
+++ /dev/null
@@ -1,919 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/base_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/base_link.STL
deleted file mode 100755
index 9c17ee417..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/base_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/chair_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/chair_link.STL
deleted file mode 100755
index 0c6765cf2..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/chair_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/door_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/door_link.STL
deleted file mode 100755
index c747ca9af..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/door_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/base_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/base_link.STL
deleted file mode 100644
index 952b788ef..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/base_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_camera_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_camera_link.STL
deleted file mode 100644
index d658e5cdb..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_camera_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_lidar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_lidar_link.STL
deleted file mode 100644
index d49aea2e7..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_lidar_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_rack_link.STL
deleted file mode 100755
index 6484d4245..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_rack_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_radar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_radar_link.STL
deleted file mode 100644
index fa7839417..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/front_radar_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_aux_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_aux_link.STL
deleted file mode 100755
index 9a0c069b0..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_aux_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_main_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_main_link.STL
deleted file mode 100755
index 32c0d6565..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/gps_antenna_main_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fl_link.STL
deleted file mode 100755
index bc49454cd..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fl_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fr_link.STL
deleted file mode 100755
index bc49454cd..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/headlight_fr_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/i_logo_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/i_logo_link.STL
deleted file mode 100755
index e0769efe7..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/i_logo_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/imu_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/imu_link.STL
deleted file mode 100644
index 97d552e72..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/imu_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/lightbar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/lightbar_link.STL
deleted file mode 100755
index 04a9d2f1e..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/lightbar_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/rear_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/rear_rack_link.STL
deleted file mode 100755
index 1ab3f1a54..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/rear_rack_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rl_link.STL
deleted file mode 100755
index 9e30a0a21..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rl_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rr_link.STL
deleted file mode 100755
index 9e30a0a21..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/stoplight_rr_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rl_link.STL
deleted file mode 100755
index b24d6ae97..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rl_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rr_link.STL
deleted file mode 100755
index afc66745f..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/taillight_rr_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_lidar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_lidar_link.STL
deleted file mode 100644
index b52b8f475..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_lidar_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_rack_link.STL
deleted file mode 100644
index a55bd5397..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/top_rack_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fl_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fl_link.STL
deleted file mode 100755
index 50888317f..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fl_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fr_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fr_link.STL
deleted file mode 100755
index a4488df1f..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/turnlight_fr_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fl.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fl.STL
deleted file mode 100644
index 06fb9b87e..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fl.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fr.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fr.STL
deleted file mode 100644
index 85975cc77..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_fr.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rl.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rl.STL
deleted file mode 100644
index 049fec865..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rl.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rr.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rr.STL
deleted file mode 100644
index 0d0940a96..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/e4/wheel_link_rr.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_camera_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_camera_link.STL
deleted file mode 100755
index 5074cba3e..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_camera_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_emergency_button_link.STL
deleted file mode 100755
index eb6fcfd4e..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_emergency_button_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_head_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_head_light_link.STL
deleted file mode 100755
index bc49454cd..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_head_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_turn_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_turn_light_link.STL
deleted file mode 100755
index 50888317f..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_turn_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_wheel_link.STL
deleted file mode 100755
index 06fb9b87e..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_left_wheel_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_rack_link.STL
deleted file mode 100755
index 6484d4245..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_rack_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_emergency_button_link.STL
deleted file mode 100755
index 4180556f8..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_emergency_button_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_head_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_head_light_link.STL
deleted file mode 100755
index bc49454cd..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_head_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_turn_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_turn_light_link.STL
deleted file mode 100755
index a4488df1f..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_turn_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_wheel_link.STL
deleted file mode 100755
index 85975cc77..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/front_right_wheel_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_I_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_I_link.STL
deleted file mode 100755
index e0769efe7..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_I_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_antenna_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_antenna_link.STL
deleted file mode 100755
index 32c0d6565..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_antenna_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_blue_outer_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_blue_outer_link.STL
deleted file mode 100755
index 717f1c931..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_blue_outer_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_fixed_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_fixed_hinge_link.STL
deleted file mode 100755
index 2c8e0610a..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_fixed_hinge_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_steering_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_steering_hinge_link.STL
deleted file mode 100755
index 43f7ecc63..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/left_steering_hinge_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_emergency_button_link.STL
deleted file mode 100755
index 033a25319..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_emergency_button_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_light_link.STL
deleted file mode 100755
index b24d6ae97..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_stop_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_stop_light_link.STL
deleted file mode 100755
index 9e30a0a21..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_stop_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_wheel_link.STL
deleted file mode 100755
index 049fec865..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_left_wheel_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_light_bar_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_light_bar_link.STL
deleted file mode 100755
index 04a9d2f1e..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_light_bar_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_rack_link.STL
deleted file mode 100755
index 1ab3f1a54..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_rack_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_emergency_button_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_emergency_button_link.STL
deleted file mode 100755
index 4bb494cd5..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_emergency_button_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_light_link.STL
deleted file mode 100755
index afc66745f..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_stop_light_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_stop_light_link.STL
deleted file mode 100755
index 9e30a0a21..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_stop_light_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_wheel_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_wheel_link.STL
deleted file mode 100755
index 0d0940a96..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/rear_right_wheel_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_I_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_I_link.STL
deleted file mode 100755
index e0769efe7..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_I_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_antenna_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_antenna_link.STL
deleted file mode 100755
index 9a0c069b0..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_antenna_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_blue_outer_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_blue_outer_link.STL
deleted file mode 100755
index 717f1c931..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_blue_outer_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_fixed_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_fixed_hinge_link.STL
deleted file mode 100755
index 0307a31e6..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_fixed_hinge_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_steering_hinge_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_steering_hinge_link.STL
deleted file mode 100755
index 01cb60e1b..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/right_steering_hinge_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/top_rack_link.STL b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/top_rack_link.STL
deleted file mode 100755
index 33cbd12b1..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/meshes/top_rack_link.STL and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/plane.off b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/plane.off
deleted file mode 100644
index 5ce7162d9..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/model/plane.off
+++ /dev/null
@@ -1,8 +0,0 @@
-OFF
-4 2 0
--5.000000 -5.000000 0.000000
--5.000000 5.000000 0.000000
-5.000000 -5.000000 0.000000
-5.000000 5.000000 0.000000
-3 0 2 1
-3 1 2 3
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/roadster.glb b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/roadster.glb
deleted file mode 100644
index df678011d..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/models/roadster.glb and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/robots.txt b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/robots.txt
deleted file mode 100644
index 8b1378917..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/robots.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_diff_1k.jpg b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_diff_1k.jpg
deleted file mode 100644
index 6901ddd40..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_diff_1k.jpg and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_nor_gl_1k.jpg b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_nor_gl_1k.jpg
deleted file mode 100644
index 242b35b8a..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_nor_gl_1k.jpg and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_rough_1k.jpg b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_rough_1k.jpg
deleted file mode 100644
index 318a6f224..000000000
Binary files a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/public/textures/ground_grey_rough_1k.jpg and /dev/null differ
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/server/tsconfig.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/server/tsconfig.json
deleted file mode 100644
index b9ed69c19..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/server/tsconfig.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "extends": "../.nuxt/tsconfig.server.json"
-}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/test.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/test.js
deleted file mode 100644
index e69de29bb..000000000
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/tsconfig.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/tsconfig.json
deleted file mode 100644
index a746f2a70..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/tsconfig.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- // https://nuxt.com/docs/guide/concepts/typescript
- "extends": "./.nuxt/tsconfig.json"
-}
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/uno.config.ts b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/uno.config.ts
deleted file mode 100644
index 29cf9773a..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/uno.config.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-// uno.config.ts
-import {
- defineConfig,
- presetAttributify,
- presetIcons,
- presetTypography,
- presetUno,
- presetWebFonts,
- transformerDirectives,
- transformerVariantGroup,
-} from "unocss";
-
-export default defineConfig({
- shortcuts: [
- // ...
- ],
- theme: {
- colors: {
- // ...
- },
- },
- presets: [
- presetUno(),
- presetAttributify(),
- presetIcons(),
- presetTypography(),
- presetWebFonts({
- fonts: {
- // ...
- },
- }),
- ],
- transformers: [transformerDirectives(), transformerVariantGroup()],
-});
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/constants.js b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/constants.js
deleted file mode 100644
index 1665a4c5b..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/constants.js
+++ /dev/null
@@ -1,14 +0,0 @@
-export const HUMAN_BODY_RATIOS = {
- head: 1 / 8,
- body: 3 / 8,
- arm: 3 / 8,
- leg: 4 / 8,
-};
-
-export const HUMAN_TO_CAR_HEIGHT_RATIO = 1.2;
-// export const CAR_MODEL_PATH = "/models/model/gem_e4.urdf";
-export const CAR_MODEL_PATH = "/models/roadster.glb";
-export const TRAFFIC_LIGHT_MODEL_PATH = "/models/Traffic Light_01.glb";
-export const STREET_LIGHT_MODEL_PATH = "/models/StreetLightPoles.glb";
-export const ENV_MAP_PATH = "/textures/env/";
-export const ENV_MAP_NAME = "Tropical_Ruins.hdr";
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/converted_for_threejs.json b/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/converted_for_threejs.json
deleted file mode 100644
index 445ecac01..000000000
--- a/GEMstack/onboard/visualization/sr_viz/threeD/legacy/utils/converted_for_threejs.json
+++ /dev/null
@@ -1,56143 +0,0 @@
-{
- "framerate": 60,
- "totalFrames": 883,
- "data": [
- {
- "render_frame": 0,
- "timestamp": 1739683968.6830168,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.0,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 1,
- "timestamp": 1739683968.7130167,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.0,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 2,
- "timestamp": 1739683968.7330167,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 3,
- "timestamp": 1739683968.7530167,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 4,
- "timestamp": 1739683968.7730167,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 5,
- "timestamp": 1739683968.7930167,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 6,
- "timestamp": 1739683968.8130167,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.003595169735893,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.07981842311360376,
- "acceleration": 0.7959453690376366,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36000000000000004,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 7,
- "timestamp": 1739683968.8330166,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0035951697358926893,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.07981842311360376,
- "acceleration": 0.7959453690376366,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36000000000000004,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 8,
- "timestamp": 1739683968.8530166,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0035951697358926893,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.07981842311360376,
- "acceleration": 0.7959453690376366,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36000000000000004,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 9,
- "timestamp": 1739683968.8730166,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0035951697358926893,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.07981842311360376,
- "acceleration": 0.7959453690376366,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36000000000000004,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 10,
- "timestamp": 1739683968.8930166,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0035951697358926893,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.07981842311360376,
- "acceleration": 0.7959453690376366,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36000000000000004,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 11,
- "timestamp": 1739683968.9130166,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0035951697358926893,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.07981842311360376,
- "acceleration": 0.7959453690376366,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36000000000000004,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 12,
- "timestamp": 1739683968.9330165,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.017290738272547,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.17933042167527002,
- "acceleration": 0.914948092763614,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.37987779325580157,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 13,
- "timestamp": 1739683968.9530165,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.017290738272547124,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.17933042167527002,
- "acceleration": 0.914948092763614,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.37987779325580157,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 14,
- "timestamp": 1739683968.9730165,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.017290738272547124,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.17933042167527002,
- "acceleration": 0.914948092763614,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.37987779325580157,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 15,
- "timestamp": 1739683968.9930165,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.017290738272547124,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.17933042167527002,
- "acceleration": 0.914948092763614,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.37987779325580157,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 16,
- "timestamp": 1739683969.0130165,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.017290738272547124,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.17933042167527002,
- "acceleration": 0.914948092763614,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.37987779325580157,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 17,
- "timestamp": 1739683969.0330164,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.041464035328369,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.26849674060038253,
- "acceleration": 0.8158119513827263,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36479323094558014,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 18,
- "timestamp": 1739683969.0530164,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.041464035328369064,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.26849674060038253,
- "acceleration": 0.8158119513827263,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36479323094558014,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 19,
- "timestamp": 1739683969.0730164,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.041464035328369064,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.26849674060038253,
- "acceleration": 0.8158119513827263,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36479323094558014,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 20,
- "timestamp": 1739683969.0930164,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.041464035328369064,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.26849674060038253,
- "acceleration": 0.8158119513827263,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36479323094558014,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 21,
- "timestamp": 1739683969.1130164,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.041464035328369064,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.26849674060038253,
- "acceleration": 0.8158119513827263,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36479323094558014,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 22,
- "timestamp": 1739683969.1330163,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.041464035328369064,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.26849674060038253,
- "acceleration": 0.8158119513827263,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.36479323094558014,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 23,
- "timestamp": 1739683969.1530163,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.074861577126129,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.3471250772125315,
- "acceleration": 0.7270877893738422,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3513038402282827,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 24,
- "timestamp": 1739683969.1730163,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0748615771261294,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.3471250772125315,
- "acceleration": 0.7270877893738422,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3513038402282827,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 25,
- "timestamp": 1739683969.1930163,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0748615771261294,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.3471250772125315,
- "acceleration": 0.7270877893738422,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3513038402282827,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 26,
- "timestamp": 1739683969.2430162,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.0748615771261294,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.3471250772125315,
- "acceleration": 0.7270877893738422,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3513038402282827,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 27,
- "timestamp": 1739683969.2630162,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.116582753215267,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.4180508209181069,
- "acceleration": 0.6487859289057847,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3394297815744629,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 28,
- "timestamp": 1739683969.2830162,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.11658275321526723,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.4180508209181069,
- "acceleration": 0.6487859289057847,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3394297815744629,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 29,
- "timestamp": 1739683969.423016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.165540403846739,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.47675602185338994,
- "acceleration": 0.578488620880097,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3287359016026402,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 30,
- "timestamp": 1739683969.443016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.16554040384673918,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.47675602185338994,
- "acceleration": 0.578488620880097,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3287359016026402,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 31,
- "timestamp": 1739683969.463016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.16554040384673918,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.47675602185338994,
- "acceleration": 0.578488620880097,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3287359016026402,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 32,
- "timestamp": 1739683969.483016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.221067010119578,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5363754058707364,
- "acceleration": 0.5196589862292474,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3198967587652823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 33,
- "timestamp": 1739683969.503016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.22106701011957774,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5363754058707364,
- "acceleration": 0.5196589862292474,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3198967587652823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 34,
- "timestamp": 1739683969.523016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.22106701011957774,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5363754058707364,
- "acceleration": 0.5196589862292474,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3198967587652823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 35,
- "timestamp": 1739683969.543016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.22106701011957774,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5363754058707364,
- "acceleration": 0.5196589862292474,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3198967587652823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 36,
- "timestamp": 1739683969.563016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.22106701011957774,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5363754058707364,
- "acceleration": 0.5196589862292474,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3198967587652823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 37,
- "timestamp": 1739683969.583016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.28257753583501,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5866972862119225,
- "acceleration": 0.46054334881595005,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3109312560292849,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 38,
- "timestamp": 1739683969.603016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.28257753583501,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5866972862119225,
- "acceleration": 0.46054334881595005,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3109312560292849,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 39,
- "timestamp": 1739683969.6330159,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.28257753583501,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5866972862119225,
- "acceleration": 0.46054334881595005,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3109312560292849,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 40,
- "timestamp": 1739683969.6630158,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.28257753583501,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5866972862119225,
- "acceleration": 0.46054334881595005,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3109312560292849,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 41,
- "timestamp": 1739683969.7030158,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.349296493341371,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6311103066646642,
- "acceleration": 0.4105411976301412,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3033727544248253,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 42,
- "timestamp": 1739683969.7130158,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.34929649334137114,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6311103066646642,
- "acceleration": 0.4105411976301412,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3033727544248253,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 43,
- "timestamp": 1739683969.7430158,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.34929649334137114,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6311103066646642,
- "acceleration": 0.4105411976301412,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3033727544248253,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 44,
- "timestamp": 1739683969.7530158,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.34929649334137114,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6311103066646642,
- "acceleration": 0.4105411976301412,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3033727544248253,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 45,
- "timestamp": 1739683969.7730157,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.34929649334137114,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6311103066646642,
- "acceleration": 0.4105411976301412,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3033727544248253,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 46,
- "timestamp": 1739683969.7930157,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.34929649334137114,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6311103066646642,
- "acceleration": 0.4105411976301412,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.3033727544248253,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 47,
- "timestamp": 1739683969.8130157,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.420748989575078,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6715732646033915,
- "acceleration": 0.3663394411328825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.29670851373765644,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 48,
- "timestamp": 1739683969.8330157,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.42074898957507756,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6715732646033915,
- "acceleration": 0.3663394411328825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.29670851373765644,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 49,
- "timestamp": 1739683969.8530157,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.42074898957507756,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6715732646033915,
- "acceleration": 0.3663394411328825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.29670851373765644,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 50,
- "timestamp": 1739683969.8830156,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.42074898957507756,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6715732646033915,
- "acceleration": 0.3663394411328825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.29670851373765644,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 51,
- "timestamp": 1739683969.9130156,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.496374674260012,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.70686423446749,
- "acceleration": 0.32617572294101116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2906424808198526,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 52,
- "timestamp": 1739683969.9330156,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.4963746742600117,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.70686423446749,
- "acceleration": 0.32617572294101116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2906424808198526,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 53,
- "timestamp": 1739683969.9730155,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.4963746742600117,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.70686423446749,
- "acceleration": 0.32617572294101116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2906424808198526,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 54,
- "timestamp": 1739683969.9930155,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.4963746742600117,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.70686423446749,
- "acceleration": 0.32617572294101116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2906424808198526,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 55,
- "timestamp": 1739683970.0230155,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.57567809132606,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7383678976601944,
- "acceleration": 0.29110528130961666,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.28535608763449244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 56,
- "timestamp": 1739683970.0430155,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.5756780913260604,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7383678976601944,
- "acceleration": 0.29110528130961666,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.28535608763449244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 57,
- "timestamp": 1739683970.0630155,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.5756780913260604,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7383678976601944,
- "acceleration": 0.29110528130961666,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.28535608763449244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 58,
- "timestamp": 1739683970.1330154,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.658338416997827,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7670622450071868,
- "acceleration": 0.25976541161825284,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2806403789993227,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 59,
- "timestamp": 1739683970.1530154,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.658338416997827,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7670622450071868,
- "acceleration": 0.25976541161825284,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2806403789993227,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 60,
- "timestamp": 1739683970.1830153,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.658338416997827,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7670622450071868,
- "acceleration": 0.25976541161825284,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2806403789993227,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 61,
- "timestamp": 1739683970.2030153,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.658338416997827,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7670622450071868,
- "acceleration": 0.25976541161825284,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2806403789993227,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 62,
- "timestamp": 1739683970.2130153,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.658338416997827,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7670622450071868,
- "acceleration": 0.25976541161825284,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2806403789993227,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 63,
- "timestamp": 1739683970.2330153,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.658338416997827,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7670622450071868,
- "acceleration": 0.25976541161825284,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2806403789993227,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 64,
- "timestamp": 1739683970.2530153,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.743944484252134,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7920831683238224,
- "acceleration": 0.23129659624871712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2763479539392524,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 65,
- "timestamp": 1739683970.2830153,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.7439444842521343,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7920831683238224,
- "acceleration": 0.23129659624871712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2763479539392524,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 66,
- "timestamp": 1739683970.3030152,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.7439444842521343,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7920831683238224,
- "acceleration": 0.23129659624871712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2763479539392524,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 67,
- "timestamp": 1739683970.3230152,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.7439444842521343,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7920831683238224,
- "acceleration": 0.23129659624871712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2763479539392524,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 68,
- "timestamp": 1739683970.3430152,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.7439444842521343,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7920831683238224,
- "acceleration": 0.23129659624871712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2763479539392524,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 69,
- "timestamp": 1739683970.3530152,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.832170137533272,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8142056166570657,
- "acceleration": 0.20645535885297545,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.27260719160764607,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 70,
- "timestamp": 1739683970.3730152,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.8321701375332724,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8142056166570657,
- "acceleration": 0.20645535885297545,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.27260719160764607,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 71,
- "timestamp": 1739683970.3930151,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.8321701375332724,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8142056166570657,
- "acceleration": 0.20645535885297545,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.27260719160764607,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 72,
- "timestamp": 1739683970.4130151,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.8321701375332724,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8142056166570657,
- "acceleration": 0.20645535885297545,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.27260719160764607,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 73,
- "timestamp": 1739683970.443015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.8321701375332724,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8142056166570657,
- "acceleration": 0.20645535885297545,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.27260719160764607,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 74,
- "timestamp": 1739683970.463015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 4.922714488811366,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.834175574431562,
- "acceleration": 0.18446670442638624,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26930143552603947,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 75,
- "timestamp": 1739683970.493015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.9227144888113656,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.834175574431562,
- "acceleration": 0.18446670442638624,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26930143552603947,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 76,
- "timestamp": 1739683970.523015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.9227144888113656,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.834175574431562,
- "acceleration": 0.18446670442638624,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26930143552603947,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 77,
- "timestamp": 1739683970.563015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 0.9227144888113656,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.834175574431562,
- "acceleration": 0.18446670442638624,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26930143552603947,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 78,
- "timestamp": 1739683970.583015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.015359130465452,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8519989119169116,
- "acceleration": 0.16463272612487684,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26631867090876776,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 79,
- "timestamp": 1739683970.603015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.015359130465452,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8519989119169116,
- "acceleration": 0.16463272612487684,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26631867090876776,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 80,
- "timestamp": 1739683970.623015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.015359130465452,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8519989119169116,
- "acceleration": 0.16463272612487684,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26631867090876776,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 81,
- "timestamp": 1739683970.633015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.015359130465452,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8519989119169116,
- "acceleration": 0.16463272612487684,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26631867090876776,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 82,
- "timestamp": 1739683970.653015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.015359130465452,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8519989119169116,
- "acceleration": 0.16463272612487684,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26631867090876776,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 83,
- "timestamp": 1739683970.6730149,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.015359130465452,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8519989119169116,
- "acceleration": 0.16463272612487684,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.26631867090876776,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 84,
- "timestamp": 1739683970.6930149,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.109880485873169,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8680674745215928,
- "acceleration": 0.14692127000870742,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2636576088220816,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 85,
- "timestamp": 1739683970.7130148,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.1098804858731688,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8680674745215928,
- "acceleration": 0.14692127000870742,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2636576088220816,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 86,
- "timestamp": 1739683970.7330148,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.1098804858731688,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8680674745215928,
- "acceleration": 0.14692127000870742,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2636576088220816,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 87,
- "timestamp": 1739683970.7630148,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.1098804858731688,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8680674745215928,
- "acceleration": 0.14692127000870742,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2636576088220816,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 88,
- "timestamp": 1739683970.7830148,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.1098804858731688,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8680674745215928,
- "acceleration": 0.14692127000870742,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2636576088220816,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 89,
- "timestamp": 1739683970.8330147,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.206082244190068,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8823896003411495,
- "acceleration": 0.13096571652275035,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2612594096972336,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 90,
- "timestamp": 1739683970.8630147,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.2060822441900676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8823896003411495,
- "acceleration": 0.13096571652275035,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2612594096972336,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 91,
- "timestamp": 1739683970.8830147,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.2060822441900676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8823896003411495,
- "acceleration": 0.13096571652275035,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2612594096972336,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 92,
- "timestamp": 1739683970.9030147,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.303816433090176,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.895424882963841,
- "acceleration": 0.11672689238530976,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2591225589990096,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 93,
- "timestamp": 1739683970.9130147,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.3038164330901756,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.895424882963841,
- "acceleration": 0.11672689238530976,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2591225589990096,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 94,
- "timestamp": 1739683970.9430146,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.3038164330901756,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.895424882963841,
- "acceleration": 0.11672689238530976,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2591225589990096,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 95,
- "timestamp": 1739683970.9530146,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.3038164330901756,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.895424882963841,
- "acceleration": 0.11672689238530976,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2591225589990096,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 96,
- "timestamp": 1739683970.9830146,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.3038164330901756,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.895424882963841,
- "acceleration": 0.11672689238530976,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2591225589990096,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 97,
- "timestamp": 1739683971.0130146,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.402864711937085,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9066536468299733,
- "acceleration": 0.10381132770005969,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2571782749431455,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 98,
- "timestamp": 1739683971.0330145,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.4028647119370854,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9066536468299733,
- "acceleration": 0.10381132770005969,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2571782749431455,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 99,
- "timestamp": 1739683971.0530145,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.4028647119370854,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9066536468299733,
- "acceleration": 0.10381132770005969,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2571782749431455,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 100,
- "timestamp": 1739683971.0730145,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.4028647119370854,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9066536468299733,
- "acceleration": 0.10381132770005969,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2571782749431455,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 101,
- "timestamp": 1739683971.0830145,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.4028647119370854,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9066536468299733,
- "acceleration": 0.10381132770005969,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2571782749431455,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 102,
- "timestamp": 1739683971.0930145,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.4028647119370854,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9066536468299733,
- "acceleration": 0.10381132770005969,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2571782749431455,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 103,
- "timestamp": 1739683971.1130145,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.4028647119370854,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9066536468299733,
- "acceleration": 0.10381132770005969,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2571782749431455,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 104,
- "timestamp": 1739683971.1330144,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.503128795080697,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9170947504266419,
- "acceleration": 0.09263387853069305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2555038790183402,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 105,
- "timestamp": 1739683971.1530144,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.5031287950806966,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9170947504266419,
- "acceleration": 0.09263387853069305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2555038790183402,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 106,
- "timestamp": 1739683971.2030144,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.5031287950806966,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9170947504266419,
- "acceleration": 0.09263387853069305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2555038790183402,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 107,
- "timestamp": 1739683971.2330143,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.604457866310368,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9260910886713266,
- "acceleration": 0.08228961342856045,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2539472983851666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 108,
- "timestamp": 1739683971.2530143,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.6044578663103684,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9260910886713266,
- "acceleration": 0.08228961342856045,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2539472983851666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 109,
- "timestamp": 1739683971.2730143,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.6044578663103684,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9260910886713266,
- "acceleration": 0.08228961342856045,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2539472983851666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 110,
- "timestamp": 1739683971.3130143,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.6044578663103684,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9260910886713266,
- "acceleration": 0.08228961342856045,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2539472983851666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 111,
- "timestamp": 1739683971.3330142,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.6044578663103684,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9260910886713266,
- "acceleration": 0.08228961342856045,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2539472983851666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 112,
- "timestamp": 1739683971.3530142,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.706718056358012,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9340307441491561,
- "acceleration": 0.07336424128978802,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2526063860491847,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 113,
- "timestamp": 1739683971.3930142,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.706718056358012,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9340307441491561,
- "acceleration": 0.07336424128978802,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2526063860491847,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 114,
- "timestamp": 1739683971.4130142,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.706718056358012,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9340307441491561,
- "acceleration": 0.07336424128978802,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2526063860491847,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 115,
- "timestamp": 1739683971.4430141,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.706718056358012,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9340307441491561,
- "acceleration": 0.07336424128978802,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2526063860491847,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 116,
- "timestamp": 1739683971.4630141,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.809805686312504,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.940976760217425,
- "acceleration": 0.0654917167248959,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2514231883789536,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 117,
- "timestamp": 1739683971.483014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.8098056863125036,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.940976760217425,
- "acceleration": 0.0654917167248959,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2514231883789536,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 118,
- "timestamp": 1739683971.523014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.8098056863125036,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.940976760217425,
- "acceleration": 0.0654917167248959,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2514231883789536,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 119,
- "timestamp": 1739683971.543014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.8098056863125036,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.940976760217425,
- "acceleration": 0.0654917167248959,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2514231883789536,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 120,
- "timestamp": 1739683971.563014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 5.913632829667502,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9473856954701637,
- "acceleration": 0.05858176909281615,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2503882320681823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 121,
- "timestamp": 1739683971.583014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.9136328296675016,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9473856954701637,
- "acceleration": 0.05858176909281615,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2503882320681823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 122,
- "timestamp": 1739683971.603014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.9136328296675016,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9473856954701637,
- "acceleration": 0.05858176909281615,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2503882320681823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 123,
- "timestamp": 1739683971.643014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.9136328296675016,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9473856954701637,
- "acceleration": 0.05858176909281615,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2503882320681823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 124,
- "timestamp": 1739683971.663014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 1.9136328296675016,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9473856954701637,
- "acceleration": 0.05858176909281615,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2503882320681823,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 125,
- "timestamp": 1739683971.683014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.0181229993929835,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9530375830457731,
- "acceleration": 0.05222430036389336,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2494334377381055,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 126,
- "timestamp": 1739683971.703014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.0181229993929835,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9530375830457731,
- "acceleration": 0.05222430036389336,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2494334377381055,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 127,
- "timestamp": 1739683971.7230139,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.0181229993929835,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9530375830457731,
- "acceleration": 0.05222430036389336,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2494334377381055,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 128,
- "timestamp": 1739683971.7430139,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.0181229993929835,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9530375830457731,
- "acceleration": 0.05222430036389336,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2494334377381055,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 129,
- "timestamp": 1739683971.7630138,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.0181229993929835,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9530375830457731,
- "acceleration": 0.05222430036389336,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2494334377381055,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 130,
- "timestamp": 1739683971.7930138,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.123211425739463,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9581357362287196,
- "acceleration": 0.04661007475167145,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24859153639255888,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.89410842225647,
- 5.068643217455343,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 131,
- "timestamp": 1739683971.8230138,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.1232114257394628,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9581357362287196,
- "acceleration": 0.04661007475167145,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24859153639255888,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 132,
- "timestamp": 1739683971.8330138,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.1232114257394628,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9581357362287196,
- "acceleration": 0.04661007475167145,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24859153639255888,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 133,
- "timestamp": 1739683971.8530138,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.1232114257394628,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9581357362287196,
- "acceleration": 0.04661007475167145,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24859153639255888,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 134,
- "timestamp": 1739683971.8830137,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.1232114257394628,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9581357362287196,
- "acceleration": 0.04661007475167145,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24859153639255888,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.8517289551340514,
- 4.94764442438624,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 135,
- "timestamp": 1739683971.8930137,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.228829767973886,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9626337646101597,
- "acceleration": 0.0415529655949185,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2478322066356963,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 136,
- "timestamp": 1739683971.9030137,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.2288297679738864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9626337646101597,
- "acceleration": 0.0415529655949185,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2478322066356963,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 137,
- "timestamp": 1739683971.9330137,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.2288297679738864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9626337646101597,
- "acceleration": 0.0415529655949185,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2478322066356963,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 138,
- "timestamp": 1739683971.9630136,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.2288297679738864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9626337646101597,
- "acceleration": 0.0415529655949185,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2478322066356963,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 139,
- "timestamp": 1739683971.9830136,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.2288297679738864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9626337646101597,
- "acceleration": 0.0415529655949185,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2478322066356963,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.809349488011633,
- 4.826645631317137,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 140,
- "timestamp": 1739683972.0130136,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.334920493483379,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9666892335348876,
- "acceleration": 0.037085218848956436,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24716232980288377,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 141,
- "timestamp": 1739683972.0530136,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.334920493483379,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9666892335348876,
- "acceleration": 0.037085218848956436,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24716232980288377,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 142,
- "timestamp": 1739683972.0730135,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.334920493483379,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9666892335348876,
- "acceleration": 0.037085218848956436,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24716232980288377,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 143,
- "timestamp": 1739683972.0930135,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.334920493483379,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9666892335348876,
- "acceleration": 0.037085218848956436,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24716232980288377,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.7669700208892145,
- 4.705646838248034,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 144,
- "timestamp": 1739683972.1130135,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.4414385621202337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9703056626347419,
- "acceleration": 0.033059894963031855,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24655841742146872,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 145,
- "timestamp": 1739683972.1330135,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.4414385621202337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9703056626347419,
- "acceleration": 0.033059894963031855,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24655841742146872,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 146,
- "timestamp": 1739683972.1730134,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.4414385621202337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9703056626347419,
- "acceleration": 0.033059894963031855,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24655841742146872,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 147,
- "timestamp": 1739683972.1930134,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.4414385621202337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9703056626347419,
- "acceleration": 0.033059894963031855,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24655841742146872,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.724590553766796,
- 4.584648045178931,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 148,
- "timestamp": 1739683972.2130134,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.4414385621202337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9703056626347419,
- "acceleration": 0.033059894963031855,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24655841742146872,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 149,
- "timestamp": 1739683972.2330134,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.548335164204922,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9735607246138273,
- "acceleration": 0.02946831021060825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2460199282058249,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 150,
- "timestamp": 1739683972.2630134,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.5483351642049223,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9735607246138273,
- "acceleration": 0.02946831021060825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2460199282058249,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 151,
- "timestamp": 1739683972.2930133,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.5483351642049223,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9735607246138273,
- "acceleration": 0.02946831021060825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2460199282058249,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.682211086644378,
- 4.463649252109828,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 152,
- "timestamp": 1739683972.3130133,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.5483351642049223,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9735607246138273,
- "acceleration": 0.02946831021060825,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2460199282058249,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 153,
- "timestamp": 1739683972.3330133,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.655573266708575,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9764602677364562,
- "acceleration": 0.026237756530467726,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24553528263391522,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 154,
- "timestamp": 1739683972.3630133,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.6555732667085747,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9764602677364562,
- "acceleration": 0.026237756530467726,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24553528263391522,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 155,
- "timestamp": 1739683972.3830132,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.6555732667085747,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9764602677364562,
- "acceleration": 0.026237756530467726,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24553528263391522,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.639831619521959,
- 4.342650459040725,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 156,
- "timestamp": 1739683972.4030132,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.6555732667085747,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9764602677364562,
- "acceleration": 0.026237756530467726,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24553528263391522,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 157,
- "timestamp": 1739683972.4230132,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.6555732667085747,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9764602677364562,
- "acceleration": 0.026237756530467726,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24553528263391522,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 158,
- "timestamp": 1739683972.4330132,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.6555732667085747,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9764602677364562,
- "acceleration": 0.026237756530467726,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24553528263391522,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 159,
- "timestamp": 1739683972.4630132,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.7631161024007165,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9790680448702115,
- "acceleration": 0.023358347586675876,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2451035987512074,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 160,
- "timestamp": 1739683972.4730132,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.7631161024007165,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9790680448702115,
- "acceleration": 0.023358347586675876,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2451035987512074,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 161,
- "timestamp": 1739683972.5030131,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.7631161024007165,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9790680448702115,
- "acceleration": 0.023358347586675876,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2451035987512074,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.597452152399541,
- 4.221651665971622,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 162,
- "timestamp": 1739683972.5130131,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.7631161024007165,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9790680448702115,
- "acceleration": 0.023358347586675876,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2451035987512074,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 163,
- "timestamp": 1739683972.533013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.7631161024007165,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9790680448702115,
- "acceleration": 0.023358347586675876,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2451035987512074,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 164,
- "timestamp": 1739683972.553013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.870933349917439,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9814113095818212,
- "acceleration": 0.020768852673316796,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24471537595810544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 165,
- "timestamp": 1739683972.593013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.870933349917439,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9814113095818212,
- "acceleration": 0.020768852673316796,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24471537595810544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.555072685277122,
- 4.100652872902519,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 166,
- "timestamp": 1739683972.623013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.870933349917439,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9814113095818212,
- "acceleration": 0.020768852673316796,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24471537595810544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 167,
- "timestamp": 1739683972.643013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.870933349917439,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9814113095818212,
- "acceleration": 0.020768852673316796,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24471537595810544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 168,
- "timestamp": 1739683972.663013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 6.978983394909455,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9833642538352498,
- "acceleration": 0.01845267223404884,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24436654999728336,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 169,
- "timestamp": 1739683972.683013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.978983394909455,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9833642538352498,
- "acceleration": 0.01845267223404884,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24436654999728336,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.512693218154704,
- 3.979654079833416,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 170,
- "timestamp": 1739683972.723013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.978983394909455,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9833642538352498,
- "acceleration": 0.01845267223404884,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24436654999728336,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 171,
- "timestamp": 1739683972.753013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 2.978983394909455,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9833642538352498,
- "acceleration": 0.01845267223404884,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24436654999728336,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 172,
- "timestamp": 1739683972.7730129,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.087238748127472,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.985117227154951,
- "acceleration": 0.016513590543600076,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24407584182619557,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 173,
- "timestamp": 1739683972.7830129,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.087238748127472,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.985117227154951,
- "acceleration": 0.016513590543600076,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24407584182619557,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.470313751032285,
- 3.8586552867643125,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 174,
- "timestamp": 1739683972.8130128,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.087238748127472,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.985117227154951,
- "acceleration": 0.016513590543600076,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24407584182619557,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 175,
- "timestamp": 1739683972.8230128,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.087238748127472,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.985117227154951,
- "acceleration": 0.016513590543600076,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24407584182619557,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 176,
- "timestamp": 1739683972.8430128,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.087238748127472,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.985117227154951,
- "acceleration": 0.016513590543600076,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24407584182619557,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 177,
- "timestamp": 1739683972.8630128,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.087238748127472,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.985117227154951,
- "acceleration": 0.016513590543600076,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24407584182619557,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 178,
- "timestamp": 1739683972.8830128,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.1956817387966625,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9867328123517624,
- "acceleration": 0.014770136667866862,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2438149109944274,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.427934283909867,
- 3.737656493695209,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 179,
- "timestamp": 1739683972.9030128,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.1956817387966625,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9867328123517624,
- "acceleration": 0.014770136667866862,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2438149109944274,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 180,
- "timestamp": 1739683972.9330127,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.1956817387966625,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9867328123517624,
- "acceleration": 0.014770136667866862,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2438149109944274,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 181,
- "timestamp": 1739683972.9630127,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.1956817387966625,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9867328123517624,
- "acceleration": 0.014770136667866862,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2438149109944274,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 182,
- "timestamp": 1739683972.9830127,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.1956817387966625,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9867328123517624,
- "acceleration": 0.014770136667866862,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2438149109944274,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.385554816787448,
- 3.6166577006261056,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 183,
- "timestamp": 1739683973.0030127,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.304292382954305,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9881579442031129,
- "acceleration": 0.013167786258468983,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2435744391512867,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 184,
- "timestamp": 1739683973.0230126,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.304292382954305,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9881579442031129,
- "acceleration": 0.013167786258468983,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2435744391512867,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 185,
- "timestamp": 1739683973.0630126,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.304292382954305,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9881579442031129,
- "acceleration": 0.013167786258468983,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2435744391512867,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 186,
- "timestamp": 1739683973.0930126,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.304292382954305,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9881579442031129,
- "acceleration": 0.013167786258468983,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2435744391512867,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.34317534966503,
- 3.495658907557002,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 187,
- "timestamp": 1739683973.1330125,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.413053876862829,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9894434423932155,
- "acceleration": 0.011752358857349932,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24336232227743362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 188,
- "timestamp": 1739683973.1530125,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.413053876862829,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9894434423932155,
- "acceleration": 0.011752358857349932,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24336232227743362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 189,
- "timestamp": 1739683973.1730125,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.413053876862829,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9894434423932155,
- "acceleration": 0.011752358857349932,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24336232227743362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 190,
- "timestamp": 1739683973.1830125,
- "objects": [
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.300795882542611,
- 3.3746601144878987,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 191,
- "timestamp": 1739683973.2030125,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.413053876862829,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9894434423932155,
- "acceleration": 0.011752358857349932,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24336232227743362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 192,
- "timestamp": 1739683973.2330124,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.521952298480564,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9906130021918159,
- "acceleration": 0.010474921672689042,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24317099407734316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 193,
- "timestamp": 1739683973.2530124,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.5219522984805636,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9906130021918159,
- "acceleration": 0.010474921672689042,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24317099407734316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 194,
- "timestamp": 1739683973.2730124,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.5219522984805636,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9906130021918159,
- "acceleration": 0.010474921672689042,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24317099407734316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 195,
- "timestamp": 1739683973.2930124,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.5219522984805636,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9906130021918159,
- "acceleration": 0.010474921672689042,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24317099407734316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.258416415420193,
- 3.2536613214187953,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 196,
- "timestamp": 1739683973.3230124,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.630971718914795,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9916424357914658,
- "acceleration": 0.0093151201246921,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24299692625902236,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 197,
- "timestamp": 1739683973.3630123,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.630971718914795,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9916424357914658,
- "acceleration": 0.0093151201246921,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24299692625902236,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 198,
- "timestamp": 1739683973.3930123,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.630971718914795,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9916424357914658,
- "acceleration": 0.0093151201246921,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24299692625902236,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.216036948297774,
- 3.132662528349692,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 199,
- "timestamp": 1739683973.4130123,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.630971718914795,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9916424357914658,
- "acceleration": 0.0093151201246921,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24299692625902236,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 200,
- "timestamp": 1739683973.4330122,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.74009452334862,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9925120326323037,
- "acceleration": 0.008296830221917462,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2428437173124371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 201,
- "timestamp": 1739683973.4730122,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.7400945233486196,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9925120326323037,
- "acceleration": 0.008296830221917462,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2428437173124371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 202,
- "timestamp": 1739683973.5030122,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.7400945233486196,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9925120326323037,
- "acceleration": 0.008296830221917462,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2428437173124371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.173657481175356,
- 3.0116637352805884,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 203,
- "timestamp": 1739683973.5230122,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.7400945233486196,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9925120326323037,
- "acceleration": 0.008296830221917462,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2428437173124371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 204,
- "timestamp": 1739683973.5430121,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.849311820233365,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9933253077943766,
- "acceleration": 0.007431153287743852,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2427142992557617,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 205,
- "timestamp": 1739683973.573012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.849311820233365,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9933253077943766,
- "acceleration": 0.007431153287743852,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2427142992557617,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 206,
- "timestamp": 1739683973.583012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.849311820233365,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9933253077943766,
- "acceleration": 0.007431153287743852,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2427142992557617,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.1312780140529375,
- 2.890664942211485,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 207,
- "timestamp": 1739683973.603012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.849311820233365,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9933253077943766,
- "acceleration": 0.007431153287743852,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2427142992557617,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 208,
- "timestamp": 1739683973.623012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.849311820233365,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9933253077943766,
- "acceleration": 0.007431153287743852,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2427142992557617,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 209,
- "timestamp": 1739683973.653012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 7.958612247454683,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9940349231180269,
- "acceleration": 0.00662510882670625,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24259326548262244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 210,
- "timestamp": 1739683973.663012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.958612247454683,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9940349231180269,
- "acceleration": 0.00662510882670625,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24259326548262244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 211,
- "timestamp": 1739683973.683012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.958612247454683,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9940349231180269,
- "acceleration": 0.00662510882670625,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24259326548262244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.088898546930519,
- 2.7696661491423815,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 212,
- "timestamp": 1739683973.703012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.958612247454683,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9940349231180269,
- "acceleration": 0.00662510882670625,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24259326548262244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 213,
- "timestamp": 1739683973.723012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.958612247454683,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9940349231180269,
- "acceleration": 0.00662510882670625,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24259326548262244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 214,
- "timestamp": 1739683973.743012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 3.958612247454683,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9940349231180269,
- "acceleration": 0.00662510882670625,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24259326548262244,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 215,
- "timestamp": 1739683973.763012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.06798760617938,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9946759768951231,
- "acceleration": 0.005920275486779147,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2424876603714653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 216,
- "timestamp": 1739683973.783012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.067987606179379,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9946759768951231,
- "acceleration": 0.005920275486779147,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2424876603714653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.0465190798081005,
- 2.648667356073278,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 217,
- "timestamp": 1739683973.813012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.067987606179379,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9946759768951231,
- "acceleration": 0.005920275486779147,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2424876603714653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 218,
- "timestamp": 1739683973.8330119,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.067987606179379,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9946759768951231,
- "acceleration": 0.005920275486779147,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2424876603714653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 219,
- "timestamp": 1739683973.8530118,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.067987606179379,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9946759768951231,
- "acceleration": 0.005920275486779147,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2424876603714653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 220,
- "timestamp": 1739683973.8730118,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.177429208295727,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9952364040468872,
- "acceleration": 0.005284849738009634,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24239225999036093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 221,
- "timestamp": 1739683973.9130118,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.177429208295727,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9952364040468872,
- "acceleration": 0.005284849738009634,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24239225999036093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 5.004139612685682,
- 2.5276685630041746,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 222,
- "timestamp": 1739683973.9430118,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.177429208295727,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9952364040468872,
- "acceleration": 0.005284849738009634,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24239225999036093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 223,
- "timestamp": 1739683973.9630117,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.177429208295727,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9952364040468872,
- "acceleration": 0.005284849738009634,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24239225999036093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 224,
- "timestamp": 1739683973.9930117,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.28692907050273,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9957281629751825,
- "acceleration": 0.004729217260680485,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24230885938477745,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.961760145563264,
- 2.406669769935071,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 225,
- "timestamp": 1739683974.0230117,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.28692907050273,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9957281629751825,
- "acceleration": 0.004729217260680485,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24230885938477745,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 226,
- "timestamp": 1739683974.0730116,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.28692907050273,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9957281629751825,
- "acceleration": 0.004729217260680485,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24230885938477745,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 227,
- "timestamp": 1739683974.0830116,
- "objects": [
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.919380678440845,
- 2.2856709768659678,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 228,
- "timestamp": 1739683974.1030116,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.396481999988808,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9961876309056564,
- "acceleration": 0.004239711414018854,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24223567854703937,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 229,
- "timestamp": 1739683974.1230116,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.396481999988808,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9961876309056564,
- "acceleration": 0.004239711414018854,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24223567854703937,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 230,
- "timestamp": 1739683974.1430116,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.396481999988808,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9961876309056564,
- "acceleration": 0.004239711414018854,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24223567854703937,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 231,
- "timestamp": 1739683974.1630116,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.396481999988808,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9961876309056564,
- "acceleration": 0.004239711414018854,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24223567854703937,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 232,
- "timestamp": 1739683974.1830115,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.396481999988808,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9961876309056564,
- "acceleration": 0.004239711414018854,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24223567854703937,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.877001211318427,
- 2.1646721837968643,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 233,
- "timestamp": 1739683974.2130115,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.506083281272923,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9966014675467395,
- "acceleration": 0.003783430370820351,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421673037758913,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 234,
- "timestamp": 1739683974.2330115,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.5060832812729235,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9966014675467395,
- "acceleration": 0.003783430370820351,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421673037758913,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 235,
- "timestamp": 1739683974.2530115,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.5060832812729235,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9966014675467395,
- "acceleration": 0.003783430370820351,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421673037758913,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 236,
- "timestamp": 1739683974.2730114,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.5060832812729235,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9966014675467395,
- "acceleration": 0.003783430370820351,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421673037758913,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 237,
- "timestamp": 1739683974.3030114,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.5060832812729235,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9966014675467395,
- "acceleration": 0.003783430370820351,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421673037758913,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.834621744196008,
- 2.043673390727761,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 238,
- "timestamp": 1739683974.3330114,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.615727841274328,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9969703440936057,
- "acceleration": 0.00337273480705913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421057201090817,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 239,
- "timestamp": 1739683974.3430114,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.615727841274328,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9969703440936057,
- "acceleration": 0.00337273480705913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421057201090817,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 240,
- "timestamp": 1739683974.3630114,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.615727841274328,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9969703440936057,
- "acceleration": 0.00337273480705913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421057201090817,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 241,
- "timestamp": 1739683974.3830113,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.615727841274328,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9969703440936057,
- "acceleration": 0.00337273480705913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421057201090817,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.79224227707359,
- 1.9226745976586577,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 242,
- "timestamp": 1739683974.4030113,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.615727841274328,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9969703440936057,
- "acceleration": 0.00337273480705913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2421057201090817,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 243,
- "timestamp": 1739683974.4230113,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.725411355361505,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9973025876131756,
- "acceleration": 0.00300641788783762,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24205082748497533,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 244,
- "timestamp": 1739683974.4430113,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.725411355361505,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9973025876131756,
- "acceleration": 0.00300641788783762,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24205082748497533,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 245,
- "timestamp": 1739683974.4730113,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.725411355361505,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9973025876131756,
- "acceleration": 0.00300641788783762,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24205082748497533,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 246,
- "timestamp": 1739683974.4930112,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.725411355361505,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9973025876131756,
- "acceleration": 0.00300641788783762,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24205082748497533,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.749862809951171,
- 1.8016758045895545,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 247,
- "timestamp": 1739683974.5130112,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.725411355361505,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9973025876131756,
- "acceleration": 0.00300641788783762,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24205082748497533,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 248,
- "timestamp": 1739683974.5330112,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.835128872511458,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9975922666444974,
- "acceleration": 0.0026771496431687303,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24200138660481324,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 249,
- "timestamp": 1739683974.5730112,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.835128872511458,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9975922666444974,
- "acceleration": 0.0026771496431687303,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24200138660481324,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 250,
- "timestamp": 1739683974.5930111,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.835128872511458,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9975922666444974,
- "acceleration": 0.0026771496431687303,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24200138660481324,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.707483342828753,
- 1.6806770115204512,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 251,
- "timestamp": 1739683974.6130111,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.835128872511458,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9975922666444974,
- "acceleration": 0.0026771496431687303,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24200138660481324,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 252,
- "timestamp": 1739683974.633011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.835128872511458,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9975922666444974,
- "acceleration": 0.0026771496431687303,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24200138660481324,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 253,
- "timestamp": 1739683974.673011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 8.944876874729797,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9978510120275462,
- "acceleration": 0.002389632968995248,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24195827999878666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 254,
- "timestamp": 1739683974.713011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.944876874729797,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9978510120275462,
- "acceleration": 0.002389632968995248,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24195827999878666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.665103875706334,
- 1.559678218451348,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 255,
- "timestamp": 1739683974.733011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 4.944876874729797,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9978510120275462,
- "acceleration": 0.002389632968995248,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24195827999878666,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 256,
- "timestamp": 1739683974.753011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.05465274439807,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998089112229392,
- "acceleration": 0.002132330624896872,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24191977679934001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 257,
- "timestamp": 1739683974.783011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.054652744398069,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998089112229392,
- "acceleration": 0.002132330624896872,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24191977679934001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.622724408583916,
- 1.4386794253822448,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 258,
- "timestamp": 1739683974.803011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.054652744398069,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998089112229392,
- "acceleration": 0.002132330624896872,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24191977679934001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 259,
- "timestamp": 1739683974.823011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.054652744398069,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998089112229392,
- "acceleration": 0.002132330624896872,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24191977679934001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 260,
- "timestamp": 1739683974.853011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.054652744398069,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998089112229392,
- "acceleration": 0.002132330624896872,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24191977679934001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 261,
- "timestamp": 1739683974.8830109,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.164452451817482,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998292123246752,
- "acceleration": 0.0018966843458834148,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2418843459426538,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.580344941461497,
- 1.3176806323131416,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.212512683930768,
- -8.299750561319007,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 262,
- "timestamp": 1739683974.9030108,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.164452451817482,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998292123246752,
- "acceleration": 0.0018966843458834148,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2418843459426538,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 263,
- "timestamp": 1739683974.9230108,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.164452451817482,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998292123246752,
- "acceleration": 0.0018966843458834148,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2418843459426538,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 264,
- "timestamp": 1739683974.9630108,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.164452451817482,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.998292123246752,
- "acceleration": 0.0018966843458834148,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2418843459426538,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 265,
- "timestamp": 1739683974.9830108,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.274274040472456,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9984794131834065,
- "acceleration": 0.001694772504269526,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24185413672783213,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.537965474339079,
- 1.1966818392440384,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.183074177371761,
- -8.349225652431592,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 266,
- "timestamp": 1739683975.0030107,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.274274040472456,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9984794131834065,
- "acceleration": 0.001694772504269526,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24185413672783213,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 267,
- "timestamp": 1739683975.0230107,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.274274040472456,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9984794131834065,
- "acceleration": 0.001694772504269526,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24185413672783213,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 268,
- "timestamp": 1739683975.0430107,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.274274040472456,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9984794131834065,
- "acceleration": 0.001694772504269526,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24185413672783213,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 269,
- "timestamp": 1739683975.0630107,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.274274040472456,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9984794131834065,
- "acceleration": 0.001694772504269526,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24185413672783213,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 270,
- "timestamp": 1739683975.0930107,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.384115006570521,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9986444384116359,
- "acceleration": 0.001509039796988021,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24182626701780396,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.4955860072166605,
- 1.0756830461749352,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.153635670812754,
- -8.398700743544177,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 271,
- "timestamp": 1739683975.1030107,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.3841150065705214,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9986444384116359,
- "acceleration": 0.001509039796988021,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24182626701780396,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 272,
- "timestamp": 1739683975.1230106,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.3841150065705214,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9986444384116359,
- "acceleration": 0.001509039796988021,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24182626701780396,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 273,
- "timestamp": 1739683975.1430106,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.3841150065705214,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9986444384116359,
- "acceleration": 0.001509039796988021,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24182626701780396,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 274,
- "timestamp": 1739683975.1630106,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.3841150065705214,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9986444384116359,
- "acceleration": 0.001509039796988021,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24182626701780396,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 275,
- "timestamp": 1739683975.1830106,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.3841150065705214,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9986444384116359,
- "acceleration": 0.001509039796988021,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24182626701780396,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.453206540094242,
- 0.9546842531058319,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.124197164253747,
- -8.448175834656762,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 276,
- "timestamp": 1739683975.2230105,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.493973353107963,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9987930628509667,
- "acceleration": 0.0013451616861103743,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24180171050442414,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 277,
- "timestamp": 1739683975.2530105,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.493973353107963,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9987930628509667,
- "acceleration": 0.0013451616861103743,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24180171050442414,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 278,
- "timestamp": 1739683975.2730105,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.493973353107963,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9987930628509667,
- "acceleration": 0.0013451616861103743,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24180171050442414,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 279,
- "timestamp": 1739683975.2830105,
- "objects": [
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.4108270729718235,
- 0.8336854600367287,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.09475865769474,
- -8.497650925769348,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 280,
- "timestamp": 1739683975.3030105,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.60384753457952,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9989281666962959,
- "acceleration": 0.001197482958566809,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24177959457849182,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 281,
- "timestamp": 1739683975.3330104,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.60384753457952,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9989281666962959,
- "acceleration": 0.001197482958566809,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24177959457849182,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 282,
- "timestamp": 1739683975.3530104,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.60384753457952,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9989281666962959,
- "acceleration": 0.001197482958566809,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24177959457849182,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 283,
- "timestamp": 1739683975.3730104,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.60384753457952,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9989281666962959,
- "acceleration": 0.001197482958566809,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24177959457849182,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 284,
- "timestamp": 1739683975.3930104,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.60384753457952,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9989281666962959,
- "acceleration": 0.001197482958566809,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24177959457849182,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.368447605849405,
- 0.7126866669676255,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.065320151135733,
- -8.547126016881933,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 285,
- "timestamp": 1739683975.4030104,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.60384753457952,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9989281666962959,
- "acceleration": 0.001197482958566809,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24177959457849182,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 286,
- "timestamp": 1739683975.4130104,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.71373534685254,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9990432403452012,
- "acceleration": 0.0010637804826567065,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417594906337138,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 287,
- "timestamp": 1739683975.4330103,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.713735346852539,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9990432403452012,
- "acceleration": 0.0010637804826567065,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417594906337138,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 288,
- "timestamp": 1739683975.4730103,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.713735346852539,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9990432403452012,
- "acceleration": 0.0010637804826567065,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417594906337138,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 289,
- "timestamp": 1739683975.4930103,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.713735346852539,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9990432403452012,
- "acceleration": 0.0010637804826567065,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417594906337138,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.326068138726987,
- 0.5916878738985223,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.035881644576726,
- -8.596601107994518,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 290,
- "timestamp": 1739683975.5030103,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.713735346852539,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9990432403452012,
- "acceleration": 0.0010637804826567065,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417594906337138,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 291,
- "timestamp": 1739683975.5230103,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.823635367232729,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9991481396116885,
- "acceleration": 0.0009494186033738305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24174236730125653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 292,
- "timestamp": 1739683975.5430102,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.823635367232729,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9991481396116885,
- "acceleration": 0.0009494186033738305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24174236730125653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 293,
- "timestamp": 1739683975.5630102,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.823635367232729,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9991481396116885,
- "acceleration": 0.0009494186033738305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24174236730125653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 294,
- "timestamp": 1739683975.5830102,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.823635367232729,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9991481396116885,
- "acceleration": 0.0009494186033738305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24174236730125653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.283688671604568,
- 0.470689080829419,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 9.006443138017719,
- -8.646076199107103,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 295,
- "timestamp": 1739683975.6130102,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.823635367232729,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9991481396116885,
- "acceleration": 0.0009494186033738305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24174236730125653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 296,
- "timestamp": 1739683975.6230102,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.823635367232729,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9991481396116885,
- "acceleration": 0.0009494186033738305,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24174236730125653,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 297,
- "timestamp": 1739683975.6430101,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 9.933546157349065,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9992396224340299,
- "acceleration": 0.0008454580656684363,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24172675798684656,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 298,
- "timestamp": 1739683975.67301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.933546157349065,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9992396224340299,
- "acceleration": 0.0008454580656684363,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24172675798684656,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 299,
- "timestamp": 1739683975.69301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.933546157349065,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9992396224340299,
- "acceleration": 0.0008454580656684363,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24172675798684656,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.24130920448215,
- 0.34969028776031574,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.977004631458712,
- -8.695551290219688,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 300,
- "timestamp": 1739683975.71301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.933546157349065,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9992396224340299,
- "acceleration": 0.0008454580656684363,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24172675798684656,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 301,
- "timestamp": 1739683975.73301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 5.933546157349065,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9992396224340299,
- "acceleration": 0.0008454580656684363,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24172675798684656,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 302,
- "timestamp": 1739683975.76301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.043466725832104,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993230076113765,
- "acceleration": 0.0007545418021093764,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24171314510689484,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 303,
- "timestamp": 1739683975.79301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.043466725832104,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993230076113765,
- "acceleration": 0.0007545418021093764,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24171314510689484,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.198929737359731,
- 0.22869149469121247,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.947566124899705,
- -8.745026381332274,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 304,
- "timestamp": 1739683975.81301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.043466725832104,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993230076113765,
- "acceleration": 0.0007545418021093764,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24171314510689484,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 305,
- "timestamp": 1739683975.83301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.043466725832104,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993230076113765,
- "acceleration": 0.0007545418021093764,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24171314510689484,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 306,
- "timestamp": 1739683975.86301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.153396082758027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993980193847185,
- "acceleration": 0.0006717425238698116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417007372007371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 307,
- "timestamp": 1739683975.88301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.153396082758027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993980193847185,
- "acceleration": 0.0006717425238698116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417007372007371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.156550270237313,
- 0.1076927016221092,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.918127618340698,
- -8.794501472444859,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 308,
- "timestamp": 1739683975.90301,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.153396082758027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993980193847185,
- "acceleration": 0.0006717425238698116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417007372007371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 309,
- "timestamp": 1739683975.9230099,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.153396082758027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9993980193847185,
- "acceleration": 0.0006717425238698116,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2417007372007371,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 310,
- "timestamp": 1739683975.9630098,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.263333238384348,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9994646987660861,
- "acceleration": 0.000597313816918188,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24168957529536295,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 311,
- "timestamp": 1739683975.9730098,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.263333238384348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9994646987660861,
- "acceleration": 0.000597313816918188,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24168957529536295,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 312,
- "timestamp": 1739683976.0130098,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.263333238384348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9994646987660861,
- "acceleration": 0.000597313816918188,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24168957529536295,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.114170803114894,
- -0.013306091446994073,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.88868911178169,
- -8.843976563557444,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 313,
- "timestamp": 1739683976.0330098,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.263333238384348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9994646987660861,
- "acceleration": 0.000597313816918188,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24168957529536295,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 314,
- "timestamp": 1739683976.0530097,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.263333238384348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9994646987660861,
- "acceleration": 0.000597313816918188,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24168957529536295,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 315,
- "timestamp": 1739683976.0930097,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.373277232805126,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999522774325833,
- "acceleration": 0.0005312365327621582,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167965328208224,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.071791335992476,
- -0.13430488451609734,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.859250605222684,
- -8.893451654670029,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 316,
- "timestamp": 1739683976.1130097,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.373277232805126,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999522774325833,
- "acceleration": 0.0005312365327621582,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167965328208224,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 317,
- "timestamp": 1739683976.1230097,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.373277232805126,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999522774325833,
- "acceleration": 0.0005312365327621582,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167965328208224,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 318,
- "timestamp": 1739683976.1430097,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.373277232805126,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999522774325833,
- "acceleration": 0.0005312365327621582,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167965328208224,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 319,
- "timestamp": 1739683976.1730096,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.373277232805126,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999522774325833,
- "acceleration": 0.0005312365327621582,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167965328208224,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 320,
- "timestamp": 1739683976.2030096,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.483227508742695,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9995767076963623,
- "acceleration": 0.0004734508239096491,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167101154470702,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 4.029411868870057,
- -0.2553036775852006,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.829812098663677,
- -8.942926745782614,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 321,
- "timestamp": 1739683976.2230096,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.483227508742695,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9995767076963623,
- "acceleration": 0.0004734508239096491,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167101154470702,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 322,
- "timestamp": 1739683976.2430096,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.483227508742695,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9995767076963623,
- "acceleration": 0.0004734508239096491,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167101154470702,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 323,
- "timestamp": 1739683976.2630095,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.483227508742695,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9995767076963623,
- "acceleration": 0.0004734508239096491,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24167101154470702,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 324,
- "timestamp": 1739683976.3030095,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.593183291455038,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996231282910543,
- "acceleration": 0.0004200432334501847,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416629861814635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.987032401747639,
- -0.3763024706543039,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.80037359210467,
- -8.9924018368952,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 325,
- "timestamp": 1739683976.3230095,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.593183291455038,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996231282910543,
- "acceleration": 0.0004200432334501847,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416629861814635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 326,
- "timestamp": 1739683976.3430095,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.593183291455038,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996231282910543,
- "acceleration": 0.0004200432334501847,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416629861814635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 327,
- "timestamp": 1739683976.3530095,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.593183291455038,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996231282910543,
- "acceleration": 0.0004200432334501847,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416629861814635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 328,
- "timestamp": 1739683976.3830094,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.593183291455038,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996231282910543,
- "acceleration": 0.0004200432334501847,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416629861814635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.9446529346252204,
- -0.49730126372340716,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.770935085545663,
- -9.041876928007785,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 329,
- "timestamp": 1739683976.4030094,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.703143952118822,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996648774604859,
- "acceleration": 0.00037394956433722815,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416560787375428,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 330,
- "timestamp": 1739683976.4230094,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.703143952118822,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996648774604859,
- "acceleration": 0.00037394956433722815,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416560787375428,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 331,
- "timestamp": 1739683976.4630094,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.703143952118822,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996648774604859,
- "acceleration": 0.00037394956433722815,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416560787375428,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 332,
- "timestamp": 1739683976.4930093,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.703143952118822,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9996648774604859,
- "acceleration": 0.00037394956433722815,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416560787375428,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.902273467502802,
- -0.6183000567925104,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.741496578986656,
- -9.09135201912037,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 333,
- "timestamp": 1739683976.5130093,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.813108799250337,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997001030550947,
- "acceleration": 0.00033265697158080254,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24164986641357108,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 334,
- "timestamp": 1739683976.5230093,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.813108799250337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997001030550947,
- "acceleration": 0.00033265697158080254,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24164986641357108,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 335,
- "timestamp": 1739683976.5530093,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.813108799250337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997001030550947,
- "acceleration": 0.00033265697158080254,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24164986641357108,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 336,
- "timestamp": 1739683976.5730093,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.813108799250337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997001030550947,
- "acceleration": 0.00033265697158080254,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24164986641357108,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 337,
- "timestamp": 1739683976.5930092,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.813108799250337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997001030550947,
- "acceleration": 0.00033265697158080254,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24164986641357108,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.8598940003803834,
- -0.7392988498616138,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.712058072427649,
- -9.140827110232955,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 338,
- "timestamp": 1739683976.6130092,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.813108799250337,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997001030550947,
- "acceleration": 0.00033265697158080254,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24164986641357108,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 339,
- "timestamp": 1739683976.6430092,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 10.923077370341923,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997320218462371,
- "acceleration": 0.00029766281078408285,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.241644624809303,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 340,
- "timestamp": 1739683976.6630092,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.9230773703419235,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997320218462371,
- "acceleration": 0.00029766281078408285,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.241644624809303,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 341,
- "timestamp": 1739683976.6930091,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.9230773703419235,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997320218462371,
- "acceleration": 0.00029766281078408285,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.241644624809303,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.817514533257965,
- -0.860297642930717,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.682619565868642,
- -9.19030220134554,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 342,
- "timestamp": 1739683976.713009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 6.9230773703419235,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997320218462371,
- "acceleration": 0.00029766281078408285,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.241644624809303,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 343,
- "timestamp": 1739683976.733009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.033049464192418,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997625768362262,
- "acceleration": 0.0002658394588889723,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416398752641796,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 344,
- "timestamp": 1739683976.763009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.033049464192418,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997625768362262,
- "acceleration": 0.0002658394588889723,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416398752641796,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 345,
- "timestamp": 1739683976.783009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.033049464192418,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997625768362262,
- "acceleration": 0.0002658394588889723,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416398752641796,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.7751350661355465,
- -0.9812964359998202,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.653181059309635,
- -9.239777292458125,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 346,
- "timestamp": 1739683976.803009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.033049464192418,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997625768362262,
- "acceleration": 0.0002658394588889723,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416398752641796,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 347,
- "timestamp": 1739683976.833009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.033049464192418,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997625768362262,
- "acceleration": 0.0002658394588889723,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416398752641796,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 348,
- "timestamp": 1739683976.873009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.14302468239625,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997888905107274,
- "acceleration": 0.0002355813245842331,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416353286569612,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 349,
- "timestamp": 1739683976.893009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.14302468239625,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997888905107274,
- "acceleration": 0.0002355813245842331,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416353286569612,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.732755599013128,
- -1.1022952290689234,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.623742552750628,
- -9.28925238357071,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- }
- ]
- },
- {
- "render_frame": 350,
- "timestamp": 1739683976.913009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.14302468239625,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997888905107274,
- "acceleration": 0.0002355813245842331,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416353286569612,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 351,
- "timestamp": 1739683976.943009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.14302468239625,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9997888905107274,
- "acceleration": 0.0002355813245842331,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416353286569612,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 352,
- "timestamp": 1739683976.9630089,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.253002653869624,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998122847373627,
- "acceleration": 0.00020947198671011913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24163141316331133,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 353,
- "timestamp": 1739683976.9930089,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.253002653869624,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998122847373627,
- "acceleration": 0.00020947198671011913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24163141316331133,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.6903761318907096,
- -1.2232940221380266,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.59430404619162,
- -9.338727474683296,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 354,
- "timestamp": 1739683977.0030088,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.253002653869624,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998122847373627,
- "acceleration": 0.00020947198671011913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24163141316331133,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 355,
- "timestamp": 1739683977.0330088,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.253002653869624,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998122847373627,
- "acceleration": 0.00020947198671011913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24163141316331133,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 356,
- "timestamp": 1739683977.0530088,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.253002653869624,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998122847373627,
- "acceleration": 0.00020947198671011913,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24163141316331133,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 357,
- "timestamp": 1739683977.0730088,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.362983044845949,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998328704286555,
- "acceleration": 0.00018627433729406784,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162793208745967,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 358,
- "timestamp": 1739683977.0930088,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.362983044845949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998328704286555,
- "acceleration": 0.00018627433729406784,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162793208745967,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.647996664768291,
- -1.3442928152071298,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.564865539632613,
- -9.388202565795881,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 359,
- "timestamp": 1739683977.1130087,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.362983044845949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998328704286555,
- "acceleration": 0.00018627433729406784,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162793208745967,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 360,
- "timestamp": 1739683977.1330087,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.362983044845949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998328704286555,
- "acceleration": 0.00018627433729406784,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162793208745967,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 361,
- "timestamp": 1739683977.1430087,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.362983044845949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998328704286555,
- "acceleration": 0.00018627433729406784,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162793208745967,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 362,
- "timestamp": 1739683977.1730087,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.472965629423229,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998517612094938,
- "acceleration": 0.0001658072762612539,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162486892490773,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 363,
- "timestamp": 1739683977.1930087,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.4729656294232285,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998517612094938,
- "acceleration": 0.0001658072762612539,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162486892490773,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.6056171976458726,
- -1.465291608276233,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.535427033073606,
- -9.437677656908466,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 364,
- "timestamp": 1739683977.2030087,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.4729656294232285,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998517612094938,
- "acceleration": 0.0001658072762612539,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162486892490773,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 365,
- "timestamp": 1739683977.2230086,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.4729656294232285,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998517612094938,
- "acceleration": 0.0001658072762612539,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162486892490773,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 366,
- "timestamp": 1739683977.2630086,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.4729656294232285,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998517612094938,
- "acceleration": 0.0001658072762612539,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162486892490773,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 367,
- "timestamp": 1739683977.2830086,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.582950104227564,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999867669334626,
- "acceleration": 0.0001471252663802769,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162205796718692,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.563237730523454,
- -1.5862904013453363,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.5059885265146,
- -9.487152748021051,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 368,
- "timestamp": 1739683977.3030086,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.582950104227564,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999867669334626,
- "acceleration": 0.0001471252663802769,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162205796718692,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 369,
- "timestamp": 1739683977.3230085,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.582950104227564,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999867669334626,
- "acceleration": 0.0001471252663802769,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162205796718692,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 370,
- "timestamp": 1739683977.3630085,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.582950104227564,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999867669334626,
- "acceleration": 0.0001471252663802769,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162205796718692,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 371,
- "timestamp": 1739683977.3830085,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.582950104227564,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999867669334626,
- "acceleration": 0.0001471252663802769,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24162205796718692,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.5208582634010357,
- -1.7072891944144395,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.476550019955592,
- -9.536627839133637,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 372,
- "timestamp": 1739683977.4030085,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.692936246750962,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999881887547928,
- "acceleration": 0.00013133542605120452,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161969083102589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 373,
- "timestamp": 1739683977.4330084,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.692936246750962,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999881887547928,
- "acceleration": 0.00013133542605120452,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161969083102589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 374,
- "timestamp": 1739683977.4630084,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.692936246750962,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999881887547928,
- "acceleration": 0.00013133542605120452,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161969083102589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 375,
- "timestamp": 1739683977.4830084,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.692936246750962,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999881887547928,
- "acceleration": 0.00013133542605120452,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161969083102589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.4784787962786172,
- -1.8282879874835427,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.447111513396585,
- -9.586102930246222,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 376,
- "timestamp": 1739683977.5030084,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.802923877132246,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998944515298152,
- "acceleration": 0.00011723300144073079,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161757515518922,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 377,
- "timestamp": 1739683977.5230083,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.802923877132246,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998944515298152,
- "acceleration": 0.00011723300144073079,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161757515518922,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 378,
- "timestamp": 1739683977.5430083,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.802923877132246,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998944515298152,
- "acceleration": 0.00011723300144073079,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161757515518922,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 379,
- "timestamp": 1739683977.5630083,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.802923877132246,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998944515298152,
- "acceleration": 0.00011723300144073079,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161757515518922,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 380,
- "timestamp": 1739683977.5830083,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.802923877132246,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998944515298152,
- "acceleration": 0.00011723300144073079,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161757515518922,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.4360993291561988,
- -1.949286780552646,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.417673006837578,
- -9.635578021358807,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 381,
- "timestamp": 1739683977.6030083,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.802923877132246,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9998944515298152,
- "acceleration": 0.00011723300144073079,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161757515518922,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 382,
- "timestamp": 1739683977.6230083,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 11.912912824462968,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999057943900492,
- "acceleration": 0.00010475449262620229,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161570563018828,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 383,
- "timestamp": 1739683977.6830082,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.912912824462968,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999057943900492,
- "acceleration": 0.00010475449262620229,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161570563018828,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.3937198620337803,
- -2.0702855736217494,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.388234500278571,
- -9.685053112471392,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 384,
- "timestamp": 1739683977.7030082,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 7.912912824462968,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999057943900492,
- "acceleration": 0.00010475449262620229,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161570563018828,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 385,
- "timestamp": 1739683977.7230082,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.02290294927391,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999915609674839,
- "acceleration": 9.351855754530236e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161401780896022,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 386,
- "timestamp": 1739683977.7430081,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.02290294927391,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999915609674839,
- "acceleration": 9.351855754530236e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161401780896022,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 387,
- "timestamp": 1739683977.763008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.02290294927391,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999915609674839,
- "acceleration": 9.351855754530236e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161401780896022,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 388,
- "timestamp": 1739683977.783008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.02290294927391,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999915609674839,
- "acceleration": 9.351855754530236e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161401780896022,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.351340394911362,
- -2.191284366690853,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.358795993719564,
- -9.734528203583977,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 389,
- "timestamp": 1739683977.803008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.02290294927391,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999915609674839,
- "acceleration": 9.351855754530236e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161401780896022,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 390,
- "timestamp": 1739683977.823008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.02290294927391,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999915609674839,
- "acceleration": 9.351855754530236e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161401780896022,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 391,
- "timestamp": 1739683977.843008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.132894112608422,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999246829125209,
- "acceleration": 8.37552130139585e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161255729177875,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 392,
- "timestamp": 1739683977.873008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.132894112608422,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999246829125209,
- "acceleration": 8.37552130139585e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161255729177875,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 393,
- "timestamp": 1739683977.903008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.132894112608422,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999246829125209,
- "acceleration": 8.37552130139585e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161255729177875,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.3089609277889434,
- -2.3122831597599562,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.329357487160557,
- -9.784003294696562,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.099751323760866,
- 3.496484465023636,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 394,
- "timestamp": 1739683977.933008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.132894112608422,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999246829125209,
- "acceleration": 8.37552130139585e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161255729177875,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 395,
- "timestamp": 1739683977.953008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.242886235685603,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999327780620413,
- "acceleration": 7.47504385513742e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161120719169316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 396,
- "timestamp": 1739683977.973008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.242886235685603,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999327780620413,
- "acceleration": 7.47504385513742e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161120719169316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 397,
- "timestamp": 1739683978.003008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.242886235685603,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999327780620413,
- "acceleration": 7.47504385513742e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161120719169316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.266581460666525,
- -2.4332819528290597,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.29991898060155,
- -9.833478385809148,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.107417739335705,
- 3.557663516112715,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 398,
- "timestamp": 1739683978.0330079,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.242886235685603,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999327780620413,
- "acceleration": 7.47504385513742e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161120719169316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 399,
- "timestamp": 1739683978.0430079,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.242886235685603,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999327780620413,
- "acceleration": 7.47504385513742e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161120719169316,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 400,
- "timestamp": 1739683978.0730078,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.352879205244825,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999400750979504,
- "acceleration": 6.671115472300926e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161000263159832,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 401,
- "timestamp": 1739683978.0930078,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.352879205244825,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999400750979504,
- "acceleration": 6.671115472300926e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161000263159832,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.2242019935441064,
- -2.554280745898163,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.270480474042543,
- -9.882953476921733,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.115084154910544,
- 3.618842567201794,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 402,
- "timestamp": 1739683978.1030078,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.352879205244825,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999400750979504,
- "acceleration": 6.671115472300926e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161000263159832,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 403,
- "timestamp": 1739683978.1330078,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.352879205244825,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999400750979504,
- "acceleration": 6.671115472300926e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24161000263159832,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 404,
- "timestamp": 1739683978.1630077,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.462872945329087,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999466466614622,
- "acceleration": 5.9464900047934144e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160891683117058,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 405,
- "timestamp": 1739683978.2130077,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.462872945329087,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999466466614622,
- "acceleration": 5.9464900047934144e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160891683117058,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.181822526421688,
- -2.6752795389672666,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.241041967483536,
- -9.932428568034318,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.122750570485383,
- 3.6800216182908727,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 406,
- "timestamp": 1739683978.2330077,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.462872945329087,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999466466614622,
- "acceleration": 5.9464900047934144e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160891683117058,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 407,
- "timestamp": 1739683978.2530077,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.462872945329087,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999466466614622,
- "acceleration": 5.9464900047934144e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160891683117058,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 408,
- "timestamp": 1739683978.2830076,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.572867345453778,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999521979918268,
- "acceleration": 5.296475102789522e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160793898132898,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.1394430592992695,
- -2.79627833203637,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.211603460924529,
- -9.981903659146903,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.130416986060222,
- 3.7412006693799515,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 409,
- "timestamp": 1739683978.3030076,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.572867345453778,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999521979918268,
- "acceleration": 5.296475102789522e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160793898132898,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 410,
- "timestamp": 1739683978.3330076,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.572867345453778,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999521979918268,
- "acceleration": 5.296475102789522e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160793898132898,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 411,
- "timestamp": 1739683978.3530076,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.572867345453778,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999521979918268,
- "acceleration": 5.296475102789522e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160793898132898,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 412,
- "timestamp": 1739683978.3630075,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.572867345453778,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999521979918268,
- "acceleration": 5.296475102789522e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160793898132898,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 413,
- "timestamp": 1739683978.3930075,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.682862351819864,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999574400133625,
- "acceleration": 4.743507140259062e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160711294247225,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.097063592176851,
- -2.9172771251054734,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.182164954365522,
- -10.031378750259488,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.138083401635061,
- 3.8023797204690304,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 414,
- "timestamp": 1739683978.4230075,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.682862351819864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999574400133625,
- "acceleration": 4.743507140259062e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160711294247225,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 415,
- "timestamp": 1739683978.4430075,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.682862351819864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999574400133625,
- "acceleration": 4.743507140259062e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160711294247225,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 416,
- "timestamp": 1739683978.4630075,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.682862351819864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999574400133625,
- "acceleration": 4.743507140259062e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160711294247225,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 417,
- "timestamp": 1739683978.4830074,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.682862351819864,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999574400133625,
- "acceleration": 4.743507140259062e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160711294247225,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.0546841250544325,
- -3.038275918174577,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.152726447806515,
- -10.080853841372074,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.1457498172099,
- 3.8635587715581092,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 418,
- "timestamp": 1739683978.5130074,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.792857913607142,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999962203172842,
- "acceleration": 4.2226569301528905e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160633292890984,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 419,
- "timestamp": 1739683978.5330074,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.792857913607142,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999962203172842,
- "acceleration": 4.2226569301528905e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160633292890984,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 420,
- "timestamp": 1739683978.5530074,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.792857913607142,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999962203172842,
- "acceleration": 4.2226569301528905e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160633292890984,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 421,
- "timestamp": 1739683978.5730073,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.792857913607142,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999962203172842,
- "acceleration": 4.2226569301528905e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160633292890984,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 422,
- "timestamp": 1739683978.5930073,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.792857913607142,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999962203172842,
- "acceleration": 4.2226569301528905e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160633292890984,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.012304657932014,
- -3.1592747112436803,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.123287941247508,
- -10.130328932484659,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.153416232784739,
- 3.924737822647188,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 423,
- "timestamp": 1739683978.6230073,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 12.902853962720265,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999663050408618,
- "acceleration": 3.7509699328974744e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160562417016687,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 424,
- "timestamp": 1739683978.6730072,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.902853962720265,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999663050408618,
- "acceleration": 3.7509699328974744e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160562417016687,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 425,
- "timestamp": 1739683978.6930072,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 8.902853962720265,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999663050408618,
- "acceleration": 3.7509699328974744e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160562417016687,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.9699251908095956,
- -3.2802735043127837,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.0938494346885,
- -10.179804023597244,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.161082648359578,
- 3.985916873736267,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 426,
- "timestamp": 1739683978.7130072,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.012850437268758,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999698886629846,
- "acceleration": 3.344410787625707e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160501381173635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 427,
- "timestamp": 1739683978.7330072,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.012850437268758,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999698886629846,
- "acceleration": 3.344410787625707e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160501381173635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 428,
- "timestamp": 1739683978.7530072,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.012850437268758,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999698886629846,
- "acceleration": 3.344410787625707e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160501381173635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 429,
- "timestamp": 1739683978.7730072,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.012850437268758,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999698886629846,
- "acceleration": 3.344410787625707e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160501381173635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 430,
- "timestamp": 1739683978.813007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.012850437268758,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999698886629846,
- "acceleration": 3.344410787625707e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160501381173635,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.927545723687177,
- -3.401272297381887,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.064410928129494,
- -10.22927911470983,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.168749063934417,
- 4.047095924825346,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 431,
- "timestamp": 1739683978.843007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.122847281515387,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999730922203464,
- "acceleration": 2.9887089826707847e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160448056839862,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 432,
- "timestamp": 1739683978.883007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.122847281515387,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999730922203464,
- "acceleration": 2.9887089826707847e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160448056839862,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.8851662565647587,
- -3.5222710904509906,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.034972421570487,
- -10.278754205822414,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.176415479509256,
- 4.108274975914425,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 433,
- "timestamp": 1739683978.893007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.122847281515387,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999730922203464,
- "acceleration": 2.9887089826707847e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160448056839862,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 434,
- "timestamp": 1739683978.923007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.122847281515387,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999730922203464,
- "acceleration": 2.9887089826707847e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160448056839862,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 435,
- "timestamp": 1739683978.963007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.232844467428908,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999759849654317,
- "acceleration": 2.6705288970751972e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160400387877093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 436,
- "timestamp": 1739683978.993007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.232844467428908,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999759849654317,
- "acceleration": 2.6705288970751972e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160400387877093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.84278678944234,
- -3.643269883520094,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.00553391501148,
- -10.328229296935,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.184081895084095,
- 4.169454027003503,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 437,
- "timestamp": 1739683979.013007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.232844467428908,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999759849654317,
- "acceleration": 2.6705288970751972e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160400387877093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 438,
- "timestamp": 1739683979.033007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.232844467428908,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999759849654317,
- "acceleration": 2.6705288970751972e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160400387877093,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 439,
- "timestamp": 1739683979.053007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.342841960098879,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999786190311416,
- "acceleration": 2.383065116451366e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160357343806654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 440,
- "timestamp": 1739683979.0730069,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.342841960098879,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999786190311416,
- "acceleration": 2.383065116451366e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160357343806654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 441,
- "timestamp": 1739683979.0930068,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.342841960098879,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999786190311416,
- "acceleration": 2.383065116451366e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160357343806654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.8004073223199217,
- -3.7642686765891975,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.976095408452472,
- -10.377704388047585,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.191748310658934,
- 4.230633078092582,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 442,
- "timestamp": 1739683979.1330068,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.342841960098879,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999786190311416,
- "acceleration": 2.383065116451366e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160357343806654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 443,
- "timestamp": 1739683979.1630068,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.452839723922889,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999809394412965,
- "acceleration": 2.1218541085887832e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160318148889756,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 444,
- "timestamp": 1739683979.1930068,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.452839723922889,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999809394412965,
- "acceleration": 2.1218541085887832e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160318148889756,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.7580278551975033,
- -3.885267469658301,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.946656901893464,
- -10.42717947916017,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.199414726233773,
- 4.291812129181661,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 445,
- "timestamp": 1739683979.2230067,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.452839723922889,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999809394412965,
- "acceleration": 2.1218541085887832e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160318148889756,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 446,
- "timestamp": 1739683979.2430067,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.452839723922889,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999809394412965,
- "acceleration": 2.1218541085887832e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160318148889756,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 447,
- "timestamp": 1739683979.2630067,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.562837728975676,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999829872786443,
- "acceleration": 1.8917210827862352e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160283621171638,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 448,
- "timestamp": 1739683979.2830067,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.562837728975676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999829872786443,
- "acceleration": 1.8917210827862352e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160283621171638,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.715648388075085,
- -4.006266262727404,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.917218395334456,
- -10.476654570272755,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.207081141808612,
- 4.35299118027074,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 449,
- "timestamp": 1739683979.3130066,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.562837728975676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999829872786443,
- "acceleration": 1.8917210827862352e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160283621171638,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 450,
- "timestamp": 1739683979.3330066,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.562837728975676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999829872786443,
- "acceleration": 1.8917210827862352e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160283621171638,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 451,
- "timestamp": 1739683979.3530066,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.562837728975676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999829872786443,
- "acceleration": 1.8917210827862352e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160283621171638,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 452,
- "timestamp": 1739683979.3830066,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.672835944637304,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.99998477811687,
- "acceleration": 1.6887363257112042e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160253149340083,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.6732689209526663,
- -4.127265055796507,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.887779888775448,
- -10.52612966138534,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.21474755738345,
- 4.414170231359819,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 453,
- "timestamp": 1739683979.4130065,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.672835944637304,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.99998477811687,
- "acceleration": 1.6887363257112042e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160253149340083,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 454,
- "timestamp": 1739683979.4330065,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.672835944637304,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.99998477811687,
- "acceleration": 1.6887363257112042e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160253149340083,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 455,
- "timestamp": 1739683979.4530065,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.672835944637304,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.99998477811687,
- "acceleration": 1.6887363257112042e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160253149340083,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 456,
- "timestamp": 1739683979.4730065,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.672835944637304,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.99998477811687,
- "acceleration": 1.6887363257112042e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160253149340083,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 457,
- "timestamp": 1739683979.5130064,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.782834357121825,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999986480125664,
- "acceleration": 1.5102743003647667e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416022650165805,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.630889453830248,
- -4.24826384886561,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.85834138221644,
- -10.575604752497926,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.22241397295829,
- 4.475349282448898,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 458,
- "timestamp": 1739683979.5330064,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.782834357121825,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999986480125664,
- "acceleration": 1.5102743003647667e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416022650165805,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 459,
- "timestamp": 1739683979.5530064,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.782834357121825,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999986480125664,
- "acceleration": 1.5102743003647667e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416022650165805,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 460,
- "timestamp": 1739683979.5730064,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.782834357121825,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999986480125664,
- "acceleration": 1.5102743003647667e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416022650165805,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 461,
- "timestamp": 1739683979.6230063,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 13.892832946393135,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999879785002528,
- "acceleration": 1.3414988497439939e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160201175759366,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.5885099867078294,
- -4.369262641934713,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.828902875657432,
- -10.62507984361051,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.230080388533128,
- 4.5365283335379765,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 462,
- "timestamp": 1739683979.6430063,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.892832946393135,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999879785002528,
- "acceleration": 1.3414988497439939e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160201175759366,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 463,
- "timestamp": 1739683979.6630063,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.892832946393135,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999879785002528,
- "acceleration": 1.3414988497439939e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160201175759366,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 464,
- "timestamp": 1739683979.6830063,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 9.892832946393135,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999879785002528,
- "acceleration": 1.3414988497439939e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160201175759366,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.546130519585411,
- -4.490261435003816,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.799464369098424,
- -10.674554934723096,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.237746804107967,
- 4.597707384627055,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 465,
- "timestamp": 1739683979.7330062,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.002831693236965,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999893245169746,
- "acceleration": 1.1927278882162273e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160178879939362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 466,
- "timestamp": 1739683979.7530062,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.002831693236965,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999893245169746,
- "acceleration": 1.1927278882162273e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160178879939362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 467,
- "timestamp": 1739683979.7730062,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.002831693236965,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999893245169746,
- "acceleration": 1.1927278882162273e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160178879939362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 468,
- "timestamp": 1739683979.7830062,
- "objects": [
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.5037510524629925,
- -4.611260228072919,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.770025862539416,
- -10.724030025835681,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.245413219682806,
- 4.658886435716134,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 469,
- "timestamp": 1739683979.8130062,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.112830579308506,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999905076747138,
- "acceleration": 1.0592662222252969e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160158851205654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 470,
- "timestamp": 1739683979.8330061,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.112830579308506,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999905076747138,
- "acceleration": 1.0592662222252969e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160158851205654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 471,
- "timestamp": 1739683979.8530061,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.112830579308506,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999905076747138,
- "acceleration": 1.0592662222252969e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160158851205654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 472,
- "timestamp": 1739683979.893006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.112830579308506,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999905076747138,
- "acceleration": 1.0592662222252969e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160158851205654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.461371585340574,
- -4.732259021142022,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.740587355980408,
- -10.773505116948266,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.253079635257645,
- 4.720065486805213,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 473,
- "timestamp": 1739683979.913006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.112830579308506,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999905076747138,
- "acceleration": 1.0592662222252969e-05,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160158851205654,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 474,
- "timestamp": 1739683979.943006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.22282958521348,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999915268142721,
- "acceleration": 9.420985700170359e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160141245814676,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 475,
- "timestamp": 1739683979.963006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.22282958521348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999915268142721,
- "acceleration": 9.420985700170359e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160141245814676,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 476,
- "timestamp": 1739683979.983006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.22282958521348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999915268142721,
- "acceleration": 9.420985700170359e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160141245814676,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.4189921182181555,
- -4.853257814211125,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.7111488494214,
- -10.822980208060851,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.260746050832484,
- 4.781244537894292,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 255,
- 0
- ],
- "state": "YELLOW"
- }
- }
- ]
- },
- {
- "render_frame": 477,
- "timestamp": 1739683979.993006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.22282958521348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999915268142721,
- "acceleration": 9.420985700170359e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160141245814676,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 478,
- "timestamp": 1739683980.013006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.22282958521348,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999915268142721,
- "acceleration": 9.420985700170359e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160141245814676,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 479,
- "timestamp": 1739683980.043006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.332828700076734,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999924560069234,
- "acceleration": 8.408142391225226e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416012608101512,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 480,
- "timestamp": 1739683980.063006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.332828700076734,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999924560069234,
- "acceleration": 8.408142391225226e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416012608101512,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 481,
- "timestamp": 1739683980.083006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.332828700076734,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999924560069234,
- "acceleration": 8.408142391225226e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416012608101512,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.376612651095737,
- -4.974256607280228,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.6817103428623925,
- -10.872455299173437,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.268412466407323,
- 4.842423588983371,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 482,
- "timestamp": 1739683980.093006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.332828700076734,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999924560069234,
- "acceleration": 8.408142391225226e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416012608101512,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 483,
- "timestamp": 1739683980.1230059,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.332828700076734,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999924560069234,
- "acceleration": 8.408142391225226e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416012608101512,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 484,
- "timestamp": 1739683980.1430058,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.442827911071634,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999932747348437,
- "acceleration": 7.486682239044029e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160112254626087,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 485,
- "timestamp": 1739683980.1830058,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.442827911071634,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999932747348437,
- "acceleration": 7.486682239044029e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160112254626087,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.3342331839733186,
- -5.095255400349331,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.652271836303385,
- -10.921930390286022,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.276078881982162,
- 4.9036026400724495,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 486,
- "timestamp": 1739683980.2030058,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.442827911071634,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999932747348437,
- "acceleration": 7.486682239044029e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160112254626087,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 487,
- "timestamp": 1739683980.2330058,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.442827911071634,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999932747348437,
- "acceleration": 7.486682239044029e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160112254626087,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 488,
- "timestamp": 1739683980.2530057,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.552827204862576,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999939675061784,
- "acceleration": 6.676771251101776e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160100071952761,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 489,
- "timestamp": 1739683980.2630057,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.552827204862576,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999939675061784,
- "acceleration": 6.676771251101776e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160100071952761,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 490,
- "timestamp": 1739683980.2830057,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.552827204862576,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999939675061784,
- "acceleration": 6.676771251101776e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160100071952761,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.2918537168509,
- -5.216254193418434,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.622833329744377,
- -10.971405481398607,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.283745297557001,
- 4.964781691161528,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 491,
- "timestamp": 1739683980.3130057,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.552827204862576,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999939675061784,
- "acceleration": 6.676771251101776e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160100071952761,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 492,
- "timestamp": 1739683980.3330057,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.552827204862576,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999939675061784,
- "acceleration": 6.676771251101776e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160100071952761,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 493,
- "timestamp": 1739683980.3530056,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.552827204862576,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999939675061784,
- "acceleration": 6.676771251101776e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160100071952761,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 494,
- "timestamp": 1739683980.3930056,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.662826572701748,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999994609987776,
- "acceleration": 5.9875201831594005e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416008976351389,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.2494742497284816,
- -5.337252986487537,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.593394823185369,
- -11.020880572511192,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.29141171313184,
- 5.025960742250607,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 495,
- "timestamp": 1739683980.4130056,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.662826572701748,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999994609987776,
- "acceleration": 5.9875201831594005e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416008976351389,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 496,
- "timestamp": 1739683980.4330056,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.662826572701748,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999994609987776,
- "acceleration": 5.9875201831594005e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416008976351389,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 497,
- "timestamp": 1739683980.4530056,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.662826572701748,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999994609987776,
- "acceleration": 5.9875201831594005e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416008976351389,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 498,
- "timestamp": 1739683980.4730055,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.77282601105957,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999952187605532,
- "acceleration": 5.347398191635211e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160080203386544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 499,
- "timestamp": 1739683980.5130055,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.77282601105957,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999952187605532,
- "acceleration": 5.347398191635211e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160080203386544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.207094782606063,
- -5.45825177955664,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.563956316626361,
- -11.070355663623777,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.299078128706679,
- 5.087139793339686,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 500,
- "timestamp": 1739683980.5330055,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.77282601105957,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999952187605532,
- "acceleration": 5.347398191635211e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160080203386544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 501,
- "timestamp": 1739683980.5530055,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.77282601105957,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999952187605532,
- "acceleration": 5.347398191635211e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160080203386544,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 502,
- "timestamp": 1739683980.5830054,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.882825512502631,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999957542307961,
- "acceleration": 4.7437565780517055e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160071144846626,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.1647153154836447,
- -5.579250572625743,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.534517810067353,
- -11.119830754736363,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.306744544281518,
- 5.148318844428765,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 503,
- "timestamp": 1739683980.6330054,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.882825512502631,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999957542307961,
- "acceleration": 4.7437565780517055e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160071144846626,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 504,
- "timestamp": 1739683980.6530054,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.882825512502631,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999957542307961,
- "acceleration": 4.7437565780517055e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160071144846626,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 505,
- "timestamp": 1739683980.6730053,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.882825512502631,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999957542307961,
- "acceleration": 4.7437565780517055e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160071144846626,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 506,
- "timestamp": 1739683980.6930053,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 14.992825067810228,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999962052096657,
- "acceleration": 4.214200719387939e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416006317704864,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.1223358483612262,
- -5.700249365694846,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.505079303508345,
- -11.169305845848948,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.314410959856357,
- 5.209497895517844,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 507,
- "timestamp": 1739683980.7230053,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.992825067810228,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999962052096657,
- "acceleration": 4.214200719387939e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416006317704864,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 508,
- "timestamp": 1739683980.7430053,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.992825067810228,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999962052096657,
- "acceleration": 4.214200719387939e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416006317704864,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 509,
- "timestamp": 1739683980.7630053,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.992825067810228,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999962052096657,
- "acceleration": 4.214200719387939e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416006317704864,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 510,
- "timestamp": 1739683980.7830052,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.992825067810228,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999962052096657,
- "acceleration": 4.214200719387939e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416006317704864,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.0799563812388078,
- -5.821248158763949,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.475640796949337,
- -11.218780936961533,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.322077375431196,
- 5.2706769466069225,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 511,
- "timestamp": 1739683980.7930052,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 10.992825067810228,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999962052096657,
- "acceleration": 4.214200719387939e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416006317704864,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 512,
- "timestamp": 1739683980.8130052,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.102824671678192,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999996625434357,
- "acceleration": 3.765374637088037e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160056466482496,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 513,
- "timestamp": 1739683980.8330052,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.102824671678192,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999996625434357,
- "acceleration": 3.765374637088037e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160056466482496,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 514,
- "timestamp": 1739683980.8530052,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.102824671678192,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999996625434357,
- "acceleration": 3.765374637088037e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160056466482496,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 515,
- "timestamp": 1739683980.8730052,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.102824671678192,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999996625434357,
- "acceleration": 3.765374637088037e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160056466482496,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 516,
- "timestamp": 1739683980.8830051,
- "objects": [
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.0375769141163893,
- -5.942246951833052,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.446202290390329,
- -11.268256028074118,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.329743791006035,
- 5.331855997696001,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 517,
- "timestamp": 1739683980.9030051,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.102824671678192,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999996625434357,
- "acceleration": 3.765374637088037e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160056466482496,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 518,
- "timestamp": 1739683980.923005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.212824318472157,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999969878242515,
- "acceleration": 3.349198373636675e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160050213538592,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 519,
- "timestamp": 1739683980.943005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.212824318472157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999969878242515,
- "acceleration": 3.349198373636675e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160050213538592,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 520,
- "timestamp": 1739683980.963005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.212824318472157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999969878242515,
- "acceleration": 3.349198373636675e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160050213538592,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 521,
- "timestamp": 1739683980.983005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.212824318472157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999969878242515,
- "acceleration": 3.349198373636675e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160050213538592,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.9951974469939706,
- -6.063245744902155,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.416763783831321,
- -11.317731119186703,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.337410206580874,
- 5.39303504878508,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.6668255116983435,
- -5.674596992018593,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 522,
- "timestamp": 1739683981.013005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.212824318472157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999969878242515,
- "acceleration": 3.349198373636675e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160050213538592,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 523,
- "timestamp": 1739683981.023005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.322824003442427,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999973148032252,
- "acceleration": 2.989287238963634e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416004482117659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 524,
- "timestamp": 1739683981.053005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.322824003442427,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999973148032252,
- "acceleration": 2.989287238963634e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416004482117659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 525,
- "timestamp": 1739683981.073005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.322824003442427,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999973148032252,
- "acceleration": 2.989287238963634e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416004482117659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 526,
- "timestamp": 1739683981.083005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.322824003442427,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999973148032252,
- "acceleration": 2.989287238963634e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416004482117659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.952817979871552,
- -6.184244537971258,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.387325277272313,
- -11.367206210299289,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.345076622155712,
- 5.454214099874159,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.587618569165601,
- -5.624402375633121,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 527,
- "timestamp": 1739683981.093005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.322824003442427,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999973148032252,
- "acceleration": 2.989287238963634e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416004482117659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 528,
- "timestamp": 1739683981.123005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.322824003442427,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999973148032252,
- "acceleration": 2.989287238963634e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416004482117659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 529,
- "timestamp": 1739683981.143005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.432823722607523,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999976062531258,
- "acceleration": 2.6647952965919153e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160039955729165,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 530,
- "timestamp": 1739683981.1630049,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.432823722607523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999976062531258,
- "acceleration": 2.6647952965919153e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160039955729165,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 531,
- "timestamp": 1739683981.1830049,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.432823722607523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999976062531258,
- "acceleration": 2.6647952965919153e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160039955729165,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.9104385127491332,
- -6.305243331040361,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.357886770713305,
- -11.416681301411874,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.352743037730551,
- 5.515393150963238,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.508411626632858,
- -5.574207759247649,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 532,
- "timestamp": 1739683981.2130048,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.432823722607523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999976062531258,
- "acceleration": 2.6647952965919153e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160039955729165,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 533,
- "timestamp": 1739683981.2330048,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.432823722607523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999976062531258,
- "acceleration": 2.6647952965919153e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160039955729165,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 534,
- "timestamp": 1739683981.2530048,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.542823472254325,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999978660695455,
- "acceleration": 2.3755597365893166e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160035618954406,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 535,
- "timestamp": 1739683981.2830048,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.542823472254325,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999978660695455,
- "acceleration": 2.3755597365893166e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160035618954406,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.8680590456267145,
- -6.426242124109464,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.328448264154297,
- -11.466156392524459,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.36040945330539,
- 5.576572202052317,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.429204684100116,
- -5.524013142862177,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 536,
- "timestamp": 1739683981.3030047,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.542823472254325,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999978660695455,
- "acceleration": 2.3755597365893166e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160035618954406,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 537,
- "timestamp": 1739683981.3330047,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.542823472254325,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999978660695455,
- "acceleration": 2.3755597365893166e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160035618954406,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 538,
- "timestamp": 1739683981.3530047,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.652823248909382,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999980953351613,
- "acceleration": 2.1178818705447355e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416003175288589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 539,
- "timestamp": 1739683981.3630047,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.652823248909382,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999980953351613,
- "acceleration": 2.1178818705447355e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416003175288589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 540,
- "timestamp": 1739683981.3830047,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.652823248909382,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999980953351613,
- "acceleration": 2.1178818705447355e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416003175288589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.8256795785042959,
- -6.547240917178567,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.2990097575952895,
- -11.515631483637044,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.36807586888023,
- 5.637751253141396,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.349997741567373,
- -5.473818526476705,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 541,
- "timestamp": 1739683981.4030046,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.652823248909382,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999980953351613,
- "acceleration": 2.1178818705447355e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416003175288589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 542,
- "timestamp": 1739683981.4230046,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.652823248909382,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999980953351613,
- "acceleration": 2.1178818705447355e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416003175288589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 543,
- "timestamp": 1739683981.4430046,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.652823248909382,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999980953351613,
- "acceleration": 2.1178818705447355e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416003175288589,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 544,
- "timestamp": 1739683981.4730046,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.76282304928878,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999982979031119,
- "acceleration": 1.8904850894174707e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002834141338,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 545,
- "timestamp": 1739683981.5130045,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.76282304928878,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999982979031119,
- "acceleration": 1.8904850894174707e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002834141338,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.7833001113818772,
- -6.66823971024767,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.2695712510362815,
- -11.56510657474963,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.375742284455068,
- 5.698930304230474,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.27079079903463,
- -5.423623910091234,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 546,
- "timestamp": 1739683981.5330045,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.76282304928878,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999982979031119,
- "acceleration": 1.8904850894174707e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002834141338,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 547,
- "timestamp": 1739683981.5530045,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.76282304928878,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999982979031119,
- "acceleration": 1.8904850894174707e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002834141338,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 548,
- "timestamp": 1739683981.5830045,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.87282287103665,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999998479023041,
- "acceleration": 1.6894184988736072e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002532720216,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.7409206442594585,
- -6.789238503316773,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.240132744477274,
- -11.614581665862215,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.383408700029907,
- 5.760109355319553,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.191583856501888,
- -5.373429293705762,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 549,
- "timestamp": 1739683981.6230044,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.87282287103665,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999998479023041,
- "acceleration": 1.6894184988736072e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002532720216,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 550,
- "timestamp": 1739683981.6430044,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.87282287103665,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999998479023041,
- "acceleration": 1.6894184988736072e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002532720216,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 551,
- "timestamp": 1739683981.6630044,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.87282287103665,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999998479023041,
- "acceleration": 1.6894184988736072e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002532720216,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 552,
- "timestamp": 1739683981.7130044,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 15.982822711669902,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999986392263398,
- "acceleration": 1.5097627328319874e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160022632137523,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.6985411771370398,
- -6.910237296385876,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.210694237918266,
- -11.6640567569748,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.391075115604746,
- 5.821288406408632,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.112376913969145,
- -5.32323467732029,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 553,
- "timestamp": 1739683981.7330043,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.982822711669902,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999986392263398,
- "acceleration": 1.5097627328319874e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160022632137523,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 554,
- "timestamp": 1739683981.7530043,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.982822711669902,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999986392263398,
- "acceleration": 1.5097627328319874e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160022632137523,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 555,
- "timestamp": 1739683981.7730043,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 11.982822711669902,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999986392263398,
- "acceleration": 1.5097627328319874e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160022632137523,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 556,
- "timestamp": 1739683981.8230042,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.09282256966553,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999987899306737,
- "acceleration": 1.3502243607077524e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002024831236,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.7180777816195207,
- -7.0369458132387495,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.181255731359258,
- -11.713531848087385,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.398741531179585,
- 5.882467457497711,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -4.033169971436402,
- -5.273040060934818,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 557,
- "timestamp": 1739683981.8430042,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.092822569665529,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999987899306737,
- "acceleration": 1.3502243607077524e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002024831236,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 558,
- "timestamp": 1739683981.8630042,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.092822569665529,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999987899306737,
- "acceleration": 1.3502243607077524e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416002024831236,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 559,
- "timestamp": 1739683981.9030042,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.20282244339892,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999989240239984,
- "acceleration": 1.2006827967425693e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160018005831813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.7376143861020017,
- -7.163654330091623,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.15181722480025,
- -11.76300693919997,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.406407946754424,
- 5.94364650858679,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.9539630289036602,
- -5.222845444549346,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 560,
- "timestamp": 1739683981.9230042,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.202822443398919,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999989240239984,
- "acceleration": 1.2006827967425693e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160018005831813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 561,
- "timestamp": 1739683981.9530041,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.202822443398919,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999989240239984,
- "acceleration": 1.2006827967425693e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160018005831813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 562,
- "timestamp": 1739683981.973004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.202822443398919,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999989240239984,
- "acceleration": 1.2006827967425693e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160018005831813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 563,
- "timestamp": 1739683981.993004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.202822443398919,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999989240239984,
- "acceleration": 1.2006827967425693e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160018005831813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.7571509905844827,
- -7.290362846944496,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.122378718241242,
- -11.812482030312555,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.414074362329263,
- 6.004825559675869,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.874756086370918,
- -5.172650828163874,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 564,
- "timestamp": 1739683982.013004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.312822330961925,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999990419949696,
- "acceleration": 1.0677180359297544e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416001601052309,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 565,
- "timestamp": 1739683982.053004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.312822330961925,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999990419949696,
- "acceleration": 1.0677180359297544e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416001601052309,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 566,
- "timestamp": 1739683982.063004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.312822330961925,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999990419949696,
- "acceleration": 1.0677180359297544e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416001601052309,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 567,
- "timestamp": 1739683982.083004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.312822330961925,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999990419949696,
- "acceleration": 1.0677180359297544e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416001601052309,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.7766875950669636,
- -7.417071363797369,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.092940211682234,
- -11.86195712142514,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.421740777904102,
- 6.0660046107649475,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.795549143838176,
- -5.1224562117784025,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 568,
- "timestamp": 1739683982.103004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.312822330961925,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999990419949696,
- "acceleration": 1.0677180359297544e-06,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416001601052309,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 569,
- "timestamp": 1739683982.123004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.422822230475685,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999991427430633,
- "acceleration": 9.509526656681366e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160014255115,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 570,
- "timestamp": 1739683982.143004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.422822230475685,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999991427430633,
- "acceleration": 9.509526656681366e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160014255115,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 571,
- "timestamp": 1739683982.153004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.422822230475685,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999991427430633,
- "acceleration": 9.509526656681366e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160014255115,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 572,
- "timestamp": 1739683982.183004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.422822230475685,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999991427430633,
- "acceleration": 9.509526656681366e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160014255115,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.7962241995494446,
- -7.543779880650242,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.063501705123226,
- -11.911432212537726,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.42940719347894,
- 6.127183661854026,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.7163422013054337,
- -5.072261595392931,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 573,
- "timestamp": 1739683982.203004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.422822230475685,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999991427430633,
- "acceleration": 9.509526656681366e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160014255115,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 574,
- "timestamp": 1739683982.2230039,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.422822230475685,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999991427430633,
- "acceleration": 9.509526656681366e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160014255115,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 575,
- "timestamp": 1739683982.2430038,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.53282214063585,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999992339815582,
- "acceleration": 8.508702435960913e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160012755983337,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 576,
- "timestamp": 1739683982.2530038,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.53282214063585,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999992339815582,
- "acceleration": 8.508702435960913e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160012755983337,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 577,
- "timestamp": 1739683982.2830038,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.53282214063585,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999992339815582,
- "acceleration": 8.508702435960913e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160012755983337,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.8157608040319255,
- -7.6704883975031155,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.034063198564218,
- -11.96090730365031,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.43707360905378,
- 6.188362712943105,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.6371352587726915,
- -5.022066979007459,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 578,
- "timestamp": 1739683982.3030038,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.53282214063585,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999992339815582,
- "acceleration": 8.508702435960913e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160012755983337,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 579,
- "timestamp": 1739683982.3230038,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.53282214063585,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999992339815582,
- "acceleration": 8.508702435960913e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160012755983337,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 580,
- "timestamp": 1739683982.3330038,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.53282214063585,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999992339815582,
- "acceleration": 8.508702435960913e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160012755983337,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 581,
- "timestamp": 1739683982.3630037,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.64282206058823,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993179676544,
- "acceleration": 7.601394162448649e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160011398354508,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 582,
- "timestamp": 1739683982.3830037,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.64282206058823,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993179676544,
- "acceleration": 7.601394162448649e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160011398354508,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.8352974085144065,
- -7.797196914355989,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.00462469200521,
- -12.010382394762896,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.444740024628619,
- 6.249541764032184,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.5579283162399493,
- -4.971872362621987,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 583,
- "timestamp": 1739683982.4030037,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.64282206058823,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993179676544,
- "acceleration": 7.601394162448649e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160011398354508,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 584,
- "timestamp": 1739683982.4230037,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.64282206058823,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993179676544,
- "acceleration": 7.601394162448649e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160011398354508,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 585,
- "timestamp": 1739683982.4430037,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.64282206058823,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993179676544,
- "acceleration": 7.601394162448649e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160011398354508,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 586,
- "timestamp": 1739683982.4630036,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.752821989341676,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993927619422,
- "acceleration": 6.767967464238467e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160010148641378,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 587,
- "timestamp": 1739683982.4930036,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.752821989341676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993927619422,
- "acceleration": 6.767967464238467e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160010148641378,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.8548340129968874,
- -7.923905431208862,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.975186185446202,
- -12.059857485875481,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.452406440203458,
- 6.310720815121263,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.478721373707207,
- -4.921677746236515,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 588,
- "timestamp": 1739683982.5130036,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.752821989341676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993927619422,
- "acceleration": 6.767967464238467e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160010148641378,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 589,
- "timestamp": 1739683982.5430036,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.752821989341676,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999993927619422,
- "acceleration": 6.767967464238467e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160010148641378,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 590,
- "timestamp": 1739683982.5830035,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.8628219259083,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999459354008,
- "acceleration": 6.025766140504984e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160009035702362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.8743706174793684,
- -8.050613948061736,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.945747678887194,
- -12.109332576988066,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.460072855778296,
- 6.371899866210342,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.399514431174465,
- -4.871483129851043,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 591,
- "timestamp": 1739683982.6030035,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.8628219259083,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999459354008,
- "acceleration": 6.025766140504984e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160009035702362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 592,
- "timestamp": 1739683982.6230035,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.8628219259083,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999459354008,
- "acceleration": 6.025766140504984e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160009035702362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 593,
- "timestamp": 1739683982.6430035,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.8628219259083,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999459354008,
- "acceleration": 6.025766140504984e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160009035702362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 594,
- "timestamp": 1739683982.6630034,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.8628219259083,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999459354008,
- "acceleration": 6.025766140504984e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160009035702362,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 595,
- "timestamp": 1739683982.6730034,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 16.97282186943127,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995186433311,
- "acceleration": 5.364957399445203e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000804481241,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 596,
- "timestamp": 1739683982.7030034,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.972821869431272,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995186433311,
- "acceleration": 5.364957399445203e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000804481241,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.8939072219618494,
- -8.17732246491461,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.916309172328186,
- -12.158807668100652,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.467739271353135,
- 6.4330789172994205,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.3203074886417228,
- -4.821288513465571,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 597,
- "timestamp": 1739683982.7230034,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.972821869431272,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995186433311,
- "acceleration": 5.364957399445203e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000804481241,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 598,
- "timestamp": 1739683982.7430034,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.972821869431272,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995186433311,
- "acceleration": 5.364957399445203e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000804481241,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 599,
- "timestamp": 1739683982.7630033,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 12.972821869431272,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995186433311,
- "acceleration": 5.364957399445203e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000804481241,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 600,
- "timestamp": 1739683982.8030033,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.08282181908753,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995708835826,
- "acceleration": 4.776998527855625e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160007162587288,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.9134438264443303,
- -8.304030981767484,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.8868706657691785,
- -12.208282759213237,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.475405686927974,
- 6.494257968388499,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.2411005461089806,
- -4.7710938970801,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 601,
- "timestamp": 1739683982.8130033,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.082821819087531,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995708835826,
- "acceleration": 4.776998527855625e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160007162587288,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 602,
- "timestamp": 1739683982.8330033,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.082821819087531,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995708835826,
- "acceleration": 4.776998527855625e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160007162587288,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 603,
- "timestamp": 1739683982.8630033,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.082821819087531,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999995708835826,
- "acceleration": 4.776998527855625e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160007162587288,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 604,
- "timestamp": 1739683982.8930032,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.19282177429405,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996184144927,
- "acceleration": 4.257892541326136e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160006385252322,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.9329804309268113,
- -8.430739498620358,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.857432159210171,
- -12.257757850325822,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.483072102502813,
- 6.555437019477578,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.1618936035762384,
- -4.720899280694628,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 605,
- "timestamp": 1739683982.9130032,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.19282177429405,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996184144927,
- "acceleration": 4.257892541326136e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160006385252322,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 606,
- "timestamp": 1739683982.9330032,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.19282177429405,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996184144927,
- "acceleration": 4.257892541326136e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160006385252322,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 607,
- "timestamp": 1739683982.9530032,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.19282177429405,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996184144927,
- "acceleration": 4.257892541326136e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160006385252322,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 608,
- "timestamp": 1739683982.9730031,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.19282177429405,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996184144927,
- "acceleration": 4.257892541326136e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160006385252322,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 609,
- "timestamp": 1739683983.0030031,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.30282173433211,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996593838267,
- "acceleration": 3.7871765429242643e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005677992374,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.9525170354092922,
- -8.557448015473232,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.827993652651163,
- -12.307232941438407,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.490738518077652,
- 6.616616070566657,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.082686661043496,
- -4.670704664309156,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 610,
- "timestamp": 1739683983.023003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.30282173433211,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996593838267,
- "acceleration": 3.7871765429242643e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005677992374,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 611,
- "timestamp": 1739683983.043003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.30282173433211,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996593838267,
- "acceleration": 3.7871765429242643e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005677992374,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 612,
- "timestamp": 1739683983.063003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.30282173433211,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996593838267,
- "acceleration": 3.7871765429242643e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005677992374,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 613,
- "timestamp": 1739683983.083003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.30282173433211,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996593838267,
- "acceleration": 3.7871765429242643e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005677992374,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.9720536398917732,
- -8.684156532326107,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.798555146092155,
- -12.356708032550992,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.498404933652491,
- 6.677795121655736,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -3.003479718510754,
- -4.620510047923684,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 614,
- "timestamp": 1739683983.103003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.30282173433211,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996593838267,
- "acceleration": 3.7871765429242643e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005677992374,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 615,
- "timestamp": 1739683983.123003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.412821698738345,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996967289908,
- "acceleration": 3.380020120458127e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005068368678,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 616,
- "timestamp": 1739683983.143003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.412821698738345,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996967289908,
- "acceleration": 3.380020120458127e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005068368678,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 617,
- "timestamp": 1739683983.153003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.412821698738345,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996967289908,
- "acceleration": 3.380020120458127e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005068368678,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 618,
- "timestamp": 1739683983.173003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.412821698738345,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996967289908,
- "acceleration": 3.380020120458127e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005068368678,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 619,
- "timestamp": 1739683983.193003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.412821698738345,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996967289908,
- "acceleration": 3.380020120458127e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005068368678,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 1.9915902443742541,
- -8.81086504917898,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.769116639533147,
- -12.406183123663578,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.50607134922733,
- 6.738974172744815,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.924272775978012,
- -4.570315431538212,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 620,
- "timestamp": 1739683983.213003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.412821698738345,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999996967289908,
- "acceleration": 3.380020120458127e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160005068368678,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 621,
- "timestamp": 1739683983.233003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.522821667020086,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997296421995,
- "acceleration": 3.0096708480975565e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004512672634,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 622,
- "timestamp": 1739683983.253003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.522821667020086,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997296421995,
- "acceleration": 3.0096708480975565e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004512672634,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 623,
- "timestamp": 1739683983.2730029,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.522821667020086,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997296421995,
- "acceleration": 3.0096708480975565e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004512672634,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 624,
- "timestamp": 1739683983.2930028,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.522821667020086,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997296421995,
- "acceleration": 3.0096708480975565e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004512672634,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.011126848856735,
- -8.937573566031855,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.739678132974139,
- -12.455658214776163,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.513737764802169,
- 6.8001532238338935,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.8450658334452696,
- -4.52012081515274,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 625,
- "timestamp": 1739683983.3130028,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.522821667020086,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997296421995,
- "acceleration": 3.0096708480975565e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004512672634,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 626,
- "timestamp": 1739683983.3330028,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.632821638744357,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997589867737,
- "acceleration": 2.6830368043961883e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004022924084,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 627,
- "timestamp": 1739683983.3430028,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.632821638744357,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997589867737,
- "acceleration": 2.6830368043961883e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004022924084,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 628,
- "timestamp": 1739683983.3630028,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.632821638744357,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997589867737,
- "acceleration": 2.6830368043961883e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004022924084,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 629,
- "timestamp": 1739683983.3930027,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.632821638744357,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997589867737,
- "acceleration": 2.6830368043961883e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004022924084,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.030663453339216,
- -9.064282082884729,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.710239626415131,
- -12.505133305888748,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.521404180377008,
- 6.861332274922972,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.7658588909125275,
- -4.4699261987672685,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 630,
- "timestamp": 1739683983.4130027,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.632821638744357,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997589867737,
- "acceleration": 2.6830368043961883e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004022924084,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 631,
- "timestamp": 1739683983.4330027,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.632821638744357,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997589867737,
- "acceleration": 2.6830368043961883e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160004022924084,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 632,
- "timestamp": 1739683983.4630027,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.742821613529106,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997851407256,
- "acceleration": 2.391824497904871e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003586276818,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 633,
- "timestamp": 1739683983.4830027,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.742821613529106,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997851407256,
- "acceleration": 2.391824497904871e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003586276818,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.050200057821697,
- -9.190990599737603,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.680801119856123,
- -12.554608397001333,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.529070595951847,
- 6.922511326012051,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.6866519483797853,
- -4.419731582381797,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 634,
- "timestamp": 1739683983.5030026,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.742821613529106,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997851407256,
- "acceleration": 2.391824497904871e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003586276818,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 635,
- "timestamp": 1739683983.5130026,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.742821613529106,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999997851407256,
- "acceleration": 2.391824497904871e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003586276818,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 636,
- "timestamp": 1739683983.5530026,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.852821591084332,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998087029006,
- "acceleration": 2.1320992221740553e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003197106011,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 637,
- "timestamp": 1739683983.5930026,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.852821591084332,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998087029006,
- "acceleration": 2.1320992221740553e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003197106011,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.069736662304178,
- -9.317699116590477,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.651362613297115,
- -12.604083488113918,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.536737011526686,
- 6.98369037710113,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.607445005847043,
- -4.369536965996325,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 638,
- "timestamp": 1739683983.6130025,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.852821591084332,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998087029006,
- "acceleration": 2.1320992221740553e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003197106011,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 639,
- "timestamp": 1739683983.6430025,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.852821591084332,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998087029006,
- "acceleration": 2.1320992221740553e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160003197106011,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 640,
- "timestamp": 1739683983.6730025,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 17.96282157101895,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999828820364,
- "acceleration": 1.8988887690030154e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002846500844,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 641,
- "timestamp": 1739683983.6930025,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.96282157101895,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999828820364,
- "acceleration": 1.8988887690030154e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002846500844,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.089273266786659,
- -9.444407633443351,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.621924106738107,
- -12.653558579226504,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.544403427101525,
- 7.044869428190209,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.528238063314301,
- -4.319342349610853,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 642,
- "timestamp": 1739683983.7130024,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.96282157101895,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999828820364,
- "acceleration": 1.8988887690030154e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002846500844,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 643,
- "timestamp": 1739683983.7330024,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.96282157101895,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999828820364,
- "acceleration": 1.8988887690030154e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002846500844,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 644,
- "timestamp": 1739683983.7430024,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.96282157101895,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999828820364,
- "acceleration": 1.8988887690030154e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002846500844,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 645,
- "timestamp": 1739683983.7630024,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 13.96282157101895,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999828820364,
- "acceleration": 1.8988887690030154e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002846500844,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 646,
- "timestamp": 1739683983.7830024,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.07282155311635,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998474065432,
- "acceleration": 1.6987860351758144e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000254715299,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.10880987126914,
- -9.571116150296225,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.592485600179099,
- -12.703033670339089,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.552069842676364,
- 7.106048479279288,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.4490311207815587,
- -4.269147733225381,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 647,
- "timestamp": 1739683983.8030024,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.072821553116349,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998474065432,
- "acceleration": 1.6987860351758144e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000254715299,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 648,
- "timestamp": 1739683983.8230023,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.072821553116349,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998474065432,
- "acceleration": 1.6987860351758144e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000254715299,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 649,
- "timestamp": 1739683983.8530023,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.072821553116349,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998474065432,
- "acceleration": 1.6987860351758144e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000254715299,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 650,
- "timestamp": 1739683983.8830023,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.182821537157157,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999863968918,
- "acceleration": 1.5143409054507728e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002270590641,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.128346475751621,
- -9.6978246671491,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.563047093620091,
- -12.752508761451674,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.559736258251203,
- 7.167227530368367,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.3698241782488165,
- -4.218953116839909,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 651,
- "timestamp": 1739683983.9030023,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.182821537157157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999863968918,
- "acceleration": 1.5143409054507728e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002270590641,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 652,
- "timestamp": 1739683983.9230022,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.182821537157157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999863968918,
- "acceleration": 1.5143409054507728e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002270590641,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 653,
- "timestamp": 1739683983.9530022,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.182821537157157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999863968918,
- "acceleration": 1.5143409054507728e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002270590641,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 654,
- "timestamp": 1739683983.9830022,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.182821537157157,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.999999863968918,
- "acceleration": 1.5143409054507728e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002270590641,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.147883080234102,
- -9.824533184001973,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.533608587061083,
- -12.801983852564259,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.567402673826042,
- 7.228406581457445,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.2906172357160743,
- -4.168758500454437,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 655,
- "timestamp": 1739683984.0030022,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.292821522911815,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998785809372,
- "acceleration": 1.3500824053158667e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002024142502,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 656,
- "timestamp": 1739683984.0230021,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.292821522911815,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998785809372,
- "acceleration": 1.3500824053158667e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002024142502,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 657,
- "timestamp": 1739683984.073002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.292821522911815,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998785809372,
- "acceleration": 1.3500824053158667e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002024142502,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 658,
- "timestamp": 1739683984.093002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.292821522911815,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998785809372,
- "acceleration": 1.3500824053158667e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160002024142502,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.1674196847165828,
- -9.951241700854847,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.5041700805020755,
- -12.851458943676844,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.57506908940088,
- 7.289585632546524,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.211410293183332,
- -4.118563884068966,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 6.945167635651955,
- -8.433125964553764,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 659,
- "timestamp": 1739683984.113002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.40282151019591,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998914967657,
- "acceleration": 1.2051495484888264e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001806715659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 660,
- "timestamp": 1739683984.133002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.40282151019591,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998914967657,
- "acceleration": 1.2051495484888264e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001806715659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 661,
- "timestamp": 1739683984.193002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.40282151019591,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999998914967657,
- "acceleration": 1.2051495484888264e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001806715659,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.1869562891990637,
- -10.077950217707722,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.4747315739430675,
- -12.90093403478943,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.58273550497572,
- 7.350764683635603,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.13220335065059,
- -4.068369267683494,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 6.95318936666362,
- -8.34903461820319,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 662,
- "timestamp": 1739683984.213002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.512821498839934,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999031594319,
- "acceleration": 1.0768684760575908e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000161452813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 663,
- "timestamp": 1739683984.233002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.512821498839934,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999031594319,
- "acceleration": 1.0768684760575908e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000161452813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 664,
- "timestamp": 1739683984.263002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.512821498839934,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999031594319,
- "acceleration": 1.0768684760575908e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000161452813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 665,
- "timestamp": 1739683984.293002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.512821498839934,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999031594319,
- "acceleration": 1.0768684760575908e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000161452813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.2064928936815447,
- -10.204658734560596,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.44529306738406,
- -12.950409125902015,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.590401920550558,
- 7.411943734724682,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -2.052996408117848,
- -4.018174651298022,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 6.961211097675286,
- -8.264943271852616,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 666,
- "timestamp": 1739683984.3030019,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.512821498839934,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999031594319,
- "acceleration": 1.0768684760575908e-07,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000161452813,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 667,
- "timestamp": 1739683984.3330019,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.6228214886989,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999135640464,
- "acceleration": 9.611224516259398e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001440987658,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 668,
- "timestamp": 1739683984.3530018,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.6228214886989,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999135640464,
- "acceleration": 9.611224516259398e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001440987658,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 669,
- "timestamp": 1739683984.3630018,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.6228214886989,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999135640464,
- "acceleration": 9.611224516259398e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001440987658,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 670,
- "timestamp": 1739683984.3930018,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.6228214886989,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999135640464,
- "acceleration": 9.611224516259398e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001440987658,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.2260294981640256,
- -10.33136725141347,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.415854560825052,
- -12.9998842170146,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.598068336125397,
- 7.473122785813761,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.9737894655851056,
- -3.96798003491255,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 6.969232828686952,
- -8.180851925502042,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 671,
- "timestamp": 1739683984.4030018,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.6228214886989,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999135640464,
- "acceleration": 9.611224516259398e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001440987658,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 672,
- "timestamp": 1739683984.4330018,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.73282147965895,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999229468286,
- "acceleration": 8.577915888707821e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001286166993,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 673,
- "timestamp": 1739683984.4530017,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.732821479658949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999229468286,
- "acceleration": 8.577915888707821e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001286166993,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 674,
- "timestamp": 1739683984.4630017,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.732821479658949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999229468286,
- "acceleration": 8.577915888707821e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001286166993,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 675,
- "timestamp": 1739683984.4930017,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.732821479658949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999229468286,
- "acceleration": 8.577915888707821e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001286166993,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.2455661026465066,
- -10.458075768266344,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.386416054266044,
- -13.049359308127185,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.605734751700236,
- 7.53430183690284,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.8945825230523634,
- -3.917785418527078,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 6.9772545596986175,
- -8.096760579151468,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 676,
- "timestamp": 1739683984.5030017,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.732821479658949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999229468286,
- "acceleration": 8.577915888707821e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001286166993,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 677,
- "timestamp": 1739683984.5330017,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.732821479658949,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999229468286,
- "acceleration": 8.577915888707821e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001286166993,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 678,
- "timestamp": 1739683984.5530016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.842821471589843,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999312236091,
- "acceleration": 7.647379685060685e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001146551194,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 679,
- "timestamp": 1739683984.5730016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.842821471589843,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999312236091,
- "acceleration": 7.647379685060685e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001146551194,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 680,
- "timestamp": 1739683984.6030016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.842821471589843,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999312236091,
- "acceleration": 7.647379685060685e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001146551194,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.2651027071289875,
- -10.584784285119218,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.356977547707036,
- -13.09883439923977,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.613401167275075,
- 7.5954808879919185,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.8153755805196212,
- -3.8675908021416063,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 6.985276290710283,
- -8.012669232800894,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 681,
- "timestamp": 1739683984.6230016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.842821471589843,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999312236091,
- "acceleration": 7.647379685060685e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001146551194,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 682,
- "timestamp": 1739683984.6430016,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.842821471589843,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999312236091,
- "acceleration": 7.647379685060685e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.24160001146551194,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 683,
- "timestamp": 1739683984.6730015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 18.95282146439683,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999386894316,
- "acceleration": 6.825378334740506e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.241600010233927,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 684,
- "timestamp": 1739683984.7030015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.95282146439683,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999386894316,
- "acceleration": 6.825378334740506e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.241600010233927,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.2846393116114685,
- -10.711492801972092,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.327539041148028,
- -13.148309490352355,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.621067582849914,
- 7.656659939080997,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.736168637986879,
- -3.8173961857561345,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 6.993298021721949,
- -7.92857788645032,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 685,
- "timestamp": 1739683984.7330015,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 14.95282146439683,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999386894316,
- "acceleration": 6.825378334740506e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.241600010233927,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 686,
- "timestamp": 1739683984.7830014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.062821457988104,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999453453646,
- "acceleration": 6.084465314915022e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000091230126,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.3041759160939494,
- -10.838201318824966,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.29810053458902,
- -13.19778458146494,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.628733998424753,
- 7.717838990170076,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.6569616954541369,
- -3.7672015693706626,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.001319752733615,
- -7.844486540099746,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 687,
- "timestamp": 1739683984.8030014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.062821457988104,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999453453646,
- "acceleration": 6.084465314915022e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000091230126,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 688,
- "timestamp": 1739683984.8330014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.062821457988104,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999453453646,
- "acceleration": 6.084465314915022e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000091230126,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 689,
- "timestamp": 1739683984.8530014,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.062821457988104,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.9999999453453646,
- "acceleration": 6.084465314915022e-08,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.2416000091230126,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 690,
- "timestamp": 1739683984.8730013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.17222145226444,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.959999949409986,
- "acceleration": -1.9972160003249955,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21750000047822804,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 691,
- "timestamp": 1739683984.9130013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.172221452264441,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.959999949409986,
- "acceleration": -1.9972160003249955,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21750000047822804,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.3237125205764304,
- -10.96490983567784,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.350717692685297,
- -13.221147907060729,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.636400413999592,
- 7.779018041259155,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.5777547529213947,
- -3.717006952985191,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.00934148374528,
- -7.760395193749172,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 255,
- 0,
- 0
- ],
- "state": "RED"
- }
- }
- ]
- },
- {
- "render_frame": 692,
- "timestamp": 1739683984.9430013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.172221452264441,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.959999949409986,
- "acceleration": -1.9972160003249955,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21750000047822804,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 693,
- "timestamp": 1739683984.9630013,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.172221452264441,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.959999949409986,
- "acceleration": -1.9972160003249955,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21750000047822804,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 694,
- "timestamp": 1739683984.9730012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.172221452264441,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.959999949409986,
- "acceleration": -1.9972160003249955,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21750000047822804,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 695,
- "timestamp": 1739683985.0230012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.272321446699543,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8499999494099859,
- "acceleration": -1.992509000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2178480004376036,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.3432491250589114,
- -11.091618352530714,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.403334850781574,
- -13.244511232656517,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.644066829574431,
- 7.840197092348234,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.4985478103886525,
- -3.666812336599719,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.017363214756946,
- -7.676303847398598,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 696,
- "timestamp": 1739683985.0530012,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.272321446699543,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8499999494099859,
- "acceleration": -1.992509000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2178480004376036,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 697,
- "timestamp": 1739683985.0730011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.272321446699543,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.8499999494099859,
- "acceleration": -1.992509000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2178480004376036,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 698,
- "timestamp": 1739683985.0930011,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.36032144113464,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7399999494099858,
- "acceleration": -1.992751000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21878437542369136,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.3627857295413923,
- -11.218326869383588,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.455952008877851,
- -13.267874558252306,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.65173324514927,
- 7.901376143437313,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.4193408678559103,
- -3.616617720214247,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.025384945768612,
- -7.592212501048024,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 699,
- "timestamp": 1739683985.133001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.36032144113464,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7399999494099858,
- "acceleration": -1.992751000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21878437542369136,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 700,
- "timestamp": 1739683985.153001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.36032144113464,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7399999494099858,
- "acceleration": -1.992751000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21878437542369136,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 701,
- "timestamp": 1739683985.173001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.36032144113464,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7399999494099858,
- "acceleration": -1.992751000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21878437542369136,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 702,
- "timestamp": 1739683985.193001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.36032144113464,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.7399999494099858,
- "acceleration": -1.992751000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.21878437542369136,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.3823223340238733,
- -11.345035386236463,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.508569166974128,
- -13.291237883848094,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.659399660724109,
- 7.9625551945263915,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.340133925323168,
- -3.5664231038287753,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.033406676780277,
- -7.5081211546974505,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 703,
- "timestamp": 1739683985.223001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.436221435569735,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6299999494099857,
- "acceleration": -1.992993000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2196905004097791,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 704,
- "timestamp": 1739683985.243001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.436221435569735,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6299999494099857,
- "acceleration": -1.992993000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2196905004097791,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 705,
- "timestamp": 1739683985.273001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.436221435569735,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6299999494099857,
- "acceleration": -1.992993000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2196905004097791,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 706,
- "timestamp": 1739683985.293001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.436221435569735,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6299999494099857,
- "acceleration": -1.992993000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2196905004097791,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.4018589385063542,
- -11.471743903089337,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.5611863250704054,
- -13.314601209443882,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.667066076298948,
- 8.02373424561547,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.260926982790426,
- -3.5162284874433034,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.041428407791943,
- -7.4240298083468765,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 707,
- "timestamp": 1739683985.303001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.436221435569735,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.6299999494099857,
- "acceleration": -1.992993000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2196905004097791,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 708,
- "timestamp": 1739683985.333001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.500021430004836,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5199999494099856,
- "acceleration": -1.993235000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22056637539586685,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 709,
- "timestamp": 1739683985.3630009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.500021430004836,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5199999494099856,
- "acceleration": -1.993235000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22056637539586685,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 710,
- "timestamp": 1739683985.3830009,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.500021430004836,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5199999494099856,
- "acceleration": -1.993235000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22056637539586685,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.421395542988835,
- -11.59845241994221,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.6138034831666825,
- -13.33796453503967,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.674732491873787,
- 8.08491329670455,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.1817200402576837,
- -3.4660338710578316,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.049450138803609,
- -7.339938461996303,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 711,
- "timestamp": 1739683985.4030008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.500021430004836,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.5199999494099856,
- "acceleration": -1.993235000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22056637539586685,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 712,
- "timestamp": 1739683985.4230008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.55172142443994,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.4099999494099855,
- "acceleration": -1.993477000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2214120003819546,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 713,
- "timestamp": 1739683985.4430008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.55172142443994,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.4099999494099855,
- "acceleration": -1.993477000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2214120003819546,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 714,
- "timestamp": 1739683985.4730008,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.55172142443994,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.4099999494099855,
- "acceleration": -1.993477000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2214120003819546,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 715,
- "timestamp": 1739683985.4930007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.55172142443994,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.4099999494099855,
- "acceleration": -1.993477000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2214120003819546,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.440932147471316,
- -11.725160936795085,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.66642064126296,
- -13.361327860635459,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.682398907448626,
- 8.146092347793628,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.1025130977249415,
- -3.4158392546723597,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.0574718698152745,
- -7.255847115645729,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 716,
- "timestamp": 1739683985.5130007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.55172142443994,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.4099999494099855,
- "acceleration": -1.993477000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2214120003819546,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 717,
- "timestamp": 1739683985.5330007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.591321418875033,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.2999999494099854,
- "acceleration": -1.993719000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22222737536804235,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 718,
- "timestamp": 1739683985.5530007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.591321418875033,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.2999999494099854,
- "acceleration": -1.993719000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22222737536804235,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 719,
- "timestamp": 1739683985.5730007,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.591321418875033,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.2999999494099854,
- "acceleration": -1.993719000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22222737536804235,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 720,
- "timestamp": 1739683985.6230006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.591321418875033,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.2999999494099854,
- "acceleration": -1.993719000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22222737536804235,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.460468751953797,
- -11.851869453647959,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.719037799359237,
- -13.384691186231247,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.690065323023465,
- 8.207271398882707,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -1.0233061551921994,
- -3.365644638286888,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.06549360082694,
- -7.171755769295155,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 721,
- "timestamp": 1739683985.6630006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.61882141331013,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.18999994940998532,
- "acceleration": -1.993961000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2230125003541301,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 722,
- "timestamp": 1739683985.6830006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.61882141331013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.18999994940998532,
- "acceleration": -1.993961000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2230125003541301,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.480005356436278,
- -11.978577970500833,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.771654957455514,
- -13.408054511827036,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.697731738598304,
- 8.268450449971786,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.9440992126594572,
- -3.315450021901416,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.073515331838606,
- -7.087664422944581,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 723,
- "timestamp": 1739683985.6930006,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.61882141331013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.18999994940998532,
- "acceleration": -1.993961000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2230125003541301,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 724,
- "timestamp": 1739683985.7330005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.61882141331013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.18999994940998532,
- "acceleration": -1.993961000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2230125003541301,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 725,
- "timestamp": 1739683985.7530005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.63422140774523,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0799999494099853,
- "acceleration": -1.994203000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22376737534021784,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 726,
- "timestamp": 1739683985.7730005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.63422140774523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0799999494099853,
- "acceleration": -1.994203000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22376737534021784,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 727,
- "timestamp": 1739683985.7930005,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.63422140774523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0799999494099853,
- "acceleration": -1.994203000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22376737534021784,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.499541960918759,
- -12.105286487353707,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.824272115551791,
- -13.431417837422824,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.705398154173142,
- 8.329629501060865,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.864892270126715,
- -3.265255405515944,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.081537062850272,
- -7.003573076594007,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 728,
- "timestamp": 1739683985.8130004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.63422140774523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0799999494099853,
- "acceleration": -1.994203000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22376737534021784,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 729,
- "timestamp": 1739683985.8330004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.63422140774523,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0799999494099853,
- "acceleration": -1.994203000111298,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22376737534021784,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 730,
- "timestamp": 1739683985.8630004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.637821403698027,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2244920003263056,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 731,
- "timestamp": 1739683985.8930004,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.637821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2244920003263056,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.51907856540124,
- -12.231995004206581,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.876889273648068,
- -13.454781163018612,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.713064569747981,
- 8.390808552149943,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.7856853275939728,
- -3.2150607891304723,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.089558793861937,
- -6.919481730243433,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 732,
- "timestamp": 1739683985.9130003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.637821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2244920003263056,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 733,
- "timestamp": 1739683985.9230003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.637821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2244920003263056,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 734,
- "timestamp": 1739683985.9730003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.646821403698027,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 735,
- "timestamp": 1739683985.9930003,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.646821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.538615169883721,
- -12.358703521059455,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.929506431744345,
- -13.4781444886144,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.72073098532282,
- 8.451987603239022,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.7064783850612306,
- -3.1648661727450005,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.097580524873603,
- -6.835390383892859,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 736,
- "timestamp": 1739683986.0130002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.646821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 737,
- "timestamp": 1739683986.0330002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.646821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 738,
- "timestamp": 1739683986.0630002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.646821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 739,
- "timestamp": 1739683986.0730002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.646821403698027,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 740,
- "timestamp": 1739683986.1030002,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.663321403698028,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.558151774366202,
- -12.48541203791233,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 6.982123589840622,
- -13.50150781421019,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.72839740089766,
- 8.513166654328101,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.6272714425284884,
- -3.1146715563595286,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.105602255885269,
- -6.751299037542285,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 741,
- "timestamp": 1739683986.1230001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.663321403698028,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 742,
- "timestamp": 1739683986.1430001,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.663321403698028,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 743,
- "timestamp": 1739683986.163,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.663321403698028,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 744,
- "timestamp": 1739683986.183,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.663321403698028,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.577688378848683,
- -12.612120554765204,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.034740747936899,
- -13.524871139805978,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.736063816472498,
- 8.57434570541718,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.5480644999957462,
- -3.064476939974057,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.113623986896934,
- -6.667207691191711,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 745,
- "timestamp": 1739683986.233,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.667821403698024,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 746,
- "timestamp": 1739683986.263,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.667821403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 747,
- "timestamp": 1739683986.283,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.667821403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.597224983331164,
- -12.738829071618078,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.087357906033176,
- -13.548234465401766,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.743730232047337,
- 8.635524756506259,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.468857557463004,
- -3.014282323588585,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.1216457179086,
- -6.583116344841137,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 748,
- "timestamp": 1739683986.313,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.669821403698023,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1,
- "acceleration": 3.794900000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 749,
- "timestamp": 1739683986.323,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.669821403698023,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1,
- "acceleration": 3.794900000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 750,
- "timestamp": 1739683986.343,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.669821403698023,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1,
- "acceleration": 3.794900000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 751,
- "timestamp": 1739683986.363,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.669821403698023,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1,
- "acceleration": 3.794900000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 752,
- "timestamp": 1739683986.393,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.669821403698023,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1,
- "acceleration": 3.794900000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.6167615878136448,
- -12.865537588470952,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.1399750641294535,
- -13.571597790997554,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.751396647622176,
- 8.696703807595338,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.38965061493026176,
- -2.964087707203113,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.129667448920266,
- -6.4990249984905635,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 753,
- "timestamp": 1739683986.4129999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.678321403698025,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.020000000000000025,
- "acceleration": -1.995904,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2243625,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 754,
- "timestamp": 1739683986.4329998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678321403698025,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.020000000000000025,
- "acceleration": -1.995904,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2243625,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 755,
- "timestamp": 1739683986.4529998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678321403698025,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.020000000000000025,
- "acceleration": -1.995904,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2243625,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 756,
- "timestamp": 1739683986.4729998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678321403698025,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.020000000000000025,
- "acceleration": -1.995904,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2243625,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 757,
- "timestamp": 1739683986.4929998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678321403698025,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.020000000000000025,
- "acceleration": -1.995904,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2243625,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.6362981922961257,
- -12.992246105323826,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.192592222225731,
- -13.594961116593343,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.759063063197015,
- 8.757882858684416,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.3104436723975195,
- -2.9138930908176413,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.1376891799319315,
- -6.41493365213999,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 758,
- "timestamp": 1739683986.5129998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678321403698025,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.020000000000000025,
- "acceleration": -1.995904,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2243625,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 759,
- "timestamp": 1739683986.5329998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.678621403698024,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2248745,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 760,
- "timestamp": 1739683986.5529997,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678621403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2248745,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 761,
- "timestamp": 1739683986.5929997,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678621403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2248745,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.6558347967786067,
- -13.1189546221767,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.245209380322008,
- -13.618324442189131,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.766729478771854,
- 8.819061909773495,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.23123672986477728,
- -2.8636984744321694,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.145710910943597,
- -6.330842305789416,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 762,
- "timestamp": 1739683986.6129997,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.678621403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2248745,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 763,
- "timestamp": 1739683986.6429996,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.687621403698024,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 764,
- "timestamp": 1739683986.6629996,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.687621403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 765,
- "timestamp": 1739683986.6829996,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.687621403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.6753714012610876,
- -13.245663139029574,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.297826538418285,
- -13.64168776778492,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.774395894346693,
- 8.880240960862574,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.15202978733203504,
- -2.8135038580466976,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.153732641955263,
- -6.246750959438842,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 766,
- "timestamp": 1739683986.7129996,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.687621403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 767,
- "timestamp": 1739683986.7329996,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.687621403698024,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 768,
- "timestamp": 1739683986.7629995,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.707121403698018,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1199999999999999,
- "acceleration": -1.9957440000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 769,
- "timestamp": 1739683986.7829995,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.707121403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1199999999999999,
- "acceleration": -1.9957440000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.6949080057435686,
- -13.372371655882448,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.350443696514562,
- -13.665051093380708,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.782062309921532,
- 8.941420011951653,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- -0.07282284479929281,
- -2.7633092416612257,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.161754372966929,
- -6.162659613088268,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 770,
- "timestamp": 1739683986.8029995,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.707121403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1199999999999999,
- "acceleration": -1.9957440000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 771,
- "timestamp": 1739683986.8129995,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.707121403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1199999999999999,
- "acceleration": -1.9957440000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 772,
- "timestamp": 1739683986.8329995,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.707121403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.1199999999999999,
- "acceleration": -1.9957440000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 773,
- "timestamp": 1739683986.8529994,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.714821403698018,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.009999999999999913,
- "acceleration": -1.994357,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224232,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 774,
- "timestamp": 1739683986.8729994,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714821403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.009999999999999913,
- "acceleration": -1.994357,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224232,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 775,
- "timestamp": 1739683986.8929994,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714821403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.009999999999999913,
- "acceleration": -1.994357,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224232,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.7144446102260495,
- -13.499080172735322,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.403060854610839,
- -13.688414418976496,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.78972872549637,
- 9.002599063040732,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.0063840977334494176,
- -2.713114625275754,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.169776103978594,
- -6.078568266737694,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 776,
- "timestamp": 1739683986.9029994,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714821403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.009999999999999913,
- "acceleration": -1.994357,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224232,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 777,
- "timestamp": 1739683986.9329994,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714821403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.009999999999999913,
- "acceleration": -1.994357,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224232,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 778,
- "timestamp": 1739683986.9529994,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714821403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.009999999999999913,
- "acceleration": -1.994357,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224232,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 779,
- "timestamp": 1739683986.9729993,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.714921403698018,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224937375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 780,
- "timestamp": 1739683986.9929993,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714921403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224937375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.7339812147085305,
- -13.625788689588196,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.455678012707116,
- -13.711777744572284,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.79739514107121,
- 9.06377811412981,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.08559104026619165,
- -2.662920008890282,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.17779783499026,
- -5.99447692038712,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 781,
- "timestamp": 1739683987.0129993,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714921403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224937375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 782,
- "timestamp": 1739683987.0229993,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714921403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224937375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 783,
- "timestamp": 1739683987.0629992,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.714921403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224937375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 784,
- "timestamp": 1739683987.0929992,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.723921403698018,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.7535178191910115,
- -13.75249720644107,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.508295170803393,
- -13.735141070168073,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.805061556646049,
- 9.12495716521889,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.16479798279893387,
- -2.61272539250481,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.185819566001926,
- -5.910385574036546,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 785,
- "timestamp": 1739683987.1329992,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.723921403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 786,
- "timestamp": 1739683987.1429992,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.723921403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 787,
- "timestamp": 1739683987.1629992,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.723921403698018,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 788,
- "timestamp": 1739683987.1929991,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.746121403698012,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.14999999999999988,
- "acceleration": -1.997325,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.7730544236734924,
- -13.879205723293945,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.56091232889967,
- -13.758504395763861,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.812727972220888,
- 9.186136216307968,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.24400492533167611,
- -2.5625307761193383,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.193841297013591,
- -5.826294227685972,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.6530037250396115,
- 4.7993788046153485,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 789,
- "timestamp": 1739683987.202999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.746121403698012,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.14999999999999988,
- "acceleration": -1.997325,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 790,
- "timestamp": 1739683987.222999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.746121403698012,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.14999999999999988,
- "acceleration": -1.997325,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 791,
- "timestamp": 1739683987.242999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.746121403698012,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.14999999999999988,
- "acceleration": -1.997325,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 792,
- "timestamp": 1739683987.272999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.746121403698012,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.14999999999999988,
- "acceleration": -1.997325,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 793,
- "timestamp": 1739683987.312999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.757121403698015,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.03999999999999989,
- "acceleration": -1.994291,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224034375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.7925910281559734,
- -14.005914240146819,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.613529486995947,
- -13.78186772135965,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.820394387795726,
- 9.247315267397047,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.32321186786441836,
- -2.5123361597338665,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.201863028025257,
- -5.742202881335398,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.579972665915706,
- 4.812838964311503,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 794,
- "timestamp": 1739683987.332999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.757121403698015,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.03999999999999989,
- "acceleration": -1.994291,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224034375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 795,
- "timestamp": 1739683987.352999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.757121403698015,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.03999999999999989,
- "acceleration": -1.994291,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224034375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 796,
- "timestamp": 1739683987.372999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.757121403698015,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.03999999999999989,
- "acceleration": -1.994291,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224034375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 797,
- "timestamp": 1739683987.392999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.757121403698015,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.03999999999999989,
- "acceleration": -1.994291,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224034375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.8121276326384543,
- -14.132622756999693,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.666146645092224,
- -13.805231046955438,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.828060803370565,
- 9.308494318486126,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.4024188103971606,
- -2.4621415433483946,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.209884759036923,
- -5.658111534984824,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.506941606791801,
- 4.826299124007657,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 798,
- "timestamp": 1739683987.412999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.758121403698013,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224748,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 799,
- "timestamp": 1739683987.432999,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.758121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224748,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 800,
- "timestamp": 1739683987.4529989,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.758121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224748,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 801,
- "timestamp": 1739683987.4729989,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.758121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224748,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 802,
- "timestamp": 1739683987.4929988,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.758121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224748,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.8316642371209353,
- -14.259331273852567,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.7187638031885015,
- -13.828594372551226,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.835727218945404,
- 9.369673369575205,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.48162575292990284,
- -2.411946926962923,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.2179064900485885,
- -5.57402018863425,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.433910547667896,
- 4.8397592837038115,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 803,
- "timestamp": 1739683987.5129988,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.767121403698013,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 804,
- "timestamp": 1739683987.5329988,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.767121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 805,
- "timestamp": 1739683987.5529988,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.767121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 806,
- "timestamp": 1739683987.5729988,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.767121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 807,
- "timestamp": 1739683987.5929987,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.767121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.8512008416034162,
- -14.386039790705441,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.771380961284779,
- -13.851957698147014,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.843393634520243,
- 9.430852420664284,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.560832695462645,
- -2.361752310577451,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.225928221060254,
- -5.4899288422836765,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.360879488543991,
- 4.853219443399966,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 808,
- "timestamp": 1739683987.6129987,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.767121403698013,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.19999999999999998,
- "acceleration": 3.789600000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 809,
- "timestamp": 1739683987.6329987,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.783621403698014,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 810,
- "timestamp": 1739683987.6529987,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.783621403698014,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 811,
- "timestamp": 1739683987.6729987,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.783621403698014,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 812,
- "timestamp": 1739683987.6929986,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.783621403698014,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.870737446085897,
- -14.512748307558315,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.823998119381056,
- -13.875321023742803,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.851060050095082,
- 9.492031471753362,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.6400396379953872,
- -2.311557694191979,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.23394995207192,
- -5.405837495933103,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.287848429420086,
- 4.86667960309612,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 813,
- "timestamp": 1739683987.7129986,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.783621403698014,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.08999999999999994,
- "acceleration": -1.9941810000000002,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2237,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 814,
- "timestamp": 1739683987.7329986,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.78812140369801,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 815,
- "timestamp": 1739683987.7529986,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.78812140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 816,
- "timestamp": 1739683987.7729986,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.78812140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 817,
- "timestamp": 1739683987.7929986,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.78812140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.890274050568378,
- -14.63945682441119,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.876615277477333,
- -13.898684349338591,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.858726465669921,
- 9.553210522842441,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.7192465805281294,
- -2.2613630778065072,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.241971683083586,
- -5.321746149582529,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.21481737029618,
- 4.8801397627922745,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 818,
- "timestamp": 1739683987.8129985,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.78812140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 819,
- "timestamp": 1739683987.8329985,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.78812140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.22442737499999998,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 820,
- "timestamp": 1739683987.8529985,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.79912140369801,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 821,
- "timestamp": 1739683987.8729985,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.79912140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 822,
- "timestamp": 1739683987.8929985,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.79912140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.909810655050859,
- -14.766165341264063,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.92923243557361,
- -13.92204767493438,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.86639288124476,
- 9.61438957393152,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.7984535230608716,
- -2.2111684614210354,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.249993414095251,
- -5.237654803231955,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.141786311172275,
- 4.893599922488429,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 823,
- "timestamp": 1739683987.9129984,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.79912140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 824,
- "timestamp": 1739683987.9329984,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.79912140369801,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 825,
- "timestamp": 1739683987.9529984,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.820821403698005,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 826,
- "timestamp": 1739683987.9729984,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.820821403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 827,
- "timestamp": 1739683987.9929984,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.820821403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.92934725953334,
- -14.892873858116937,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 7.981849593669887,
- -13.945411000530168,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.912493780808719,
- 9.655332916239155,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.8776604655936138,
- -2.1609738450355636,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.258015145106917,
- -5.153563456881381,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 7.06875525204837,
- 4.907060082184583,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 828,
- "timestamp": 1739683988.0129983,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.820821403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 829,
- "timestamp": 1739683988.0329983,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.820821403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 830,
- "timestamp": 1739683988.0529983,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.820821403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 831,
- "timestamp": 1739683988.0729983,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.830721403698007,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 832,
- "timestamp": 1739683988.0929983,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.830721403698007,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.948883864015821,
- -15.019582374969811,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.034466751766164,
- -13.968774326125956,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 8.958594680372677,
- 9.69627625854679,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 0.956867408126356,
- -2.1107792286500917,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.266036876118583,
- -5.069472110530807,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.995724192924465,
- 4.9205202418807374,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 833,
- "timestamp": 1739683988.1129982,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.830721403698007,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 834,
- "timestamp": 1739683988.1329982,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.830721403698007,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 835,
- "timestamp": 1739683988.1529982,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.830721403698007,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 836,
- "timestamp": 1739683988.1729982,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.831321403698006,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 837,
- "timestamp": 1739683988.1929982,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.831321403698006,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.968420468498302,
- -15.146290891822686,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.087083909862441,
- -13.992137651721745,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.004695579936635,
- 9.737219600854425,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.0360743506590981,
- -2.06058461226462,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.274058607130248,
- -4.985380764180233,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.92269313380056,
- 4.933980401576892,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 838,
- "timestamp": 1739683988.2129982,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.831321403698006,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 839,
- "timestamp": 1739683988.2329981,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.831321403698006,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 840,
- "timestamp": 1739683988.252998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.831321403698006,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 841,
- "timestamp": 1739683988.272998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.831321403698006,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 842,
- "timestamp": 1739683988.292998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.842321403698005,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 2.987957072980783,
- -15.27299940867556,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.139701067958718,
- -14.015500977317533,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.050796479500594,
- 9.77816294316206,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.1152812931918403,
- -2.010389995879148,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.282080338141914,
- -4.901289417829659,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.8496620746766546,
- 4.947440561273046,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 843,
- "timestamp": 1739683988.312998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.842321403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 844,
- "timestamp": 1739683988.332998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.842321403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 845,
- "timestamp": 1739683988.352998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.842321403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 846,
- "timestamp": 1739683988.372998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.842321403698005,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 847,
- "timestamp": 1739683988.392998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.864021403698,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.007493677463264,
- -15.399707925528434,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.192318226054995,
- -14.038864302913321,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.096897379064552,
- 9.819106285469696,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.1944882357245825,
- -1.9601953794936764,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.29010206915358,
- -4.817198071479085,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.776631015552749,
- 4.9609007209692,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 848,
- "timestamp": 1739683988.412998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.864021403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 849,
- "timestamp": 1739683988.432998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.864021403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 850,
- "timestamp": 1739683988.452998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.864021403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 851,
- "timestamp": 1739683988.472998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.864021403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 852,
- "timestamp": 1739683988.492998,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.864021403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.027030281945745,
- -15.526416442381308,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.244935384151272,
- -14.06222762850911,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.142998278628511,
- 9.86004962777733,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.2736951782573247,
- -1.9100007631082048,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.2981238001652455,
- -4.733106725128511,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.703599956428844,
- 4.974360880665355,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 853,
- "timestamp": 1739683988.5129979,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.873921403698002,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 854,
- "timestamp": 1739683988.5329978,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.873921403698002,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 855,
- "timestamp": 1739683988.5529978,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.873921403698002,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 856,
- "timestamp": 1739683988.5729978,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.873921403698002,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 857,
- "timestamp": 1739683988.5929978,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.873921403698002,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.046566886428226,
- -15.653124959234182,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.29755254224755,
- -14.085590954104898,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.18909917819247,
- 9.900992970084966,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.3529021207900669,
- -1.8598061467227331,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.306145531176911,
- -4.649015378777937,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.630568897304939,
- 4.987821040361509,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 858,
- "timestamp": 1739683988.6129978,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.874521403698,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 859,
- "timestamp": 1739683988.6329978,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.874521403698001,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 860,
- "timestamp": 1739683988.6529977,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.874521403698001,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 861,
- "timestamp": 1739683988.6729977,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.874521403698001,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 862,
- "timestamp": 1739683988.6929977,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.874521403698001,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.0661034909107068,
- -15.779833476087056,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.350169700343827,
- -14.108954279700686,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.235200077756428,
- 9.9419363123926,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.432109063322809,
- -1.8096115303372615,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.314167262188577,
- -4.564924032427363,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.557537838181034,
- 5.001281200057663,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 863,
- "timestamp": 1739683988.7129977,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.874521403698001,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 864,
- "timestamp": 1739683988.7329977,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.885521403698,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 865,
- "timestamp": 1739683988.7529976,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.885521403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 866,
- "timestamp": 1739683988.7729976,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.885521403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 867,
- "timestamp": 1739683988.7929976,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.885521403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.0856400953931877,
- -15.90654199293993,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.402786858440104,
- -14.132317605296475,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.281300977320386,
- 9.982879654700236,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.5113160058555513,
- -1.75941691395179,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.322188993200243,
- -4.4808326860767895,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.484506779057129,
- 5.014741359753818,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 868,
- "timestamp": 1739683988.8129976,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.885521403698,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.21999999999999997,
- "acceleration": 3.788516000000001,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0.8400000000000001,
- "brake_pedal_position": 0.0,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 869,
- "timestamp": 1739683988.8329976,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.907221403697996,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 870,
- "timestamp": 1739683988.8529975,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.907221403697996,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 871,
- "timestamp": 1739683988.8729975,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.907221403697996,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 872,
- "timestamp": 1739683988.8929975,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.907221403697996,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.1051766998756687,
- -16.033250509792804,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.45540401653638,
- -14.155680930892263,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.327401876884345,
- 10.023822997007871,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.5905229483882934,
- -1.7092222975663183,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.330210724211908,
- -4.396741339726216,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.4114757199332235,
- 5.028201519449972,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 873,
- "timestamp": 1739683988.9129975,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.907221403697996,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 874,
- "timestamp": 1739683988.9329975,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.907221403697996,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.13999999999999987,
- "acceleration": -1.995712,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2235645,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 875,
- "timestamp": 1739683988.9529974,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.917121403697998,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 876,
- "timestamp": 1739683988.9729974,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.917121403697998,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 877,
- "timestamp": 1739683988.9929974,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.917121403697998,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.1247133043581496,
- -16.159959026645677,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.508021174632658,
- -14.179044256488051,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.373502776448303,
- 10.064766339315506,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.6697298909210356,
- -1.6590276811808466,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.338232455223574,
- -4.312649993375642,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.338444660809318,
- 5.041661679146126,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- },
- {
- "render_frame": 878,
- "timestamp": 1739683989.0129974,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.917121403697998,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 879,
- "timestamp": 1739683989.0329974,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.917121403697998,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.029999999999999888,
- "acceleration": -1.994313,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.2241005,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": 1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 880,
- "timestamp": 1739683989.0529974,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 3,
- "position": [
- 19.917721403697996,
- 5.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 881,
- "timestamp": 1739683989.0729973,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.917721403697996,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- }
- ]
- },
- {
- "render_frame": 882,
- "timestamp": 1739683989.0929973,
- "objects": [
- {
- "type": "vehicle",
- "id": 0,
- "frame": 0,
- "position": [
- 15.917721403697996,
- 0.0,
- 0
- ],
- "steering_wheel_angle": 0.0,
- "velocity": 0.0,
- "acceleration": 0.0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "accelerator_pedal_position": 0,
- "brake_pedal_position": 0.224811375,
- "front_wheel_angle": 0.0,
- "heading_rate": 0.0,
- "gear": -1,
- "left_turn_indicator": false,
- "right_turn_indicator": false,
- "headlights_on": false,
- "horn_on": false,
- "wiper_level": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 0,
- "frame": 1,
- "position": [
- 3.1442499088406306,
- -16.28666754349855,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 1,
- "frame": 1,
- "position": [
- 8.560638332728935,
- -14.20240758208384,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 2,
- "frame": 1,
- "position": [
- 9.419603676012262,
- 10.105709681623141,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 3,
- "frame": 1,
- "position": [
- 1.7489368334537778,
- -1.608833064795375,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 4,
- "frame": 1,
- "position": [
- 7.34625418623524,
- -4.228558647025068,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "pedestrian",
- "id": 5,
- "frame": 1,
- "position": [
- 6.265413601685413,
- 5.055121838842281,
- 0
- ],
- "velocity": [
- 0,
- 0,
- 0
- ],
- "acceleration": 0,
- "rotation": [
- 0,
- 0,
- 0
- ],
- "misc": {
- "dimensions": [
- 0,
- 0,
- 0
- ],
- "outline": 0,
- "type": 3,
- "activity": 1,
- "velocity": [
- 0,
- 0,
- 0
- ],
- "yaw_rate": 0
- }
- },
- {
- "type": "traffic_light",
- "id": 0,
- "frame": 3,
- "position": [
- -2.0730895057655374,
- -9.366847892625884,
- 0
- ],
- "misc": {
- "frame": 3,
- "orientation": -1.57,
- "bounding_box": {
- "width": 0.4,
- "height": 1.2
- },
- "color": [
- 0,
- 255,
- 0
- ],
- "state": "GREEN"
- }
- }
- ]
- }
- ]
-}
\ No newline at end of file
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/app/page.tsx b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/page.tsx
index a680a011b..1e2d0ad24 100644
--- a/GEMstack/onboard/visualization/sr_viz/threeD/src/app/page.tsx
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/app/page.tsx
@@ -1,6 +1,6 @@
"use client";
-import { useSearchParams } from "next/navigation";
+import { useEffect, useState } from "react";
import ControlPanel from "@/components/ControlPanel";
import CanvasWrapper from "@/components/CanvasWrapper";
import Scrubber from "@/components/Scrubber";
@@ -19,12 +19,21 @@ export default function HomePage() {
duration,
setDuration,
} = usePlaybackTime();
- const searchParams = useSearchParams();
- const folder = searchParams.get("folder") || undefined;
- const file = searchParams.get("file") || undefined;
+
+ const [searchParams, setSearchParams] = useState<{ folder?: string; file?: string }>({});
+
+ useEffect(() => {
+ if (typeof window !== "undefined") {
+ const params = new URLSearchParams(window.location.search);
+ const folder = params.get("folder") || undefined;
+ const file = params.get("file") || undefined;
+ setSearchParams({ folder, file });
+ }
+ }, []);
+
return (
-
+
0 && timeline[0].time <= time;
- if (!isLoaded || !hasSpawned) return null;
-
return (
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/agentConfig.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/agentConfig.ts
index 8a95fca53..7d64a400d 100644
--- a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/agentConfig.ts
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/agentConfig.ts
@@ -6,23 +6,7 @@ const agentConfig = {
rotation: [0, Math.PI, 0],
offset: [0, 0, 0],
bodyColor: "#808080",
- },
- cyclist: {
- name: "Cyclist",
- modelPath: "/models/cyclist.glb",
- scale: [1, 1, 1],
- rotation: [0, Math.PI, 0],
- offset: [0, 0.1, 0],
- bodyColor: "#808080",
- },
- vehicle: {
- name: "Vehicle",
- modelPath: "/models/vehicle.glb",
- scale: [1, 1, 1],
- rotation: [0, Math.PI, 0],
- offset: [0, 0.25, 0],
- bodyColor: "#808080",
- },
+ }
};
const currentAgent = agentConfig.pedestrian;
diff --git a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/otherVehicleConfig.ts b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/otherVehicleConfig.ts
index 91be73319..2296e26d0 100644
--- a/GEMstack/onboard/visualization/sr_viz/threeD/src/config/otherVehicleConfig.ts
+++ b/GEMstack/onboard/visualization/sr_viz/threeD/src/config/otherVehicleConfig.ts
@@ -1,7 +1,7 @@
const otherVehicleConfig = {
car: {
name: "Car",
- modelPath: "/models/model/gem_e4.urdf",
+ modelPath: "/models/model/gem_e2.urdf",
scale: [1, 1, 1],
rotation: [-Math.PI / 2, 0, 0],
offset: [0, 0, 0],