diff --git a/backend/.env b/backend/.env
index d78762ec..1ee376ed 100644
--- a/backend/.env
+++ b/backend/.env
@@ -5,3 +5,11 @@ ASTOCK_DEEPSEEK_API_KEY=sk-9f6b56f08796435d988cf202e37f6ee3
ASTOCK_ALERT_ENABLED=true
ASTOCK_FEISHU_WEBHOOK_URL=https://open.feishu.cn/open-apis/bot/v2/hook/6307668f-10aa-4fc1-8c1e-bad1b6b78d4d
ASTOCK_ALERT_ENVIRONMENT=local
+ASTOCK_ADMIN_USERNAME=75981230@qq.com
+ASTOCK_ADMIN_EMAIL=75981230@qq.com
+ASTOCK_ADMIN_PASSWORD=880803
+ASTOCK_SMTP_HOST=gz-smtp.qcloudmail.com
+ASTOCK_SMTP_PORT=465
+ASTOCK_SMTP_USERNAME=noreply@xclaw.ren
+ASTOCK_SMTP_PASSWORD=bAgKbd0Zgb10irHqKpoW
+ASTOCK_SMTP_SENDER=noreply@xclaw.ren
diff --git a/backend/.env.example b/backend/.env.example
index e4a1c5c4..1fe01c42 100644
--- a/backend/.env.example
+++ b/backend/.env.example
@@ -1,4 +1,11 @@
ASTOCK_TUSHARE_TOKEN=your_tushare_token_here
ASTOCK_DEBUG=true
-
-ASTOCK_DEEPSEEK_API_KEY=sk-9f6b56f08796435d988cf202e37f6ee3
\ No newline at end of file
+ASTOCK_DEEPSEEK_API_KEY=your_deepseek_api_key_here
+ASTOCK_ADMIN_USERNAME=admin@example.com
+ASTOCK_ADMIN_EMAIL=admin@example.com
+ASTOCK_ADMIN_PASSWORD=change_me
+ASTOCK_SMTP_HOST=gz-smtp.qcloudmail.com
+ASTOCK_SMTP_PORT=465
+ASTOCK_SMTP_USERNAME=noreply@example.com
+ASTOCK_SMTP_PASSWORD=your_smtp_password
+ASTOCK_SMTP_SENDER=noreply@example.com
diff --git a/backend/app/__pycache__/config.cpython-313.pyc b/backend/app/__pycache__/config.cpython-313.pyc
index bc43f2b8..987cbf32 100644
Binary files a/backend/app/__pycache__/config.cpython-313.pyc and b/backend/app/__pycache__/config.cpython-313.pyc differ
diff --git a/backend/app/__pycache__/main.cpython-313.pyc b/backend/app/__pycache__/main.cpython-313.pyc
index 414bbbe9..ff55f88e 100644
Binary files a/backend/app/__pycache__/main.cpython-313.pyc and b/backend/app/__pycache__/main.cpython-313.pyc differ
diff --git a/backend/app/api/auth.py b/backend/app/api/auth.py
index 3819af65..6e9cf0c3 100644
--- a/backend/app/api/auth.py
+++ b/backend/app/api/auth.py
@@ -1,238 +1,437 @@
-"""认证 API
+"""认证 API。
-登录、密码修改、用户管理(管理员)、数据重置(管理员)
+邮箱+密码登录。
+邀请码 + 邮箱验证码 + 密码注册。
"""
-import secrets
+from __future__ import annotations
+
import logging
+import random
+import string
+import re
+from datetime import datetime, timedelta
-from fastapi import APIRouter, Depends, HTTPException, status
-from pydantic import BaseModel
-from sqlalchemy import select, update, text, func
+from fastapi import APIRouter, Depends, HTTPException
+from pydantic import BaseModel, Field
+from sqlalchemy import select, update, text, func, delete
+from app.config import settings
from app.core.auth import hash_password, verify_password, create_access_token
from app.core.deps import get_current_user, get_current_admin
+from app.core.email import send_email, build_register_code_email
from app.db.database import get_db
-from app.db.tables import users_table
+from app.db.tables import users_table, email_verification_codes_table, invite_codes_table
logger = logging.getLogger(__name__)
router = APIRouter(prefix="/api/auth", tags=["auth"])
-# ---------- Request/Response Models ----------
-
class LoginRequest(BaseModel):
- username: str
+ email: str
password: str
+class SendRegisterCodeRequest(BaseModel):
+ email: str
+ invite_code: str = Field(min_length=4, max_length=64)
+
+
+class RegisterRequest(BaseModel):
+ email: str
+ invite_code: str = Field(min_length=4, max_length=64)
+ email_code: str = Field(min_length=6, max_length=6)
+ password: str = Field(min_length=6)
+
+
class ChangePasswordRequest(BaseModel):
old_password: str
- new_password: str
+ new_password: str = Field(min_length=6)
-class CreateUserRequest(BaseModel):
- username: str
- role: str = "user"
+class CreateInviteCodeRequest(BaseModel):
+ code: str = Field(min_length=4, max_length=64)
+ description: str = ""
+ max_uses: int = 1
class DataResetRequest(BaseModel):
- mode: str # "all", "recommendations", "date_range", "low_score"
- before_date: str | None = None # for date_range mode, e.g. "2026-04-10"
- min_score: int | None = None # for low_score mode, default 60
+ mode: str
+ before_date: str | None = None
+ min_score: int | None = None
-# ---------- Public Endpoints ----------
+def _normalize_email(email: str) -> str:
+ return str(email or "").strip().lower()
+
+
+def _validate_email(email: str) -> str:
+ value = _normalize_email(email)
+ if not re.fullmatch(r"[^@\s]+@[^@\s]+\.[^@\s]+", value):
+ raise HTTPException(status_code=400, detail="邮箱格式错误")
+ return value
+
+
+def _validate_password(password: str) -> None:
+ if len(password or "") < settings.auth_min_password_length:
+ raise HTTPException(status_code=400, detail=f"密码至少 {settings.auth_min_password_length} 位")
+
+
+def _build_username_from_email(email: str) -> str:
+ return _normalize_email(email)
+
+
+def _generate_email_code() -> str:
+ return "".join(random.choices(string.digits, k=6))
+
+
+def _coerce_naive_datetime(value) -> datetime | None:
+ if value is None:
+ return None
+ if isinstance(value, datetime):
+ return value.replace(tzinfo=None)
+ if isinstance(value, str):
+ return datetime.fromisoformat(value.replace("Z", "+00:00")).replace(tzinfo=None)
+ return None
+
+
+async def _get_user_by_email(email: str) -> dict | None:
+ async with get_db() as db:
+ result = await db.execute(
+ select(users_table).where(users_table.c.email == _normalize_email(email))
+ )
+ user = result.mappings().first()
+ return dict(user) if user else None
+
+
+async def _get_invite_code(code: str) -> dict | None:
+ async with get_db() as db:
+ result = await db.execute(
+ select(invite_codes_table).where(invite_codes_table.c.code == code.strip())
+ )
+ row = result.mappings().first()
+ return dict(row) if row else None
+
+
+def _assert_invite_code_valid(invite_row: dict | None) -> None:
+ if not settings.invite_code_required:
+ return
+ if not invite_row:
+ raise HTTPException(status_code=400, detail="邀请码无效")
+ if not invite_row["is_active"]:
+ raise HTTPException(status_code=400, detail="邀请码已停用")
+ if invite_row["max_uses"] is not None and invite_row["used_count"] >= invite_row["max_uses"]:
+ raise HTTPException(status_code=400, detail="邀请码已用完")
+ expires_at = _coerce_naive_datetime(invite_row.get("expires_at"))
+ if expires_at and expires_at < datetime.utcnow():
+ raise HTTPException(status_code=400, detail="邀请码已过期")
+
+
+async def _consume_invite_code(code: str) -> None:
+ if not settings.invite_code_required:
+ return
+ async with get_db() as db:
+ await db.execute(
+ update(invite_codes_table)
+ .where(invite_codes_table.c.code == code.strip())
+ .values(
+ used_count=invite_codes_table.c.used_count + 1,
+ updated_at=func.now(),
+ )
+ )
+ await db.commit()
+
+
+async def _save_email_code(email: str, code: str, purpose: str) -> None:
+ expires_at = datetime.utcnow() + timedelta(minutes=settings.email_code_expiry_minutes)
+ async with get_db() as db:
+ await db.execute(
+ delete(email_verification_codes_table).where(
+ email_verification_codes_table.c.email == email,
+ email_verification_codes_table.c.purpose == purpose,
+ )
+ )
+ await db.execute(
+ email_verification_codes_table.insert().values(
+ email=email,
+ code=code,
+ purpose=purpose,
+ expires_at=expires_at,
+ used=False,
+ )
+ )
+ await db.commit()
+
+
+async def _assert_email_code_valid(email: str, code: str, purpose: str) -> None:
+ async with get_db() as db:
+ result = await db.execute(
+ select(email_verification_codes_table)
+ .where(
+ email_verification_codes_table.c.email == email,
+ email_verification_codes_table.c.code == code,
+ email_verification_codes_table.c.purpose == purpose,
+ email_verification_codes_table.c.used == False, # noqa: E712
+ )
+ .order_by(email_verification_codes_table.c.id.desc())
+ )
+ row = result.mappings().first()
+ if not row:
+ raise HTTPException(status_code=400, detail="邮箱验证码错误")
+ if row["expires_at"] < datetime.utcnow():
+ raise HTTPException(status_code=400, detail="邮箱验证码已过期")
+
+
+async def _mark_email_code_used(email: str, code: str, purpose: str) -> None:
+ async with get_db() as db:
+ await db.execute(
+ update(email_verification_codes_table)
+ .where(
+ email_verification_codes_table.c.email == email,
+ email_verification_codes_table.c.code == code,
+ email_verification_codes_table.c.purpose == purpose,
+ )
+ .values(used=True)
+ )
+ await db.commit()
+
@router.post("/login")
async def login(req: LoginRequest):
- """用户登录,返回 JWT token"""
- async with get_db() as db:
- result = await db.execute(
- select(users_table).where(users_table.c.username == req.username)
- )
- user = result.mappings().first()
-
+ email = _validate_email(req.email)
+ user = await _get_user_by_email(email)
if user is None or not user["is_active"]:
- raise HTTPException(status_code=401, detail="用户名或密码错误")
-
+ raise HTTPException(status_code=401, detail="邮箱或密码错误")
if not verify_password(req.password, user["password_hash"]):
- raise HTTPException(status_code=401, detail="用户名或密码错误")
+ raise HTTPException(status_code=401, detail="邮箱或密码错误")
token = create_access_token({"sub": str(user["id"]), "role": user["role"]})
-
return {
"token": token,
"user": {
"id": user["id"],
"username": user["username"],
+ "email": user["email"],
"role": user["role"],
},
}
-# ---------- Authenticated Endpoints ----------
+@router.post("/send-register-code")
+async def send_register_code(req: SendRegisterCodeRequest):
+ email = _validate_email(req.email)
+ if await _get_user_by_email(email):
+ raise HTTPException(status_code=400, detail="邮箱已注册")
+
+ invite_row = await _get_invite_code(req.invite_code)
+ _assert_invite_code_valid(invite_row)
+
+ async with get_db() as db:
+ result = await db.execute(
+ select(email_verification_codes_table)
+ .where(
+ email_verification_codes_table.c.email == email,
+ email_verification_codes_table.c.purpose == "register",
+ )
+ .order_by(email_verification_codes_table.c.id.desc())
+ )
+ last_code = result.mappings().first()
+ if last_code and last_code["created_at"]:
+ created_at = _coerce_naive_datetime(last_code["created_at"])
+ delta = datetime.utcnow() - created_at if created_at else timedelta.max
+ if delta.total_seconds() < settings.email_code_cooldown_seconds:
+ raise HTTPException(status_code=429, detail=f"发送过于频繁,请 {settings.email_code_cooldown_seconds} 秒后再试")
+
+ code = _generate_email_code()
+ subject, html, text = build_register_code_email(code)
+ try:
+ send_email(subject=subject, to_email=email, html=html, text=text)
+ except Exception as e:
+ logger.error("发送注册验证码失败: %s", e)
+ raise HTTPException(status_code=500, detail="验证码发送失败")
+
+ await _save_email_code(email, code, "register")
+ return {"message": "验证码已发送,请查收邮箱"}
+
+
+@router.post("/register")
+async def register(req: RegisterRequest):
+ email = _validate_email(req.email)
+ _validate_password(req.password)
+ if await _get_user_by_email(email):
+ raise HTTPException(status_code=400, detail="邮箱已注册")
+
+ invite_row = await _get_invite_code(req.invite_code)
+ _assert_invite_code_valid(invite_row)
+ await _assert_email_code_valid(email, req.email_code.strip(), "register")
+
+ username = _build_username_from_email(email)
+ async with get_db() as db:
+ await db.execute(
+ users_table.insert().values(
+ username=username,
+ email=email,
+ password_hash=hash_password(req.password),
+ role="user",
+ is_active=True,
+ invite_code_used=req.invite_code.strip(),
+ )
+ )
+ await db.commit()
+
+ await _mark_email_code_used(email, req.email_code.strip(), "register")
+ await _consume_invite_code(req.invite_code)
+ return {"message": "注册成功,请使用邮箱和密码登录"}
+
@router.get("/me")
async def get_me(current_user: dict = Depends(get_current_user)):
- """获取当前用户信息"""
return {
"id": current_user["id"],
"username": current_user["username"],
+ "email": current_user["email"],
"role": current_user["role"],
"is_active": current_user["is_active"],
}
@router.post("/change-password")
-async def change_password(
- req: ChangePasswordRequest,
- current_user: dict = Depends(get_current_user),
-):
- """修改自己的密码"""
+async def change_password(req: ChangePasswordRequest, current_user: dict = Depends(get_current_user)):
+ _validate_password(req.new_password)
if not verify_password(req.old_password, current_user["password_hash"]):
raise HTTPException(status_code=400, detail="旧密码错误")
- new_hash = hash_password(req.new_password)
async with get_db() as db:
await db.execute(
update(users_table)
.where(users_table.c.id == current_user["id"])
- .values(password_hash=new_hash)
+ .values(password_hash=hash_password(req.new_password), updated_at=func.now())
)
await db.commit()
-
return {"message": "密码修改成功"}
-# ---------- Admin Endpoints ----------
-
@router.get("/users")
async def list_users(admin: dict = Depends(get_current_admin)):
- """列出所有用户(管理员)"""
async with get_db() as db:
- result = await db.execute(
- select(users_table).order_by(users_table.c.id)
- )
+ result = await db.execute(select(users_table).order_by(users_table.c.id))
rows = result.mappings().all()
-
return [
{
"id": r["id"],
"username": r["username"],
+ "email": r["email"],
"role": r["role"],
"is_active": r["is_active"],
+ "invite_code_used": r.get("invite_code_used") or "",
"created_at": r["created_at"].isoformat() if r["created_at"] else None,
}
for r in rows
]
-@router.post("/users")
-async def create_user(req: CreateUserRequest, admin: dict = Depends(get_current_admin)):
- """创建新用户(管理员),自动生成随机密码"""
- # 检查用户名是否已存在
- async with get_db() as db:
- result = await db.execute(
- select(users_table).where(users_table.c.username == req.username)
- )
- if result.first():
- raise HTTPException(status_code=400, detail="用户名已存在")
-
- if req.role not in ("admin", "user"):
- raise HTTPException(status_code=400, detail="角色必须是 admin 或 user")
-
- # 生成 12 位随机密码
- raw_password = secrets.token_urlsafe(9)
- password_hash = hash_password(raw_password)
-
- await db.execute(
- users_table.insert().values(
- username=req.username,
- password_hash=password_hash,
- role=req.role,
- )
- )
- await db.commit()
-
- logger.info(f"管理员 {admin['username']} 创建了用户 {req.username} ({req.role})")
-
- return {
- "username": req.username,
- "password": raw_password,
- "role": req.role,
- "message": "请妥善保管密码,此密码仅显示一次",
- }
-
-
@router.delete("/users/{user_id}")
async def disable_user(user_id: int, admin: dict = Depends(get_current_admin)):
- """禁用用户(软删除)"""
if user_id == admin["id"]:
raise HTTPException(status_code=400, detail="不能禁用自己")
-
async with get_db() as db:
- result = await db.execute(
- select(users_table).where(users_table.c.id == user_id)
- )
+ result = await db.execute(select(users_table).where(users_table.c.id == user_id))
user = result.mappings().first()
if not user:
raise HTTPException(status_code=404, detail="用户不存在")
-
await db.execute(
- update(users_table)
- .where(users_table.c.id == user_id)
- .values(is_active=False)
+ update(users_table).where(users_table.c.id == user_id).values(is_active=False, updated_at=func.now())
)
await db.commit()
-
- return {"message": f"用户 {user['username']} 已禁用"}
+ return {"message": f"用户 {user['email']} 已禁用"}
@router.post("/users/{user_id}/reset-password")
async def reset_password(user_id: int, admin: dict = Depends(get_current_admin)):
- """重置用户密码(管理员),生成新的随机密码"""
+ new_password = "".join(random.choices(string.ascii_letters + string.digits, k=10))
async with get_db() as db:
- result = await db.execute(
- select(users_table).where(users_table.c.id == user_id)
- )
+ result = await db.execute(select(users_table).where(users_table.c.id == user_id))
user = result.mappings().first()
if not user:
raise HTTPException(status_code=404, detail="用户不存在")
-
- raw_password = secrets.token_urlsafe(9)
- password_hash = hash_password(raw_password)
-
await db.execute(
update(users_table)
.where(users_table.c.id == user_id)
- .values(password_hash=password_hash)
+ .values(password_hash=hash_password(new_password), updated_at=func.now())
)
await db.commit()
-
return {
- "username": user["username"],
- "password": raw_password,
+ "email": user["email"],
+ "password": new_password,
"message": "请妥善保管新密码,此密码仅显示一次",
}
-# ---------- Data Reset Endpoints (Admin Only) ----------
+@router.get("/invite-codes")
+async def list_invite_codes(admin: dict = Depends(get_current_admin)):
+ async with get_db() as db:
+ result = await db.execute(select(invite_codes_table).order_by(invite_codes_table.c.id.desc()))
+ rows = result.mappings().all()
+ return [
+ {
+ "id": r["id"],
+ "code": r["code"],
+ "description": r["description"] or "",
+ "is_active": r["is_active"],
+ "max_uses": r["max_uses"],
+ "used_count": r["used_count"],
+ "created_at": r["created_at"].isoformat() if r["created_at"] else None,
+ }
+ for r in rows
+ ]
+
+
+@router.post("/invite-codes")
+async def create_invite_code(req: CreateInviteCodeRequest, admin: dict = Depends(get_current_admin)):
+ async with get_db() as db:
+ result = await db.execute(select(invite_codes_table).where(invite_codes_table.c.code == req.code.strip()))
+ if result.first():
+ raise HTTPException(status_code=400, detail="邀请码已存在")
+ await db.execute(
+ invite_codes_table.insert().values(
+ code=req.code.strip(),
+ description=req.description.strip(),
+ max_uses=max(1, req.max_uses),
+ used_count=0,
+ is_active=True,
+ created_by=admin["id"],
+ )
+ )
+ await db.commit()
+ return {"message": "邀请码创建成功", "code": req.code.strip()}
+
+
+@router.post("/invite-codes/{invite_id}/toggle")
+async def toggle_invite_code(invite_id: int, admin: dict = Depends(get_current_admin)):
+ async with get_db() as db:
+ result = await db.execute(select(invite_codes_table).where(invite_codes_table.c.id == invite_id))
+ row = result.mappings().first()
+ if not row:
+ raise HTTPException(status_code=404, detail="邀请码不存在")
+ await db.execute(
+ update(invite_codes_table)
+ .where(invite_codes_table.c.id == invite_id)
+ .values(is_active=not row["is_active"], updated_at=func.now())
+ )
+ await db.commit()
+ return {"message": "邀请码状态已更新"}
+
@router.get("/data-stats")
async def get_data_stats(admin: dict = Depends(get_current_admin)):
- """获取数据统计(管理员)"""
async with get_db() as db:
rec_count = (await db.execute(text("SELECT COUNT(*) FROM recommendations"))).scalar() or 0
track_count = (await db.execute(text("SELECT COUNT(*) FROM recommendation_tracking"))).scalar() or 0
sector_count = (await db.execute(text("SELECT COUNT(*) FROM sector_heat"))).scalar() or 0
temp_count = (await db.execute(text("SELECT COUNT(*) FROM market_temperature"))).scalar() or 0
low_score = (await db.execute(text("SELECT COUNT(*) FROM recommendations WHERE score < 60"))).scalar() or 0
-
- # 最新日期
latest_rec = (await db.execute(text("SELECT MAX(date(created_at)) FROM recommendations"))).scalar() or ""
earliest_rec = (await db.execute(text("SELECT MIN(date(created_at)) FROM recommendations"))).scalar() or ""
-
return {
"recommendations": rec_count,
"tracking": track_count,
@@ -246,85 +445,39 @@ async def get_data_stats(admin: dict = Depends(get_current_admin)):
@router.post("/data-reset")
async def data_reset(req: DataResetRequest, admin: dict = Depends(get_current_admin)):
- """数据重置(管理员)
-
- mode:
- - "all": 清除所有业务数据(推荐、跟踪、板块热度、市场温度、诊断)
- - "recommendations": 清除推荐记录和跟踪数据,保留板块和市场温度
- - "date_range": 清除指定日期之前的数据
- - "low_score": 清除低分推荐(score < min_score)和过期跟踪数据
- """
- deleted = {}
-
+ deleted: dict[str, int] = {}
async with get_db() as db:
if req.mode == "all":
- # 清除所有业务数据(保留用户)
- result = await db.execute(text("DELETE FROM recommendation_tracking"))
- deleted["tracking"] = result.rowcount or 0
- result = await db.execute(text("DELETE FROM recommendations"))
- deleted["recommendations"] = result.rowcount or 0
- result = await db.execute(text("DELETE FROM sector_heat"))
- deleted["sector_heat"] = result.rowcount or 0
- result = await db.execute(text("DELETE FROM market_temperature"))
- deleted["market_temperature"] = result.rowcount or 0
- result = await db.execute(text("DELETE FROM stock_diagnoses"))
- deleted["stock_diagnoses"] = result.rowcount or 0
-
+ for table in ["recommendation_tracking", "recommendations", "sector_heat", "market_temperature", "stock_diagnoses"]:
+ result = await db.execute(text(f"DELETE FROM {table}"))
+ deleted[table] = result.rowcount or 0
elif req.mode == "recommendations":
- result = await db.execute(text("DELETE FROM recommendation_tracking"))
- deleted["tracking"] = result.rowcount or 0
- result = await db.execute(text("DELETE FROM recommendations"))
- deleted["recommendations"] = result.rowcount or 0
-
+ for table in ["recommendation_tracking", "recommendations"]:
+ result = await db.execute(text(f"DELETE FROM {table}"))
+ deleted[table] = result.rowcount or 0
elif req.mode == "date_range":
if not req.before_date:
raise HTTPException(status_code=400, detail="date_range 模式需要 before_date 参数")
- # 删除 before_date 之前的推荐和跟踪
- result = await db.execute(
- text("DELETE FROM recommendation_tracking WHERE track_date < :bd"),
- {"bd": req.before_date}
- )
+ result = await db.execute(text("DELETE FROM recommendation_tracking WHERE track_date < :bd"), {"bd": req.before_date})
deleted["tracking"] = result.rowcount or 0
- result = await db.execute(
- text("DELETE FROM recommendations WHERE date(created_at) < :bd"),
- {"bd": req.before_date}
- )
+ result = await db.execute(text("DELETE FROM recommendations WHERE date(created_at) < :bd"), {"bd": req.before_date})
deleted["recommendations"] = result.rowcount or 0
- result = await db.execute(
- text("DELETE FROM sector_heat WHERE trade_date < :bd"),
- {"bd": req.before_date}
- )
+ result = await db.execute(text("DELETE FROM sector_heat WHERE trade_date < :bd"), {"bd": req.before_date})
deleted["sector_heat"] = result.rowcount or 0
- result = await db.execute(
- text("DELETE FROM market_temperature WHERE trade_date < :bd"),
- {"bd": req.before_date}
- )
+ result = await db.execute(text("DELETE FROM market_temperature WHERE trade_date < :bd"), {"bd": req.before_date})
deleted["market_temperature"] = result.rowcount or 0
-
elif req.mode == "low_score":
threshold = req.min_score or 60
- # 删除低分推荐及其跟踪数据
result = await db.execute(
- text("DELETE FROM recommendation_tracking WHERE recommendation_id IN "
- "(SELECT id FROM recommendations WHERE score < :ms)"),
- {"ms": threshold}
+ text("DELETE FROM recommendation_tracking WHERE recommendation_id IN (SELECT id FROM recommendations WHERE score < :ms)"),
+ {"ms": threshold},
)
deleted["tracking"] = result.rowcount or 0
- result = await db.execute(
- text("DELETE FROM recommendations WHERE score < :ms"),
- {"ms": threshold}
- )
+ result = await db.execute(text("DELETE FROM recommendations WHERE score < :ms"), {"ms": threshold})
deleted["recommendations"] = result.rowcount or 0
-
else:
raise HTTPException(status_code=400, detail=f"不支持的模式: {req.mode}")
-
await db.commit()
- logger.info(f"管理员 {admin['username']} 执行数据重置: mode={req.mode}, deleted={deleted}")
-
- return {
- "status": "ok",
- "mode": req.mode,
- "deleted": deleted,
- }
+ logger.info("管理员 %s 执行数据重置: mode=%s deleted=%s", admin["email"], req.mode, deleted)
+ return {"status": "ok", "mode": req.mode, "deleted": deleted}
diff --git a/backend/app/config.py b/backend/app/config.py
index b0733fcf..62863631 100644
--- a/backend/app/config.py
+++ b/backend/app/config.py
@@ -76,8 +76,23 @@ class Settings(BaseSettings):
jwt_algorithm: str = "HS256"
# 默认管理员(首次启动自动创建)
- admin_username: str = "admin"
- admin_password: str = "admin123"
+ admin_username: str = "75981230@qq.com"
+ admin_email: str = "75981230@qq.com"
+ admin_password: str = "880803"
+
+ # 认证体系
+ auth_min_password_length: int = 6
+ invite_code_required: bool = True
+ email_code_expiry_minutes: int = 10
+ email_code_cooldown_seconds: int = 60
+
+ # SMTP
+ smtp_host: str = ""
+ smtp_port: int = 465
+ smtp_username: str = ""
+ smtp_password: str = ""
+ smtp_sender: str = ""
+ smtp_use_ssl: bool = True
model_config = {"env_file": ".env", "env_prefix": "ASTOCK_"}
diff --git a/backend/app/core/email.py b/backend/app/core/email.py
new file mode 100644
index 00000000..b3ca39c1
--- /dev/null
+++ b/backend/app/core/email.py
@@ -0,0 +1,50 @@
+"""SMTP 邮件发送工具。"""
+
+from __future__ import annotations
+
+import smtplib
+from email.message import EmailMessage
+
+from app.config import settings
+
+
+def send_email(subject: str, to_email: str, html: str, text: str | None = None) -> None:
+ if not settings.smtp_host or not settings.smtp_sender or not settings.smtp_username or not settings.smtp_password:
+ raise RuntimeError("SMTP 配置不完整")
+
+ message = EmailMessage()
+ message["Subject"] = subject
+ message["From"] = settings.smtp_sender
+ message["To"] = to_email
+ message.set_content(text or subject)
+ message.add_alternative(html, subtype="html")
+
+ if settings.smtp_use_ssl:
+ with smtplib.SMTP_SSL(settings.smtp_host, settings.smtp_port) as server:
+ server.login(settings.smtp_username, settings.smtp_password)
+ server.send_message(message)
+ else:
+ with smtplib.SMTP(settings.smtp_host, settings.smtp_port) as server:
+ server.starttls()
+ server.login(settings.smtp_username, settings.smtp_password)
+ server.send_message(message)
+
+
+def build_register_code_email(code: str) -> tuple[str, str]:
+ subject = "AStock Agent 注册验证码"
+ html = f"""
+
+
+
+
注册验证码
+
你正在注册 AStock Agent,请使用以下验证码完成注册:
+
+ {code}
+
+
验证码 {settings.email_code_expiry_minutes} 分钟内有效,请勿泄露给他人。
+
+
+
+ """
+ text = f"你正在注册 AStock Agent,验证码为:{code},{settings.email_code_expiry_minutes} 分钟内有效。"
+ return subject, html, text
diff --git a/backend/app/db/__pycache__/database.cpython-313.pyc b/backend/app/db/__pycache__/database.cpython-313.pyc
index f0e95812..0cd65a82 100644
Binary files a/backend/app/db/__pycache__/database.cpython-313.pyc and b/backend/app/db/__pycache__/database.cpython-313.pyc differ
diff --git a/backend/app/db/__pycache__/tables.cpython-313.pyc b/backend/app/db/__pycache__/tables.cpython-313.pyc
index a54c03d6..a7eda3d2 100644
Binary files a/backend/app/db/__pycache__/tables.cpython-313.pyc and b/backend/app/db/__pycache__/tables.cpython-313.pyc differ
diff --git a/backend/app/db/database.py b/backend/app/db/database.py
index 2e8615e0..f5a8837c 100644
--- a/backend/app/db/database.py
+++ b/backend/app/db/database.py
@@ -77,6 +77,8 @@ async def init_db():
"ALTER TABLE recommendation_tracking ADD COLUMN days_since_recommendation INTEGER DEFAULT 0",
"ALTER TABLE recommendation_tracking ADD COLUMN close_reason TEXT DEFAULT ''",
"ALTER TABLE recommendation_tracking ADD COLUMN review_note TEXT DEFAULT ''",
+ "ALTER TABLE users ADD COLUMN email TEXT",
+ "ALTER TABLE users ADD COLUMN invite_code_used TEXT DEFAULT ''",
"ALTER TABLE stock_diagnoses ADD COLUMN diagnosis_mode TEXT DEFAULT 'entry'",
"ALTER TABLE user_watchlists ADD COLUMN note TEXT DEFAULT ''",
"ALTER TABLE user_watchlists ADD COLUMN watch_group TEXT DEFAULT 'observe'",
@@ -98,3 +100,12 @@ async def init_db():
)
except Exception:
pass # 列已存在,忽略
+
+ try:
+ await conn.execute(
+ __import__("sqlalchemy").text(
+ "UPDATE users SET email = username WHERE email IS NULL OR email = ''"
+ )
+ )
+ except Exception:
+ pass
diff --git a/backend/app/db/tables.py b/backend/app/db/tables.py
index 35e62cca..5d191c03 100644
--- a/backend/app/db/tables.py
+++ b/backend/app/db/tables.py
@@ -110,9 +110,36 @@ users_table = Table(
"users", metadata,
Column("id", Integer, primary_key=True, autoincrement=True),
Column("username", Text, nullable=False, unique=True),
+ Column("email", Text, nullable=False, unique=True),
Column("password_hash", Text, nullable=False),
Column("role", Text, default="user"),
Column("is_active", Boolean, default=True),
+ Column("invite_code_used", Text, default=""),
+ Column("created_at", DateTime, server_default=func.now()),
+ Column("updated_at", DateTime, server_default=func.now()),
+)
+
+email_verification_codes_table = Table(
+ "email_verification_codes", metadata,
+ Column("id", Integer, primary_key=True, autoincrement=True),
+ Column("email", Text, nullable=False),
+ Column("code", Text, nullable=False),
+ Column("purpose", Text, nullable=False, default="register"),
+ Column("expires_at", DateTime, nullable=False),
+ Column("used", Boolean, default=False),
+ Column("created_at", DateTime, server_default=func.now()),
+)
+
+invite_codes_table = Table(
+ "invite_codes", metadata,
+ Column("id", Integer, primary_key=True, autoincrement=True),
+ Column("code", Text, nullable=False, unique=True),
+ Column("description", Text, default=""),
+ Column("is_active", Boolean, default=True),
+ Column("max_uses", Integer, default=1),
+ Column("used_count", Integer, default=0),
+ Column("expires_at", DateTime, default=None),
+ Column("created_by", Integer, default=None),
Column("created_at", DateTime, server_default=func.now()),
Column("updated_at", DateTime, server_default=func.now()),
)
diff --git a/backend/app/main.py b/backend/app/main.py
index b8085ab9..b5ef1d75 100644
--- a/backend/app/main.py
+++ b/backend/app/main.py
@@ -22,27 +22,56 @@ logger = logging.getLogger(__name__)
async def ensure_admin_exists():
- """如果没有管理员用户,自动创建默认管理员"""
- from sqlalchemy import select, insert
+ """确保配置中的管理员账号存在并可用。"""
+ from sqlalchemy import select, insert, update
from app.db.database import get_db
- from app.db.tables import users_table
+ from app.db.tables import users_table, invite_codes_table
from app.core.auth import hash_password
async with get_db() as db:
- result = await db.execute(
- select(users_table).where(users_table.c.role == "admin")
+ configured_admin = await db.execute(
+ select(users_table).where(users_table.c.email == settings.admin_email)
)
- if result.first() is None:
+ admin_row = configured_admin.mappings().first()
+
+ if admin_row is None:
await db.execute(
insert(users_table).values(
username=settings.admin_username,
+ email=settings.admin_email,
password_hash=hash_password(settings.admin_password),
role="admin",
is_active=True,
)
)
await db.commit()
- logger.info(f"默认管理员用户 '{settings.admin_username}' 已创建")
+ logger.info(f"默认管理员用户 '{settings.admin_email}' 已创建")
+ elif admin_row["role"] != "admin" or not admin_row["is_active"]:
+ await db.execute(
+ update(users_table)
+ .where(users_table.c.id == admin_row["id"])
+ .values(
+ role="admin",
+ is_active=True,
+ )
+ )
+ await db.commit()
+ logger.info("默认管理员用户 '%s' 已修正为可用管理员", settings.admin_email)
+
+ invite = await db.execute(
+ select(invite_codes_table).where(invite_codes_table.c.code == "ASTOCK-ACCESS")
+ )
+ if invite.first() is None:
+ await db.execute(
+ insert(invite_codes_table).values(
+ code="ASTOCK-ACCESS",
+ description="默认注册邀请码",
+ is_active=True,
+ max_uses=999999,
+ used_count=0,
+ )
+ )
+ await db.commit()
@asynccontextmanager
diff --git a/backend/astock.db b/backend/astock.db
index d325ef6b..d5e3a1bd 100644
Binary files a/backend/astock.db and b/backend/astock.db differ
diff --git a/frontend/.next/app-build-manifest.json b/frontend/.next/app-build-manifest.json
index c88a1a86..72d11859 100644
--- a/frontend/.next/app-build-manifest.json
+++ b/frontend/.next/app-build-manifest.json
@@ -1,9 +1,14 @@
{
"pages": {
- "/(auth)/layout": [
+ "/(public)/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
- "static/chunks/app/(auth)/layout.js"
+ "static/chunks/app/(public)/page.js"
+ ],
+ "/(public)/layout": [
+ "static/chunks/webpack.js",
+ "static/chunks/main-app.js",
+ "static/chunks/app/(public)/layout.js"
],
"/layout": [
"static/chunks/webpack.js",
@@ -11,45 +16,25 @@
"static/css/app/layout.css",
"static/chunks/app/layout.js"
],
+ "/(public)/login/page": [
+ "static/chunks/webpack.js",
+ "static/chunks/main-app.js",
+ "static/chunks/app/(public)/login/page.js"
+ ],
"/(auth)/dashboard/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/chunks/app/(auth)/dashboard/page.js"
],
- "/(auth)/recommendations/page": [
+ "/(auth)/layout": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
- "static/chunks/app/(auth)/recommendations/page.js"
- ],
- "/(auth)/stock/[code]/page": [
- "static/chunks/webpack.js",
- "static/chunks/main-app.js",
- "static/chunks/app/(auth)/stock/[code]/page.js"
- ],
- "/(auth)/strategy/page": [
- "static/chunks/webpack.js",
- "static/chunks/main-app.js",
- "static/chunks/app/(auth)/strategy/page.js"
- ],
- "/(auth)/sectors/page": [
- "static/chunks/webpack.js",
- "static/chunks/main-app.js",
- "static/chunks/app/(auth)/sectors/page.js"
+ "static/chunks/app/(auth)/layout.js"
],
"/(auth)/settings/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/chunks/app/(auth)/settings/page.js"
- ],
- "/(auth)/watchlists/page": [
- "static/chunks/webpack.js",
- "static/chunks/main-app.js",
- "static/chunks/app/(auth)/watchlists/page.js"
- ],
- "/_not-found/page": [
- "static/chunks/webpack.js",
- "static/chunks/main-app.js",
- "static/chunks/app/_not-found/page.js"
]
}
}
\ No newline at end of file
diff --git a/frontend/.next/build-manifest.json b/frontend/.next/build-manifest.json
index b4e9156a..018cb67f 100644
--- a/frontend/.next/build-manifest.json
+++ b/frontend/.next/build-manifest.json
@@ -2,9 +2,7 @@
"polyfillFiles": [
"static/chunks/polyfills.js"
],
- "devFiles": [
- "static/chunks/react-refresh.js"
- ],
+ "devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
@@ -15,16 +13,7 @@
"static/chunks/main-app.js"
],
"pages": {
- "/_app": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_app.js"
- ],
- "/_error": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_error.js"
- ]
+ "/_app": []
},
"ampFirstPages": []
}
\ No newline at end of file
diff --git a/frontend/.next/react-loadable-manifest.json b/frontend/.next/react-loadable-manifest.json
index 708968d6..9e26dfee 100644
--- a/frontend/.next/react-loadable-manifest.json
+++ b/frontend/.next/react-loadable-manifest.json
@@ -1,20 +1 @@
-{
- "app/(auth)/sectors/page.tsx -> echarts": {
- "id": "app/(auth)/sectors/page.tsx -> echarts",
- "files": [
- "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js"
- ]
- },
- "components/capital-flow.tsx -> echarts": {
- "id": "components/capital-flow.tsx -> echarts",
- "files": [
- "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js"
- ]
- },
- "components/kline-chart.tsx -> echarts": {
- "id": "components/kline-chart.tsx -> echarts",
- "files": [
- "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js"
- ]
- }
-}
\ No newline at end of file
+{}
\ No newline at end of file
diff --git a/frontend/.next/server/app-paths-manifest.json b/frontend/.next/server/app-paths-manifest.json
index 8c2db974..87117a46 100644
--- a/frontend/.next/server/app-paths-manifest.json
+++ b/frontend/.next/server/app-paths-manifest.json
@@ -1,8 +1,6 @@
{
- "/_not-found/page": "app/_not-found/page.js",
- "/(auth)/dashboard/page": "app/(auth)/dashboard/page.js",
- "/(auth)/recommendations/page": "app/(auth)/recommendations/page.js",
"/(auth)/settings/page": "app/(auth)/settings/page.js",
- "/(auth)/stock/[code]/page": "app/(auth)/stock/[code]/page.js",
- "/(auth)/watchlists/page": "app/(auth)/watchlists/page.js"
+ "/(auth)/dashboard/page": "app/(auth)/dashboard/page.js",
+ "/(public)/page": "app/(public)/page.js",
+ "/(public)/login/page": "app/(public)/login/page.js"
}
\ No newline at end of file
diff --git a/frontend/.next/server/middleware-build-manifest.js b/frontend/.next/server/middleware-build-manifest.js
index 424a1a19..36489d8c 100644
--- a/frontend/.next/server/middleware-build-manifest.js
+++ b/frontend/.next/server/middleware-build-manifest.js
@@ -2,9 +2,7 @@ self.__BUILD_MANIFEST = {
"polyfillFiles": [
"static/chunks/polyfills.js"
],
- "devFiles": [
- "static/chunks/react-refresh.js"
- ],
+ "devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [],
"rootMainFiles": [
@@ -12,16 +10,7 @@ self.__BUILD_MANIFEST = {
"static/chunks/main-app.js"
],
"pages": {
- "/_app": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_app.js"
- ],
- "/_error": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_error.js"
- ]
+ "/_app": []
},
"ampFirstPages": []
};
diff --git a/frontend/.next/server/middleware-react-loadable-manifest.js b/frontend/.next/server/middleware-react-loadable-manifest.js
index 679c4feb..ca34f09f 100644
--- a/frontend/.next/server/middleware-react-loadable-manifest.js
+++ b/frontend/.next/server/middleware-react-loadable-manifest.js
@@ -1 +1 @@
-self.__REACT_LOADABLE_MANIFEST="{\"app/(auth)/sectors/page.tsx -> echarts\":{\"id\":\"app/(auth)/sectors/page.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]},\"components/capital-flow.tsx -> echarts\":{\"id\":\"components/capital-flow.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]},\"components/kline-chart.tsx -> echarts\":{\"id\":\"components/kline-chart.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]}}"
\ No newline at end of file
+self.__REACT_LOADABLE_MANIFEST="{}"
\ No newline at end of file
diff --git a/frontend/.next/server/pages-manifest.json b/frontend/.next/server/pages-manifest.json
index a679766a..9e26dfee 100644
--- a/frontend/.next/server/pages-manifest.json
+++ b/frontend/.next/server/pages-manifest.json
@@ -1,5 +1 @@
-{
- "/_app": "pages/_app.js",
- "/_error": "pages/_error.js",
- "/_document": "pages/_document.js"
-}
\ No newline at end of file
+{}
\ No newline at end of file
diff --git a/frontend/.next/server/server-reference-manifest.json b/frontend/.next/server/server-reference-manifest.json
index 15bddfa8..429ff444 100644
--- a/frontend/.next/server/server-reference-manifest.json
+++ b/frontend/.next/server/server-reference-manifest.json
@@ -1,5 +1,5 @@
{
"node": {},
"edge": {},
- "encryptionKey": "qGqEEZzUFqZxeEgbiNEfbm7ophOEC3RaVTABPCm+KZ8="
+ "encryptionKey": "mF8eeADKwF8ZgzkVb17uMLBKIP2Av/vT46Y1sYJ8rsk="
}
\ No newline at end of file
diff --git a/frontend/.next/trace b/frontend/.next/trace
index e6e868be..5de402c6 100644
--- a/frontend/.next/trace
+++ b/frontend/.next/trace
@@ -1,120 +1,20 @@
-[{"name":"hot-reloader","duration":23,"timestamp":7341187750659,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776948133968,"traceId":"d76ab653cbe90d54"},{"name":"start","duration":0,"timestamp":7341187751123,"id":4,"parentId":3,"tags":{},"startTime":1776948133969,"traceId":"d76ab653cbe90d54"},{"name":"get-version-info","duration":851023,"timestamp":7341187751228,"id":5,"parentId":4,"tags":{},"startTime":1776948133969,"traceId":"d76ab653cbe90d54"},{"name":"clean","duration":22981,"timestamp":7341188602309,"id":6,"parentId":4,"tags":{},"startTime":1776948134820,"traceId":"d76ab653cbe90d54"},{"name":"create-pages-mapping","duration":134,"timestamp":7341188626153,"id":8,"parentId":7,"tags":{},"startTime":1776948134844,"traceId":"d76ab653cbe90d54"},{"name":"create-entrypoints","duration":253600,"timestamp":7341188626306,"id":9,"parentId":7,"tags":{},"startTime":1776948134844,"traceId":"d76ab653cbe90d54"},{"name":"generate-webpack-config","duration":89411,"timestamp":7341188879946,"id":10,"parentId":7,"tags":{},"startTime":1776948135098,"traceId":"d76ab653cbe90d54"},{"name":"get-webpack-config","duration":343257,"timestamp":7341188626111,"id":7,"parentId":4,"tags":{},"startTime":1776948134844,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":536,"timestamp":7341189009919,"id":12,"parentId":11,"tags":{},"startTime":1776948135228,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":332,"timestamp":7341189011453,"id":14,"parentId":13,"tags":{},"startTime":1776948135229,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":9,"timestamp":7341189011834,"id":16,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":56,"timestamp":7341189011918,"id":17,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":11,"timestamp":7341189012004,"id":18,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":10,"timestamp":7341189012094,"id":19,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":333,"timestamp":7341189011815,"id":15,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":40,"timestamp":7341189012426,"id":20,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":76,"timestamp":7341189012476,"id":21,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":210,"timestamp":7341189012660,"id":22,"parentId":13,"tags":{},"startTime":1776948135230,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":27,"timestamp":7341189012869,"id":23,"parentId":13,"tags":{},"startTime":1776948135231,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":34,"timestamp":7341189012885,"id":24,"parentId":13,"tags":{},"startTime":1776948135231,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":119,"timestamp":7341189012923,"id":25,"parentId":13,"tags":{},"startTime":1776948135231,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":1578,"timestamp":7341189062559,"id":27,"parentId":11,"tags":{},"startTime":1776948135280,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":2134,"timestamp":7341189062019,"id":26,"parentId":11,"tags":{},"startTime":1776948135280,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":53909,"timestamp":7341189011371,"id":13,"parentId":11,"tags":{},"startTime":1776948135229,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":57419,"timestamp":7341189008108,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776948135226,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4946,"timestamp":7341189065732,"id":28,"parentId":3,"tags":{},"startTime":1776948135283,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":892,"timestamp":7341189077983,"id":30,"parentId":29,"tags":{},"startTime":1776948135296,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":27,"timestamp":7341189079218,"id":32,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":30,"timestamp":7341189079267,"id":34,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":43,"timestamp":7341189079341,"id":35,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7341189079408,"id":36,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":29,"timestamp":7341189079437,"id":37,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":235,"timestamp":7341189079260,"id":33,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":5,"timestamp":7341189079572,"id":38,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4,"timestamp":7341189079581,"id":39,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":53,"timestamp":7341189079606,"id":40,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":20,"timestamp":7341189079660,"id":41,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":6,"timestamp":7341189079676,"id":42,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7,"timestamp":7341189079686,"id":43,"parentId":31,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":1294,"timestamp":7341189079090,"id":31,"parentId":29,"tags":{},"startTime":1776948135297,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":3502,"timestamp":7341189076961,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776948135295,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7445,"timestamp":7341189080500,"id":44,"parentId":3,"tags":{},"startTime":1776948135298,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":117,"timestamp":7341189092404,"id":46,"parentId":45,"tags":{},"startTime":1776948135310,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":14,"timestamp":7341189092871,"id":48,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341189092895,"id":50,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":11,"timestamp":7341189092925,"id":51,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341189092943,"id":52,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341189092957,"id":53,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":77,"timestamp":7341189092891,"id":49,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":4,"timestamp":7341189093017,"id":54,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4,"timestamp":7341189093026,"id":55,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":102,"timestamp":7341189093056,"id":56,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":51,"timestamp":7341189093157,"id":57,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":8,"timestamp":7341189093202,"id":58,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":10,"timestamp":7341189093214,"id":59,"parentId":47,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":755,"timestamp":7341189092853,"id":47,"parentId":45,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":2458,"timestamp":7341189091170,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776948135309,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":693,"timestamp":7341189093647,"id":60,"parentId":3,"tags":{},"startTime":1776948135311,"traceId":"d76ab653cbe90d54"}]
-[{"name":"make","duration":169,"timestamp":7341189327539,"id":65,"parentId":64,"tags":{},"startTime":1776948135545,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":13,"timestamp":7341189327799,"id":67,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341189327820,"id":69,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":4,"timestamp":7341189327829,"id":70,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":2,"timestamp":7341189327839,"id":71,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341189327849,"id":72,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":46,"timestamp":7341189327817,"id":68,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":4,"timestamp":7341189327908,"id":73,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3,"timestamp":7341189327915,"id":74,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":26,"timestamp":7341189327933,"id":75,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":11,"timestamp":7341189327959,"id":76,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":4,"timestamp":7341189327968,"id":77,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6,"timestamp":7341189327974,"id":78,"parentId":66,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":220,"timestamp":7341189328301,"id":80,"parentId":64,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":261,"timestamp":7341189328267,"id":79,"parentId":64,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":856,"timestamp":7341189327784,"id":66,"parentId":64,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1460,"timestamp":7341189327196,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776948135545,"traceId":"d76ab653cbe90d54"},{"name":"setup-dev-bundler","duration":1720702,"timestamp":7341187634288,"id":2,"parentId":1,"tags":{},"startTime":1776948133852,"traceId":"d76ab653cbe90d54"},{"name":"run-instrumentation-hook","duration":24,"timestamp":7341189378289,"id":82,"parentId":1,"tags":{},"startTime":1776948135596,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":50030,"timestamp":7341189328670,"id":81,"parentId":61,"tags":{},"startTime":1776948135546,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":54749,"timestamp":7341189324508,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948135542,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":177,"timestamp":7341189380423,"id":84,"parentId":83,"tags":{},"startTime":1776948135598,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":16,"timestamp":7341189380678,"id":86,"parentId":85,"tags":{},"startTime":1776948135598,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341189380704,"id":88,"parentId":85,"tags":{},"startTime":1776948135598,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":81,"timestamp":7341189380737,"id":89,"parentId":85,"tags":{},"startTime":1776948135598,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7341189380827,"id":90,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341189380841,"id":91,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":156,"timestamp":7341189380700,"id":87,"parentId":85,"tags":{},"startTime":1776948135598,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":4,"timestamp":7341189380975,"id":92,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3,"timestamp":7341189380983,"id":93,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":31,"timestamp":7341189381006,"id":94,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":8,"timestamp":7341189381037,"id":95,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":3,"timestamp":7341189381043,"id":96,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":9,"timestamp":7341189381049,"id":97,"parentId":85,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":582,"timestamp":7341189380664,"id":85,"parentId":83,"tags":{},"startTime":1776948135598,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1200,"timestamp":7341189380065,"id":83,"parentId":62,"tags":{"name":"server"},"startTime":1776948135598,"traceId":"d76ab653cbe90d54"},{"name":"start-dev-server","duration":2036468,"timestamp":7341187348293,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"302792704","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"189366272","memory.heapTotal":"105168896","memory.heapUsed":"80919568"},"startTime":1776948133566,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4615,"timestamp":7341189381278,"id":98,"parentId":62,"tags":{},"startTime":1776948135599,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":61558,"timestamp":7341189324611,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948135542,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":209,"timestamp":7341189387533,"id":100,"parentId":99,"tags":{},"startTime":1776948135605,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":13,"timestamp":7341189387931,"id":102,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341189387955,"id":104,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":5,"timestamp":7341189387965,"id":105,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341189387978,"id":106,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7341189387990,"id":107,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":53,"timestamp":7341189387950,"id":103,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":4,"timestamp":7341189388051,"id":108,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3,"timestamp":7341189388060,"id":109,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":34,"timestamp":7341189388079,"id":110,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":8,"timestamp":7341189388113,"id":111,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":4,"timestamp":7341189388119,"id":112,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7,"timestamp":7341189388127,"id":113,"parentId":101,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":472,"timestamp":7341189387913,"id":101,"parentId":99,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1265,"timestamp":7341189387141,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776948135605,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7622,"timestamp":7341189388420,"id":114,"parentId":63,"tags":{},"startTime":1776948135606,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":71992,"timestamp":7341189324628,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948135542,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module","duration":36892,"timestamp":7341189417882,"id":121,"parentId":120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776948135636,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":147391,"timestamp":7341189466055,"id":126,"parentId":125,"tags":{},"startTime":1776948135684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":147801,"timestamp":7341189465658,"id":125,"parentId":122,"tags":{},"startTime":1776948135683,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":152458,"timestamp":7341189463838,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776948135682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":148229,"timestamp":7341189468111,"id":140,"parentId":139,"tags":{},"startTime":1776948135686,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":148373,"timestamp":7341189467969,"id":139,"parentId":134,"tags":{},"startTime":1776948135686,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":150070,"timestamp":7341189467436,"id":134,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776948135685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":153172,"timestamp":7341189466208,"id":128,"parentId":127,"tags":{},"startTime":1776948135684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":153306,"timestamp":7341189466079,"id":127,"parentId":123,"tags":{},"startTime":1776948135684,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":155969,"timestamp":7341189465140,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1776948135683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":154835,"timestamp":7341189466307,"id":130,"parentId":129,"tags":{},"startTime":1776948135684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":154931,"timestamp":7341189466213,"id":129,"parentId":124,"tags":{},"startTime":1776948135684,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":156617,"timestamp":7341189465306,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776948135683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":153797,"timestamp":7341189468188,"id":142,"parentId":141,"tags":{},"startTime":1776948135686,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":153868,"timestamp":7341189468118,"id":141,"parentId":135,"tags":{},"startTime":1776948135686,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":156740,"timestamp":7341189467529,"id":135,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776948135685,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":160217,"timestamp":7341189467961,"id":137,"parentId":132,"tags":{},"startTime":1776948135686,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":76,"timestamp":7341189628211,"id":143,"parentId":132,"tags":{},"startTime":1776948135846,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":165104,"timestamp":7341189467133,"id":132,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776948135685,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":164320,"timestamp":7341189467941,"id":136,"parentId":131,"tags":{},"startTime":1776948135686,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7341189632271,"id":144,"parentId":131,"tags":{},"startTime":1776948135850,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":166314,"timestamp":7341189466522,"id":131,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776948135684,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":164920,"timestamp":7341189467966,"id":138,"parentId":133,"tags":{},"startTime":1776948135686,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7341189632895,"id":145,"parentId":133,"tags":{},"startTime":1776948135851,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":167430,"timestamp":7341189467229,"id":133,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776948135685,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":247,"timestamp":7341189640445,"id":146,"parentId":133,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776948135858,"traceId":"d76ab653cbe90d54"},{"name":"build-module-external","duration":12,"timestamp":7341189644487,"id":152,"parentId":132,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"build-module-external","duration":5,"timestamp":7341189644507,"id":153,"parentId":132,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"build-module-external","duration":3,"timestamp":7341189644515,"id":154,"parentId":132,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3880,"timestamp":7341189645029,"id":166,"parentId":165,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4021,"timestamp":7341189644892,"id":165,"parentId":155,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4909,"timestamp":7341189644521,"id":155,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4703,"timestamp":7341189644833,"id":164,"parentId":163,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4734,"timestamp":7341189644804,"id":163,"parentId":151,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5351,"timestamp":7341189644452,"id":151,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5013,"timestamp":7341189644802,"id":162,"parentId":161,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5048,"timestamp":7341189644768,"id":161,"parentId":150,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5574,"timestamp":7341189644408,"id":150,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5347,"timestamp":7341189644692,"id":160,"parentId":159,"tags":{},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5407,"timestamp":7341189644634,"id":159,"parentId":149,"tags":{},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5900,"timestamp":7341189644326,"id":149,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5830,"timestamp":7341189645075,"id":168,"parentId":167,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5874,"timestamp":7341189645033,"id":167,"parentId":156,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7583,"timestamp":7341189644550,"id":156,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7072,"timestamp":7341189645099,"id":170,"parentId":169,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7094,"timestamp":7341189645078,"id":169,"parentId":157,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7755,"timestamp":7341189644578,"id":157,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8258,"timestamp":7341189645112,"id":172,"parentId":171,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8271,"timestamp":7341189645101,"id":171,"parentId":158,"tags":{},"startTime":1776948135863,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9922,"timestamp":7341189644608,"id":158,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13550,"timestamp":7341189643776,"id":148,"parentId":147,"tags":{},"startTime":1776948135862,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":15066,"timestamp":7341189642807,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776948135861,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6688,"timestamp":7341189653123,"id":178,"parentId":174,"tags":{},"startTime":1776948135871,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7341189659823,"id":181,"parentId":174,"tags":{},"startTime":1776948135878,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7295,"timestamp":7341189652862,"id":174,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776948135871,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7070,"timestamp":7341189653112,"id":177,"parentId":173,"tags":{},"startTime":1776948135871,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7341189660187,"id":182,"parentId":173,"tags":{},"startTime":1776948135878,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8901,"timestamp":7341189652756,"id":173,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776948135870,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8668,"timestamp":7341189653128,"id":179,"parentId":175,"tags":{},"startTime":1776948135871,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7341189661804,"id":183,"parentId":175,"tags":{},"startTime":1776948135880,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9945,"timestamp":7341189652922,"id":175,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776948135871,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10809,"timestamp":7341189653133,"id":180,"parentId":176,"tags":{},"startTime":1776948135871,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7341189663949,"id":186,"parentId":176,"tags":{},"startTime":1776948135882,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23733,"timestamp":7341189652983,"id":176,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776948135871,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17146,"timestamp":7341189663200,"id":185,"parentId":184,"tags":{},"startTime":1776948135881,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7341189680355,"id":189,"parentId":184,"tags":{},"startTime":1776948135898,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19020,"timestamp":7341189663087,"id":184,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776948135881,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6048,"timestamp":7341189678550,"id":188,"parentId":187,"tags":{},"startTime":1776948135896,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7341189684608,"id":196,"parentId":187,"tags":{},"startTime":1776948135902,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6461,"timestamp":7341189678438,"id":187,"parentId":134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1776948135896,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6728,"timestamp":7341189682632,"id":192,"parentId":190,"tags":{},"startTime":1776948135900,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7341189689382,"id":209,"parentId":190,"tags":{},"startTime":1776948135907,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8290,"timestamp":7341189682446,"id":190,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776948135900,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8071,"timestamp":7341189682683,"id":193,"parentId":191,"tags":{},"startTime":1776948135900,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7341189690761,"id":210,"parentId":191,"tags":{},"startTime":1776948135908,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8510,"timestamp":7341189682559,"id":191,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776948135900,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1751,"timestamp":7341189691916,"id":220,"parentId":219,"tags":{},"startTime":1776948135910,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1790,"timestamp":7341189691880,"id":219,"parentId":214,"tags":{},"startTime":1776948135910,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":2405,"timestamp":7341189691645,"id":214,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776948135909,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7116,"timestamp":7341189687078,"id":204,"parentId":200,"tags":{},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":72,"timestamp":7341189694199,"id":230,"parentId":200,"tags":{},"startTime":1776948135912,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8172,"timestamp":7341189686998,"id":200,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8125,"timestamp":7341189687051,"id":201,"parentId":197,"tags":{},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":58,"timestamp":7341189695183,"id":231,"parentId":197,"tags":{},"startTime":1776948135913,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9576,"timestamp":7341189686800,"id":197,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12020,"timestamp":7341189684367,"id":195,"parentId":194,"tags":{},"startTime":1776948135902,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7341189696394,"id":232,"parentId":194,"tags":{},"startTime":1776948135914,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12459,"timestamp":7341189684273,"id":194,"parentId":156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776948135902,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9675,"timestamp":7341189687065,"id":202,"parentId":198,"tags":{},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":120,"timestamp":7341189696746,"id":233,"parentId":198,"tags":{},"startTime":1776948135914,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10747,"timestamp":7341189686892,"id":198,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10589,"timestamp":7341189687071,"id":203,"parentId":199,"tags":{},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7341189697665,"id":234,"parentId":199,"tags":{},"startTime":1776948135915,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13614,"timestamp":7341189686948,"id":199,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776948135905,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8709,"timestamp":7341189691877,"id":218,"parentId":217,"tags":{},"startTime":1776948135910,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8742,"timestamp":7341189691845,"id":217,"parentId":212,"tags":{},"startTime":1776948135910,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9655,"timestamp":7341189691339,"id":212,"parentId":184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776948135909,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9070,"timestamp":7341189693549,"id":227,"parentId":226,"tags":{},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9104,"timestamp":7341189693519,"id":226,"parentId":222,"tags":{},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":9513,"timestamp":7341189693353,"id":222,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9297,"timestamp":7341189693579,"id":229,"parentId":228,"tags":{},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":9540,"timestamp":7341189693550,"id":228,"parentId":223,"tags":{},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":9843,"timestamp":7341189693403,"id":223,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9740,"timestamp":7341189693517,"id":225,"parentId":224,"tags":{},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9780,"timestamp":7341189693479,"id":224,"parentId":221,"tags":{},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":10105,"timestamp":7341189693286,"id":221,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776948135911,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15037,"timestamp":7341189688920,"id":208,"parentId":206,"tags":{},"startTime":1776948135907,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7341189703963,"id":239,"parentId":206,"tags":{},"startTime":1776948135922,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15286,"timestamp":7341189688855,"id":206,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server-edge.js","layer":"rsc"},"startTime":1776948135907,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15238,"timestamp":7341189688911,"id":207,"parentId":205,"tags":{},"startTime":1776948135907,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7341189704153,"id":240,"parentId":205,"tags":{},"startTime":1776948135922,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15533,"timestamp":7341189688787,"id":205,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1776948135907,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12641,"timestamp":7341189691709,"id":215,"parentId":211,"tags":{},"startTime":1776948135909,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7341189704354,"id":241,"parentId":211,"tags":{},"startTime":1776948135922,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13213,"timestamp":7341189691230,"id":211,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1776948135909,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12729,"timestamp":7341189691719,"id":216,"parentId":213,"tags":{},"startTime":1776948135909,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22,"timestamp":7341189704451,"id":242,"parentId":213,"tags":{},"startTime":1776948135922,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13448,"timestamp":7341189691563,"id":213,"parentId":184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776948135909,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5013,"timestamp":7341189701816,"id":238,"parentId":236,"tags":{},"startTime":1776948135920,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7341189706843,"id":243,"parentId":236,"tags":{},"startTime":1776948135925,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5463,"timestamp":7341189701614,"id":236,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js","layer":"rsc"},"startTime":1776948135919,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5313,"timestamp":7341189701803,"id":237,"parentId":235,"tags":{},"startTime":1776948135920,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":685,"timestamp":7341189708166,"id":247,"parentId":246,"tags":{},"startTime":1776948135926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7341189708861,"id":248,"parentId":246,"tags":{},"startTime":1776948135927,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2111,"timestamp":7341189708074,"id":246,"parentId":200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776948135926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3143,"timestamp":7341189707179,"id":245,"parentId":244,"tags":{},"startTime":1776948135925,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3202,"timestamp":7341189707122,"id":244,"parentId":235,"tags":{},"startTime":1776948135925,"traceId":"d76ab653cbe90d54"},{"name":"build-module-mjs","duration":9579,"timestamp":7341189701185,"id":235,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776948135919,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":881,"timestamp":7341189712112,"id":250,"parentId":249,"tags":{},"startTime":1776948135930,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7341189713000,"id":253,"parentId":249,"tags":{},"startTime":1776948135931,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1142,"timestamp":7341189712021,"id":249,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1776948135930,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":926,"timestamp":7341189713439,"id":255,"parentId":254,"tags":{},"startTime":1776948135931,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7341189714372,"id":256,"parentId":254,"tags":{},"startTime":1776948135932,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8925,"timestamp":7341189713377,"id":254,"parentId":199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776948135931,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9589,"timestamp":7341189712738,"id":252,"parentId":251,"tags":{},"startTime":1776948135930,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7341189722334,"id":257,"parentId":251,"tags":{},"startTime":1776948135940,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10439,"timestamp":7341189712668,"id":251,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776948135930,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":319140,"timestamp":7341189404111,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948135622,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1610,"timestamp":7341189738763,"id":263,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776948135956,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":981,"timestamp":7341189740404,"id":264,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776948135958,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1431,"timestamp":7341189741398,"id":265,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776948135959,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1509,"timestamp":7341189742846,"id":266,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776948135961,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7,"timestamp":7341189752461,"id":301,"parentId":300,"tags":{},"startTime":1776948135970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1615,"timestamp":7341189751270,"id":279,"parentId":278,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1690,"timestamp":7341189751240,"id":278,"parentId":271,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":3477,"timestamp":7341189750832,"id":271,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4009,"timestamp":7341189751409,"id":283,"parentId":282,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4052,"timestamp":7341189751371,"id":282,"parentId":273,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":5311,"timestamp":7341189750924,"id":273,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4907,"timestamp":7341189751367,"id":281,"parentId":280,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5004,"timestamp":7341189751272,"id":280,"parentId":272,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":7165,"timestamp":7341189750882,"id":272,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6881,"timestamp":7341189751237,"id":277,"parentId":276,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6931,"timestamp":7341189751189,"id":276,"parentId":270,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":10714,"timestamp":7341189750758,"id":270,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776948135968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13186,"timestamp":7341189748635,"id":269,"parentId":268,"tags":{},"startTime":1776948135966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13299,"timestamp":7341189748528,"id":268,"parentId":267,"tags":{},"startTime":1776948135966,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":20289,"timestamp":7341189747647,"id":267,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776948135965,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17938,"timestamp":7341189751431,"id":285,"parentId":284,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17963,"timestamp":7341189751410,"id":284,"parentId":274,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19626,"timestamp":7341189750963,"id":274,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18872,"timestamp":7341189751748,"id":293,"parentId":292,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18885,"timestamp":7341189751737,"id":292,"parentId":288,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19265,"timestamp":7341189751626,"id":288,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19131,"timestamp":7341189751774,"id":299,"parentId":298,"tags":{},"startTime":1776948135970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19139,"timestamp":7341189751767,"id":298,"parentId":291,"tags":{},"startTime":1776948135970,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19434,"timestamp":7341189751715,"id":291,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19399,"timestamp":7341189751766,"id":297,"parentId":296,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19408,"timestamp":7341189751758,"id":296,"parentId":290,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20013,"timestamp":7341189751693,"id":290,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20634,"timestamp":7341189751757,"id":295,"parentId":294,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20643,"timestamp":7341189751749,"id":294,"parentId":289,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23450,"timestamp":7341189751667,"id":289,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":22634,"timestamp":7341189752531,"id":303,"parentId":302,"tags":{},"startTime":1776948135970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22685,"timestamp":7341189752480,"id":302,"parentId":300,"tags":{},"startTime":1776948135970,"traceId":"d76ab653cbe90d54"},{"name":"build-module-mjs","duration":24612,"timestamp":7341189752063,"id":300,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776948135970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25287,"timestamp":7341189751442,"id":287,"parentId":286,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25298,"timestamp":7341189751432,"id":286,"parentId":275,"tags":{},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28293,"timestamp":7341189751145,"id":275,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776948135969,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":83,"timestamp":7341189793322,"id":306,"parentId":304,"tags":{},"startTime":1776948136011,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7341189793418,"id":309,"parentId":304,"tags":{},"startTime":1776948136011,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":561,"timestamp":7341189793169,"id":304,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776948136011,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6425,"timestamp":7341189793356,"id":308,"parentId":307,"tags":{},"startTime":1776948136011,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6460,"timestamp":7341189793325,"id":307,"parentId":305,"tags":{},"startTime":1776948136011,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7098,"timestamp":7341189793279,"id":305,"parentId":288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776948136011,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5302,"timestamp":7341189801287,"id":329,"parentId":328,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5315,"timestamp":7341189801280,"id":328,"parentId":313,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6124,"timestamp":7341189800946,"id":313,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5851,"timestamp":7341189801255,"id":323,"parentId":322,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5877,"timestamp":7341189801231,"id":322,"parentId":310,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6773,"timestamp":7341189800798,"id":310,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6321,"timestamp":7341189801268,"id":325,"parentId":324,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6333,"timestamp":7341189801258,"id":324,"parentId":311,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6968,"timestamp":7341189800887,"id":311,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6570,"timestamp":7341189801296,"id":331,"parentId":330,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6579,"timestamp":7341189801288,"id":330,"parentId":314,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7086,"timestamp":7341189801005,"id":314,"parentId":290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6829,"timestamp":7341189801278,"id":327,"parentId":326,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6838,"timestamp":7341189801269,"id":326,"parentId":312,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7746,"timestamp":7341189800917,"id":312,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7371,"timestamp":7341189801304,"id":333,"parentId":332,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7380,"timestamp":7341189801297,"id":332,"parentId":315,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":7908,"timestamp":7341189801047,"id":315,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7654,"timestamp":7341189801312,"id":335,"parentId":334,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7662,"timestamp":7341189801305,"id":334,"parentId":316,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8169,"timestamp":7341189801073,"id":316,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7915,"timestamp":7341189801336,"id":341,"parentId":340,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7923,"timestamp":7341189801329,"id":340,"parentId":319,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8339,"timestamp":7341189801133,"id":319,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8164,"timestamp":7341189801320,"id":337,"parentId":336,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8172,"timestamp":7341189801313,"id":336,"parentId":317,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8780,"timestamp":7341189801095,"id":317,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9694,"timestamp":7341189801328,"id":339,"parentId":338,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9703,"timestamp":7341189801321,"id":338,"parentId":318,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10533,"timestamp":7341189801114,"id":318,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":501,"timestamp":7341189812621,"id":356,"parentId":346,"tags":{},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":540,"timestamp":7341189812623,"id":357,"parentId":347,"tags":{},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":301,"timestamp":7341189813128,"id":374,"parentId":346,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":264,"timestamp":7341189813166,"id":375,"parentId":347,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1746,"timestamp":7341189812248,"id":346,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1825,"timestamp":7341189812326,"id":347,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13577,"timestamp":7341189801352,"id":345,"parentId":344,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13586,"timestamp":7341189801345,"id":344,"parentId":321,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14117,"timestamp":7341189801170,"id":321,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13953,"timestamp":7341189801344,"id":343,"parentId":342,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13962,"timestamp":7341189801337,"id":342,"parentId":320,"tags":{},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14355,"timestamp":7341189801152,"id":320,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776948136019,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3765,"timestamp":7341189812985,"id":365,"parentId":364,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3774,"timestamp":7341189812978,"id":364,"parentId":351,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4498,"timestamp":7341189812473,"id":351,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4025,"timestamp":7341189812956,"id":359,"parentId":358,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4077,"timestamp":7341189812905,"id":358,"parentId":348,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5233,"timestamp":7341189812372,"id":348,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7995,"timestamp":7341189812968,"id":361,"parentId":360,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8010,"timestamp":7341189812958,"id":360,"parentId":349,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8898,"timestamp":7341189812397,"id":349,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8356,"timestamp":7341189812977,"id":363,"parentId":362,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8365,"timestamp":7341189812969,"id":362,"parentId":350,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9804,"timestamp":7341189812454,"id":350,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9305,"timestamp":7341189812993,"id":367,"parentId":366,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9354,"timestamp":7341189812986,"id":366,"parentId":352,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10620,"timestamp":7341189812491,"id":352,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10753,"timestamp":7341189813002,"id":369,"parentId":368,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10763,"timestamp":7341189812994,"id":368,"parentId":353,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11442,"timestamp":7341189812512,"id":353,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10950,"timestamp":7341189813017,"id":371,"parentId":370,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10965,"timestamp":7341189813003,"id":370,"parentId":354,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12380,"timestamp":7341189812529,"id":354,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11914,"timestamp":7341189813025,"id":373,"parentId":372,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11923,"timestamp":7341189813018,"id":372,"parentId":355,"tags":{},"startTime":1776948136031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13413,"timestamp":7341189812545,"id":355,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1776948136030,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3114,"timestamp":7341189828274,"id":388,"parentId":387,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3127,"timestamp":7341189828266,"id":387,"parentId":379,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3885,"timestamp":7341189828086,"id":379,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3741,"timestamp":7341189828243,"id":382,"parentId":381,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3774,"timestamp":7341189828211,"id":381,"parentId":376,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4217,"timestamp":7341189827945,"id":376,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4282,"timestamp":7341189828255,"id":384,"parentId":383,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4294,"timestamp":7341189828245,"id":383,"parentId":377,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4644,"timestamp":7341189828034,"id":377,"parentId":290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":187,"timestamp":7341189840381,"id":394,"parentId":391,"tags":{},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7341189840582,"id":399,"parentId":391,"tags":{},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":895,"timestamp":7341189840187,"id":391,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13346,"timestamp":7341189828265,"id":386,"parentId":385,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13357,"timestamp":7341189828257,"id":385,"parentId":378,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13808,"timestamp":7341189828063,"id":378,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15276,"timestamp":7341189828283,"id":390,"parentId":389,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15287,"timestamp":7341189828275,"id":389,"parentId":380,"tags":{},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17068,"timestamp":7341189828106,"id":380,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"ssr"},"startTime":1776948136046,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6710,"timestamp":7341189840503,"id":398,"parentId":397,"tags":{},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6723,"timestamp":7341189840493,"id":397,"parentId":393,"tags":{},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7121,"timestamp":7341189840348,"id":393,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6988,"timestamp":7341189840491,"id":396,"parentId":395,"tags":{},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7021,"timestamp":7341189840458,"id":395,"parentId":392,"tags":{},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7400,"timestamp":7341189840308,"id":392,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776948136058,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2073,"timestamp":7341189851927,"id":418,"parentId":417,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2084,"timestamp":7341189851920,"id":417,"parentId":405,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2724,"timestamp":7341189851687,"id":405,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776948136069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2506,"timestamp":7341189851919,"id":416,"parentId":415,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2516,"timestamp":7341189851910,"id":415,"parentId":404,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3309,"timestamp":7341189851666,"id":404,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776948136069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3421,"timestamp":7341189851909,"id":414,"parentId":413,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3437,"timestamp":7341189851896,"id":413,"parentId":403,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4135,"timestamp":7341189851639,"id":403,"parentId":313,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776948136069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3893,"timestamp":7341189851893,"id":412,"parentId":411,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3926,"timestamp":7341189851862,"id":411,"parentId":402,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4657,"timestamp":7341189851577,"id":402,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776948136069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11533,"timestamp":7341189851953,"id":424,"parentId":423,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11544,"timestamp":7341189851946,"id":423,"parentId":409,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11969,"timestamp":7341189851787,"id":409,"parentId":320,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11834,"timestamp":7341189851936,"id":420,"parentId":419,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11843,"timestamp":7341189851928,"id":419,"parentId":406,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12275,"timestamp":7341189851708,"id":406,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776948136069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11368,"timestamp":7341189853463,"id":433,"parentId":432,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11389,"timestamp":7341189853444,"id":432,"parentId":425,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11943,"timestamp":7341189853147,"id":425,"parentId":350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13163,"timestamp":7341189851945,"id":422,"parentId":421,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13171,"timestamp":7341189851937,"id":421,"parentId":407,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13876,"timestamp":7341189851727,"id":407,"parentId":318,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776948136069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12141,"timestamp":7341189853473,"id":435,"parentId":434,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12150,"timestamp":7341189853465,"id":434,"parentId":426,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12740,"timestamp":7341189853183,"id":426,"parentId":350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12451,"timestamp":7341189853482,"id":437,"parentId":436,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":12561,"timestamp":7341189853474,"id":436,"parentId":427,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13219,"timestamp":7341189853204,"id":427,"parentId":350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12957,"timestamp":7341189853491,"id":439,"parentId":438,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12967,"timestamp":7341189853483,"id":438,"parentId":428,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13814,"timestamp":7341189853224,"id":428,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14055,"timestamp":7341189853499,"id":441,"parentId":440,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14064,"timestamp":7341189853492,"id":440,"parentId":429,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14864,"timestamp":7341189853251,"id":429,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22351,"timestamp":7341189845934,"id":401,"parentId":400,"tags":{},"startTime":1776948136064,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7341189868293,"id":448,"parentId":400,"tags":{},"startTime":1776948136086,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22646,"timestamp":7341189845800,"id":400,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1776948136064,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14970,"timestamp":7341189853515,"id":445,"parentId":444,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14978,"timestamp":7341189853508,"id":444,"parentId":431,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15601,"timestamp":7341189853287,"id":431,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15468,"timestamp":7341189853507,"id":443,"parentId":442,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15476,"timestamp":7341189853500,"id":442,"parentId":430,"tags":{},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16384,"timestamp":7341189853269,"id":430,"parentId":352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23874,"timestamp":7341189851812,"id":410,"parentId":408,"tags":{},"startTime":1776948136070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7341189875696,"id":461,"parentId":408,"tags":{},"startTime":1776948136093,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24246,"timestamp":7341189851746,"id":408,"parentId":316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776948136069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4358,"timestamp":7341189871743,"id":460,"parentId":459,"tags":{},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4370,"timestamp":7341189871733,"id":459,"parentId":453,"tags":{},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5232,"timestamp":7341189871311,"id":453,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4831,"timestamp":7341189871730,"id":458,"parentId":457,"tags":{},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4867,"timestamp":7341189871695,"id":457,"parentId":452,"tags":{},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5717,"timestamp":7341189871287,"id":452,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":302,"timestamp":7341189884305,"id":468,"parentId":462,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7341189884618,"id":477,"parentId":462,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1000,"timestamp":7341189883913,"id":462,"parentId":400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32064,"timestamp":7341189853978,"id":447,"parentId":446,"tags":{},"startTime":1776948136072,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7341189886051,"id":478,"parentId":446,"tags":{},"startTime":1776948136104,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32501,"timestamp":7341189853687,"id":446,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js","layer":"ssr"},"startTime":1776948136071,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16338,"timestamp":7341189871364,"id":454,"parentId":449,"tags":{},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7341189887709,"id":491,"parentId":449,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16703,"timestamp":7341189871122,"id":449,"parentId":274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16448,"timestamp":7341189871383,"id":456,"parentId":451,"tags":{},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7341189887836,"id":492,"parentId":451,"tags":{},"startTime":1776948136106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17135,"timestamp":7341189871247,"id":451,"parentId":354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17012,"timestamp":7341189871377,"id":455,"parentId":450,"tags":{},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7341189888394,"id":493,"parentId":450,"tags":{},"startTime":1776948136106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17294,"timestamp":7341189871201,"id":450,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1776948136089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4032,"timestamp":7341189884506,"id":474,"parentId":473,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4066,"timestamp":7341189884473,"id":473,"parentId":464,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":5334,"timestamp":7341189884129,"id":464,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5058,"timestamp":7341189884470,"id":472,"parentId":471,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5151,"timestamp":7341189884380,"id":471,"parentId":463,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":6447,"timestamp":7341189884040,"id":463,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9232,"timestamp":7341189884536,"id":476,"parentId":475,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9266,"timestamp":7341189884507,"id":475,"parentId":465,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":11612,"timestamp":7341189884175,"id":465,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8627,"timestamp":7341189887184,"id":490,"parentId":489,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8636,"timestamp":7341189887176,"id":489,"parentId":482,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9277,"timestamp":7341189886960,"id":482,"parentId":402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9784,"timestamp":7341189887175,"id":488,"parentId":487,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9795,"timestamp":7341189887167,"id":487,"parentId":481,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10314,"timestamp":7341189886939,"id":481,"parentId":403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10108,"timestamp":7341189887166,"id":486,"parentId":485,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10121,"timestamp":7341189887154,"id":485,"parentId":480,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10558,"timestamp":7341189886911,"id":480,"parentId":402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10373,"timestamp":7341189887152,"id":484,"parentId":483,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10416,"timestamp":7341189887110,"id":483,"parentId":479,"tags":{},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":12338,"timestamp":7341189886825,"id":479,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776948136105,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11220,"timestamp":7341189891756,"id":505,"parentId":504,"tags":{},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11277,"timestamp":7341189891705,"id":504,"parentId":494,"tags":{},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":13547,"timestamp":7341189890825,"id":494,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12602,"timestamp":7341189891815,"id":511,"parentId":510,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12632,"timestamp":7341189891787,"id":510,"parentId":497,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13972,"timestamp":7341189890991,"id":497,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13238,"timestamp":7341189891772,"id":507,"parentId":506,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13253,"timestamp":7341189891759,"id":506,"parentId":495,"tags":{},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15505,"timestamp":7341189890932,"id":495,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14605,"timestamp":7341189891848,"id":513,"parentId":512,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14635,"timestamp":7341189891819,"id":512,"parentId":498,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15636,"timestamp":7341189891013,"id":498,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14894,"timestamp":7341189891785,"id":509,"parentId":508,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14906,"timestamp":7341189891775,"id":508,"parentId":496,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16273,"timestamp":7341189890967,"id":496,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15290,"timestamp":7341189891967,"id":519,"parentId":518,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15345,"timestamp":7341189891913,"id":518,"parentId":501,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16458,"timestamp":7341189891088,"id":501,"parentId":407,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15585,"timestamp":7341189891986,"id":521,"parentId":520,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15601,"timestamp":7341189891972,"id":520,"parentId":502,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16674,"timestamp":7341189891108,"id":502,"parentId":431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24963,"timestamp":7341189884310,"id":469,"parentId":466,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7341189909283,"id":527,"parentId":466,"tags":{},"startTime":1776948136127,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25282,"timestamp":7341189884217,"id":466,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25184,"timestamp":7341189884323,"id":470,"parentId":467,"tags":{},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7341189909512,"id":528,"parentId":467,"tags":{},"startTime":1776948136127,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25532,"timestamp":7341189884258,"id":467,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776948136102,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17898,"timestamp":7341189891911,"id":517,"parentId":516,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17935,"timestamp":7341189891876,"id":516,"parentId":500,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19180,"timestamp":7341189891069,"id":500,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18265,"timestamp":7341189891998,"id":523,"parentId":522,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18277,"timestamp":7341189891988,"id":522,"parentId":503,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19371,"timestamp":7341189891126,"id":503,"parentId":430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18639,"timestamp":7341189891874,"id":515,"parentId":514,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18663,"timestamp":7341189891852,"id":514,"parentId":499,"tags":{},"startTime":1776948136110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19854,"timestamp":7341189891034,"id":499,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"ssr"},"startTime":1776948136109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12441,"timestamp":7341189902564,"id":526,"parentId":525,"tags":{},"startTime":1776948136120,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12489,"timestamp":7341189902522,"id":525,"parentId":524,"tags":{},"startTime":1776948136120,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13679,"timestamp":7341189901746,"id":524,"parentId":404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776948136119,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-transform","duration":4055,"timestamp":7341189917657,"id":545,"parentId":544,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4068,"timestamp":7341189917649,"id":544,"parentId":534,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4630,"timestamp":7341189917501,"id":534,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"ssr"},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4495,"timestamp":7341189917648,"id":543,"parentId":542,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4504,"timestamp":7341189917640,"id":542,"parentId":533,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5442,"timestamp":7341189917480,"id":533,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"ssr"},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5297,"timestamp":7341189917640,"id":541,"parentId":540,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5308,"timestamp":7341189917629,"id":540,"parentId":532,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5781,"timestamp":7341189917456,"id":532,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"ssr"},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5620,"timestamp":7341189917627,"id":539,"parentId":538,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5648,"timestamp":7341189917601,"id":538,"parentId":531,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6041,"timestamp":7341189917403,"id":531,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"ssr"},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8057,"timestamp":7341189917665,"id":547,"parentId":546,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8066,"timestamp":7341189917658,"id":546,"parentId":535,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8548,"timestamp":7341189917520,"id":535,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"ssr"},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8399,"timestamp":7341189917681,"id":551,"parentId":550,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8407,"timestamp":7341189917673,"id":550,"parentId":537,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8740,"timestamp":7341189917560,"id":537,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"ssr"},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25707,"timestamp":7341189911791,"id":530,"parentId":529,"tags":{},"startTime":1776948136130,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7341189937514,"id":563,"parentId":529,"tags":{},"startTime":1776948136155,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26129,"timestamp":7341189911611,"id":529,"parentId":350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client-edge.js","layer":"ssr"},"startTime":1776948136129,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":21247,"timestamp":7341189917673,"id":549,"parentId":548,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":21256,"timestamp":7341189917666,"id":548,"parentId":536,"tags":{},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22521,"timestamp":7341189917538,"id":536,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"ssr"},"startTime":1776948136135,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12858,"timestamp":7341189927395,"id":562,"parentId":561,"tags":{},"startTime":1776948136145,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12883,"timestamp":7341189927371,"id":561,"parentId":558,"tags":{},"startTime":1776948136145,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13473,"timestamp":7341189927031,"id":558,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776948136145,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3425,"timestamp":7341189942933,"id":583,"parentId":582,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3446,"timestamp":7341189942917,"id":582,"parentId":567,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4822,"timestamp":7341189942083,"id":567,"parentId":502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3977,"timestamp":7341189942954,"id":587,"parentId":586,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3986,"timestamp":7341189942945,"id":586,"parentId":569,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5583,"timestamp":7341189942129,"id":569,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4831,"timestamp":7341189942944,"id":585,"parentId":584,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4842,"timestamp":7341189942934,"id":584,"parentId":568,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6416,"timestamp":7341189942109,"id":568,"parentId":503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6592,"timestamp":7341189942914,"id":581,"parentId":580,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6653,"timestamp":7341189942856,"id":580,"parentId":564,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":8696,"timestamp":7341189941878,"id":564,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7622,"timestamp":7341189942972,"id":591,"parentId":590,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7630,"timestamp":7341189942964,"id":590,"parentId":571,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8796,"timestamp":7341189942167,"id":571,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7995,"timestamp":7341189942980,"id":593,"parentId":592,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8004,"timestamp":7341189942972,"id":592,"parentId":572,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9113,"timestamp":7341189942186,"id":572,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8323,"timestamp":7341189942989,"id":595,"parentId":594,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8332,"timestamp":7341189942981,"id":594,"parentId":573,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9567,"timestamp":7341189942204,"id":573,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8786,"timestamp":7341189942998,"id":597,"parentId":596,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8794,"timestamp":7341189942991,"id":596,"parentId":574,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10023,"timestamp":7341189942221,"id":574,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9308,"timestamp":7341189942963,"id":589,"parentId":588,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9317,"timestamp":7341189942955,"id":588,"parentId":570,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11336,"timestamp":7341189942148,"id":570,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36608,"timestamp":7341189921627,"id":555,"parentId":552,"tags":{},"startTime":1776948136139,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7341189958252,"id":604,"parentId":552,"tags":{},"startTime":1776948136176,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37059,"timestamp":7341189921433,"id":552,"parentId":291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1776948136139,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15509,"timestamp":7341189943016,"id":601,"parentId":600,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15519,"timestamp":7341189943007,"id":600,"parentId":576,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16716,"timestamp":7341189942323,"id":576,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16797,"timestamp":7341189943006,"id":599,"parentId":598,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16806,"timestamp":7341189942999,"id":598,"parentId":575,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18341,"timestamp":7341189942240,"id":575,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17575,"timestamp":7341189943025,"id":603,"parentId":602,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17585,"timestamp":7341189943017,"id":602,"parentId":577,"tags":{},"startTime":1776948136161,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18612,"timestamp":7341189942358,"id":577,"parentId":499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39469,"timestamp":7341189921653,"id":556,"parentId":553,"tags":{},"startTime":1776948136139,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7341189961132,"id":605,"parentId":553,"tags":{},"startTime":1776948136179,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39745,"timestamp":7341189921514,"id":553,"parentId":275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1776948136139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44000,"timestamp":7341189921658,"id":557,"parentId":554,"tags":{},"startTime":1776948136139,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7341189965666,"id":606,"parentId":554,"tags":{},"startTime":1776948136183,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44224,"timestamp":7341189921577,"id":554,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1776948136139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38762,"timestamp":7341189927237,"id":560,"parentId":559,"tags":{},"startTime":1776948136145,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25,"timestamp":7341189966004,"id":607,"parentId":559,"tags":{},"startTime":1776948136184,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39378,"timestamp":7341189927073,"id":559,"parentId":291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776948136145,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27360,"timestamp":7341189942480,"id":579,"parentId":566,"tags":{},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25,"timestamp":7341189969849,"id":611,"parentId":566,"tags":{},"startTime":1776948136188,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28021,"timestamp":7341189942039,"id":566,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27607,"timestamp":7341189942459,"id":578,"parentId":565,"tags":{},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":23,"timestamp":7341189970071,"id":612,"parentId":565,"tags":{},"startTime":1776948136188,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28165,"timestamp":7341189941991,"id":565,"parentId":273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776948136160,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6358,"timestamp":7341189967738,"id":610,"parentId":609,"tags":{},"startTime":1776948136185,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6388,"timestamp":7341189967711,"id":609,"parentId":608,"tags":{},"startTime":1776948136185,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6862,"timestamp":7341189967556,"id":608,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"ssr"},"startTime":1776948136185,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3696,"timestamp":7341189972787,"id":616,"parentId":615,"tags":{},"startTime":1776948136191,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3723,"timestamp":7341189972763,"id":615,"parentId":613,"tags":{},"startTime":1776948136190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4374,"timestamp":7341189972578,"id":613,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776948136190,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4202,"timestamp":7341189972806,"id":618,"parentId":617,"tags":{},"startTime":1776948136191,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4220,"timestamp":7341189972789,"id":617,"parentId":614,"tags":{},"startTime":1776948136191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4710,"timestamp":7341189972633,"id":614,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"ssr"},"startTime":1776948136190,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2840,"timestamp":7341189975996,"id":638,"parentId":637,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2852,"timestamp":7341189975987,"id":637,"parentId":621,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3766,"timestamp":7341189975704,"id":621,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"ssr"},"startTime":1776948136193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3498,"timestamp":7341189976007,"id":640,"parentId":639,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3509,"timestamp":7341189975997,"id":639,"parentId":622,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4042,"timestamp":7341189975727,"id":622,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"ssr"},"startTime":1776948136193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3807,"timestamp":7341189975974,"id":634,"parentId":633,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3827,"timestamp":7341189975955,"id":633,"parentId":619,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4409,"timestamp":7341189975633,"id":619,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"ssr"},"startTime":1776948136193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4072,"timestamp":7341189975986,"id":636,"parentId":635,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4227,"timestamp":7341189975976,"id":635,"parentId":620,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":4924,"timestamp":7341189975673,"id":620,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"ssr"},"startTime":1776948136193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7516,"timestamp":7341189976019,"id":642,"parentId":641,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7531,"timestamp":7341189976008,"id":641,"parentId":624,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8073,"timestamp":7341189975787,"id":624,"parentId":567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7854,"timestamp":7341189976027,"id":644,"parentId":643,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7863,"timestamp":7341189976020,"id":643,"parentId":625,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8365,"timestamp":7341189975809,"id":625,"parentId":571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8160,"timestamp":7341189976043,"id":648,"parentId":647,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8169,"timestamp":7341189976036,"id":647,"parentId":627,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8666,"timestamp":7341189975844,"id":627,"parentId":571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8488,"timestamp":7341189976035,"id":646,"parentId":645,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8496,"timestamp":7341189976028,"id":645,"parentId":626,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9121,"timestamp":7341189975827,"id":626,"parentId":571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8917,"timestamp":7341189976050,"id":650,"parentId":649,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8925,"timestamp":7341189976044,"id":649,"parentId":628,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9365,"timestamp":7341189975861,"id":628,"parentId":571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10224,"timestamp":7341189976066,"id":654,"parentId":653,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10234,"timestamp":7341189976059,"id":653,"parentId":630,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10658,"timestamp":7341189975894,"id":630,"parentId":570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10489,"timestamp":7341189976074,"id":656,"parentId":655,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10496,"timestamp":7341189976067,"id":655,"parentId":631,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10821,"timestamp":7341189975911,"id":631,"parentId":570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8375,"timestamp":7341189978372,"id":663,"parentId":662,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8396,"timestamp":7341189978352,"id":662,"parentId":657,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8763,"timestamp":7341189978205,"id":657,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"ssr"},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8596,"timestamp":7341189978384,"id":665,"parentId":664,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8607,"timestamp":7341189978374,"id":664,"parentId":658,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8830,"timestamp":7341189978252,"id":658,"parentId":558,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8692,"timestamp":7341189978401,"id":669,"parentId":668,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8700,"timestamp":7341189978394,"id":668,"parentId":660,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9175,"timestamp":7341189978300,"id":660,"parentId":570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11560,"timestamp":7341189976058,"id":652,"parentId":651,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11569,"timestamp":7341189976051,"id":651,"parentId":629,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13088,"timestamp":7341189975877,"id":629,"parentId":572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10597,"timestamp":7341189978393,"id":667,"parentId":666,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10606,"timestamp":7341189978385,"id":666,"parentId":659,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11705,"timestamp":7341189978280,"id":659,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"ssr"},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11593,"timestamp":7341189978409,"id":671,"parentId":670,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11601,"timestamp":7341189978402,"id":670,"parentId":661,"tags":{},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11898,"timestamp":7341189978319,"id":661,"parentId":577,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776948136196,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19272,"timestamp":7341189975932,"id":632,"parentId":623,"tags":{},"startTime":1776948136194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7341189995212,"id":675,"parentId":623,"tags":{},"startTime":1776948136213,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19771,"timestamp":7341189975746,"id":623,"parentId":569,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776948136193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5301,"timestamp":7341189994610,"id":674,"parentId":673,"tags":{},"startTime":1776948136212,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5330,"timestamp":7341189994584,"id":673,"parentId":672,"tags":{},"startTime":1776948136212,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7163,"timestamp":7341189994517,"id":672,"parentId":566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776948136212,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5423,"timestamp":7341189997874,"id":679,"parentId":678,"tags":{},"startTime":1776948136216,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5449,"timestamp":7341189997852,"id":678,"parentId":676,"tags":{},"startTime":1776948136216,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5884,"timestamp":7341189997757,"id":676,"parentId":380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776948136215,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7235,"timestamp":7341189999042,"id":684,"parentId":683,"tags":{},"startTime":1776948136217,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7253,"timestamp":7341189999027,"id":683,"parentId":682,"tags":{},"startTime":1776948136217,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7543,"timestamp":7341189998972,"id":682,"parentId":659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"ssr"},"startTime":1776948136217,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8646,"timestamp":7341189997889,"id":681,"parentId":680,"tags":{},"startTime":1776948136216,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8660,"timestamp":7341189997876,"id":680,"parentId":677,"tags":{},"startTime":1776948136216,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9424,"timestamp":7341189997812,"id":677,"parentId":614,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"ssr"},"startTime":1776948136216,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7440,"timestamp":7341189999808,"id":691,"parentId":690,"tags":{},"startTime":1776948136218,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7450,"timestamp":7341189999799,"id":690,"parentId":686,"tags":{},"startTime":1776948136218,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7689,"timestamp":7341189999729,"id":686,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"ssr"},"startTime":1776948136217,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7761,"timestamp":7341189999816,"id":693,"parentId":692,"tags":{},"startTime":1776948136218,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7769,"timestamp":7341189999809,"id":692,"parentId":687,"tags":{},"startTime":1776948136218,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7954,"timestamp":7341189999749,"id":687,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"ssr"},"startTime":1776948136217,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7922,"timestamp":7341189999797,"id":689,"parentId":688,"tags":{},"startTime":1776948136218,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7936,"timestamp":7341189999784,"id":688,"parentId":685,"tags":{},"startTime":1776948136218,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8471,"timestamp":7341189999696,"id":685,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"ssr"},"startTime":1776948136217,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4146,"timestamp":7341190004373,"id":699,"parentId":698,"tags":{},"startTime":1776948136222,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4158,"timestamp":7341190004362,"id":698,"parentId":695,"tags":{},"startTime":1776948136222,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4480,"timestamp":7341190004188,"id":695,"parentId":536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"ssr"},"startTime":1776948136222,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4329,"timestamp":7341190004359,"id":697,"parentId":696,"tags":{},"startTime":1776948136222,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4372,"timestamp":7341190004317,"id":696,"parentId":694,"tags":{},"startTime":1776948136222,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":4808,"timestamp":7341190004115,"id":694,"parentId":465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776948136222,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4082,"timestamp":7341190011504,"id":706,"parentId":705,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4108,"timestamp":7341190011482,"id":705,"parentId":700,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5924,"timestamp":7341190009920,"id":700,"parentId":623,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776948136228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4318,"timestamp":7341190011538,"id":710,"parentId":709,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4327,"timestamp":7341190011529,"id":709,"parentId":702,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5105,"timestamp":7341190010976,"id":702,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"ssr"},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5013,"timestamp":7341190011552,"id":712,"parentId":711,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5027,"timestamp":7341190011539,"id":711,"parentId":703,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5725,"timestamp":7341190010999,"id":703,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"ssr"},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6301,"timestamp":7341190011528,"id":708,"parentId":707,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6319,"timestamp":7341190011515,"id":707,"parentId":701,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7199,"timestamp":7341190010937,"id":701,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"ssr"},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6591,"timestamp":7341190011561,"id":714,"parentId":713,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6600,"timestamp":7341190011553,"id":713,"parentId":704,"tags":{},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7455,"timestamp":7341190011019,"id":704,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"ssr"},"startTime":1776948136229,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5157,"timestamp":7341190015548,"id":717,"parentId":716,"tags":{},"startTime":1776948136233,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5177,"timestamp":7341190015530,"id":716,"parentId":715,"tags":{},"startTime":1776948136233,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5365,"timestamp":7341190015482,"id":715,"parentId":499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776948136233,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1601,"timestamp":7341190021480,"id":732,"parentId":731,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1614,"timestamp":7341190021472,"id":731,"parentId":721,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2286,"timestamp":7341190021348,"id":721,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2332,"timestamp":7341190021460,"id":728,"parentId":727,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2342,"timestamp":7341190021451,"id":727,"parentId":719,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2686,"timestamp":7341190021299,"id":719,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2548,"timestamp":7341190021450,"id":726,"parentId":725,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2569,"timestamp":7341190021430,"id":725,"parentId":718,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3371,"timestamp":7341190021250,"id":718,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3184,"timestamp":7341190021471,"id":730,"parentId":729,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3195,"timestamp":7341190021461,"id":729,"parentId":720,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3734,"timestamp":7341190021323,"id":720,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9511,"timestamp":7341190021496,"id":736,"parentId":735,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":9639,"timestamp":7341190021489,"id":735,"parentId":723,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10021,"timestamp":7341190021389,"id":723,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9948,"timestamp":7341190021488,"id":734,"parentId":733,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9956,"timestamp":7341190021481,"id":733,"parentId":722,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10640,"timestamp":7341190021371,"id":722,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10523,"timestamp":7341190021504,"id":738,"parentId":737,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10531,"timestamp":7341190021497,"id":737,"parentId":724,"tags":{},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11009,"timestamp":7341190021408,"id":724,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776948136239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9714,"timestamp":7341190022714,"id":745,"parentId":744,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9728,"timestamp":7341190022700,"id":744,"parentId":739,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10001,"timestamp":7341190022589,"id":739,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9873,"timestamp":7341190022740,"id":751,"parentId":750,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9882,"timestamp":7341190022733,"id":750,"parentId":742,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10176,"timestamp":7341190022661,"id":742,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10329,"timestamp":7341190022723,"id":747,"parentId":746,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10338,"timestamp":7341190022715,"id":746,"parentId":740,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10644,"timestamp":7341190022622,"id":740,"parentId":686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"ssr"},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10583,"timestamp":7341190022732,"id":749,"parentId":748,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10591,"timestamp":7341190022724,"id":748,"parentId":741,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11028,"timestamp":7341190022643,"id":741,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"ssr"},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10938,"timestamp":7341190022749,"id":753,"parentId":752,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10947,"timestamp":7341190022741,"id":752,"parentId":743,"tags":{},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11412,"timestamp":7341190022679,"id":743,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"ssr"},"startTime":1776948136240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7223,"timestamp":7341190037499,"id":773,"parentId":772,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7237,"timestamp":7341190037491,"id":772,"parentId":758,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8382,"timestamp":7341190036815,"id":758,"parentId":703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7737,"timestamp":7341190037480,"id":769,"parentId":768,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7749,"timestamp":7341190037468,"id":768,"parentId":756,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8669,"timestamp":7341190036772,"id":756,"parentId":702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7965,"timestamp":7341190037490,"id":771,"parentId":770,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7974,"timestamp":7341190037481,"id":770,"parentId":757,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9013,"timestamp":7341190036795,"id":757,"parentId":702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8356,"timestamp":7341190037465,"id":767,"parentId":766,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8395,"timestamp":7341190037426,"id":766,"parentId":755,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9451,"timestamp":7341190036732,"id":755,"parentId":704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776948136254,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8675,"timestamp":7341190037515,"id":777,"parentId":776,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8683,"timestamp":7341190037508,"id":776,"parentId":760,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9494,"timestamp":7341190036853,"id":760,"parentId":703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8832,"timestamp":7341190037523,"id":779,"parentId":778,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8840,"timestamp":7341190037516,"id":778,"parentId":761,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9635,"timestamp":7341190036871,"id":761,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9014,"timestamp":7341190037507,"id":775,"parentId":774,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9022,"timestamp":7341190037500,"id":774,"parentId":759,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9942,"timestamp":7341190036834,"id":759,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9337,"timestamp":7341190037547,"id":785,"parentId":784,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9345,"timestamp":7341190037540,"id":784,"parentId":764,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10103,"timestamp":7341190036932,"id":764,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9510,"timestamp":7341190037532,"id":781,"parentId":780,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9518,"timestamp":7341190037524,"id":780,"parentId":762,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10272,"timestamp":7341190036897,"id":762,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9636,"timestamp":7341190037540,"id":783,"parentId":782,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9644,"timestamp":7341190037532,"id":782,"parentId":763,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10382,"timestamp":7341190036915,"id":763,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"ssr"},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2142,"timestamp":7341190057613,"id":797,"parentId":796,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2240,"timestamp":7341190057598,"id":796,"parentId":790,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2862,"timestamp":7341190057480,"id":790,"parentId":718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2785,"timestamp":7341190057584,"id":793,"parentId":792,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2823,"timestamp":7341190057547,"id":792,"parentId":788,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3806,"timestamp":7341190057408,"id":788,"parentId":720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3694,"timestamp":7341190057622,"id":799,"parentId":798,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3703,"timestamp":7341190057614,"id":798,"parentId":791,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4153,"timestamp":7341190057503,"id":791,"parentId":718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24655,"timestamp":7341190037157,"id":765,"parentId":754,"tags":{},"startTime":1776948136255,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7341190061818,"id":819,"parentId":754,"tags":{},"startTime":1776948136280,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25745,"timestamp":7341190036619,"id":754,"parentId":496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776948136254,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5028,"timestamp":7341190057597,"id":795,"parentId":794,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5039,"timestamp":7341190057586,"id":794,"parentId":789,"tags":{},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5446,"timestamp":7341190057454,"id":789,"parentId":718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776948136275,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4496,"timestamp":7341190058427,"id":814,"parentId":813,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4520,"timestamp":7341190058404,"id":813,"parentId":804,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5134,"timestamp":7341190057993,"id":804,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"ssr"},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4741,"timestamp":7341190058403,"id":812,"parentId":811,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4753,"timestamp":7341190058390,"id":811,"parentId":803,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5423,"timestamp":7341190057975,"id":803,"parentId":742,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"ssr"},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4826,"timestamp":7341190058582,"id":816,"parentId":815,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4977,"timestamp":7341190058432,"id":815,"parentId":805,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5588,"timestamp":7341190058011,"id":805,"parentId":741,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"ssr"},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5661,"timestamp":7341190058388,"id":810,"parentId":809,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5697,"timestamp":7341190058352,"id":809,"parentId":802,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6392,"timestamp":7341190057956,"id":802,"parentId":742,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"ssr"},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9521,"timestamp":7341190056405,"id":787,"parentId":786,"tags":{},"startTime":1776948136274,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7341190065931,"id":820,"parentId":786,"tags":{},"startTime":1776948136284,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9789,"timestamp":7341190056304,"id":786,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776948136274,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9338,"timestamp":7341190058346,"id":808,"parentId":801,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7341190067691,"id":829,"parentId":801,"tags":{},"startTime":1776948136285,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9962,"timestamp":7341190057915,"id":801,"parentId":568,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9557,"timestamp":7341190058325,"id":807,"parentId":800,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7341190067885,"id":830,"parentId":800,"tags":{},"startTime":1776948136286,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10392,"timestamp":7341190057867,"id":800,"parentId":568,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2418,"timestamp":7341190066550,"id":823,"parentId":822,"tags":{},"startTime":1776948136284,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2452,"timestamp":7341190066517,"id":822,"parentId":821,"tags":{},"startTime":1776948136284,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2842,"timestamp":7341190066396,"id":821,"parentId":759,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"ssr"},"startTime":1776948136284,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1738,"timestamp":7341190067509,"id":828,"parentId":827,"tags":{},"startTime":1776948136285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1763,"timestamp":7341190067485,"id":827,"parentId":824,"tags":{},"startTime":1776948136285,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2055,"timestamp":7341190067326,"id":824,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776948136285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3092,"timestamp":7341190068742,"id":834,"parentId":833,"tags":{},"startTime":1776948136286,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3118,"timestamp":7341190068721,"id":833,"parentId":831,"tags":{},"startTime":1776948136286,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3658,"timestamp":7341190068625,"id":831,"parentId":791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776948136286,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2589,"timestamp":7341190069739,"id":839,"parentId":838,"tags":{},"startTime":1776948136287,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2617,"timestamp":7341190069712,"id":838,"parentId":837,"tags":{},"startTime":1776948136287,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2986,"timestamp":7341190069622,"id":837,"parentId":803,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"ssr"},"startTime":1776948136287,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-transform","duration":5657,"timestamp":7341190068754,"id":836,"parentId":835,"tags":{},"startTime":1776948136286,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5669,"timestamp":7341190068744,"id":835,"parentId":832,"tags":{},"startTime":1776948136286,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6416,"timestamp":7341190068681,"id":832,"parentId":791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776948136286,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9321,"timestamp":7341190067447,"id":826,"parentId":825,"tags":{},"startTime":1776948136285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7341190076789,"id":843,"parentId":825,"tags":{},"startTime":1776948136295,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9728,"timestamp":7341190067390,"id":825,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1776948136285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1994,"timestamp":7341190075761,"id":842,"parentId":841,"tags":{},"startTime":1776948136293,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2019,"timestamp":7341190075738,"id":841,"parentId":840,"tags":{},"startTime":1776948136293,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2359,"timestamp":7341190075626,"id":840,"parentId":718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776948136293,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57,"timestamp":7341190078331,"id":846,"parentId":844,"tags":{},"startTime":1776948136296,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":88,"timestamp":7341190078393,"id":849,"parentId":844,"tags":{},"startTime":1776948136296,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":651,"timestamp":7341190078232,"id":844,"parentId":832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776948136296,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2645,"timestamp":7341190078364,"id":848,"parentId":847,"tags":{},"startTime":1776948136296,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2668,"timestamp":7341190078343,"id":847,"parentId":845,"tags":{},"startTime":1776948136296,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3193,"timestamp":7341190078301,"id":845,"parentId":824,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"ssr"},"startTime":1776948136296,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4205,"timestamp":7341190079831,"id":852,"parentId":851,"tags":{},"startTime":1776948136298,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4224,"timestamp":7341190079812,"id":851,"parentId":850,"tags":{},"startTime":1776948136298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4400,"timestamp":7341190079776,"id":850,"parentId":832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776948136298,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25908,"timestamp":7341190058605,"id":818,"parentId":817,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25927,"timestamp":7341190058587,"id":817,"parentId":806,"tags":{},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33973,"timestamp":7341190058038,"id":806,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"ssr"},"startTime":1776948136276,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10135,"timestamp":7341190081897,"id":858,"parentId":857,"tags":{},"startTime":1776948136300,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10145,"timestamp":7341190081887,"id":857,"parentId":854,"tags":{},"startTime":1776948136300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10501,"timestamp":7341190081763,"id":854,"parentId":840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776948136299,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11033,"timestamp":7341190081886,"id":856,"parentId":855,"tags":{},"startTime":1776948136300,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11051,"timestamp":7341190081868,"id":855,"parentId":853,"tags":{},"startTime":1776948136300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11852,"timestamp":7341190081728,"id":853,"parentId":840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776948136299,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1660,"timestamp":7341190095604,"id":860,"parentId":859,"tags":{},"startTime":1776948136313,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7341190097271,"id":861,"parentId":859,"tags":{},"startTime":1776948136315,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3002,"timestamp":7341190095527,"id":859,"parentId":741,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776948136313,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1131,"timestamp":7341190100937,"id":865,"parentId":863,"tags":{},"startTime":1776948136319,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7341190102076,"id":866,"parentId":863,"tags":{},"startTime":1776948136320,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4247,"timestamp":7341190100880,"id":863,"parentId":806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776948136319,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4211,"timestamp":7341190100928,"id":864,"parentId":862,"tags":{},"startTime":1776948136319,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7341190105144,"id":867,"parentId":862,"tags":{},"startTime":1776948136323,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4769,"timestamp":7341190100792,"id":862,"parentId":806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776948136319,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":707089,"timestamp":7341189402509,"id":119,"parentId":118,"tags":{},"startTime":1776948135620,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3204,"timestamp":7341190116105,"id":869,"parentId":868,"tags":{},"startTime":1776948136334,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7341190119327,"id":871,"parentId":868,"tags":{},"startTime":1776948136337,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2646,"timestamp":7341190119340,"id":872,"parentId":868,"tags":{},"startTime":1776948136337,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7341190122002,"id":873,"parentId":868,"tags":{},"startTime":1776948136340,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341190122017,"id":874,"parentId":868,"tags":{},"startTime":1776948136340,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3284,"timestamp":7341190119321,"id":870,"parentId":868,"tags":{},"startTime":1776948136337,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":5667,"timestamp":7341190124733,"id":875,"parentId":868,"tags":{},"startTime":1776948136342,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":15583,"timestamp":7341190130413,"id":876,"parentId":868,"tags":{},"startTime":1776948136348,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2693,"timestamp":7341190148270,"id":877,"parentId":868,"tags":{},"startTime":1776948136366,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":186,"timestamp":7341190150962,"id":878,"parentId":868,"tags":{},"startTime":1776948136369,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":80,"timestamp":7341190151142,"id":879,"parentId":868,"tags":{},"startTime":1776948136369,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":49763,"timestamp":7341190151225,"id":880,"parentId":868,"tags":{},"startTime":1776948136369,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":91379,"timestamp":7341190115283,"id":868,"parentId":118,"tags":{},"startTime":1776948136333,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":805384,"timestamp":7341189402268,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776948135620,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":14103,"timestamp":7341190207675,"id":881,"parentId":116,"tags":{},"startTime":1776948136425,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":820672,"timestamp":7341189401533,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948135619,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1126,"timestamp":7341190242492,"id":890,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776948136460,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1017,"timestamp":7341190243675,"id":891,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776948136461,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":860,"timestamp":7341190244710,"id":892,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776948136462,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1755,"timestamp":7341190245577,"id":893,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776948136463,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3,"timestamp":7341190257410,"id":895,"parentId":894,"tags":{},"startTime":1776948136475,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12060,"timestamp":7341190260373,"id":911,"parentId":910,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12115,"timestamp":7341190260322,"id":910,"parentId":898,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15038,"timestamp":7341190258403,"id":898,"parentId":885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776948136476,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13795,"timestamp":7341190260434,"id":913,"parentId":912,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13856,"timestamp":7341190260375,"id":912,"parentId":899,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":15354,"timestamp":7341190259549,"id":899,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776948136477,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14473,"timestamp":7341190260480,"id":915,"parentId":914,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14512,"timestamp":7341190260441,"id":914,"parentId":900,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":17362,"timestamp":7341190259792,"id":900,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19707,"timestamp":7341190257506,"id":897,"parentId":896,"tags":{},"startTime":1776948136475,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19791,"timestamp":7341190257423,"id":896,"parentId":894,"tags":{},"startTime":1776948136475,"traceId":"d76ab653cbe90d54"},{"name":"build-module-mjs","duration":21250,"timestamp":7341190257020,"id":894,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776948136475,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17760,"timestamp":7341190260539,"id":917,"parentId":916,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17817,"timestamp":7341190260482,"id":916,"parentId":901,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":18945,"timestamp":7341190259836,"id":901,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18226,"timestamp":7341190260576,"id":919,"parentId":918,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18259,"timestamp":7341190260543,"id":918,"parentId":902,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":19424,"timestamp":7341190259881,"id":902,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18718,"timestamp":7341190260597,"id":923,"parentId":922,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18727,"timestamp":7341190260589,"id":922,"parentId":904,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19533,"timestamp":7341190260101,"id":904,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":21992,"timestamp":7341190260623,"id":929,"parentId":928,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22001,"timestamp":7341190260616,"id":928,"parentId":907,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23086,"timestamp":7341190260215,"id":907,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":22712,"timestamp":7341190260606,"id":925,"parentId":924,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22721,"timestamp":7341190260599,"id":924,"parentId":905,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24609,"timestamp":7341190260154,"id":905,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":24233,"timestamp":7341190260588,"id":921,"parentId":920,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":24244,"timestamp":7341190260577,"id":920,"parentId":903,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26897,"timestamp":7341190260005,"id":903,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26367,"timestamp":7341190260631,"id":931,"parentId":930,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26375,"timestamp":7341190260624,"id":930,"parentId":908,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27128,"timestamp":7341190260237,"id":908,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26862,"timestamp":7341190260615,"id":927,"parentId":926,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26871,"timestamp":7341190260607,"id":926,"parentId":906,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28336,"timestamp":7341190260191,"id":906,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":28398,"timestamp":7341190260662,"id":933,"parentId":932,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28428,"timestamp":7341190260633,"id":932,"parentId":909,"tags":{},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":31729,"timestamp":7341190260261,"id":909,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776948136478,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":164,"timestamp":7341190301183,"id":939,"parentId":937,"tags":{},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":198,"timestamp":7341190301186,"id":940,"parentId":938,"tags":{},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":77,"timestamp":7341190301356,"id":943,"parentId":937,"tags":{},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7341190301387,"id":944,"parentId":938,"tags":{},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":682,"timestamp":7341190301091,"id":937,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":752,"timestamp":7341190301135,"id":938,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4437,"timestamp":7341190301306,"id":942,"parentId":941,"tags":{},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4469,"timestamp":7341190301277,"id":941,"parentId":936,"tags":{},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5298,"timestamp":7341190301012,"id":936,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776948136519,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44914,"timestamp":7341190261461,"id":935,"parentId":934,"tags":{},"startTime":1776948136479,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7341190306382,"id":1032,"parentId":934,"tags":{},"startTime":1776948136524,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45243,"timestamp":7341190261364,"id":934,"parentId":884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":"app-pages-browser"},"startTime":1776948136479,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2939,"timestamp":7341190303811,"id":977,"parentId":976,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2949,"timestamp":7341190303802,"id":976,"parentId":946,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4009,"timestamp":7341190303164,"id":946,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3383,"timestamp":7341190303801,"id":975,"parentId":974,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3406,"timestamp":7341190303778,"id":974,"parentId":945,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4350,"timestamp":7341190303103,"id":945,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3641,"timestamp":7341190303820,"id":979,"parentId":978,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3649,"timestamp":7341190303812,"id":978,"parentId":947,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4588,"timestamp":7341190303193,"id":947,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5518,"timestamp":7341190303828,"id":981,"parentId":980,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5527,"timestamp":7341190303821,"id":980,"parentId":948,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6753,"timestamp":7341190303213,"id":948,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6141,"timestamp":7341190303836,"id":983,"parentId":982,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6148,"timestamp":7341190303829,"id":982,"parentId":949,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7029,"timestamp":7341190303235,"id":949,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6420,"timestamp":7341190303852,"id":987,"parentId":986,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6428,"timestamp":7341190303844,"id":986,"parentId":951,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7253,"timestamp":7341190303279,"id":951,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6698,"timestamp":7341190303844,"id":985,"parentId":984,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6705,"timestamp":7341190303837,"id":984,"parentId":950,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7535,"timestamp":7341190303260,"id":950,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6943,"timestamp":7341190303860,"id":989,"parentId":988,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6951,"timestamp":7341190303853,"id":988,"parentId":952,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7725,"timestamp":7341190303299,"id":952,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7164,"timestamp":7341190303867,"id":991,"parentId":990,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7171,"timestamp":7341190303860,"id":990,"parentId":953,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7913,"timestamp":7341190303318,"id":953,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7370,"timestamp":7341190303874,"id":993,"parentId":992,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7377,"timestamp":7341190303868,"id":992,"parentId":954,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8398,"timestamp":7341190303337,"id":954,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7865,"timestamp":7341190303881,"id":995,"parentId":994,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7872,"timestamp":7341190303875,"id":994,"parentId":955,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8767,"timestamp":7341190303354,"id":955,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8232,"timestamp":7341190303896,"id":999,"parentId":998,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8239,"timestamp":7341190303889,"id":998,"parentId":957,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8956,"timestamp":7341190303391,"id":957,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8469,"timestamp":7341190303889,"id":997,"parentId":996,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8476,"timestamp":7341190303882,"id":996,"parentId":956,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9374,"timestamp":7341190303373,"id":956,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8844,"timestamp":7341190303910,"id":1003,"parentId":1002,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8851,"timestamp":7341190303904,"id":1002,"parentId":959,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9507,"timestamp":7341190303425,"id":959,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9015,"timestamp":7341190303925,"id":1007,"parentId":1006,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9022,"timestamp":7341190303918,"id":1006,"parentId":961,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9661,"timestamp":7341190303460,"id":961,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9225,"timestamp":7341190303903,"id":1001,"parentId":1000,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9232,"timestamp":7341190303897,"id":1000,"parentId":958,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9967,"timestamp":7341190303408,"id":958,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9465,"timestamp":7341190303918,"id":1005,"parentId":1004,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9472,"timestamp":7341190303911,"id":1004,"parentId":960,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12072,"timestamp":7341190303443,"id":960,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11622,"timestamp":7341190303932,"id":1009,"parentId":1008,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11630,"timestamp":7341190303926,"id":1008,"parentId":962,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12613,"timestamp":7341190303477,"id":962,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":259,"timestamp":7341190317977,"id":1055,"parentId":1052,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":289,"timestamp":7341190317980,"id":1056,"parentId":1053,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1599,"timestamp":7341190318242,"id":1067,"parentId":1052,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1573,"timestamp":7341190318271,"id":1068,"parentId":1053,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2290,"timestamp":7341190317876,"id":1052,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2332,"timestamp":7341190317912,"id":1053,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16326,"timestamp":7341190303940,"id":1011,"parentId":1010,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16334,"timestamp":7341190303933,"id":1010,"parentId":963,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17094,"timestamp":7341190303495,"id":963,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16630,"timestamp":7341190303968,"id":1019,"parentId":1018,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16638,"timestamp":7341190303962,"id":1018,"parentId":967,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17284,"timestamp":7341190303565,"id":967,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16916,"timestamp":7341190303947,"id":1013,"parentId":1012,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16923,"timestamp":7341190303940,"id":1012,"parentId":964,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17729,"timestamp":7341190303512,"id":964,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17288,"timestamp":7341190303961,"id":1017,"parentId":1016,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17295,"timestamp":7341190303955,"id":1016,"parentId":966,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17925,"timestamp":7341190303547,"id":966,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17505,"timestamp":7341190303976,"id":1021,"parentId":1020,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17513,"timestamp":7341190303969,"id":1020,"parentId":968,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18137,"timestamp":7341190303583,"id":968,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17739,"timestamp":7341190303991,"id":1025,"parentId":1024,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17746,"timestamp":7341190303984,"id":1024,"parentId":970,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18295,"timestamp":7341190303618,"id":970,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17973,"timestamp":7341190303954,"id":1015,"parentId":1014,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17980,"timestamp":7341190303947,"id":1014,"parentId":965,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18849,"timestamp":7341190303530,"id":965,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18382,"timestamp":7341190304005,"id":1029,"parentId":1028,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18389,"timestamp":7341190303999,"id":1028,"parentId":972,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18968,"timestamp":7341190303653,"id":972,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19001,"timestamp":7341190303998,"id":1027,"parentId":1026,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19008,"timestamp":7341190303991,"id":1026,"parentId":971,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19558,"timestamp":7341190303635,"id":971,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19196,"timestamp":7341190304036,"id":1031,"parentId":1030,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19227,"timestamp":7341190304006,"id":1030,"parentId":973,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":20076,"timestamp":7341190303672,"id":973,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15214,"timestamp":7341190308556,"id":1039,"parentId":1038,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15268,"timestamp":7341190308504,"id":1038,"parentId":1033,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":15910,"timestamp":7341190308212,"id":1033,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-transform","duration":20255,"timestamp":7341190303983,"id":1023,"parentId":1022,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20263,"timestamp":7341190303976,"id":1022,"parentId":969,"tags":{},"startTime":1776948136522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21765,"timestamp":7341190303601,"id":969,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"app-pages-browser"},"startTime":1776948136521,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16781,"timestamp":7341190308597,"id":1043,"parentId":1042,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16792,"timestamp":7341190308587,"id":1042,"parentId":1035,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17495,"timestamp":7341190308348,"id":1035,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17346,"timestamp":7341190308615,"id":1047,"parentId":1046,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17356,"timestamp":7341190308607,"id":1046,"parentId":1037,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17965,"timestamp":7341190308413,"id":1037,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17862,"timestamp":7341190308586,"id":1041,"parentId":1040,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17890,"timestamp":7341190308558,"id":1040,"parentId":1034,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":19098,"timestamp":7341190308288,"id":1034,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18806,"timestamp":7341190308606,"id":1045,"parentId":1044,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18815,"timestamp":7341190308598,"id":1044,"parentId":1036,"tags":{},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19815,"timestamp":7341190308372,"id":1036,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776948136526,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10059,"timestamp":7341190318150,"id":1064,"parentId":1063,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10086,"timestamp":7341190318124,"id":1063,"parentId":1051,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":10793,"timestamp":7341190317836,"id":1051,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18119,"timestamp":7341190318093,"id":1060,"parentId":1059,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18152,"timestamp":7341190318065,"id":1059,"parentId":1049,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":19581,"timestamp":7341190317748,"id":1049,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776948136535,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19280,"timestamp":7341190318159,"id":1066,"parentId":1065,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19290,"timestamp":7341190318150,"id":1065,"parentId":1054,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20139,"timestamp":7341190317947,"id":1054,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/dev-root-not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20024,"timestamp":7341190318123,"id":1062,"parentId":1061,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20054,"timestamp":7341190318094,"id":1061,"parentId":1050,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":21191,"timestamp":7341190317792,"id":1050,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20972,"timestamp":7341190318063,"id":1058,"parentId":1057,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20997,"timestamp":7341190318040,"id":1057,"parentId":1048,"tags":{},"startTime":1776948136536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22524,"timestamp":7341190317693,"id":1048,"parentId":938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776948136535,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":423,"timestamp":7341190343087,"id":1077,"parentId":1070,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":509,"timestamp":7341190343090,"id":1078,"parentId":1073,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1506,"timestamp":7341190343548,"id":1091,"parentId":1070,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1455,"timestamp":7341190343603,"id":1092,"parentId":1073,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2825,"timestamp":7341190342864,"id":1070,"parentId":936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2929,"timestamp":7341190342957,"id":1073,"parentId":936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3388,"timestamp":7341190343346,"id":1086,"parentId":1085,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3398,"timestamp":7341190343339,"id":1085,"parentId":1074,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4156,"timestamp":7341190342999,"id":1074,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3841,"timestamp":7341190343329,"id":1082,"parentId":1081,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3852,"timestamp":7341190343319,"id":1081,"parentId":1071,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4470,"timestamp":7341190342910,"id":1071,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4073,"timestamp":7341190343317,"id":1080,"parentId":1079,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4105,"timestamp":7341190343285,"id":1079,"parentId":1069,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4989,"timestamp":7341190342790,"id":1069,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4450,"timestamp":7341190343338,"id":1084,"parentId":1083,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4458,"timestamp":7341190343330,"id":1083,"parentId":1072,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5061,"timestamp":7341190342936,"id":1072,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4650,"timestamp":7341190343361,"id":1090,"parentId":1089,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4657,"timestamp":7341190343354,"id":1089,"parentId":1076,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5187,"timestamp":7341190343041,"id":1076,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4882,"timestamp":7341190343353,"id":1088,"parentId":1087,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4889,"timestamp":7341190343347,"id":1087,"parentId":1075,"tags":{},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5441,"timestamp":7341190343020,"id":1075,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776948136561,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":446,"timestamp":7341190349655,"id":1116,"parentId":1094,"tags":{},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":471,"timestamp":7341190349662,"id":1117,"parentId":1098,"tags":{},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":494,"timestamp":7341190349664,"id":1118,"parentId":1101,"tags":{},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":517,"timestamp":7341190349665,"id":1119,"parentId":1107,"tags":{},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1110,"timestamp":7341190350107,"id":1158,"parentId":1094,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1082,"timestamp":7341190350135,"id":1159,"parentId":1098,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1059,"timestamp":7341190350159,"id":1160,"parentId":1101,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1035,"timestamp":7341190350183,"id":1161,"parentId":1107,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2310,"timestamp":7341190349104,"id":1094,"parentId":960,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2303,"timestamp":7341190349214,"id":1098,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2382,"timestamp":7341190349288,"id":1101,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2550,"timestamp":7341190349414,"id":1107,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3081,"timestamp":7341190349785,"id":1125,"parentId":1124,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3090,"timestamp":7341190349776,"id":1124,"parentId":1096,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4007,"timestamp":7341190349173,"id":1096,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3402,"timestamp":7341190349792,"id":1127,"parentId":1126,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3410,"timestamp":7341190349785,"id":1126,"parentId":1097,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4393,"timestamp":7341190349194,"id":1097,"parentId":965,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3883,"timestamp":7341190349764,"id":1121,"parentId":1120,"tags":{},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3908,"timestamp":7341190349740,"id":1120,"parentId":1093,"tags":{},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5404,"timestamp":7341190349055,"id":1093,"parentId":951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4704,"timestamp":7341190349775,"id":1123,"parentId":1122,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4714,"timestamp":7341190349765,"id":1122,"parentId":1095,"tags":{},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5735,"timestamp":7341190349149,"id":1095,"parentId":954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5094,"timestamp":7341190349801,"id":1129,"parentId":1128,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5101,"timestamp":7341190349793,"id":1128,"parentId":1099,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5889,"timestamp":7341190349250,"id":1099,"parentId":965,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11686,"timestamp":7341190349815,"id":1133,"parentId":1132,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11696,"timestamp":7341190349809,"id":1132,"parentId":1102,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12758,"timestamp":7341190349324,"id":1102,"parentId":964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12289,"timestamp":7341190349808,"id":1131,"parentId":1130,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12296,"timestamp":7341190349801,"id":1130,"parentId":1100,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13231,"timestamp":7341190349268,"id":1100,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12690,"timestamp":7341190349823,"id":1135,"parentId":1134,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12698,"timestamp":7341190349816,"id":1134,"parentId":1103,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13609,"timestamp":7341190349342,"id":1103,"parentId":964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13126,"timestamp":7341190349841,"id":1137,"parentId":1136,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13144,"timestamp":7341190349824,"id":1136,"parentId":1104,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14164,"timestamp":7341190349360,"id":1104,"parentId":964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13686,"timestamp":7341190349849,"id":1139,"parentId":1138,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13695,"timestamp":7341190349842,"id":1138,"parentId":1105,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14517,"timestamp":7341190349378,"id":1105,"parentId":964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14040,"timestamp":7341190349864,"id":1143,"parentId":1142,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14049,"timestamp":7341190349858,"id":1142,"parentId":1108,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14724,"timestamp":7341190349464,"id":1108,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14324,"timestamp":7341190349872,"id":1145,"parentId":1144,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14332,"timestamp":7341190349865,"id":1144,"parentId":1109,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":15104,"timestamp":7341190349500,"id":1109,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14727,"timestamp":7341190349887,"id":1149,"parentId":1148,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14734,"timestamp":7341190349880,"id":1148,"parentId":1111,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15438,"timestamp":7341190349542,"id":1111,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15136,"timestamp":7341190349857,"id":1141,"parentId":1140,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15143,"timestamp":7341190349850,"id":1140,"parentId":1106,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16022,"timestamp":7341190349395,"id":1106,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15535,"timestamp":7341190349894,"id":1151,"parentId":1150,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15542,"timestamp":7341190349887,"id":1150,"parentId":1112,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16234,"timestamp":7341190349560,"id":1112,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15898,"timestamp":7341190349901,"id":1153,"parentId":1152,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15906,"timestamp":7341190349895,"id":1152,"parentId":1113,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16397,"timestamp":7341190349578,"id":1113,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16180,"timestamp":7341190349879,"id":1147,"parentId":1146,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16188,"timestamp":7341190349873,"id":1146,"parentId":1110,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17315,"timestamp":7341190349519,"id":1110,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17501,"timestamp":7341190349915,"id":1157,"parentId":1156,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17509,"timestamp":7341190349909,"id":1156,"parentId":1115,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18225,"timestamp":7341190349620,"id":1115,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17951,"timestamp":7341190349908,"id":1155,"parentId":1154,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17958,"timestamp":7341190349902,"id":1154,"parentId":1114,"tags":{},"startTime":1776948136568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18696,"timestamp":7341190349595,"id":1114,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"app-pages-browser"},"startTime":1776948136567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8365,"timestamp":7341190359935,"id":1178,"parentId":1177,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8375,"timestamp":7341190359927,"id":1177,"parentId":1164,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11012,"timestamp":7341190357616,"id":1164,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8718,"timestamp":7341190359925,"id":1176,"parentId":1175,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8731,"timestamp":7341190359913,"id":1175,"parentId":1163,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11443,"timestamp":7341190357576,"id":1163,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9124,"timestamp":7341190359910,"id":1174,"parentId":1173,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9157,"timestamp":7341190359878,"id":1173,"parentId":1162,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11805,"timestamp":7341190357469,"id":1162,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16958,"timestamp":7341190359948,"id":1180,"parentId":1179,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16971,"timestamp":7341190359936,"id":1179,"parentId":1165,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19752,"timestamp":7341190357642,"id":1165,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17449,"timestamp":7341190359957,"id":1182,"parentId":1181,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17458,"timestamp":7341190359949,"id":1181,"parentId":1166,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20031,"timestamp":7341190357668,"id":1166,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17732,"timestamp":7341190359975,"id":1186,"parentId":1185,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17740,"timestamp":7341190359967,"id":1185,"parentId":1168,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20320,"timestamp":7341190357712,"id":1168,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18062,"timestamp":7341190359983,"id":1188,"parentId":1187,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18070,"timestamp":7341190359976,"id":1187,"parentId":1169,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20544,"timestamp":7341190357731,"id":1169,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18296,"timestamp":7341190359992,"id":1190,"parentId":1189,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18304,"timestamp":7341190359984,"id":1189,"parentId":1170,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20915,"timestamp":7341190357752,"id":1170,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18717,"timestamp":7341190359966,"id":1184,"parentId":1183,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18726,"timestamp":7341190359958,"id":1183,"parentId":1167,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21487,"timestamp":7341190357690,"id":1167,"parentId":1048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776948136575,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19176,"timestamp":7341190360023,"id":1192,"parentId":1191,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19206,"timestamp":7341190359993,"id":1191,"parentId":1171,"tags":{},"startTime":1776948136578,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":21782,"timestamp":7341190357771,"id":1171,"parentId":1049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776948136576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":449,"timestamp":7341190381573,"id":1210,"parentId":1193,"tags":{},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":974,"timestamp":7341190382027,"id":1241,"parentId":1193,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2288,"timestamp":7341190380912,"id":1193,"parentId":1070,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1715,"timestamp":7341190381790,"id":1220,"parentId":1219,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1722,"timestamp":7341190381783,"id":1219,"parentId":1197,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2642,"timestamp":7341190381077,"id":1197,"parentId":1069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1945,"timestamp":7341190381782,"id":1218,"parentId":1217,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1953,"timestamp":7341190381775,"id":1217,"parentId":1196,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2937,"timestamp":7341190381056,"id":1196,"parentId":1076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2225,"timestamp":7341190381774,"id":1216,"parentId":1215,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2235,"timestamp":7341190381765,"id":1215,"parentId":1195,"tags":{},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3221,"timestamp":7341190381021,"id":1195,"parentId":1070,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":171,"timestamp":7341190389602,"id":1256,"parentId":1255,"tags":{},"startTime":1776948136607,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":445,"timestamp":7341190407096,"id":1261,"parentId":1258,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7341190407559,"id":1291,"parentId":1258,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18711,"timestamp":7341190389672,"id":1258,"parentId":1111,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"app-pages-browser"},"startTime":1776948136607,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27269,"timestamp":7341190381763,"id":1214,"parentId":1213,"tags":{},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27301,"timestamp":7341190381734,"id":1213,"parentId":1194,"tags":{},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29356,"timestamp":7341190380990,"id":1194,"parentId":1070,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":28575,"timestamp":7341190381798,"id":1222,"parentId":1221,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28583,"timestamp":7341190381791,"id":1221,"parentId":1198,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29620,"timestamp":7341190381098,"id":1198,"parentId":1069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":28915,"timestamp":7341190381817,"id":1224,"parentId":1223,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28935,"timestamp":7341190381798,"id":1223,"parentId":1199,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29967,"timestamp":7341190381117,"id":1199,"parentId":952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29279,"timestamp":7341190381826,"id":1226,"parentId":1225,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29287,"timestamp":7341190381818,"id":1225,"parentId":1201,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30041,"timestamp":7341190381380,"id":1201,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29590,"timestamp":7341190381840,"id":1230,"parentId":1229,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29598,"timestamp":7341190381833,"id":1229,"parentId":1203,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30208,"timestamp":7341190381417,"id":1203,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29786,"timestamp":7341190381847,"id":1232,"parentId":1231,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29794,"timestamp":7341190381841,"id":1231,"parentId":1204,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30447,"timestamp":7341190381435,"id":1204,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30036,"timestamp":7341190381854,"id":1234,"parentId":1233,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30043,"timestamp":7341190381848,"id":1233,"parentId":1205,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30643,"timestamp":7341190381454,"id":1205,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30279,"timestamp":7341190381833,"id":1228,"parentId":1227,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30287,"timestamp":7341190381826,"id":1227,"parentId":1202,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31045,"timestamp":7341190381399,"id":1202,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30667,"timestamp":7341190381861,"id":1236,"parentId":1235,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30674,"timestamp":7341190381855,"id":1235,"parentId":1206,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31270,"timestamp":7341190381472,"id":1206,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":31259,"timestamp":7341190381875,"id":1240,"parentId":1239,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31266,"timestamp":7341190381869,"id":1239,"parentId":1208,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31891,"timestamp":7341190381508,"id":1208,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":31540,"timestamp":7341190381868,"id":1238,"parentId":1237,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31547,"timestamp":7341190381862,"id":1237,"parentId":1207,"tags":{},"startTime":1776948136600,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32239,"timestamp":7341190381489,"id":1207,"parentId":1095,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-transform","duration":6648,"timestamp":7341190407250,"id":1268,"parentId":1267,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6657,"timestamp":7341190407242,"id":1267,"parentId":1244,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27954,"timestamp":7341190386159,"id":1244,"parentId":1112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6880,"timestamp":7341190407240,"id":1266,"parentId":1265,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6891,"timestamp":7341190407229,"id":1265,"parentId":1243,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28180,"timestamp":7341190386119,"id":1243,"parentId":1109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7086,"timestamp":7341190407223,"id":1264,"parentId":1263,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7126,"timestamp":7341190407184,"id":1263,"parentId":1242,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28591,"timestamp":7341190385983,"id":1242,"parentId":1105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10539,"timestamp":7341190407288,"id":1276,"parentId":1275,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10549,"timestamp":7341190407280,"id":1275,"parentId":1248,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31962,"timestamp":7341190386259,"id":1248,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10955,"timestamp":7341190407279,"id":1274,"parentId":1273,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10963,"timestamp":7341190407270,"id":1273,"parentId":1247,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32467,"timestamp":7341190386237,"id":1247,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11460,"timestamp":7341190407269,"id":1272,"parentId":1271,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11469,"timestamp":7341190407261,"id":1271,"parentId":1246,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32790,"timestamp":7341190386213,"id":1246,"parentId":1163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11774,"timestamp":7341190407260,"id":1270,"parentId":1269,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11785,"timestamp":7341190407252,"id":1269,"parentId":1245,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33273,"timestamp":7341190386187,"id":1245,"parentId":1163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12180,"timestamp":7341190407297,"id":1278,"parentId":1277,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12189,"timestamp":7341190407289,"id":1277,"parentId":1249,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33605,"timestamp":7341190386281,"id":1249,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12564,"timestamp":7341190407333,"id":1286,"parentId":1285,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12572,"timestamp":7341190407326,"id":1285,"parentId":1253,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33839,"timestamp":7341190386362,"id":1253,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12895,"timestamp":7341190407315,"id":1282,"parentId":1281,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12904,"timestamp":7341190407307,"id":1281,"parentId":1251,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34122,"timestamp":7341190386321,"id":1251,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13132,"timestamp":7341190407324,"id":1284,"parentId":1283,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13140,"timestamp":7341190407317,"id":1283,"parentId":1252,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34378,"timestamp":7341190386343,"id":1252,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13376,"timestamp":7341190407351,"id":1290,"parentId":1289,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13384,"timestamp":7341190407343,"id":1289,"parentId":1257,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31345,"timestamp":7341190389615,"id":1257,"parentId":1114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776948136607,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13627,"timestamp":7341190407342,"id":1288,"parentId":1287,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13635,"timestamp":7341190407335,"id":1287,"parentId":1254,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34876,"timestamp":7341190386383,"id":1254,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14457,"timestamp":7341190407306,"id":1280,"parentId":1279,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14466,"timestamp":7341190407299,"id":1279,"parentId":1250,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37916,"timestamp":7341190386301,"id":1250,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"app-pages-browser"},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7872,"timestamp":7341190416483,"id":1300,"parentId":1299,"tags":{},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7881,"timestamp":7341190416475,"id":1299,"parentId":1294,"tags":{},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8471,"timestamp":7341190416262,"id":1294,"parentId":1163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8282,"timestamp":7341190416460,"id":1296,"parentId":1295,"tags":{},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8312,"timestamp":7341190416431,"id":1295,"parentId":1292,"tags":{},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8983,"timestamp":7341190416145,"id":1292,"parentId":1165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8687,"timestamp":7341190416474,"id":1298,"parentId":1297,"tags":{},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8709,"timestamp":7341190416462,"id":1297,"parentId":1293,"tags":{},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9772,"timestamp":7341190416214,"id":1293,"parentId":1163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"app-pages-browser"},"startTime":1776948136634,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49320,"timestamp":7341190381576,"id":1211,"parentId":1200,"tags":{},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7341190430906,"id":1301,"parentId":1200,"tags":{},"startTime":1776948136649,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49745,"timestamp":7341190381343,"id":1200,"parentId":1035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49505,"timestamp":7341190381589,"id":1212,"parentId":1209,"tags":{},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7341190431098,"id":1302,"parentId":1209,"tags":{},"startTime":1776948136649,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49988,"timestamp":7341190381526,"id":1209,"parentId":934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":"app-pages-browser"},"startTime":1776948136599,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28364,"timestamp":7341190407104,"id":1262,"parentId":1259,"tags":{},"startTime":1776948136625,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7341190435477,"id":1303,"parentId":1259,"tags":{},"startTime":1776948136653,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46367,"timestamp":7341190389725,"id":1259,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776948136607,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":254,"timestamp":7341190438055,"id":1308,"parentId":1304,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1704,"timestamp":7341190438328,"id":1315,"parentId":1304,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2637,"timestamp":7341190437873,"id":1304,"parentId":1244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3449,"timestamp":7341190438170,"id":1312,"parentId":1311,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3463,"timestamp":7341190438158,"id":1311,"parentId":1306,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3960,"timestamp":7341190438000,"id":1306,"parentId":1208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3832,"timestamp":7341190438156,"id":1310,"parentId":1309,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3865,"timestamp":7341190438124,"id":1309,"parentId":1305,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4676,"timestamp":7341190437963,"id":1305,"parentId":1242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":363,"timestamp":7341190443440,"id":1331,"parentId":1327,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":263,"timestamp":7341190443809,"id":1360,"parentId":1327,"tags":{},"startTime":1776948136662,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":941,"timestamp":7341190443287,"id":1327,"parentId":1249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6243,"timestamp":7341190438179,"id":1314,"parentId":1313,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6252,"timestamp":7341190438171,"id":1313,"parentId":1307,"tags":{},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7437,"timestamp":7341190438025,"id":1307,"parentId":1207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1776948136656,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":322001,"timestamp":7341190443526,"id":1335,"parentId":1334,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":322017,"timestamp":7341190443516,"id":1334,"parentId":1317,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":323176,"timestamp":7341190443063,"id":1317,"parentId":1207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":322718,"timestamp":7341190443543,"id":1339,"parentId":1338,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":322726,"timestamp":7341190443536,"id":1338,"parentId":1319,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":324224,"timestamp":7341190443109,"id":1319,"parentId":1207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":323855,"timestamp":7341190443514,"id":1333,"parentId":1332,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":323881,"timestamp":7341190443491,"id":1332,"parentId":1316,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":325271,"timestamp":7341190443010,"id":1316,"parentId":1207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":324767,"timestamp":7341190443535,"id":1337,"parentId":1336,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":324776,"timestamp":7341190443527,"id":1336,"parentId":1318,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":325881,"timestamp":7341190443088,"id":1318,"parentId":1207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":325393,"timestamp":7341190443605,"id":1347,"parentId":1346,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":325402,"timestamp":7341190443598,"id":1346,"parentId":1323,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":326209,"timestamp":7341190443207,"id":1323,"parentId":1249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":325845,"timestamp":7341190443597,"id":1345,"parentId":1344,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":325856,"timestamp":7341190443590,"id":1344,"parentId":1322,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":326710,"timestamp":7341190443171,"id":1322,"parentId":1249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":326313,"timestamp":7341190443589,"id":1343,"parentId":1342,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":326323,"timestamp":7341190443580,"id":1342,"parentId":1321,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":327386,"timestamp":7341190443150,"id":1321,"parentId":1247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":326931,"timestamp":7341190443614,"id":1349,"parentId":1348,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":326941,"timestamp":7341190443606,"id":1348,"parentId":1324,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":327556,"timestamp":7341190443227,"id":1324,"parentId":1249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":327223,"timestamp":7341190443579,"id":1341,"parentId":1340,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":327259,"timestamp":7341190443544,"id":1340,"parentId":1320,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":328458,"timestamp":7341190443130,"id":1320,"parentId":1207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":327968,"timestamp":7341190443628,"id":1351,"parentId":1350,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":327983,"timestamp":7341190443615,"id":1350,"parentId":1325,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":328567,"timestamp":7341190443246,"id":1325,"parentId":1249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":328182,"timestamp":7341190443638,"id":1353,"parentId":1352,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":328190,"timestamp":7341190443630,"id":1352,"parentId":1326,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":328777,"timestamp":7341190443267,"id":1326,"parentId":1249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":333383,"timestamp":7341190443645,"id":1355,"parentId":1354,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":333393,"timestamp":7341190443638,"id":1354,"parentId":1328,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":334177,"timestamp":7341190443329,"id":1328,"parentId":1250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":334048,"timestamp":7341190443653,"id":1357,"parentId":1356,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":334058,"timestamp":7341190443646,"id":1356,"parentId":1329,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":334725,"timestamp":7341190443394,"id":1329,"parentId":1252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":334509,"timestamp":7341190443660,"id":1359,"parentId":1358,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":334517,"timestamp":7341190443653,"id":1358,"parentId":1330,"tags":{},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":335010,"timestamp":7341190443414,"id":1330,"parentId":1252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"app-pages-browser"},"startTime":1776948136661,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14762,"timestamp":7341190763995,"id":1379,"parentId":1378,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14792,"timestamp":7341190763965,"id":1378,"parentId":1362,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15759,"timestamp":7341190763233,"id":1362,"parentId":1252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14984,"timestamp":7341190764015,"id":1383,"parentId":1382,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14992,"timestamp":7341190764008,"id":1382,"parentId":1364,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15877,"timestamp":7341190763345,"id":1364,"parentId":1252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15222,"timestamp":7341190764007,"id":1381,"parentId":1380,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15232,"timestamp":7341190763997,"id":1380,"parentId":1363,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16130,"timestamp":7341190763313,"id":1363,"parentId":1252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":23778,"timestamp":7341190764040,"id":1389,"parentId":1388,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":23790,"timestamp":7341190764033,"id":1388,"parentId":1367,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24871,"timestamp":7341190763412,"id":1367,"parentId":1250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":24290,"timestamp":7341190764024,"id":1385,"parentId":1384,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":24299,"timestamp":7341190764016,"id":1384,"parentId":1365,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25514,"timestamp":7341190763367,"id":1365,"parentId":1252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":24864,"timestamp":7341190764032,"id":1387,"parentId":1386,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":24873,"timestamp":7341190764025,"id":1386,"parentId":1366,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25946,"timestamp":7341190763392,"id":1366,"parentId":1254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25280,"timestamp":7341190764073,"id":1397,"parentId":1396,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25288,"timestamp":7341190764066,"id":1396,"parentId":1371,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26075,"timestamp":7341190763490,"id":1371,"parentId":1250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25527,"timestamp":7341190764048,"id":1391,"parentId":1390,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25540,"timestamp":7341190764040,"id":1390,"parentId":1368,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26408,"timestamp":7341190763432,"id":1368,"parentId":1199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25792,"timestamp":7341190764059,"id":1393,"parentId":1392,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25804,"timestamp":7341190764048,"id":1392,"parentId":1369,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26604,"timestamp":7341190763452,"id":1369,"parentId":1204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25977,"timestamp":7341190764087,"id":1401,"parentId":1400,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25985,"timestamp":7341190764081,"id":1400,"parentId":1373,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26746,"timestamp":7341190763529,"id":1373,"parentId":1294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26220,"timestamp":7341190764066,"id":1395,"parentId":1394,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26227,"timestamp":7341190764059,"id":1394,"parentId":1370,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27008,"timestamp":7341190763473,"id":1370,"parentId":1205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26400,"timestamp":7341190764095,"id":1403,"parentId":1402,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26407,"timestamp":7341190764088,"id":1402,"parentId":1374,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27195,"timestamp":7341190763558,"id":1374,"parentId":1293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26653,"timestamp":7341190764109,"id":1407,"parentId":1406,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26661,"timestamp":7341190764102,"id":1406,"parentId":1376,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27392,"timestamp":7341190763625,"id":1376,"parentId":1250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26953,"timestamp":7341190764080,"id":1399,"parentId":1398,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26960,"timestamp":7341190764074,"id":1398,"parentId":1372,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29378,"timestamp":7341190763512,"id":1372,"parentId":1294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":28822,"timestamp":7341190764101,"id":1405,"parentId":1404,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28829,"timestamp":7341190764095,"id":1404,"parentId":1375,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30143,"timestamp":7341190763579,"id":1375,"parentId":1293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29627,"timestamp":7341190764116,"id":1409,"parentId":1408,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29634,"timestamp":7341190764109,"id":1408,"parentId":1377,"tags":{},"startTime":1776948136982,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30720,"timestamp":7341190763651,"id":1377,"parentId":1250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"app-pages-browser"},"startTime":1776948136981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11414,"timestamp":7341190783378,"id":1417,"parentId":1416,"tags":{},"startTime":1776948137001,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11447,"timestamp":7341190783346,"id":1416,"parentId":1410,"tags":{},"startTime":1776948137001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12580,"timestamp":7341190782458,"id":1410,"parentId":1304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776948137000,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11653,"timestamp":7341190783396,"id":1419,"parentId":1418,"tags":{},"startTime":1776948137001,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11667,"timestamp":7341190783381,"id":1418,"parentId":1411,"tags":{},"startTime":1776948137001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12876,"timestamp":7341190782537,"id":1411,"parentId":1305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1776948137000,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6557,"timestamp":7341190797339,"id":1430,"parentId":1429,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6591,"timestamp":7341190797310,"id":1429,"parentId":1420,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7701,"timestamp":7341190796925,"id":1420,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7286,"timestamp":7341190797360,"id":1434,"parentId":1433,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7295,"timestamp":7341190797353,"id":1433,"parentId":1422,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8011,"timestamp":7341190797035,"id":1422,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7716,"timestamp":7341190797352,"id":1432,"parentId":1431,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7727,"timestamp":7341190797341,"id":1431,"parentId":1421,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8597,"timestamp":7341190797005,"id":1421,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8248,"timestamp":7341190797369,"id":1436,"parentId":1435,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8256,"timestamp":7341190797361,"id":1435,"parentId":1423,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8837,"timestamp":7341190797059,"id":1423,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8532,"timestamp":7341190797377,"id":1438,"parentId":1437,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8540,"timestamp":7341190797370,"id":1437,"parentId":1424,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9152,"timestamp":7341190797081,"id":1424,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8852,"timestamp":7341190797393,"id":1442,"parentId":1441,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8859,"timestamp":7341190797386,"id":1441,"parentId":1426,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9417,"timestamp":7341190797121,"id":1426,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9201,"timestamp":7341190797385,"id":1440,"parentId":1439,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9209,"timestamp":7341190797378,"id":1439,"parentId":1425,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12216,"timestamp":7341190797101,"id":1425,"parentId":1307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":309,"timestamp":7341190810719,"id":1458,"parentId":1456,"tags":{},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":339,"timestamp":7341190810722,"id":1459,"parentId":1457,"tags":{},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7341190811036,"id":1486,"parentId":1456,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22,"timestamp":7341190811063,"id":1487,"parentId":1457,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":623,"timestamp":7341190810632,"id":1456,"parentId":1321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":658,"timestamp":7341190810671,"id":1457,"parentId":1321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":294315,"timestamp":7341190678068,"id":1361,"parentId":1260,"tags":{},"startTime":1776948136896,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":583909,"timestamp":7341190389866,"id":1260,"parentId":1255,"tags":{},"startTime":1776948136608,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":60620,"timestamp":7341190973913,"id":1488,"parentId":1255,"tags":{"astUsed":"true"},"startTime":1776948137192,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":232,"timestamp":7341191038349,"id":1497,"parentId":1489,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":36,"timestamp":7341191038698,"id":1512,"parentId":1489,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1339,"timestamp":7341191037964,"id":1489,"parentId":1375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":228768,"timestamp":7341190810787,"id":1461,"parentId":1460,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":228802,"timestamp":7341190810756,"id":1460,"parentId":1443,"tags":{},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":229631,"timestamp":7341190810305,"id":1443,"parentId":1319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":229152,"timestamp":7341190810808,"id":1465,"parentId":1464,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":229161,"timestamp":7341190810800,"id":1464,"parentId":1445,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":229960,"timestamp":7341190810413,"id":1445,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":229539,"timestamp":7341190810845,"id":1471,"parentId":1470,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":229547,"timestamp":7341190810838,"id":1470,"parentId":1448,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":230144,"timestamp":7341190810481,"id":1448,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":229797,"timestamp":7341190810837,"id":1469,"parentId":1468,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":229817,"timestamp":7341190810818,"id":1468,"parentId":1447,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":230399,"timestamp":7341190810460,"id":1447,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":230050,"timestamp":7341190810817,"id":1467,"parentId":1466,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":230059,"timestamp":7341190810809,"id":1466,"parentId":1446,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":230643,"timestamp":7341190810436,"id":1446,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":230235,"timestamp":7341190810853,"id":1473,"parentId":1472,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":230243,"timestamp":7341190810846,"id":1472,"parentId":1449,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":230804,"timestamp":7341190810500,"id":1449,"parentId":1323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":230456,"timestamp":7341190810860,"id":1475,"parentId":1474,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":230464,"timestamp":7341190810854,"id":1474,"parentId":1450,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":231220,"timestamp":7341190810520,"id":1450,"parentId":1324,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":230966,"timestamp":7341190810799,"id":1463,"parentId":1462,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":230977,"timestamp":7341190810789,"id":1462,"parentId":1444,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":232185,"timestamp":7341190810383,"id":1444,"parentId":1328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":231700,"timestamp":7341190810883,"id":1481,"parentId":1480,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":231708,"timestamp":7341190810876,"id":1480,"parentId":1453,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":232386,"timestamp":7341190810576,"id":1453,"parentId":1326,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":232095,"timestamp":7341190810875,"id":1479,"parentId":1478,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":232102,"timestamp":7341190810869,"id":1478,"parentId":1452,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":232622,"timestamp":7341190810558,"id":1452,"parentId":1326,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":232479,"timestamp":7341190810891,"id":1483,"parentId":1482,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":232487,"timestamp":7341190810884,"id":1482,"parentId":1454,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":232999,"timestamp":7341190810595,"id":1454,"parentId":1364,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":232740,"timestamp":7341190810868,"id":1477,"parentId":1476,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":232748,"timestamp":7341190810861,"id":1476,"parentId":1451,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":234162,"timestamp":7341190810540,"id":1451,"parentId":1325,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":233881,"timestamp":7341190810898,"id":1485,"parentId":1484,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":233890,"timestamp":7341190810891,"id":1484,"parentId":1455,"tags":{},"startTime":1776948137029,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":234670,"timestamp":7341190810613,"id":1455,"parentId":1364,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"app-pages-browser"},"startTime":1776948137028,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":263158,"timestamp":7341190782911,"id":1415,"parentId":1414,"tags":{},"startTime":1776948137001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":263303,"timestamp":7341190782899,"id":1414,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776948137001,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":263337,"timestamp":7341190782880,"id":1413,"parentId":1412,"tags":{},"startTime":1776948137001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":263701,"timestamp":7341190782569,"id":1412,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776948137000,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19048,"timestamp":7341191038429,"id":1499,"parentId":1498,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19084,"timestamp":7341191038398,"id":1498,"parentId":1490,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19823,"timestamp":7341191038156,"id":1490,"parentId":1375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19581,"timestamp":7341191038449,"id":1503,"parentId":1502,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19589,"timestamp":7341191038442,"id":1502,"parentId":1492,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20352,"timestamp":7341191038234,"id":1492,"parentId":1365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20182,"timestamp":7341191038441,"id":1501,"parentId":1500,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20193,"timestamp":7341191038431,"id":1500,"parentId":1491,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21048,"timestamp":7341191038209,"id":1491,"parentId":1366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20820,"timestamp":7341191038457,"id":1505,"parentId":1504,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20828,"timestamp":7341191038450,"id":1504,"parentId":1493,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21349,"timestamp":7341191038255,"id":1493,"parentId":1377,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":21704,"timestamp":7341191038471,"id":1509,"parentId":1508,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":21713,"timestamp":7341191038465,"id":1508,"parentId":1495,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22311,"timestamp":7341191038295,"id":1495,"parentId":1365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":22177,"timestamp":7341191038464,"id":1507,"parentId":1506,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22185,"timestamp":7341191038457,"id":1506,"parentId":1494,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22825,"timestamp":7341191038275,"id":1494,"parentId":1367,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":22634,"timestamp":7341191038477,"id":1511,"parentId":1510,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22640,"timestamp":7341191038472,"id":1510,"parentId":1496,"tags":{},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23003,"timestamp":7341191038316,"id":1496,"parentId":1365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"app-pages-browser"},"startTime":1776948137256,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":266234,"timestamp":7341190797154,"id":1428,"parentId":1427,"tags":{},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":266335,"timestamp":7341190797144,"id":1427,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776948137015,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":222,"timestamp":7341191065079,"id":1526,"parentId":1525,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":119,"timestamp":7341191065313,"id":1535,"parentId":1525,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1560,"timestamp":7341191065034,"id":1525,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2213,"timestamp":7341191065157,"id":1532,"parentId":1531,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2221,"timestamp":7341191065150,"id":1531,"parentId":1523,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2836,"timestamp":7341191064991,"id":1523,"parentId":1450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"app-pages-browser"},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2685,"timestamp":7341191065164,"id":1534,"parentId":1533,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2692,"timestamp":7341191065158,"id":1533,"parentId":1524,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3216,"timestamp":7341191065014,"id":1524,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"app-pages-browser"},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20551,"timestamp":7341191048291,"id":1517,"parentId":1516,"tags":{},"startTime":1776948137266,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20701,"timestamp":7341191048282,"id":1516,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776948137266,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20726,"timestamp":7341191048263,"id":1515,"parentId":1514,"tags":{},"startTime":1776948137266,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20855,"timestamp":7341191048248,"id":1514,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776948137266,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20799,"timestamp":7341191048309,"id":1518,"parentId":1513,"tags":{},"startTime":1776948137266,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7341191069113,"id":1545,"parentId":1513,"tags":{},"startTime":1776948137287,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21033,"timestamp":7341191048167,"id":1513,"parentId":934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776948137266,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7347,"timestamp":7341191067295,"id":1542,"parentId":1541,"tags":{},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7361,"timestamp":7341191067286,"id":1541,"parentId":1537,"tags":{},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7932,"timestamp":7341191067176,"id":1537,"parentId":1495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"app-pages-browser"},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10419,"timestamp":7341191067284,"id":1540,"parentId":1539,"tags":{},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10453,"timestamp":7341191067255,"id":1539,"parentId":1536,"tags":{},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11416,"timestamp":7341191067095,"id":1536,"parentId":1495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"app-pages-browser"},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13603,"timestamp":7341191065138,"id":1528,"parentId":1527,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13638,"timestamp":7341191065104,"id":1527,"parentId":1521,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14150,"timestamp":7341191064897,"id":1521,"parentId":1445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"app-pages-browser"},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17094,"timestamp":7341191062215,"id":1520,"parentId":1519,"tags":{},"startTime":1776948137280,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17191,"timestamp":7341191062188,"id":1519,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.js","layer":"app-pages-browser"},"startTime":1776948137280,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10793,"timestamp":7341191073466,"id":1552,"parentId":1551,"tags":{},"startTime":1776948137291,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10823,"timestamp":7341191073438,"id":1551,"parentId":1550,"tags":{},"startTime":1776948137291,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11277,"timestamp":7341191073383,"id":1550,"parentId":1524,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"app-pages-browser"},"startTime":1776948137291,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17586,"timestamp":7341191067304,"id":1544,"parentId":1543,"tags":{},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17594,"timestamp":7341191067296,"id":1543,"parentId":1538,"tags":{},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18530,"timestamp":7341191067210,"id":1538,"parentId":1496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"app-pages-browser"},"startTime":1776948137285,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":17882,"timestamp":7341191073327,"id":1547,"parentId":1546,"tags":{},"startTime":1776948137291,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21693,"timestamp":7341191073293,"id":1546,"parentId":1414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js","layer":"app-pages-browser"},"startTime":1776948137291,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21739,"timestamp":7341191073352,"id":1549,"parentId":1548,"tags":{},"startTime":1776948137291,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24229,"timestamp":7341191073340,"id":1548,"parentId":1412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-dev-runtime.development.js","layer":"app-pages-browser"},"startTime":1776948137291,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17640,"timestamp":7341191081593,"id":1554,"parentId":1553,"tags":{},"startTime":1776948137299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23242,"timestamp":7341191081560,"id":1553,"parentId":1427,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776948137299,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":875854,"timestamp":7341190229265,"id":887,"parentId":883,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948136447,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":875936,"timestamp":7341190229192,"id":886,"parentId":883,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948136447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":40419,"timestamp":7341191065149,"id":1530,"parentId":1529,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40429,"timestamp":7341191065140,"id":1529,"parentId":1522,"tags":{},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47814,"timestamp":7341191064966,"id":1522,"parentId":1450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"app-pages-browser"},"startTime":1776948137283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":728348,"timestamp":7341190386407,"id":1255,"parentId":1172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776948136604,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4,"timestamp":7341191115422,"id":1563,"parentId":1561,"tags":{},"startTime":1776948137333,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":127,"timestamp":7341191115425,"id":1564,"parentId":1562,"tags":{},"startTime":1776948137333,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":173,"timestamp":7341191115434,"id":1565,"parentId":1561,"tags":{},"startTime":1776948137333,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7341191115563,"id":1566,"parentId":1562,"tags":{},"startTime":1776948137333,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3233,"timestamp":7341191115223,"id":1561,"parentId":1522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776948137333,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3590,"timestamp":7341191115335,"id":1562,"parentId":1522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776948137333,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23592,"timestamp":7341191097862,"id":1558,"parentId":1557,"tags":{},"startTime":1776948137316,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23771,"timestamp":7341191097830,"id":1557,"parentId":1519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1776948137316,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24502,"timestamp":7341191098024,"id":1560,"parentId":1559,"tags":{},"startTime":1776948137316,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7341191122535,"id":1569,"parentId":1559,"tags":{},"startTime":1776948137340,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25760,"timestamp":7341191097878,"id":1559,"parentId":1513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":"app-pages-browser"},"startTime":1776948137316,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32568,"timestamp":7341191091128,"id":1556,"parentId":1555,"tags":{},"startTime":1776948137309,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":128088,"timestamp":7341191091089,"id":1555,"parentId":1514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","layer":"app-pages-browser"},"startTime":1776948137309,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":990681,"timestamp":7341190229132,"id":884,"parentId":883,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948136447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":101301,"timestamp":7341191122384,"id":1568,"parentId":1567,"tags":{},"startTime":1776948137340,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":102055,"timestamp":7341191122065,"id":1567,"parentId":1255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1776948137340,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":877482,"timestamp":7341190357832,"id":1172,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776948136576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15082,"timestamp":7341191221617,"id":1571,"parentId":1570,"tags":{},"startTime":1776948137439,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18217,"timestamp":7341191221566,"id":1570,"parentId":1557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js","layer":"app-pages-browser"},"startTime":1776948137439,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":78,"timestamp":7341191241968,"id":1572,"parentId":1172,"tags":{},"startTime":1776948137460,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":1013270,"timestamp":7341190229280,"id":888,"parentId":883,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948136447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2842,"timestamp":7341191243978,"id":1574,"parentId":1573,"tags":{},"startTime":1776948137462,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7341191246831,"id":1575,"parentId":1573,"tags":{},"startTime":1776948137465,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3269,"timestamp":7341191243889,"id":1573,"parentId":1555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776948137462,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2068,"timestamp":7341191248809,"id":1577,"parentId":1576,"tags":{},"startTime":1776948137467,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7341191250885,"id":1578,"parentId":1576,"tags":{},"startTime":1776948137469,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3128,"timestamp":7341191248713,"id":1576,"parentId":1573,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776948137466,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":1022791,"timestamp":7341190229175,"id":885,"parentId":883,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948136447,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":1022680,"timestamp":7341190229292,"id":889,"parentId":883,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948136447,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":1028167,"timestamp":7341190223819,"id":883,"parentId":882,"tags":{},"startTime":1776948136442,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2011,"timestamp":7341191256074,"id":1580,"parentId":1579,"tags":{},"startTime":1776948137474,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7341191258101,"id":1582,"parentId":1579,"tags":{},"startTime":1776948137476,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":50,"timestamp":7341191258116,"id":1583,"parentId":1579,"tags":{},"startTime":1776948137476,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7341191258179,"id":1584,"parentId":1579,"tags":{},"startTime":1776948137476,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341191258194,"id":1585,"parentId":1579,"tags":{},"startTime":1776948137476,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":882,"timestamp":7341191258095,"id":1581,"parentId":1579,"tags":{},"startTime":1776948137476,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":3086,"timestamp":7341191260598,"id":1586,"parentId":1579,"tags":{},"startTime":1776948137478,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":10448,"timestamp":7341191263693,"id":1587,"parentId":1579,"tags":{},"startTime":1776948137481,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":13275,"timestamp":7341191276367,"id":1588,"parentId":1579,"tags":{},"startTime":1776948137494,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":242,"timestamp":7341191289641,"id":1589,"parentId":1579,"tags":{},"startTime":1776948137507,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":59,"timestamp":7341191289868,"id":1590,"parentId":1579,"tags":{},"startTime":1776948137508,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":92360,"timestamp":7341191289929,"id":1591,"parentId":1579,"tags":{},"startTime":1776948137508,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":57,"timestamp":7341191382846,"id":1593,"parentId":882,"tags":{},"startTime":1776948137601,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":225,"timestamp":7341191382681,"id":1592,"parentId":882,"tags":{},"startTime":1776948137600,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":135485,"timestamp":7341191255328,"id":1579,"parentId":882,"tags":{},"startTime":1776948137473,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1167347,"timestamp":7341190223516,"id":882,"parentId":262,"tags":{"name":"client"},"startTime":1776948136441,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":75746,"timestamp":7341191390883,"id":1594,"parentId":262,"tags":{},"startTime":1776948137609,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":2065845,"timestamp":7341189401556,"id":117,"tags":{"trigger":"/dashboard","isTurbopack":false},"startTime":1776948135619,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":1735514,"timestamp":7341189732244,"id":262,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948135950,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":2284150,"timestamp":7341189389730,"id":115,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776948135607,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7341191673981,"id":1595,"parentId":115,"tags":{"url":"/dashboard","memory.rss":"521994240","memory.heapUsed":"200910840","memory.heapTotal":"271220736"},"startTime":1776948137892,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":36,"timestamp":7341193242147,"id":1596,"parentId":3,"tags":{},"startTime":1776948139460,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":2778,"timestamp":7341405070830,"id":1600,"parentId":1599,"tags":{},"startTime":1776948351289,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":522,"timestamp":7341405078530,"id":1602,"parentId":1601,"tags":{},"startTime":1776948351297,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":121,"timestamp":7341405079121,"id":1604,"parentId":1601,"tags":{},"startTime":1776948351297,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":14153,"timestamp":7341405079313,"id":1605,"parentId":1601,"tags":{},"startTime":1776948351297,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":8,"timestamp":7341405093511,"id":1606,"parentId":1601,"tags":{},"startTime":1776948351312,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":114,"timestamp":7341405096362,"id":1607,"parentId":1601,"tags":{},"startTime":1776948351314,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":17617,"timestamp":7341405079073,"id":1603,"parentId":1601,"tags":{},"startTime":1776948351297,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":27,"timestamp":7341405098571,"id":1608,"parentId":1601,"tags":{},"startTime":1776948351317,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":46,"timestamp":7341405098625,"id":1609,"parentId":1601,"tags":{},"startTime":1776948351317,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":442,"timestamp":7341405099099,"id":1610,"parentId":1601,"tags":{},"startTime":1776948351317,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":148,"timestamp":7341405099541,"id":1611,"parentId":1601,"tags":{},"startTime":1776948351318,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":54,"timestamp":7341405099645,"id":1612,"parentId":1601,"tags":{},"startTime":1776948351318,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":172,"timestamp":7341405099705,"id":1613,"parentId":1601,"tags":{},"startTime":1776948351318,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":24915,"timestamp":7341405078417,"id":1601,"parentId":1599,"tags":{},"startTime":1776948351296,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":58615,"timestamp":7341405066360,"id":1599,"parentId":1598,"tags":{"name":"server"},"startTime":1776948351284,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":57717,"timestamp":7341405125088,"id":1614,"parentId":1598,"tags":{},"startTime":1776948351343,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":11,"timestamp":7341405183640,"id":1616,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948351402,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":33497,"timestamp":7341405190740,"id":1619,"parentId":1618,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948351409,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":41200,"timestamp":7341405190924,"id":1623,"parentId":1618,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948351409,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":41298,"timestamp":7341405190911,"id":1621,"parentId":1618,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948351409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3335,"timestamp":7341405228884,"id":1628,"parentId":1627,"tags":{},"startTime":1776948351447,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":151684,"timestamp":7341405232286,"id":1630,"parentId":1629,"tags":{},"startTime":1776948351450,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":152437,"timestamp":7341405232246,"id":1629,"parentId":1627,"tags":{},"startTime":1776948351450,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":25251,"timestamp":7341405384727,"id":1631,"parentId":1627,"tags":{"astUsed":"true"},"startTime":1776948351603,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":218852,"timestamp":7341405228746,"id":1627,"parentId":1626,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776948351447,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":259306,"timestamp":7341405190899,"id":1620,"parentId":1618,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948351409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":242541,"timestamp":7341405217157,"id":1626,"parentId":1617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776948351435,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":106,"timestamp":7341405460873,"id":1632,"parentId":1626,"tags":{},"startTime":1776948351679,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":270131,"timestamp":7341405190917,"id":1622,"parentId":1618,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948351409,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":272268,"timestamp":7341405188840,"id":1618,"parentId":1617,"tags":{},"startTime":1776948351407,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1387,"timestamp":7341405505748,"id":1634,"parentId":1633,"tags":{},"startTime":1776948351724,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7341405507163,"id":1636,"parentId":1633,"tags":{},"startTime":1776948351725,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":44,"timestamp":7341405507197,"id":1637,"parentId":1633,"tags":{},"startTime":1776948351725,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7341405507259,"id":1638,"parentId":1633,"tags":{},"startTime":1776948351725,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7341405507277,"id":1639,"parentId":1633,"tags":{},"startTime":1776948351725,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":938,"timestamp":7341405507154,"id":1635,"parentId":1633,"tags":{},"startTime":1776948351725,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1131,"timestamp":7341405510750,"id":1640,"parentId":1633,"tags":{},"startTime":1776948351729,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":20826,"timestamp":7341405511978,"id":1641,"parentId":1633,"tags":{},"startTime":1776948351730,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":3695,"timestamp":7341405534813,"id":1642,"parentId":1633,"tags":{},"startTime":1776948351753,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":137,"timestamp":7341405538506,"id":1643,"parentId":1633,"tags":{},"startTime":1776948351757,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":54,"timestamp":7341405538633,"id":1644,"parentId":1633,"tags":{},"startTime":1776948351757,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1938,"timestamp":7341405538691,"id":1645,"parentId":1633,"tags":{},"startTime":1776948351757,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":119,"timestamp":7341405541903,"id":1647,"parentId":1617,"tags":{},"startTime":1776948351760,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":240,"timestamp":7341405541786,"id":1646,"parentId":1617,"tags":{},"startTime":1776948351760,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":39459,"timestamp":7341405504478,"id":1633,"parentId":1617,"tags":{},"startTime":1776948351723,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":355541,"timestamp":7341405188444,"id":1617,"parentId":1597,"tags":{"name":"client"},"startTime":1776948351406,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2105,"timestamp":7341405544011,"id":1648,"parentId":1597,"tags":{},"startTime":1776948351762,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":72,"timestamp":7341405546635,"id":1649,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948351765,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":4,"timestamp":7341405549200,"id":1652,"parentId":3,"tags":{},"startTime":1776948351767,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6424,"timestamp":7341405549696,"id":1653,"parentId":1651,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948351768,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9151,"timestamp":7341405549736,"id":1656,"parentId":1651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948351768,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11719,"timestamp":7341405549738,"id":1657,"parentId":1651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948351768,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11849,"timestamp":7341405549729,"id":1654,"parentId":1651,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948351768,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11849,"timestamp":7341405549733,"id":1655,"parentId":1651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948351768,"traceId":"d76ab653cbe90d54"},{"name":"next-client-pages-loader","duration":102,"timestamp":7341405562917,"id":1660,"parentId":1659,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1776948351781,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":2226,"timestamp":7341405562055,"id":1659,"parentId":1658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1776948351780,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":25000,"timestamp":7341405548165,"id":1664,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","[project]/src/app/(auth)/dashboard/page.tsx","[project]/src/components/market-temp.tsx","[project]/src/components/sector-heatmap.tsx","[project]/src/hooks/use-websocket.ts","[project]/src/lib/utils.ts","[project]/src/app/globals.css"],"page":"/dashboard","isPageHidden":false},"startTime":1776948351793,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":127495,"timestamp":7341405567583,"id":1663,"parentId":1662,"tags":{},"startTime":1776948351786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":127578,"timestamp":7341405567511,"id":1662,"parentId":1661,"tags":{},"startTime":1776948351786,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":133819,"timestamp":7341405567421,"id":1661,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1776948351785,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":153555,"timestamp":7341405549741,"id":1658,"parentId":1651,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776948351768,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":155212,"timestamp":7341405548127,"id":1651,"parentId":1650,"tags":{},"startTime":1776948351766,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1637,"timestamp":7341405706718,"id":1666,"parentId":1665,"tags":{},"startTime":1776948351925,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":5,"timestamp":7341405708376,"id":1668,"parentId":1665,"tags":{},"startTime":1776948351926,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":32,"timestamp":7341405708396,"id":1669,"parentId":1665,"tags":{},"startTime":1776948351926,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7341405708444,"id":1670,"parentId":1665,"tags":{},"startTime":1776948351926,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7341405708474,"id":1671,"parentId":1665,"tags":{},"startTime":1776948351927,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":845,"timestamp":7341405708369,"id":1667,"parentId":1665,"tags":{},"startTime":1776948351926,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":258,"timestamp":7341405713636,"id":1672,"parentId":1665,"tags":{},"startTime":1776948351932,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":1801,"timestamp":7341405713909,"id":1673,"parentId":1665,"tags":{},"startTime":1776948351932,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":3152,"timestamp":7341405717023,"id":1674,"parentId":1665,"tags":{},"startTime":1776948351935,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":130,"timestamp":7341405720174,"id":1675,"parentId":1665,"tags":{},"startTime":1776948351938,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":53,"timestamp":7341405720294,"id":1676,"parentId":1665,"tags":{},"startTime":1776948351938,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3283,"timestamp":7341405720349,"id":1677,"parentId":1665,"tags":{},"startTime":1776948351938,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":64,"timestamp":7341405724240,"id":1679,"parentId":1650,"tags":{},"startTime":1776948351942,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":134,"timestamp":7341405724177,"id":1678,"parentId":1650,"tags":{},"startTime":1776948351942,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":19367,"timestamp":7341405705909,"id":1665,"parentId":1650,"tags":{},"startTime":1776948351924,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":177531,"timestamp":7341405547863,"id":1650,"parentId":3,"tags":{"name":"client"},"startTime":1776948351766,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7996,"timestamp":7341405725432,"id":1680,"parentId":3,"tags":{},"startTime":1776948351943,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":1478,"timestamp":7341405736232,"id":1682,"parentId":1681,"tags":{},"startTime":1776948351954,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":15,"timestamp":7341405737861,"id":1684,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341405737885,"id":1686,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":8,"timestamp":7341405737895,"id":1687,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341405737910,"id":1688,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341405737921,"id":1689,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":52,"timestamp":7341405737882,"id":1685,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":4,"timestamp":7341405737988,"id":1690,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4,"timestamp":7341405737996,"id":1691,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":26,"timestamp":7341405738016,"id":1692,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":11,"timestamp":7341405738042,"id":1693,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":6,"timestamp":7341405738050,"id":1694,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7,"timestamp":7341405738058,"id":1695,"parentId":1683,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":445,"timestamp":7341405737841,"id":1683,"parentId":1681,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":2451,"timestamp":7341405735851,"id":1681,"parentId":1615,"tags":{"name":"edge-server"},"startTime":1776948351954,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7341405738674,"id":1697,"parentId":3,"tags":{},"startTime":1776948351957,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2908,"timestamp":7341405738334,"id":1696,"parentId":1615,"tags":{},"startTime":1776948351956,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":571471,"timestamp":7341405170127,"id":1615,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948351388,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":199000,"timestamp":7341405548404,"id":1701,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1776948351965,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module","duration":15605,"timestamp":7341405752962,"id":1702,"parentId":1700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776948351971,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27032,"timestamp":7341405745172,"id":1700,"parentId":1699,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948351963,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":37497,"timestamp":7341405742685,"id":1699,"parentId":1698,"tags":{},"startTime":1776948351961,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1074,"timestamp":7341405783348,"id":1706,"parentId":1705,"tags":{},"startTime":1776948352001,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341405784443,"id":1708,"parentId":1705,"tags":{},"startTime":1776948352002,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1414,"timestamp":7341405784457,"id":1709,"parentId":1705,"tags":{},"startTime":1776948352002,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7341405785891,"id":1710,"parentId":1705,"tags":{},"startTime":1776948352004,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":5,"timestamp":7341405785909,"id":1711,"parentId":1705,"tags":{},"startTime":1776948352004,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2153,"timestamp":7341405784434,"id":1707,"parentId":1705,"tags":{},"startTime":1776948352002,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":5131,"timestamp":7341405787330,"id":1712,"parentId":1705,"tags":{},"startTime":1776948352005,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2025,"timestamp":7341405792477,"id":1713,"parentId":1705,"tags":{},"startTime":1776948352011,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2357,"timestamp":7341405795452,"id":1714,"parentId":1705,"tags":{},"startTime":1776948352013,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":87,"timestamp":7341405797807,"id":1715,"parentId":1705,"tags":{},"startTime":1776948352016,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":41,"timestamp":7341405797888,"id":1716,"parentId":1705,"tags":{},"startTime":1776948352016,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4384,"timestamp":7341405797932,"id":1717,"parentId":1705,"tags":{},"startTime":1776948352016,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":21569,"timestamp":7341405782350,"id":1705,"parentId":1698,"tags":{},"startTime":1776948352000,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":62213,"timestamp":7341405742274,"id":1698,"parentId":3,"tags":{"name":"server"},"startTime":1776948351960,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":9062,"timestamp":7341405804510,"id":1718,"parentId":3,"tags":{},"startTime":1776948352023,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":606925,"timestamp":7341405207330,"id":1625,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776948351425,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":435,"timestamp":7341405813908,"id":1719,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948352032,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":9115,"timestamp":7341405820523,"id":1722,"parentId":1721,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948352039,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":24151,"timestamp":7341405815351,"id":1721,"parentId":1720,"tags":{},"startTime":1776948352033,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1938,"timestamp":7341405842365,"id":1726,"parentId":1725,"tags":{},"startTime":1776948352060,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":5,"timestamp":7341405844334,"id":1728,"parentId":1725,"tags":{},"startTime":1776948352062,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":983,"timestamp":7341405844352,"id":1729,"parentId":1725,"tags":{},"startTime":1776948352062,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7341405845357,"id":1730,"parentId":1725,"tags":{},"startTime":1776948352063,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":39,"timestamp":7341405845553,"id":1731,"parentId":1725,"tags":{},"startTime":1776948352064,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2264,"timestamp":7341405844324,"id":1727,"parentId":1725,"tags":{},"startTime":1776948352062,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":143,"timestamp":7341405848473,"id":1732,"parentId":1725,"tags":{},"startTime":1776948352067,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":587,"timestamp":7341405848631,"id":1733,"parentId":1725,"tags":{},"startTime":1776948352067,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":857,"timestamp":7341405849745,"id":1734,"parentId":1725,"tags":{},"startTime":1776948352068,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":92,"timestamp":7341405850601,"id":1735,"parentId":1725,"tags":{},"startTime":1776948352069,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":46,"timestamp":7341405850685,"id":1736,"parentId":1725,"tags":{},"startTime":1776948352069,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":120,"timestamp":7341405850734,"id":1737,"parentId":1725,"tags":{},"startTime":1776948352069,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":13389,"timestamp":7341405841610,"id":1725,"parentId":1720,"tags":{},"startTime":1776948352060,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":40587,"timestamp":7341405815130,"id":1720,"parentId":3,"tags":{"name":"server"},"startTime":1776948352033,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1510,"timestamp":7341405855742,"id":1738,"parentId":3,"tags":{},"startTime":1776948352074,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":701744,"timestamp":7341405203921,"id":1624,"tags":{"url":"/dashboard?_rsc=14m3d","isTurbopack":false},"startTime":1776948351422,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7341405905941,"id":1739,"parentId":1624,"tags":{"url":"/dashboard?_rsc=14m3d","memory.rss":"264617984","memory.heapUsed":"198814304","memory.heapTotal":"232865792"},"startTime":1776948352124,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":8527,"timestamp":7341405908313,"id":1740,"tags":{"url":"/dashboard?_rsc=14m3d","isTurbopack":false},"startTime":1776948352126,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7341405916871,"id":1741,"parentId":1740,"tags":{"url":"/dashboard?_rsc=14m3d","memory.rss":"264716288","memory.heapUsed":"199747944","memory.heapTotal":"232865792"},"startTime":1776948352135,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":38789,"timestamp":7341405945515,"id":1742,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776948352164,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7341405984404,"id":1743,"parentId":1742,"tags":{"url":"/dashboard","memory.rss":"264192000","memory.heapUsed":"203152512","memory.heapTotal":"233652224"},"startTime":1776948352202,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":12,"timestamp":7341406350984,"id":1744,"parentId":3,"tags":{},"startTime":1776948352569,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":33401,"timestamp":7341752181566,"id":1748,"parentId":1747,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948698400,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47240,"timestamp":7341752182076,"id":1752,"parentId":1747,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948698401,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47356,"timestamp":7341752182022,"id":1750,"parentId":1747,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948698401,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3399,"timestamp":7341752225999,"id":1755,"parentId":1754,"tags":{},"startTime":1776948698445,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":495963,"timestamp":7341752182010,"id":1749,"parentId":1747,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948698401,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":948563,"timestamp":7341752229514,"id":1757,"parentId":1756,"tags":{},"startTime":1776948698448,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":955663,"timestamp":7341752229432,"id":1756,"parentId":1754,"tags":{},"startTime":1776948698448,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":45513,"timestamp":7341753186504,"id":1760,"parentId":1754,"tags":{"astUsed":"true"},"startTime":1776948699405,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":1011401,"timestamp":7341752225597,"id":1754,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776948698444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":1053105,"timestamp":7341752205346,"id":1753,"parentId":1746,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776948698424,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":63,"timestamp":7341753269984,"id":1762,"parentId":1753,"tags":{},"startTime":1776948699488,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":1089002,"timestamp":7341752182065,"id":1751,"parentId":1747,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948698401,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":1093048,"timestamp":7341752179026,"id":1747,"parentId":1746,"tags":{},"startTime":1776948698398,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":9442,"timestamp":7341753538412,"id":1765,"parentId":1764,"tags":{},"startTime":1776948699757,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":6,"timestamp":7341753547892,"id":1767,"parentId":1764,"tags":{},"startTime":1776948699766,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":78,"timestamp":7341753547912,"id":1768,"parentId":1764,"tags":{},"startTime":1776948699766,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":47,"timestamp":7341753548109,"id":1769,"parentId":1764,"tags":{},"startTime":1776948699767,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":27,"timestamp":7341753548206,"id":1770,"parentId":1764,"tags":{},"startTime":1776948699767,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1393,"timestamp":7341753547880,"id":1766,"parentId":1764,"tags":{},"startTime":1776948699766,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":3408,"timestamp":7341753553852,"id":1771,"parentId":1764,"tags":{},"startTime":1776948699772,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3284,"timestamp":7341753557280,"id":1772,"parentId":1764,"tags":{},"startTime":1776948699776,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":142677,"timestamp":7341753567503,"id":1773,"parentId":1764,"tags":{},"startTime":1776948699786,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":544,"timestamp":7341753710177,"id":1774,"parentId":1764,"tags":{},"startTime":1776948699929,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":505,"timestamp":7341753710298,"id":1775,"parentId":1764,"tags":{},"startTime":1776948699929,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4638,"timestamp":7341753710812,"id":1776,"parentId":1764,"tags":{},"startTime":1776948699929,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":83,"timestamp":7341753716105,"id":1778,"parentId":1746,"tags":{},"startTime":1776948699935,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":216,"timestamp":7341753716060,"id":1777,"parentId":1746,"tags":{},"startTime":1776948699935,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":181177,"timestamp":7341753537161,"id":1764,"parentId":1746,"tags":{},"startTime":1776948699756,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1541402,"timestamp":7341752176989,"id":1746,"parentId":1745,"tags":{"name":"client"},"startTime":1776948698395,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":8369,"timestamp":7341753718427,"id":1779,"parentId":1745,"tags":{},"startTime":1776948699937,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":108,"timestamp":7341753728178,"id":1780,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948699947,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":4,"timestamp":7341753730677,"id":1783,"parentId":3,"tags":{},"startTime":1776948699949,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":27000,"timestamp":7341753731489,"id":1785,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1776948699978,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":43000,"timestamp":7341753731176,"id":1786,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/dashboard","isPageHidden":false},"startTime":1776948699994,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":77042,"timestamp":7341753777558,"id":1789,"parentId":1788,"tags":{},"startTime":1776948699996,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":77152,"timestamp":7341753777459,"id":1788,"parentId":1787,"tags":{},"startTime":1776948699996,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":78351,"timestamp":7341753777212,"id":1787,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776948699996,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":120261,"timestamp":7341753736046,"id":1784,"parentId":1782,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948699955,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30409,"timestamp":7341753861833,"id":1798,"parentId":1797,"tags":{},"startTime":1776948700080,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30492,"timestamp":7341753861762,"id":1797,"parentId":1796,"tags":{},"startTime":1776948700080,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":48355,"timestamp":7341753861590,"id":1796,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776948700080,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":188854,"timestamp":7341753729845,"id":1782,"parentId":1781,"tags":{},"startTime":1776948699948,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":911,"timestamp":7341753921089,"id":1800,"parentId":1799,"tags":{},"startTime":1776948700140,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7341753922018,"id":1802,"parentId":1799,"tags":{},"startTime":1776948700141,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":680,"timestamp":7341753922032,"id":1803,"parentId":1799,"tags":{},"startTime":1776948700141,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":22,"timestamp":7341753922805,"id":1804,"parentId":1799,"tags":{},"startTime":1776948700141,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7341753922855,"id":1805,"parentId":1799,"tags":{},"startTime":1776948700141,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1554,"timestamp":7341753922011,"id":1801,"parentId":1799,"tags":{},"startTime":1776948700141,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":3585,"timestamp":7341753927441,"id":1806,"parentId":1799,"tags":{},"startTime":1776948700146,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2769,"timestamp":7341753931041,"id":1807,"parentId":1799,"tags":{},"startTime":1776948700150,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":662,"timestamp":7341753934733,"id":1808,"parentId":1799,"tags":{},"startTime":1776948700153,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":59,"timestamp":7341753935395,"id":1809,"parentId":1799,"tags":{},"startTime":1776948700154,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":41,"timestamp":7341753935449,"id":1810,"parentId":1799,"tags":{},"startTime":1776948700154,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4552,"timestamp":7341753935492,"id":1811,"parentId":1799,"tags":{},"startTime":1776948700154,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":22150,"timestamp":7341753920038,"id":1799,"parentId":1781,"tags":{},"startTime":1776948700139,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":213626,"timestamp":7341753729362,"id":1781,"parentId":1758,"tags":{"name":"server"},"startTime":1776948699948,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":8795,"timestamp":7341753943028,"id":1812,"parentId":1758,"tags":{},"startTime":1776948700162,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":7,"timestamp":7341753952274,"id":1813,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948700171,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":3521,"timestamp":7341753953391,"id":1815,"parentId":1814,"tags":{},"startTime":1776948700172,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":17,"timestamp":7341753957148,"id":1817,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341753957174,"id":1819,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6,"timestamp":7341753957184,"id":1820,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341753957201,"id":1821,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341753957212,"id":1822,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":51,"timestamp":7341753957171,"id":1818,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":9,"timestamp":7341753957268,"id":1823,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4,"timestamp":7341753957281,"id":1824,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":25,"timestamp":7341753957298,"id":1825,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":8,"timestamp":7341753957323,"id":1826,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":3,"timestamp":7341753957329,"id":1827,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7,"timestamp":7341753957335,"id":1828,"parentId":1816,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":392,"timestamp":7341753957106,"id":1816,"parentId":1814,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":4354,"timestamp":7341753953156,"id":1814,"parentId":1759,"tags":{"name":"edge-server"},"startTime":1776948700172,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2478,"timestamp":7341753957519,"id":1829,"parentId":1759,"tags":{},"startTime":1776948700176,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":1258575,"timestamp":7341752701644,"id":1759,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948698920,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3749,"timestamp":7341753963325,"id":1838,"parentId":1831,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776948700182,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4119,"timestamp":7341753963281,"id":1832,"parentId":1831,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948700182,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":5766,"timestamp":7341753963318,"id":1835,"parentId":1831,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948700182,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8447,"timestamp":7341753963320,"id":1836,"parentId":1831,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948700182,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8583,"timestamp":7341753963312,"id":1833,"parentId":1831,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948700182,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8584,"timestamp":7341753963316,"id":1834,"parentId":1831,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948700182,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":31120,"timestamp":7341753966472,"id":1841,"parentId":1840,"tags":{},"startTime":1776948700185,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31200,"timestamp":7341753966406,"id":1840,"parentId":1839,"tags":{},"startTime":1776948700185,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":46681,"timestamp":7341753966250,"id":1839,"parentId":1830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776948700185,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":52488,"timestamp":7341753963323,"id":1837,"parentId":1831,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948700182,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":54471,"timestamp":7341753961373,"id":1831,"parentId":1830,"tags":{},"startTime":1776948700180,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":711,"timestamp":7341754017335,"id":1843,"parentId":1842,"tags":{},"startTime":1776948700236,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":7,"timestamp":7341754018061,"id":1845,"parentId":1842,"tags":{},"startTime":1776948700237,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":44,"timestamp":7341754018077,"id":1846,"parentId":1842,"tags":{},"startTime":1776948700237,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":13,"timestamp":7341754018134,"id":1847,"parentId":1842,"tags":{},"startTime":1776948700237,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341754018156,"id":1848,"parentId":1842,"tags":{},"startTime":1776948700237,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":471,"timestamp":7341754018057,"id":1844,"parentId":1842,"tags":{},"startTime":1776948700237,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":385,"timestamp":7341754019120,"id":1849,"parentId":1842,"tags":{},"startTime":1776948700238,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":1560,"timestamp":7341754019511,"id":1850,"parentId":1842,"tags":{},"startTime":1776948700238,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":3407,"timestamp":7341754022473,"id":1851,"parentId":1842,"tags":{},"startTime":1776948700241,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":156,"timestamp":7341754025878,"id":1852,"parentId":1842,"tags":{},"startTime":1776948700244,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":48,"timestamp":7341754026019,"id":1853,"parentId":1842,"tags":{},"startTime":1776948700245,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3913,"timestamp":7341754026071,"id":1854,"parentId":1842,"tags":{},"startTime":1776948700245,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":50,"timestamp":7341754030412,"id":1856,"parentId":1830,"tags":{},"startTime":1776948700249,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":113,"timestamp":7341754030353,"id":1855,"parentId":1830,"tags":{},"startTime":1776948700249,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":14505,"timestamp":7341754016736,"id":1842,"parentId":1830,"tags":{},"startTime":1776948700235,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":70084,"timestamp":7341753961174,"id":1830,"parentId":3,"tags":{"name":"client"},"startTime":1776948700180,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":5339,"timestamp":7341754031268,"id":1857,"parentId":3,"tags":{},"startTime":1776948700250,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":30,"timestamp":7341754036976,"id":1858,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948700255,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7341754038880,"id":1861,"parentId":3,"tags":{},"startTime":1776948700257,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3830,"timestamp":7341754039893,"id":1862,"parentId":1860,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948700258,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4211,"timestamp":7341754039931,"id":1863,"parentId":1860,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948700258,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":14094,"timestamp":7341754038293,"id":1860,"parentId":1859,"tags":{},"startTime":1776948700257,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":911,"timestamp":7341754053904,"id":1871,"parentId":1870,"tags":{},"startTime":1776948700272,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341754054834,"id":1873,"parentId":1870,"tags":{},"startTime":1776948700273,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":845,"timestamp":7341754054847,"id":1874,"parentId":1870,"tags":{},"startTime":1776948700273,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341754055708,"id":1875,"parentId":1870,"tags":{},"startTime":1776948700274,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":4,"timestamp":7341754055719,"id":1876,"parentId":1870,"tags":{},"startTime":1776948700274,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1245,"timestamp":7341754054829,"id":1872,"parentId":1870,"tags":{},"startTime":1776948700273,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":233,"timestamp":7341754056666,"id":1877,"parentId":1870,"tags":{},"startTime":1776948700275,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":657,"timestamp":7341754056907,"id":1878,"parentId":1870,"tags":{},"startTime":1776948700275,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":768,"timestamp":7341754058462,"id":1879,"parentId":1870,"tags":{},"startTime":1776948700277,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":61,"timestamp":7341754059230,"id":1880,"parentId":1870,"tags":{},"startTime":1776948700278,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":26,"timestamp":7341754059286,"id":1881,"parentId":1870,"tags":{},"startTime":1776948700278,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2462,"timestamp":7341754059318,"id":1882,"parentId":1870,"tags":{},"startTime":1776948700278,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":9616,"timestamp":7341754053369,"id":1870,"parentId":1859,"tags":{},"startTime":1776948700272,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":26127,"timestamp":7341754038090,"id":1859,"parentId":3,"tags":{"name":"server"},"startTime":1776948700257,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2412,"timestamp":7341754064234,"id":1883,"parentId":3,"tags":{},"startTime":1776948700283,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":2355,"timestamp":7341754071592,"id":1892,"parentId":1885,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776948700290,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":2609,"timestamp":7341754071540,"id":1886,"parentId":1885,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948700290,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3559,"timestamp":7341754071589,"id":1891,"parentId":1885,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948700290,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3571,"timestamp":7341754071583,"id":1889,"parentId":1885,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948700290,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5383,"timestamp":7341754071585,"id":1890,"parentId":1885,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948700290,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5497,"timestamp":7341754071572,"id":1887,"parentId":1885,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948700290,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5507,"timestamp":7341754071581,"id":1888,"parentId":1885,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948700290,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":9610,"timestamp":7341754067877,"id":1885,"parentId":1884,"tags":{},"startTime":1776948700286,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":912,"timestamp":7341754079337,"id":1894,"parentId":1893,"tags":{},"startTime":1776948700298,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341754080274,"id":1896,"parentId":1893,"tags":{},"startTime":1776948700299,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":20,"timestamp":7341754080285,"id":1897,"parentId":1893,"tags":{},"startTime":1776948700299,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341754080318,"id":1898,"parentId":1893,"tags":{},"startTime":1776948700299,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341754080328,"id":1899,"parentId":1893,"tags":{},"startTime":1776948700299,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":453,"timestamp":7341754080266,"id":1895,"parentId":1893,"tags":{},"startTime":1776948700299,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":85,"timestamp":7341754081159,"id":1900,"parentId":1893,"tags":{},"startTime":1776948700300,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":591,"timestamp":7341754081249,"id":1901,"parentId":1893,"tags":{},"startTime":1776948700300,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1611,"timestamp":7341754082469,"id":1902,"parentId":1893,"tags":{},"startTime":1776948700301,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":60,"timestamp":7341754084079,"id":1903,"parentId":1893,"tags":{},"startTime":1776948700303,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":26,"timestamp":7341754084133,"id":1904,"parentId":1893,"tags":{},"startTime":1776948700303,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2418,"timestamp":7341754084162,"id":1905,"parentId":1893,"tags":{},"startTime":1776948700303,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":56,"timestamp":7341754086765,"id":1907,"parentId":1884,"tags":{},"startTime":1776948700305,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":105,"timestamp":7341754086721,"id":1906,"parentId":1884,"tags":{},"startTime":1776948700305,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":8690,"timestamp":7341754078705,"id":1893,"parentId":1884,"tags":{},"startTime":1776948700297,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":19711,"timestamp":7341754067699,"id":1884,"parentId":3,"tags":{"name":"client"},"startTime":1776948700286,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2272,"timestamp":7341754087419,"id":1908,"parentId":3,"tags":{},"startTime":1776948700306,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":305154,"timestamp":7341753785090,"id":1791,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776948700004,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":2,"timestamp":7341754092458,"id":1909,"parentId":3,"tags":{},"startTime":1776948700311,"traceId":"d76ab653cbe90d54"},{"name":"client-full-reload","duration":2,"timestamp":7341754192035,"id":1910,"parentId":3,"tags":{"stackTrace":""},"startTime":1776948700411,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":410194,"timestamp":7341753783255,"id":1790,"tags":{"url":"/_next/static/webpack/729cb39162204235.webpack.hot-update.json","isTurbopack":false},"startTime":1776948700002,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7341754193668,"id":1911,"parentId":1790,"tags":{"url":"/_next/static/webpack/729cb39162204235.webpack.hot-update.json","memory.rss":"293666816","memory.heapUsed":"219495520","memory.heapTotal":"246661120"},"startTime":1776948700412,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":931564,"timestamp":7341753262265,"id":1761,"tags":{"url":"/dashboard?_rsc=1kfer","isTurbopack":false},"startTime":1776948699481,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7341754193843,"id":1912,"parentId":1761,"tags":{"url":"/dashboard?_rsc=1kfer","memory.rss":"293666816","memory.heapUsed":"219517520","memory.heapTotal":"246661120"},"startTime":1776948700412,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":125549,"timestamp":7341754207147,"id":1913,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776948700426,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7341754332786,"id":1914,"parentId":1913,"tags":{"url":"/dashboard","memory.rss":"289832960","memory.heapUsed":"208874096","memory.heapTotal":"245841920"},"startTime":1776948700551,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":15,"timestamp":7341754779107,"id":1915,"parentId":3,"tags":{},"startTime":1776948700998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15585,"timestamp":7341929227667,"id":1922,"parentId":1920,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875446,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":17079,"timestamp":7341929237463,"id":1923,"parentId":1921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776948875456,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":87075,"timestamp":7341929258437,"id":1926,"parentId":1925,"tags":{},"startTime":1776948875477,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":87218,"timestamp":7341929258302,"id":1925,"parentId":1924,"tags":{},"startTime":1776948875477,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":87939,"timestamp":7341929258092,"id":1924,"parentId":1923,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776948875477,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":120013,"timestamp":7341929227456,"id":1921,"parentId":1920,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875446,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":814,"timestamp":7341929354141,"id":1936,"parentId":1919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776948875573,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16203,"timestamp":7341929362199,"id":1939,"parentId":1938,"tags":{},"startTime":1776948875581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16345,"timestamp":7341929362066,"id":1938,"parentId":1937,"tags":{},"startTime":1776948875581,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":29623,"timestamp":7341929360910,"id":1937,"parentId":1936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776948875580,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7201,"timestamp":7341929397080,"id":1942,"parentId":1941,"tags":{},"startTime":1776948875616,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7265,"timestamp":7341929397025,"id":1941,"parentId":1940,"tags":{},"startTime":1776948875616,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":10638,"timestamp":7341929396920,"id":1940,"parentId":1937,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776948875616,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":187882,"timestamp":7341929223573,"id":1920,"parentId":1919,"tags":{},"startTime":1776948875442,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":942,"timestamp":7341929413115,"id":1944,"parentId":1943,"tags":{},"startTime":1776948875632,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7341929414068,"id":1946,"parentId":1943,"tags":{},"startTime":1776948875633,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":885,"timestamp":7341929414080,"id":1947,"parentId":1943,"tags":{},"startTime":1776948875633,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7341929414978,"id":1948,"parentId":1943,"tags":{},"startTime":1776948875634,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":12,"timestamp":7341929415333,"id":1949,"parentId":1943,"tags":{},"startTime":1776948875634,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2074,"timestamp":7341929414063,"id":1945,"parentId":1943,"tags":{},"startTime":1776948875633,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":382,"timestamp":7341929416867,"id":1950,"parentId":1943,"tags":{},"startTime":1776948875636,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2055,"timestamp":7341929417261,"id":1951,"parentId":1943,"tags":{},"startTime":1776948875636,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":3363,"timestamp":7341929420394,"id":1952,"parentId":1943,"tags":{},"startTime":1776948875639,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":52,"timestamp":7341929423757,"id":1953,"parentId":1943,"tags":{},"startTime":1776948875643,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":25,"timestamp":7341929423803,"id":1954,"parentId":1943,"tags":{},"startTime":1776948875643,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4243,"timestamp":7341929423830,"id":1955,"parentId":1943,"tags":{},"startTime":1776948875643,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":17102,"timestamp":7341929412620,"id":1943,"parentId":1919,"tags":{},"startTime":1776948875631,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":208046,"timestamp":7341929222624,"id":1919,"parentId":1917,"tags":{"name":"server"},"startTime":1776948875441,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4142,"timestamp":7341929430692,"id":1956,"parentId":1917,"tags":{},"startTime":1776948875649,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":219009,"timestamp":7341929216156,"id":1917,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948875435,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14493,"timestamp":7341929440603,"id":1959,"parentId":1958,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948875659,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16537,"timestamp":7341929440642,"id":1964,"parentId":1958,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948875659,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16548,"timestamp":7341929440638,"id":1962,"parentId":1958,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948875659,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26830,"timestamp":7341929440640,"id":1963,"parentId":1958,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948875659,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":29884,"timestamp":7341929440631,"id":1960,"parentId":1958,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948875659,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":29887,"timestamp":7341929440635,"id":1961,"parentId":1958,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948875659,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":23196,"timestamp":7341929483986,"id":1966,"parentId":1965,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776948875703,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17861,"timestamp":7341929508065,"id":1969,"parentId":1968,"tags":{},"startTime":1776948875727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17946,"timestamp":7341929507990,"id":1968,"parentId":1967,"tags":{},"startTime":1776948875727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":26452,"timestamp":7341929507871,"id":1967,"parentId":1966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776948875727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3946,"timestamp":7341929535962,"id":1972,"parentId":1971,"tags":{},"startTime":1776948875755,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3998,"timestamp":7341929535914,"id":1971,"parentId":1970,"tags":{},"startTime":1776948875755,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":7823,"timestamp":7341929535777,"id":1970,"parentId":1967,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776948875755,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":104084,"timestamp":7341929440647,"id":1965,"parentId":1958,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948875659,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":108498,"timestamp":7341929436264,"id":1958,"parentId":1957,"tags":{},"startTime":1776948875655,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":724,"timestamp":7341929546339,"id":1974,"parentId":1973,"tags":{},"startTime":1776948875765,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7341929547075,"id":1976,"parentId":1973,"tags":{},"startTime":1776948875766,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":19,"timestamp":7341929547090,"id":1977,"parentId":1973,"tags":{},"startTime":1776948875766,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341929547118,"id":1978,"parentId":1973,"tags":{},"startTime":1776948875766,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":4,"timestamp":7341929547133,"id":1979,"parentId":1973,"tags":{},"startTime":1776948875766,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":642,"timestamp":7341929547071,"id":1975,"parentId":1973,"tags":{},"startTime":1776948875766,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":263,"timestamp":7341929548151,"id":1980,"parentId":1973,"tags":{},"startTime":1776948875767,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2049,"timestamp":7341929548419,"id":1981,"parentId":1973,"tags":{},"startTime":1776948875767,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2947,"timestamp":7341929551385,"id":1982,"parentId":1973,"tags":{},"startTime":1776948875770,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":221,"timestamp":7341929554331,"id":1983,"parentId":1973,"tags":{},"startTime":1776948875773,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":45,"timestamp":7341929554539,"id":1984,"parentId":1973,"tags":{},"startTime":1776948875773,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":5170,"timestamp":7341929554588,"id":1985,"parentId":1973,"tags":{},"startTime":1776948875773,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":112,"timestamp":7341929560416,"id":1987,"parentId":1957,"tags":{},"startTime":1776948875779,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":209,"timestamp":7341929560324,"id":1986,"parentId":1957,"tags":{},"startTime":1776948875779,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":15654,"timestamp":7341929545690,"id":1973,"parentId":1957,"tags":{},"startTime":1776948875764,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":125377,"timestamp":7341929435989,"id":1957,"parentId":1935,"tags":{"name":"client"},"startTime":1776948875655,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4210,"timestamp":7341929561382,"id":1988,"parentId":1935,"tags":{},"startTime":1776948875780,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":349796,"timestamp":7341929216233,"id":1918,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1776948875435,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":218004,"timestamp":7341929348553,"id":1935,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948875567,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":2,"timestamp":7341929568018,"id":1989,"parentId":3,"tags":{},"startTime":1776948875787,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":388139,"timestamp":7341929198887,"id":1916,"tags":{"url":"/recommendations?_rsc=fd642","isTurbopack":false},"startTime":1776948875418,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7341929587067,"id":2004,"parentId":1916,"tags":{"url":"/recommendations?_rsc=fd642","memory.rss":"260325376","memory.heapUsed":"202746256","memory.heapTotal":"231292928"},"startTime":1776948875806,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6317,"timestamp":7341929584058,"id":2003,"parentId":1995,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6673,"timestamp":7341929583945,"id":1996,"parentId":1995,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10304,"timestamp":7341929584052,"id":2002,"parentId":1995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14665,"timestamp":7341929583993,"id":2001,"parentId":1995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16557,"timestamp":7341929583988,"id":1999,"parentId":1995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16572,"timestamp":7341929583990,"id":2000,"parentId":1995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16667,"timestamp":7341929583985,"id":1998,"parentId":1995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16833,"timestamp":7341929583979,"id":1997,"parentId":1995,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948875803,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":28952,"timestamp":7341929571888,"id":1995,"parentId":1994,"tags":{},"startTime":1776948875791,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":820,"timestamp":7341929602372,"id":2007,"parentId":2006,"tags":{},"startTime":1776948875821,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7341929603216,"id":2009,"parentId":2006,"tags":{},"startTime":1776948875822,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":30,"timestamp":7341929603231,"id":2010,"parentId":2006,"tags":{},"startTime":1776948875822,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7341929603278,"id":2011,"parentId":2006,"tags":{},"startTime":1776948875822,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7341929603290,"id":2012,"parentId":2006,"tags":{},"startTime":1776948875822,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":563,"timestamp":7341929603208,"id":2008,"parentId":2006,"tags":{},"startTime":1776948875822,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":197,"timestamp":7341929604307,"id":2013,"parentId":2006,"tags":{},"startTime":1776948875823,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":731,"timestamp":7341929604511,"id":2014,"parentId":2006,"tags":{},"startTime":1776948875823,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1473,"timestamp":7341929605966,"id":2015,"parentId":2006,"tags":{},"startTime":1776948875825,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":84,"timestamp":7341929607440,"id":2016,"parentId":2006,"tags":{},"startTime":1776948875826,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":25,"timestamp":7341929607517,"id":2017,"parentId":2006,"tags":{},"startTime":1776948875826,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":937,"timestamp":7341929607545,"id":2018,"parentId":2006,"tags":{},"startTime":1776948875826,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":142,"timestamp":7341929609072,"id":2020,"parentId":1994,"tags":{},"startTime":1776948875828,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":237,"timestamp":7341929608981,"id":2019,"parentId":1994,"tags":{},"startTime":1776948875828,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":8270,"timestamp":7341929601678,"id":2006,"parentId":1994,"tags":{},"startTime":1776948875820,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":38294,"timestamp":7341929571671,"id":1994,"parentId":1991,"tags":{"name":"client"},"startTime":1776948875790,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2291,"timestamp":7341929609978,"id":2021,"parentId":1991,"tags":{},"startTime":1776948875829,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":41698,"timestamp":7341929570887,"id":1991,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948875790,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7341929616947,"id":2024,"parentId":3,"tags":{},"startTime":1776948875836,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4111,"timestamp":7341929618291,"id":2027,"parentId":2023,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875837,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4304,"timestamp":7341929618258,"id":2025,"parentId":2023,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875837,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4498,"timestamp":7341929618287,"id":2026,"parentId":2023,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875837,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":16511,"timestamp":7341929613975,"id":2023,"parentId":2022,"tags":{},"startTime":1776948875833,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":842,"timestamp":7341929631545,"id":2039,"parentId":2038,"tags":{},"startTime":1776948875850,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341929632398,"id":2041,"parentId":2038,"tags":{},"startTime":1776948875851,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1010,"timestamp":7341929632410,"id":2042,"parentId":2038,"tags":{},"startTime":1776948875851,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341929633429,"id":2043,"parentId":2038,"tags":{},"startTime":1776948875852,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7341929633438,"id":2044,"parentId":2038,"tags":{},"startTime":1776948875852,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1536,"timestamp":7341929632393,"id":2040,"parentId":2038,"tags":{},"startTime":1776948875851,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":185,"timestamp":7341929635549,"id":2045,"parentId":2038,"tags":{},"startTime":1776948875854,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":590,"timestamp":7341929635739,"id":2046,"parentId":2038,"tags":{},"startTime":1776948875854,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":498,"timestamp":7341929636768,"id":2047,"parentId":2038,"tags":{},"startTime":1776948875856,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":41,"timestamp":7341929637266,"id":2048,"parentId":2038,"tags":{},"startTime":1776948875856,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":23,"timestamp":7341929637303,"id":2049,"parentId":2038,"tags":{},"startTime":1776948875856,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":136,"timestamp":7341929637329,"id":2050,"parentId":2038,"tags":{},"startTime":1776948875856,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":7260,"timestamp":7341929631067,"id":2038,"parentId":2022,"tags":{},"startTime":1776948875850,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":25762,"timestamp":7341929613659,"id":2022,"parentId":1993,"tags":{"name":"server"},"startTime":1776948875832,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1532,"timestamp":7341929639433,"id":2051,"parentId":1993,"tags":{},"startTime":1776948875858,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":70379,"timestamp":7341929570900,"id":1992,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776948875790,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":246,"timestamp":7341929641108,"id":2052,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948875860,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":5360,"timestamp":7341929646464,"id":2057,"parentId":2054,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875865,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5523,"timestamp":7341929646438,"id":2055,"parentId":2054,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875865,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5851,"timestamp":7341929646461,"id":2056,"parentId":2054,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948875865,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":17700,"timestamp":7341929642387,"id":2054,"parentId":2053,"tags":{},"startTime":1776948875861,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":716,"timestamp":7341929661264,"id":2069,"parentId":2068,"tags":{},"startTime":1776948875880,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7341929661990,"id":2071,"parentId":2068,"tags":{},"startTime":1776948875881,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":971,"timestamp":7341929662001,"id":2072,"parentId":2068,"tags":{},"startTime":1776948875881,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7341929662983,"id":2073,"parentId":2068,"tags":{},"startTime":1776948875882,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7341929662994,"id":2074,"parentId":2068,"tags":{},"startTime":1776948875882,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1296,"timestamp":7341929661986,"id":2070,"parentId":2068,"tags":{},"startTime":1776948875881,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":145,"timestamp":7341929663830,"id":2075,"parentId":2068,"tags":{},"startTime":1776948875883,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":632,"timestamp":7341929663980,"id":2076,"parentId":2068,"tags":{},"startTime":1776948875883,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":465,"timestamp":7341929665019,"id":2077,"parentId":2068,"tags":{},"startTime":1776948875884,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":32,"timestamp":7341929665483,"id":2078,"parentId":2068,"tags":{},"startTime":1776948875884,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":20,"timestamp":7341929665512,"id":2079,"parentId":2068,"tags":{},"startTime":1776948875884,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":63,"timestamp":7341929665534,"id":2080,"parentId":2068,"tags":{},"startTime":1776948875884,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":5561,"timestamp":7341929660770,"id":2068,"parentId":2053,"tags":{},"startTime":1776948875880,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":26788,"timestamp":7341929642242,"id":2053,"parentId":3,"tags":{"name":"server"},"startTime":1776948875861,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1753,"timestamp":7341929669054,"id":2081,"parentId":3,"tags":{},"startTime":1776948875888,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":85713,"timestamp":7341929599809,"id":2005,"tags":{"url":"/recommendations?_rsc=h601u","isTurbopack":false},"startTime":1776948875819,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7341929685544,"id":2082,"parentId":2005,"tags":{"url":"/recommendations?_rsc=h601u","memory.rss":"277495808","memory.heapUsed":"212850096","memory.heapTotal":"241516544"},"startTime":1776948875904,"traceId":"d76ab653cbe90d54"},{"name":"client-full-reload","duration":1,"timestamp":7341929696460,"id":2083,"parentId":3,"tags":{"stackTrace":""},"startTime":1776948875915,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":127436,"timestamp":7341929569870,"id":1990,"tags":{"url":"/_next/static/webpack/37fc23f7da26da7d.webpack.hot-update.json","isTurbopack":false},"startTime":1776948875789,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7341929697324,"id":2084,"parentId":1990,"tags":{"url":"/_next/static/webpack/37fc23f7da26da7d.webpack.hot-update.json","memory.rss":"278331392","memory.heapUsed":"215290488","memory.heapTotal":"241778688"},"startTime":1776948875916,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":33370,"timestamp":7341929711963,"id":2085,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776948875931,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7341929745366,"id":2086,"parentId":2085,"tags":{"url":"/dashboard","memory.rss":"281804800","memory.heapUsed":"219447392","memory.heapTotal":"243220480"},"startTime":1776948875964,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":5,"timestamp":7341930086607,"id":2087,"parentId":3,"tags":{},"startTime":1776948876305,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":9718,"timestamp":7341932390215,"id":2088,"tags":{"url":"/recommendations?_rsc=fd642","isTurbopack":false},"startTime":1776948878609,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7341932400063,"id":2089,"parentId":2088,"tags":{"url":"/recommendations?_rsc=fd642","memory.rss":"169639936","memory.heapUsed":"214349464","memory.heapTotal":"242614272"},"startTime":1776948878619,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":6745,"timestamp":7341932403735,"id":2090,"tags":{"url":"/recommendations?_rsc=h601u","isTurbopack":false},"startTime":1776948878622,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7341932410500,"id":2091,"parentId":2090,"tags":{"url":"/recommendations?_rsc=h601u","memory.rss":"172212224","memory.heapUsed":"215902360","memory.heapTotal":"242614272"},"startTime":1776948878629,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19753,"timestamp":7342016866830,"id":2095,"parentId":2094,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948963086,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26277,"timestamp":7342016866907,"id":2100,"parentId":2094,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948963086,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":39269,"timestamp":7342016866904,"id":2099,"parentId":2094,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948963086,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":41942,"timestamp":7342016866899,"id":2097,"parentId":2094,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948963086,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":45476,"timestamp":7342016866890,"id":2096,"parentId":2094,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948963086,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7057,"timestamp":7342016972404,"id":2103,"parentId":2102,"tags":{},"startTime":1776948963191,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":169989,"timestamp":7342016980438,"id":2105,"parentId":2104,"tags":{},"startTime":1776948963199,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":172173,"timestamp":7342016979585,"id":2104,"parentId":2102,"tags":{},"startTime":1776948963198,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":18931,"timestamp":7342017151883,"id":2106,"parentId":2102,"tags":{"astUsed":"true"},"startTime":1776948963371,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":202003,"timestamp":7342016972046,"id":2102,"parentId":2101,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776948963191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1139,"timestamp":7342017179019,"id":2110,"parentId":2109,"tags":{},"startTime":1776948963398,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9304,"timestamp":7342017178971,"id":2109,"parentId":2102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1776948963398,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":310100,"timestamp":7342016882420,"id":2101,"parentId":2093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776948963101,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":67,"timestamp":7342017193511,"id":2111,"parentId":2101,"tags":{},"startTime":1776948963412,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":326751,"timestamp":7342016866902,"id":2098,"parentId":2094,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948963086,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":327321,"timestamp":7342016866346,"id":2094,"parentId":2093,"tags":{},"startTime":1776948963085,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1050,"timestamp":7342017195363,"id":2113,"parentId":2112,"tags":{},"startTime":1776948963414,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":7,"timestamp":7342017196438,"id":2115,"parentId":2112,"tags":{},"startTime":1776948963415,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":44,"timestamp":7342017196459,"id":2116,"parentId":2112,"tags":{},"startTime":1776948963415,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342017196521,"id":2117,"parentId":2112,"tags":{},"startTime":1776948963415,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342017196542,"id":2118,"parentId":2112,"tags":{},"startTime":1776948963415,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":807,"timestamp":7342017196432,"id":2114,"parentId":2112,"tags":{},"startTime":1776948963415,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":172,"timestamp":7342017198568,"id":2119,"parentId":2112,"tags":{},"startTime":1776948963417,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":679,"timestamp":7342017198750,"id":2120,"parentId":2112,"tags":{},"startTime":1776948963418,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2392,"timestamp":7342017200183,"id":2121,"parentId":2112,"tags":{},"startTime":1776948963419,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":110,"timestamp":7342017202574,"id":2122,"parentId":2112,"tags":{},"startTime":1776948963421,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":31,"timestamp":7342017202678,"id":2123,"parentId":2112,"tags":{},"startTime":1776948963422,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1041,"timestamp":7342017202711,"id":2124,"parentId":2112,"tags":{},"startTime":1776948963422,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":95,"timestamp":7342017204244,"id":2126,"parentId":2093,"tags":{},"startTime":1776948963423,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":131,"timestamp":7342017204213,"id":2125,"parentId":2093,"tags":{},"startTime":1776948963423,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":10371,"timestamp":7342017194650,"id":2112,"parentId":2093,"tags":{},"startTime":1776948963414,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":343105,"timestamp":7342016861938,"id":2093,"parentId":2092,"tags":{"name":"client"},"startTime":1776948963081,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":5587,"timestamp":7342017205057,"id":2127,"parentId":2092,"tags":{},"startTime":1776948963424,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":31,"timestamp":7342017211177,"id":2129,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948963430,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":1,"timestamp":7342017213321,"id":2133,"parentId":3,"tags":{},"startTime":1776948963432,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5913,"timestamp":7342017215684,"id":2134,"parentId":2131,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948963435,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":9000,"timestamp":7342017211771,"id":2139,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","[project]/src/app/(auth)/recommendations/page.tsx","[project]/src/components/stock-card.tsx","[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","[project]/node_modules/next/dist/client/components/not-found-error.js","[project]/src/app/globals.css"],"page":"/recommendations","isPageHidden":false},"startTime":1776948963442,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":16501,"timestamp":7342017212548,"id":2131,"parentId":2130,"tags":{},"startTime":1776948963431,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":605,"timestamp":7342017230259,"id":2141,"parentId":2140,"tags":{},"startTime":1776948963449,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342017230877,"id":2143,"parentId":2140,"tags":{},"startTime":1776948963450,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":618,"timestamp":7342017230890,"id":2144,"parentId":2140,"tags":{},"startTime":1776948963450,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342017231526,"id":2145,"parentId":2140,"tags":{},"startTime":1776948963450,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":4,"timestamp":7342017231554,"id":2146,"parentId":2140,"tags":{},"startTime":1776948963450,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1249,"timestamp":7342017230872,"id":2142,"parentId":2140,"tags":{},"startTime":1776948963450,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":140,"timestamp":7342017232632,"id":2147,"parentId":2140,"tags":{},"startTime":1776948963452,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2059,"timestamp":7342017232776,"id":2148,"parentId":2140,"tags":{},"startTime":1776948963452,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1132,"timestamp":7342017235398,"id":2149,"parentId":2140,"tags":{},"startTime":1776948963454,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":84,"timestamp":7342017236529,"id":2150,"parentId":2140,"tags":{},"startTime":1776948963455,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":38,"timestamp":7342017236606,"id":2151,"parentId":2140,"tags":{},"startTime":1776948963455,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":458,"timestamp":7342017236649,"id":2152,"parentId":2140,"tags":{},"startTime":1776948963456,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":10899,"timestamp":7342017229764,"id":2140,"parentId":2130,"tags":{},"startTime":1776948963449,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":28828,"timestamp":7342017212314,"id":2130,"parentId":2107,"tags":{"name":"server"},"startTime":1776948963431,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3643,"timestamp":7342017241159,"id":2153,"parentId":2107,"tags":{},"startTime":1776948963460,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":6,"timestamp":7342017245183,"id":2154,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948963464,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4979,"timestamp":7342017249639,"id":2158,"parentId":2156,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948963469,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5247,"timestamp":7342017249604,"id":2157,"parentId":2156,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776948963468,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":15348,"timestamp":7342017246242,"id":2156,"parentId":2155,"tags":{},"startTime":1776948963465,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":915,"timestamp":7342017263020,"id":2166,"parentId":2165,"tags":{},"startTime":1776948963482,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342017263952,"id":2168,"parentId":2165,"tags":{},"startTime":1776948963483,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":803,"timestamp":7342017263966,"id":2169,"parentId":2165,"tags":{},"startTime":1776948963483,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342017264785,"id":2170,"parentId":2165,"tags":{},"startTime":1776948963484,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342017264799,"id":2171,"parentId":2165,"tags":{},"startTime":1776948963484,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1169,"timestamp":7342017263949,"id":2167,"parentId":2165,"tags":{},"startTime":1776948963483,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":213,"timestamp":7342017265601,"id":2172,"parentId":2165,"tags":{},"startTime":1776948963484,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":702,"timestamp":7342017265820,"id":2173,"parentId":2165,"tags":{},"startTime":1776948963485,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":572,"timestamp":7342017267181,"id":2174,"parentId":2165,"tags":{},"startTime":1776948963486,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":149,"timestamp":7342017267753,"id":2175,"parentId":2165,"tags":{},"startTime":1776948963487,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":23,"timestamp":7342017267897,"id":2176,"parentId":2165,"tags":{},"startTime":1776948963487,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":615,"timestamp":7342017267923,"id":2177,"parentId":2165,"tags":{},"startTime":1776948963487,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":8404,"timestamp":7342017262471,"id":2165,"parentId":2155,"tags":{},"startTime":1776948963481,"traceId":"d76ab653cbe90d54"}]
-[{"name":"webpack-compilation","duration":27123,"timestamp":7342017246075,"id":2155,"parentId":3,"tags":{"name":"server"},"startTime":1776948963465,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":5603,"timestamp":7342017273223,"id":2178,"parentId":3,"tags":{},"startTime":1776948963492,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":2192,"timestamp":7342017280224,"id":2180,"parentId":2179,"tags":{},"startTime":1776948963499,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":15,"timestamp":7342017282622,"id":2182,"parentId":2181,"tags":{},"startTime":1776948963501,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342017282646,"id":2184,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6,"timestamp":7342017282656,"id":2185,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":2,"timestamp":7342017282668,"id":2186,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":1,"timestamp":7342017282679,"id":2187,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":46,"timestamp":7342017282642,"id":2183,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2,"timestamp":7342017282730,"id":2188,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3,"timestamp":7342017282736,"id":2189,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":23,"timestamp":7342017282752,"id":2190,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":8,"timestamp":7342017282775,"id":2191,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":4,"timestamp":7342017282781,"id":2192,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6,"timestamp":7342017282787,"id":2193,"parentId":2181,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":515,"timestamp":7342017282605,"id":2181,"parentId":2179,"tags":{},"startTime":1776948963501,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":3462,"timestamp":7342017279671,"id":2179,"parentId":2108,"tags":{"name":"edge-server"},"startTime":1776948963499,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1092,"timestamp":7342017283141,"id":2194,"parentId":2108,"tags":{},"startTime":1776948963502,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":107762,"timestamp":7342017176694,"id":2108,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948963396,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":2955,"timestamp":7342017286177,"id":2203,"parentId":2196,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776948963505,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3294,"timestamp":7342017286126,"id":2197,"parentId":2196,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948963505,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4561,"timestamp":7342017286175,"id":2202,"parentId":2196,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948963505,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4576,"timestamp":7342017286168,"id":2200,"parentId":2196,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948963505,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7085,"timestamp":7342017286170,"id":2201,"parentId":2196,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948963505,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7168,"timestamp":7342017286161,"id":2198,"parentId":2196,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948963505,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7171,"timestamp":7342017286165,"id":2199,"parentId":2196,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948963505,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":7773,"timestamp":7342017285587,"id":2196,"parentId":2195,"tags":{},"startTime":1776948963504,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3370,"timestamp":7342017296256,"id":2205,"parentId":2204,"tags":{},"startTime":1776948963515,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":7,"timestamp":7342017299965,"id":2207,"parentId":2204,"tags":{},"startTime":1776948963519,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":31,"timestamp":7342017299986,"id":2208,"parentId":2204,"tags":{},"startTime":1776948963519,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7342017300193,"id":2209,"parentId":2204,"tags":{},"startTime":1776948963519,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342017300210,"id":2210,"parentId":2204,"tags":{},"startTime":1776948963519,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1177,"timestamp":7342017299720,"id":2206,"parentId":2204,"tags":{},"startTime":1776948963519,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":700,"timestamp":7342017301363,"id":2211,"parentId":2204,"tags":{},"startTime":1776948963520,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":756,"timestamp":7342017302071,"id":2212,"parentId":2204,"tags":{},"startTime":1776948963521,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2848,"timestamp":7342017303882,"id":2213,"parentId":2204,"tags":{},"startTime":1776948963523,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":306,"timestamp":7342017306730,"id":2214,"parentId":2204,"tags":{},"startTime":1776948963526,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":31,"timestamp":7342017307028,"id":2215,"parentId":2204,"tags":{},"startTime":1776948963526,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4113,"timestamp":7342017307064,"id":2216,"parentId":2204,"tags":{},"startTime":1776948963526,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":48,"timestamp":7342017311723,"id":2218,"parentId":2195,"tags":{},"startTime":1776948963531,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":93,"timestamp":7342017311683,"id":2217,"parentId":2195,"tags":{},"startTime":1776948963531,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":17563,"timestamp":7342017294894,"id":2204,"parentId":2195,"tags":{},"startTime":1776948963514,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":27193,"timestamp":7342017285282,"id":2195,"parentId":3,"tags":{"name":"client"},"startTime":1776948963504,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1976,"timestamp":7342017312488,"id":2219,"parentId":3,"tags":{},"startTime":1776948963531,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":101767,"timestamp":7342017213201,"id":2132,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776948963432,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":437,"timestamp":7342017314730,"id":2220,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776948963534,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":1,"timestamp":7342017316948,"id":2223,"parentId":3,"tags":{},"startTime":1776948963536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10196,"timestamp":7342017317666,"id":2230,"parentId":2222,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776948963537,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10591,"timestamp":7342017317621,"id":2224,"parentId":2222,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776948963536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11550,"timestamp":7342017317664,"id":2229,"parentId":2222,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948963537,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":15000,"timestamp":7342017314978,"id":2231,"parentId":3,"tags":{"updatedModules":[],"page":"/recommendations","isPageHidden":false},"startTime":1776948963550,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14102,"timestamp":7342017317661,"id":2228,"parentId":2222,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776948963537,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14172,"timestamp":7342017317659,"id":2227,"parentId":2222,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776948963537,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14182,"timestamp":7342017317655,"id":2226,"parentId":2222,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776948963537,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15834,"timestamp":7342017317651,"id":2225,"parentId":2222,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776948963537,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":17222,"timestamp":7342017316290,"id":2222,"parentId":2221,"tags":{},"startTime":1776948963535,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":732,"timestamp":7342017334746,"id":2233,"parentId":2232,"tags":{},"startTime":1776948963554,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342017335487,"id":2235,"parentId":2232,"tags":{},"startTime":1776948963554,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":19,"timestamp":7342017335497,"id":2236,"parentId":2232,"tags":{},"startTime":1776948963554,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":2,"timestamp":7342017335525,"id":2237,"parentId":2232,"tags":{},"startTime":1776948963554,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342017335536,"id":2238,"parentId":2232,"tags":{},"startTime":1776948963554,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":389,"timestamp":7342017335484,"id":2234,"parentId":2232,"tags":{},"startTime":1776948963554,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":125,"timestamp":7342017336301,"id":2239,"parentId":2232,"tags":{},"startTime":1776948963555,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":726,"timestamp":7342017336430,"id":2240,"parentId":2232,"tags":{},"startTime":1776948963555,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1676,"timestamp":7342017337758,"id":2241,"parentId":2232,"tags":{},"startTime":1776948963557,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":69,"timestamp":7342017339433,"id":2242,"parentId":2232,"tags":{},"startTime":1776948963558,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":25,"timestamp":7342017339496,"id":2243,"parentId":2232,"tags":{},"startTime":1776948963558,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3139,"timestamp":7342017339523,"id":2244,"parentId":2232,"tags":{},"startTime":1776948963558,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":45,"timestamp":7342017342936,"id":2246,"parentId":2221,"tags":{},"startTime":1776948963562,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":86,"timestamp":7342017342897,"id":2245,"parentId":2221,"tags":{},"startTime":1776948963562,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":10530,"timestamp":7342017334111,"id":2232,"parentId":2221,"tags":{},"startTime":1776948963553,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":28609,"timestamp":7342017316111,"id":2221,"parentId":3,"tags":{"name":"client"},"startTime":1776948963535,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2974,"timestamp":7342017344739,"id":2247,"parentId":3,"tags":{},"startTime":1776948963564,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7342017352549,"id":2248,"parentId":3,"tags":{},"startTime":1776948963571,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":161708,"timestamp":7342017206812,"id":2128,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1776948963426,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342017368544,"id":2249,"parentId":2128,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"261177344","memory.heapUsed":"213733704","memory.heapTotal":"243728384"},"startTime":1776948963587,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":5706,"timestamp":7342017369531,"id":2250,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1776948963588,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342017375259,"id":2251,"parentId":2250,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"261324800","memory.heapUsed":"214696832","memory.heapTotal":"243728384"},"startTime":1776948963594,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":28146,"timestamp":7342017380935,"id":2252,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776948963600,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7342017409150,"id":2253,"parentId":2252,"tags":{"url":"/recommendations","memory.rss":"261914624","memory.heapUsed":"217794224","memory.heapTotal":"243990528"},"startTime":1776948963628,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":29,"timestamp":7342017903224,"id":2254,"parentId":3,"tags":{},"startTime":1776948964122,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36965,"timestamp":7342131764807,"id":2258,"parentId":2257,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949077984,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47053,"timestamp":7342131765106,"id":2263,"parentId":2257,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949077984,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":56807,"timestamp":7342131765101,"id":2262,"parentId":2257,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949077984,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":56866,"timestamp":7342131765096,"id":2260,"parentId":2257,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949077984,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7164,"timestamp":7342131814809,"id":2266,"parentId":2265,"tags":{},"startTime":1776949078034,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":69228,"timestamp":7342131765090,"id":2259,"parentId":2257,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949077984,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":89202,"timestamp":7342131822069,"id":2268,"parentId":2267,"tags":{},"startTime":1776949078041,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":89891,"timestamp":7342131822001,"id":2267,"parentId":2265,"tags":{},"startTime":1776949078041,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":21489,"timestamp":7342131911937,"id":2269,"parentId":2265,"tags":{"astUsed":"true"},"startTime":1776949078131,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":124475,"timestamp":7342131813601,"id":2265,"parentId":2264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949078033,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":171822,"timestamp":7342131792108,"id":2264,"parentId":2256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949078011,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":36,"timestamp":7342131965712,"id":2272,"parentId":2264,"tags":{},"startTime":1776949078185,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":200856,"timestamp":7342131765099,"id":2261,"parentId":2257,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949077984,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":202264,"timestamp":7342131763711,"id":2257,"parentId":2256,"tags":{},"startTime":1776949077983,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1153,"timestamp":7342132009761,"id":2276,"parentId":2275,"tags":{},"startTime":1776949078229,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":13,"timestamp":7342132010979,"id":2278,"parentId":2275,"tags":{},"startTime":1776949078230,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":100,"timestamp":7342132011021,"id":2279,"parentId":2275,"tags":{},"startTime":1776949078230,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":15,"timestamp":7342132011166,"id":2280,"parentId":2275,"tags":{},"startTime":1776949078230,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":8,"timestamp":7342132011207,"id":2281,"parentId":2275,"tags":{},"startTime":1776949078230,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1646,"timestamp":7342132010960,"id":2277,"parentId":2275,"tags":{},"startTime":1776949078230,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":248,"timestamp":7342132013499,"id":2282,"parentId":2275,"tags":{},"startTime":1776949078233,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":1187,"timestamp":7342132013755,"id":2283,"parentId":2275,"tags":{},"startTime":1776949078233,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":4061,"timestamp":7342132027457,"id":2284,"parentId":2275,"tags":{},"startTime":1776949078246,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":112,"timestamp":7342132031515,"id":2285,"parentId":2275,"tags":{},"startTime":1776949078251,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":39,"timestamp":7342132031619,"id":2286,"parentId":2275,"tags":{},"startTime":1776949078251,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1320,"timestamp":7342132031660,"id":2287,"parentId":2275,"tags":{},"startTime":1776949078251,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":42,"timestamp":7342132033495,"id":2289,"parentId":2256,"tags":{},"startTime":1776949078253,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":83,"timestamp":7342132033458,"id":2288,"parentId":2256,"tags":{},"startTime":1776949078252,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":25891,"timestamp":7342132008366,"id":2275,"parentId":2256,"tags":{},"startTime":1776949078227,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":271774,"timestamp":7342131762504,"id":2256,"parentId":2255,"tags":{"name":"client"},"startTime":1776949077982,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":27127,"timestamp":7342132034294,"id":2290,"parentId":2255,"tags":{},"startTime":1776949078253,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":74,"timestamp":7342132061970,"id":2291,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949078281,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":1,"timestamp":7342132064383,"id":2294,"parentId":3,"tags":{},"startTime":1776949078283,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":13000,"timestamp":7342132062853,"id":2297,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","[project]/node_modules/next/dist/client/components/not-found-error.js","[project]/src/app/globals.css"],"page":"/recommendations","isPageHidden":false},"startTime":1776949078298,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13834,"timestamp":7342132069328,"id":2296,"parentId":2293,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949078288,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":105855,"timestamp":7342132086097,"id":2300,"parentId":2299,"tags":{},"startTime":1776949078305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":105977,"timestamp":7342132085988,"id":2299,"parentId":2298,"tags":{},"startTime":1776949078305,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":109152,"timestamp":7342132085625,"id":2298,"parentId":2292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776949078305,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":132718,"timestamp":7342132069274,"id":2295,"parentId":2293,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949078288,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18824,"timestamp":7342132218487,"id":2311,"parentId":2310,"tags":{},"startTime":1776949078438,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18916,"timestamp":7342132218405,"id":2310,"parentId":2309,"tags":{},"startTime":1776949078437,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":33957,"timestamp":7342132218194,"id":2309,"parentId":2292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776949078437,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":202651,"timestamp":7342132063405,"id":2293,"parentId":2292,"tags":{},"startTime":1776949078282,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1745,"timestamp":7342132267736,"id":2313,"parentId":2312,"tags":{},"startTime":1776949078487,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":6,"timestamp":7342132269530,"id":2315,"parentId":2312,"tags":{},"startTime":1776949078489,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1883,"timestamp":7342132269571,"id":2316,"parentId":2312,"tags":{},"startTime":1776949078489,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342132271484,"id":2317,"parentId":2312,"tags":{},"startTime":1776949078491,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342132271500,"id":2318,"parentId":2312,"tags":{},"startTime":1776949078491,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2588,"timestamp":7342132269515,"id":2314,"parentId":2312,"tags":{},"startTime":1776949078489,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":408,"timestamp":7342132272710,"id":2319,"parentId":2312,"tags":{},"startTime":1776949078492,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2069,"timestamp":7342132273124,"id":2320,"parentId":2312,"tags":{},"startTime":1776949078492,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2039,"timestamp":7342132276932,"id":2321,"parentId":2312,"tags":{},"startTime":1776949078496,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":80,"timestamp":7342132278970,"id":2322,"parentId":2312,"tags":{},"startTime":1776949078498,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":168,"timestamp":7342132279043,"id":2323,"parentId":2312,"tags":{},"startTime":1776949078498,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3495,"timestamp":7342132279216,"id":2324,"parentId":2312,"tags":{},"startTime":1776949078498,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":17725,"timestamp":7342132267176,"id":2312,"parentId":2292,"tags":{},"startTime":1776949078486,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":222625,"timestamp":7342132063169,"id":2292,"parentId":2270,"tags":{"name":"server"},"startTime":1776949078282,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3579,"timestamp":7342132285818,"id":2325,"parentId":2270,"tags":{},"startTime":1776949078505,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":6,"timestamp":7342132289622,"id":2326,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949078509,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":4008,"timestamp":7342132292058,"id":2328,"parentId":2327,"tags":{},"startTime":1776949078511,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":14,"timestamp":7342132296321,"id":2330,"parentId":2329,"tags":{},"startTime":1776949078515,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342132296342,"id":2332,"parentId":2329,"tags":{},"startTime":1776949078515,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6,"timestamp":7342132296350,"id":2333,"parentId":2329,"tags":{},"startTime":1776949078515,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342132296362,"id":2334,"parentId":2329,"tags":{},"startTime":1776949078515,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342132296373,"id":2335,"parentId":2329,"tags":{},"startTime":1776949078515,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":43,"timestamp":7342132296340,"id":2331,"parentId":2329,"tags":{},"startTime":1776949078515,"traceId":"d76ab653cbe90d54"}]
-[{"name":"module-hash","duration":2,"timestamp":7342132296552,"id":2336,"parentId":2329,"tags":{},"startTime":1776949078516,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4,"timestamp":7342132296558,"id":2337,"parentId":2329,"tags":{},"startTime":1776949078516,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":24,"timestamp":7342132296573,"id":2338,"parentId":2329,"tags":{},"startTime":1776949078516,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":7,"timestamp":7342132296597,"id":2339,"parentId":2329,"tags":{},"startTime":1776949078516,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":3,"timestamp":7342132296603,"id":2340,"parentId":2329,"tags":{},"startTime":1776949078516,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6,"timestamp":7342132296608,"id":2341,"parentId":2329,"tags":{},"startTime":1776949078516,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":516,"timestamp":7342132296303,"id":2329,"parentId":2327,"tags":{},"startTime":1776949078515,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":6620,"timestamp":7342132290210,"id":2327,"parentId":2271,"tags":{"name":"edge-server"},"startTime":1776949078509,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1816,"timestamp":7342132296838,"id":2342,"parentId":2271,"tags":{},"startTime":1776949078516,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":352413,"timestamp":7342131946488,"id":2271,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949078166,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1155,"timestamp":7342132303400,"id":2352,"parentId":2351,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776949078522,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5753,"timestamp":7342132300116,"id":2345,"parentId":2344,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7288,"timestamp":7342132300160,"id":2350,"parentId":2344,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7302,"timestamp":7342132300153,"id":2348,"parentId":2344,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8961,"timestamp":7342132300156,"id":2349,"parentId":2344,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9301,"timestamp":7342132300147,"id":2346,"parentId":2344,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9312,"timestamp":7342132300151,"id":2347,"parentId":2344,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11746,"timestamp":7342132311088,"id":2355,"parentId":2354,"tags":{},"startTime":1776949078530,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11837,"timestamp":7342132311005,"id":2354,"parentId":2353,"tags":{},"startTime":1776949078530,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":23811,"timestamp":7342132310766,"id":2353,"parentId":2352,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776949078530,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8455,"timestamp":7342132338649,"id":2358,"parentId":2357,"tags":{},"startTime":1776949078558,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8527,"timestamp":7342132338586,"id":2357,"parentId":2356,"tags":{},"startTime":1776949078558,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":12321,"timestamp":7342132338444,"id":2356,"parentId":2353,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776949078557,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":54509,"timestamp":7342132300162,"id":2351,"parentId":2344,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":54778,"timestamp":7342132299936,"id":2344,"parentId":2343,"tags":{},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1483,"timestamp":7342132356950,"id":2360,"parentId":2359,"tags":{},"startTime":1776949078576,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":9,"timestamp":7342132358459,"id":2362,"parentId":2359,"tags":{},"startTime":1776949078577,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":35,"timestamp":7342132358478,"id":2363,"parentId":2359,"tags":{},"startTime":1776949078578,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342132358529,"id":2364,"parentId":2359,"tags":{},"startTime":1776949078578,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342132358541,"id":2365,"parentId":2359,"tags":{},"startTime":1776949078578,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":515,"timestamp":7342132358452,"id":2361,"parentId":2359,"tags":{},"startTime":1776949078577,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":304,"timestamp":7342132361873,"id":2366,"parentId":2359,"tags":{},"startTime":1776949078581,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2939,"timestamp":7342132362186,"id":2367,"parentId":2359,"tags":{},"startTime":1776949078581,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":3681,"timestamp":7342132365751,"id":2368,"parentId":2359,"tags":{},"startTime":1776949078585,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":119,"timestamp":7342132369431,"id":2369,"parentId":2359,"tags":{},"startTime":1776949078588,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":48,"timestamp":7342132369542,"id":2370,"parentId":2359,"tags":{},"startTime":1776949078589,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6928,"timestamp":7342132369592,"id":2371,"parentId":2359,"tags":{},"startTime":1776949078589,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":49,"timestamp":7342132377223,"id":2373,"parentId":2343,"tags":{},"startTime":1776949078596,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":100,"timestamp":7342132377179,"id":2372,"parentId":2343,"tags":{},"startTime":1776949078596,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":21750,"timestamp":7342132356292,"id":2359,"parentId":2343,"tags":{},"startTime":1776949078575,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":78324,"timestamp":7342132299740,"id":2343,"parentId":3,"tags":{"name":"client"},"startTime":1776949078519,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":16353,"timestamp":7342132378081,"id":2374,"parentId":3,"tags":{},"startTime":1776949078597,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":86,"timestamp":7342132395117,"id":2375,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949078614,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":1,"timestamp":7342132399378,"id":2378,"parentId":3,"tags":{},"startTime":1776949078618,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":11000,"timestamp":7342132396199,"id":2381,"parentId":3,"tags":{"updatedModules":[],"page":"/recommendations","isPageHidden":false},"startTime":1776949078627,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5213,"timestamp":7342132407199,"id":2380,"parentId":2377,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949078626,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6018,"timestamp":7342132407138,"id":2379,"parentId":2377,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949078626,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":32108,"timestamp":7342132398616,"id":2377,"parentId":2376,"tags":{},"startTime":1776949078618,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":799,"timestamp":7342132432294,"id":2391,"parentId":2390,"tags":{},"startTime":1776949078651,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342132433112,"id":2393,"parentId":2390,"tags":{},"startTime":1776949078652,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":981,"timestamp":7342132433127,"id":2394,"parentId":2390,"tags":{},"startTime":1776949078652,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342132434128,"id":2395,"parentId":2390,"tags":{},"startTime":1776949078653,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342132434140,"id":2396,"parentId":2390,"tags":{},"startTime":1776949078653,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1372,"timestamp":7342132433106,"id":2392,"parentId":2390,"tags":{},"startTime":1776949078652,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":131,"timestamp":7342132434997,"id":2397,"parentId":2390,"tags":{},"startTime":1776949078654,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":616,"timestamp":7342132435132,"id":2398,"parentId":2390,"tags":{},"startTime":1776949078654,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":555,"timestamp":7342132437351,"id":2399,"parentId":2390,"tags":{},"startTime":1776949078656,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":45,"timestamp":7342132437906,"id":2400,"parentId":2390,"tags":{},"startTime":1776949078657,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":24,"timestamp":7342132437948,"id":2401,"parentId":2390,"tags":{},"startTime":1776949078657,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":76,"timestamp":7342132437974,"id":2402,"parentId":2390,"tags":{},"startTime":1776949078657,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":7614,"timestamp":7342132431763,"id":2390,"parentId":2376,"tags":{},"startTime":1776949078651,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":42243,"timestamp":7342132398249,"id":2376,"parentId":3,"tags":{"name":"server"},"startTime":1776949078617,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3257,"timestamp":7342132440563,"id":2403,"parentId":3,"tags":{},"startTime":1776949078660,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10724,"timestamp":7342132448524,"id":2406,"parentId":2405,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949078668,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11249,"timestamp":7342132448570,"id":2412,"parentId":2405,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949078668,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12439,"timestamp":7342132448568,"id":2411,"parentId":2405,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949078668,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12468,"timestamp":7342132448561,"id":2409,"parentId":2405,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949078668,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14672,"timestamp":7342132448565,"id":2410,"parentId":2405,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949078668,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14738,"timestamp":7342132448554,"id":2407,"parentId":2405,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949078668,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14739,"timestamp":7342132448559,"id":2408,"parentId":2405,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949078668,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":18018,"timestamp":7342132445313,"id":2405,"parentId":2404,"tags":{},"startTime":1776949078664,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":993,"timestamp":7342132465084,"id":2414,"parentId":2413,"tags":{},"startTime":1776949078684,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342132466113,"id":2416,"parentId":2413,"tags":{},"startTime":1776949078685,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":22,"timestamp":7342132466127,"id":2417,"parentId":2413,"tags":{},"startTime":1776949078685,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342132466166,"id":2418,"parentId":2413,"tags":{},"startTime":1776949078685,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342132466179,"id":2419,"parentId":2413,"tags":{},"startTime":1776949078685,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":470,"timestamp":7342132466091,"id":2415,"parentId":2413,"tags":{},"startTime":1776949078685,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":137,"timestamp":7342132467939,"id":2420,"parentId":2413,"tags":{},"startTime":1776949078687,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":671,"timestamp":7342132468089,"id":2421,"parentId":2413,"tags":{},"startTime":1776949078687,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1786,"timestamp":7342132470173,"id":2422,"parentId":2413,"tags":{},"startTime":1776949078689,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":62,"timestamp":7342132471958,"id":2423,"parentId":2413,"tags":{},"startTime":1776949078691,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":29,"timestamp":7342132472015,"id":2424,"parentId":2413,"tags":{},"startTime":1776949078691,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":573,"timestamp":7342132472047,"id":2425,"parentId":2413,"tags":{},"startTime":1776949078691,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":45,"timestamp":7342132472792,"id":2427,"parentId":2404,"tags":{},"startTime":1776949078692,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":82,"timestamp":7342132472757,"id":2426,"parentId":2404,"tags":{},"startTime":1776949078692,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":9433,"timestamp":7342132463985,"id":2413,"parentId":2404,"tags":{},"startTime":1776949078683,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":28328,"timestamp":7342132445107,"id":2404,"parentId":3,"tags":{"name":"client"},"startTime":1776949078664,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":6115,"timestamp":7342132473449,"id":2428,"parentId":3,"tags":{},"startTime":1776949078692,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":480908,"timestamp":7342131999186,"id":2274,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1776949078218,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":3,"timestamp":7342132482077,"id":2429,"parentId":3,"tags":{},"startTime":1776949078701,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":534087,"timestamp":7342131966758,"id":2273,"tags":{"url":"/recommendations?_rsc=1kfer","isTurbopack":false},"startTime":1776949078186,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342132500870,"id":2430,"parentId":2273,"tags":{"url":"/recommendations?_rsc=1kfer","memory.rss":"280838144","memory.heapUsed":"214672992","memory.heapTotal":"246726656"},"startTime":1776949078720,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":18014,"timestamp":7342132522941,"id":2431,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1776949078742,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":3,"timestamp":7342132541015,"id":2432,"parentId":2431,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"281214976","memory.heapUsed":"217856248","memory.heapTotal":"246726656"},"startTime":1776949078760,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11430,"timestamp":7342143854324,"id":2440,"parentId":2437,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949090073,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":22988,"timestamp":7342143854316,"id":2439,"parentId":2437,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949090073,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":30252,"timestamp":7342143863139,"id":2441,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776949090082,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3790,"timestamp":7342143899083,"id":2444,"parentId":2443,"tags":{},"startTime":1776949090118,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3892,"timestamp":7342143898988,"id":2443,"parentId":2442,"tags":{},"startTime":1776949090118,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":4548,"timestamp":7342143898790,"id":2442,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"rsc"},"startTime":1776949090118,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":50259,"timestamp":7342143854010,"id":2438,"parentId":2437,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949090073,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":639,"timestamp":7342143913665,"id":2458,"parentId":2436,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776949090133,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10379,"timestamp":7342143918049,"id":2461,"parentId":2460,"tags":{},"startTime":1776949090137,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10453,"timestamp":7342143917982,"id":2460,"parentId":2459,"tags":{},"startTime":1776949090137,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":19781,"timestamp":7342143917676,"id":2459,"parentId":2458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"ssr"},"startTime":1776949090137,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2826,"timestamp":7342143947740,"id":2470,"parentId":2469,"tags":{},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2859,"timestamp":7342143947713,"id":2469,"parentId":2464,"tags":{},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":4290,"timestamp":7342143947561,"id":2464,"parentId":2459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"ssr"},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4544,"timestamp":7342143947667,"id":2466,"parentId":2465,"tags":{},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4602,"timestamp":7342143947611,"id":2465,"parentId":2462,"tags":{},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":6023,"timestamp":7342143947373,"id":2462,"parentId":2459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"ssr"},"startTime":1776949090166,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5732,"timestamp":7342143947707,"id":2468,"parentId":2467,"tags":{},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5767,"timestamp":7342143947674,"id":2467,"parentId":2463,"tags":{},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":6554,"timestamp":7342143947506,"id":2463,"parentId":2459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"ssr"},"startTime":1776949090167,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":397,"timestamp":7342143958444,"id":2472,"parentId":2471,"tags":{},"startTime":1776949090177,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342143958860,"id":2473,"parentId":2471,"tags":{},"startTime":1776949090178,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1690,"timestamp":7342143958265,"id":2471,"parentId":2464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"ssr"},"startTime":1776949090177,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":775,"timestamp":7342143962771,"id":2482,"parentId":2477,"tags":{},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342143963565,"id":2486,"parentId":2477,"tags":{},"startTime":1776949090183,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1447,"timestamp":7342143962585,"id":2477,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"ssr"},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1978,"timestamp":7342143962762,"id":2481,"parentId":2476,"tags":{},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342143964748,"id":2487,"parentId":2476,"tags":{},"startTime":1776949090184,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2498,"timestamp":7342143962509,"id":2476,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"ssr"},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2799,"timestamp":7342143962777,"id":2483,"parentId":2478,"tags":{},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342143965581,"id":2488,"parentId":2478,"tags":{},"startTime":1776949090185,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3154,"timestamp":7342143962642,"id":2478,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"ssr"},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3019,"timestamp":7342143962788,"id":2484,"parentId":2479,"tags":{},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342143965812,"id":2489,"parentId":2479,"tags":{},"startTime":1776949090185,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3258,"timestamp":7342143962684,"id":2479,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"ssr"},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3163,"timestamp":7342143962794,"id":2485,"parentId":2480,"tags":{},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342143965960,"id":2490,"parentId":2480,"tags":{},"startTime":1776949090185,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3514,"timestamp":7342143962722,"id":2480,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"ssr"},"startTime":1776949090182,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4781,"timestamp":7342143961458,"id":2475,"parentId":2474,"tags":{},"startTime":1776949090181,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342143966243,"id":2491,"parentId":2474,"tags":{},"startTime":1776949090185,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13444,"timestamp":7342143961377,"id":2474,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"ssr"},"startTime":1776949090180,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31432,"timestamp":7342143990741,"id":2493,"parentId":2492,"tags":{},"startTime":1776949090210,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342144022197,"id":2558,"parentId":2492,"tags":{},"startTime":1776949090241,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33521,"timestamp":7342143990598,"id":2492,"parentId":2476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"ssr"},"startTime":1776949090210,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34583,"timestamp":7342144002066,"id":2497,"parentId":2495,"tags":{},"startTime":1776949090221,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342144036667,"id":2619,"parentId":2495,"tags":{},"startTime":1776949090256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35462,"timestamp":7342144001980,"id":2495,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"ssr"},"startTime":1776949090221,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35414,"timestamp":7342144002044,"id":2496,"parentId":2494,"tags":{},"startTime":1776949090221,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":86,"timestamp":7342144037465,"id":2620,"parentId":2494,"tags":{},"startTime":1776949090257,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":188370,"timestamp":7342144001868,"id":2494,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"ssr"},"startTime":1776949090221,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":191847,"timestamp":7342144005880,"id":2529,"parentId":2499,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54,"timestamp":7342144197758,"id":2621,"parentId":2499,"tags":{},"startTime":1776949090417,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":196292,"timestamp":7342144002467,"id":2499,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":192881,"timestamp":7342144005894,"id":2531,"parentId":2501,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3896,"timestamp":7342144198787,"id":2622,"parentId":2501,"tags":{},"startTime":1776949090418,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":200764,"timestamp":7342144002576,"id":2501,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":197476,"timestamp":7342144005886,"id":2530,"parentId":2500,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342144203374,"id":2623,"parentId":2500,"tags":{},"startTime":1776949090422,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":201153,"timestamp":7342144002512,"id":2500,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":197740,"timestamp":7342144005934,"id":2532,"parentId":2502,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342144203681,"id":2624,"parentId":2502,"tags":{},"startTime":1776949090423,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":202835,"timestamp":7342144002671,"id":2502,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":199564,"timestamp":7342144005971,"id":2538,"parentId":2508,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342144205548,"id":2625,"parentId":2508,"tags":{},"startTime":1776949090425,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":202843,"timestamp":7342144002990,"id":2508,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":199896,"timestamp":7342144005950,"id":2534,"parentId":2504,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342144205854,"id":2626,"parentId":2504,"tags":{},"startTime":1776949090425,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":203327,"timestamp":7342144002791,"id":2504,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":200168,"timestamp":7342144005966,"id":2537,"parentId":2507,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":795,"timestamp":7342144206144,"id":2627,"parentId":2507,"tags":{},"startTime":1776949090425,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":204222,"timestamp":7342144002948,"id":2507,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":201226,"timestamp":7342144005955,"id":2535,"parentId":2505,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342144207187,"id":2628,"parentId":2505,"tags":{},"startTime":1776949090426,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":204589,"timestamp":7342144002834,"id":2505,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":201485,"timestamp":7342144005944,"id":2533,"parentId":2503,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144207433,"id":2629,"parentId":2503,"tags":{},"startTime":1776949090426,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":204871,"timestamp":7342144002736,"id":2503,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":201626,"timestamp":7342144005987,"id":2541,"parentId":2511,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342144207618,"id":2630,"parentId":2511,"tags":{},"startTime":1776949090427,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":204533,"timestamp":7342144003220,"id":2511,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":201750,"timestamp":7342144006008,"id":2545,"parentId":2515,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342144207761,"id":2631,"parentId":2515,"tags":{},"startTime":1776949090427,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":204464,"timestamp":7342144003414,"id":2515,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":201860,"timestamp":7342144006022,"id":2548,"parentId":2518,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342144207886,"id":2632,"parentId":2518,"tags":{},"startTime":1776949090427,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":203831,"timestamp":7342144004181,"id":2518,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"ssr"},"startTime":1776949090223,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":202024,"timestamp":7342144005992,"id":2542,"parentId":2512,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342144208019,"id":2633,"parentId":2512,"tags":{},"startTime":1776949090427,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":204994,"timestamp":7342144003288,"id":2512,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":202290,"timestamp":7342144005997,"id":2543,"parentId":2513,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342144208290,"id":2634,"parentId":2513,"tags":{},"startTime":1776949090427,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":205084,"timestamp":7342144003328,"id":2513,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":202415,"timestamp":7342144006002,"id":2544,"parentId":2514,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342144208420,"id":2635,"parentId":2514,"tags":{},"startTime":1776949090427,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":205180,"timestamp":7342144003371,"id":2514,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":202698,"timestamp":7342144005858,"id":2528,"parentId":2498,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":29,"timestamp":7342144208743,"id":2636,"parentId":2498,"tags":{},"startTime":1776949090428,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":206809,"timestamp":7342144002409,"id":2498,"parentId":2476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"ssr"},"startTime":1776949090221,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":203204,"timestamp":7342144006026,"id":2549,"parentId":2519,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342144209237,"id":2637,"parentId":2519,"tags":{},"startTime":1776949090428,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":205191,"timestamp":7342144004312,"id":2519,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"ssr"},"startTime":1776949090223,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":203479,"timestamp":7342144006030,"id":2550,"parentId":2520,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144209513,"id":2638,"parentId":2520,"tags":{},"startTime":1776949090429,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":205302,"timestamp":7342144004407,"id":2520,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"ssr"},"startTime":1776949090223,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":203732,"timestamp":7342144005982,"id":2540,"parentId":2510,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342144209718,"id":2639,"parentId":2510,"tags":{},"startTime":1776949090429,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":206767,"timestamp":7342144003080,"id":2510,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":203874,"timestamp":7342144005976,"id":2539,"parentId":2509,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342144209854,"id":2640,"parentId":2509,"tags":{},"startTime":1776949090429,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":208351,"timestamp":7342144003040,"id":2509,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":205472,"timestamp":7342144005960,"id":2536,"parentId":2506,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342144211443,"id":2641,"parentId":2506,"tags":{},"startTime":1776949090430,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":208730,"timestamp":7342144002910,"id":2506,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"ssr"},"startTime":1776949090222,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":205605,"timestamp":7342144006042,"id":2553,"parentId":2523,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":653,"timestamp":7342144211653,"id":2642,"parentId":2523,"tags":{},"startTime":1776949090431,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":208339,"timestamp":7342144005358,"id":2523,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"ssr"},"startTime":1776949090224,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":207667,"timestamp":7342144006048,"id":2554,"parentId":2524,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":70,"timestamp":7342144213723,"id":2643,"parentId":2524,"tags":{},"startTime":1776949090433,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":210021,"timestamp":7342144005400,"id":2524,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"ssr"},"startTime":1776949090224,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":209385,"timestamp":7342144006051,"id":2555,"parentId":2525,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":377,"timestamp":7342144215445,"id":2644,"parentId":2525,"tags":{},"startTime":1776949090434,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":211526,"timestamp":7342144005489,"id":2525,"parentId":2478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"ssr"},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":210989,"timestamp":7342144006038,"id":2552,"parentId":2522,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":73,"timestamp":7342144217033,"id":2645,"parentId":2522,"tags":{},"startTime":1776949090436,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":216414,"timestamp":7342144005312,"id":2522,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"ssr"},"startTime":1776949090224,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":215735,"timestamp":7342144006013,"id":2546,"parentId":2516,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342144221759,"id":2646,"parentId":2516,"tags":{},"startTime":1776949090441,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":218247,"timestamp":7342144003726,"id":2516,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"ssr"},"startTime":1776949090223,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":215946,"timestamp":7342144006034,"id":2551,"parentId":2521,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342144221985,"id":2647,"parentId":2521,"tags":{},"startTime":1776949090441,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":218576,"timestamp":7342144005258,"id":2521,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"ssr"},"startTime":1776949090224,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":217829,"timestamp":7342144006017,"id":2547,"parentId":2517,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342144223852,"id":2648,"parentId":2517,"tags":{},"startTime":1776949090443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":220135,"timestamp":7342144003906,"id":2517,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"ssr"},"startTime":1776949090223,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":217986,"timestamp":7342144006060,"id":2557,"parentId":2527,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342144224051,"id":2649,"parentId":2527,"tags":{},"startTime":1776949090443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":223833,"timestamp":7342144005696,"id":2527,"parentId":2479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"ssr"},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":223564,"timestamp":7342144006056,"id":2556,"parentId":2526,"tags":{},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":91,"timestamp":7342144229636,"id":2650,"parentId":2526,"tags":{},"startTime":1776949090449,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":224675,"timestamp":7342144005535,"id":2526,"parentId":2478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"ssr"},"startTime":1776949090225,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":266533,"timestamp":7342144033088,"id":2589,"parentId":2559,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":112,"timestamp":7342144299657,"id":2651,"parentId":2559,"tags":{},"startTime":1776949090519,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":275474,"timestamp":7342144025367,"id":2559,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"ssr"},"startTime":1776949090244,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":267728,"timestamp":7342144033127,"id":2590,"parentId":2560,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":93,"timestamp":7342144300979,"id":2652,"parentId":2560,"tags":{},"startTime":1776949090520,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":275821,"timestamp":7342144025480,"id":2560,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"ssr"},"startTime":1776949090245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":268159,"timestamp":7342144033152,"id":2593,"parentId":2563,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342144301318,"id":2653,"parentId":2563,"tags":{},"startTime":1776949090520,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":275491,"timestamp":7342144026213,"id":2563,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"ssr"},"startTime":1776949090245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":268551,"timestamp":7342144033162,"id":2595,"parentId":2565,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342144301717,"id":2654,"parentId":2565,"tags":{},"startTime":1776949090521,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":275649,"timestamp":7342144026326,"id":2565,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"ssr"},"startTime":1776949090245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":275828,"timestamp":7342144033145,"id":2592,"parentId":2562,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":64,"timestamp":7342144308988,"id":2655,"parentId":2562,"tags":{},"startTime":1776949090528,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":286027,"timestamp":7342144025744,"id":2562,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"ssr"},"startTime":1776949090245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":279424,"timestamp":7342144033362,"id":2599,"parentId":2569,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54,"timestamp":7342144312797,"id":2656,"parentId":2569,"tags":{},"startTime":1776949090532,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":286702,"timestamp":7342144027224,"id":2569,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"ssr"},"startTime":1776949090246,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":280276,"timestamp":7342144033661,"id":2602,"parentId":2572,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342144313943,"id":2657,"parentId":2572,"tags":{},"startTime":1776949090533,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":282595,"timestamp":7342144031615,"id":2572,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"ssr"},"startTime":1776949090251,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":280874,"timestamp":7342144033375,"id":2601,"parentId":2571,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":58,"timestamp":7342144314256,"id":2658,"parentId":2571,"tags":{},"startTime":1776949090533,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":284795,"timestamp":7342144031535,"id":2571,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"ssr"},"startTime":1776949090251,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":282971,"timestamp":7342144033369,"id":2600,"parentId":2570,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342144316346,"id":2659,"parentId":2570,"tags":{},"startTime":1776949090535,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":289048,"timestamp":7342144027612,"id":2570,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"ssr"},"startTime":1776949090247,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":283366,"timestamp":7342144033300,"id":2597,"parentId":2567,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342144316671,"id":2660,"parentId":2567,"tags":{},"startTime":1776949090536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":289942,"timestamp":7342144026902,"id":2567,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"ssr"},"startTime":1776949090246,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":283693,"timestamp":7342144033157,"id":2594,"parentId":2564,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144316856,"id":2661,"parentId":2564,"tags":{},"startTime":1776949090536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":290786,"timestamp":7342144026265,"id":2564,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"ssr"},"startTime":1776949090245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":283328,"timestamp":7342144033731,"id":2604,"parentId":2574,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144317063,"id":2662,"parentId":2574,"tags":{},"startTime":1776949090536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":284801,"timestamp":7342144032406,"id":2574,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"ssr"},"startTime":1776949090251,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":283327,"timestamp":7342144033885,"id":2607,"parentId":2577,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342144317217,"id":2663,"parentId":2577,"tags":{},"startTime":1776949090536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":284800,"timestamp":7342144032548,"id":2577,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":283487,"timestamp":7342144033867,"id":2605,"parentId":2575,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342144317357,"id":2664,"parentId":2575,"tags":{},"startTime":1776949090536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":285008,"timestamp":7342144032461,"id":2575,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":283578,"timestamp":7342144033897,"id":2609,"parentId":2579,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342144317482,"id":2665,"parentId":2579,"tags":{},"startTime":1776949090537,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":284961,"timestamp":7342144032646,"id":2579,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":284267,"timestamp":7342144033344,"id":2598,"parentId":2568,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":85,"timestamp":7342144317618,"id":2666,"parentId":2568,"tags":{},"startTime":1776949090537,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":291608,"timestamp":7342144026968,"id":2568,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"ssr"},"startTime":1776949090246,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":285470,"timestamp":7342144033137,"id":2591,"parentId":2561,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":55,"timestamp":7342144318617,"id":2667,"parentId":2561,"tags":{},"startTime":1776949090538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":293384,"timestamp":7342144025537,"id":2561,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"ssr"},"startTime":1776949090245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":285053,"timestamp":7342144033877,"id":2606,"parentId":2576,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342144318937,"id":2668,"parentId":2576,"tags":{},"startTime":1776949090538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":286588,"timestamp":7342144032507,"id":2576,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":285188,"timestamp":7342144033913,"id":2611,"parentId":2581,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144319105,"id":2669,"parentId":2581,"tags":{},"startTime":1776949090538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":286683,"timestamp":7342144032725,"id":2581,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":285666,"timestamp":7342144033892,"id":2608,"parentId":2578,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342144319565,"id":2670,"parentId":2578,"tags":{},"startTime":1776949090539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":287145,"timestamp":7342144032606,"id":2578,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":285832,"timestamp":7342144033926,"id":2613,"parentId":2583,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342144319763,"id":2671,"parentId":2583,"tags":{},"startTime":1776949090539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":287292,"timestamp":7342144032804,"id":2583,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":286858,"timestamp":7342144033244,"id":2596,"parentId":2566,"tags":{},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342144320108,"id":2672,"parentId":2566,"tags":{},"startTime":1776949090539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":293726,"timestamp":7342144026566,"id":2566,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"ssr"},"startTime":1776949090246,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":286395,"timestamp":7342144033906,"id":2610,"parentId":2580,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342144320305,"id":2673,"parentId":2580,"tags":{},"startTime":1776949090539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":288063,"timestamp":7342144032686,"id":2580,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":286854,"timestamp":7342144033919,"id":2612,"parentId":2582,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342144320781,"id":2674,"parentId":2582,"tags":{},"startTime":1776949090540,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":288226,"timestamp":7342144032764,"id":2582,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":287279,"timestamp":7342144033721,"id":2603,"parentId":2573,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144321005,"id":2675,"parentId":2573,"tags":{},"startTime":1776949090540,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":289357,"timestamp":7342144031840,"id":2573,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"ssr"},"startTime":1776949090251,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":287206,"timestamp":7342144033998,"id":2617,"parentId":2587,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342144321209,"id":2676,"parentId":2587,"tags":{},"startTime":1776949090540,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":288403,"timestamp":7342144032968,"id":2587,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":287381,"timestamp":7342144034003,"id":2618,"parentId":2588,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342144321390,"id":2677,"parentId":2588,"tags":{},"startTime":1776949090540,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":288573,"timestamp":7342144033009,"id":2588,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":290659,"timestamp":7342144033993,"id":2616,"parentId":2586,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144324660,"id":2678,"parentId":2586,"tags":{},"startTime":1776949090544,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":291907,"timestamp":7342144032925,"id":2586,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":291103,"timestamp":7342144033988,"id":2615,"parentId":2585,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342144325096,"id":2679,"parentId":2585,"tags":{},"startTime":1776949090544,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":292330,"timestamp":7342144032885,"id":2585,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":291240,"timestamp":7342144033979,"id":2614,"parentId":2584,"tags":{},"startTime":1776949090253,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342144325223,"id":2680,"parentId":2584,"tags":{},"startTime":1776949090544,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":292515,"timestamp":7342144032844,"id":2584,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"ssr"},"startTime":1776949090252,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25829,"timestamp":7342144576514,"id":2684,"parentId":2682,"tags":{},"startTime":1776949090796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342144602358,"id":2853,"parentId":2682,"tags":{},"startTime":1776949090821,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32908,"timestamp":7342144576430,"id":2682,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"ssr"},"startTime":1776949090795,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32857,"timestamp":7342144576503,"id":2683,"parentId":2681,"tags":{},"startTime":1776949090796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342144609370,"id":2854,"parentId":2681,"tags":{},"startTime":1776949090828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34441,"timestamp":7342144576309,"id":2681,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"ssr"},"startTime":1776949090795,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31502,"timestamp":7342144583135,"id":2727,"parentId":2685,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342144614652,"id":2855,"parentId":2685,"tags":{},"startTime":1776949090834,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34495,"timestamp":7342144580660,"id":2685,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32009,"timestamp":7342144583158,"id":2729,"parentId":2687,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342144615175,"id":2856,"parentId":2687,"tags":{},"startTime":1776949090834,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36714,"timestamp":7342144580812,"id":2687,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36187,"timestamp":7342144583178,"id":2733,"parentId":2691,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342144619374,"id":2857,"parentId":2691,"tags":{},"startTime":1776949090838,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38535,"timestamp":7342144581086,"id":2691,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36444,"timestamp":7342144583186,"id":2735,"parentId":2693,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342144619637,"id":2858,"parentId":2693,"tags":{},"startTime":1776949090839,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38657,"timestamp":7342144581172,"id":2693,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36666,"timestamp":7342144583169,"id":2731,"parentId":2689,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144619840,"id":2859,"parentId":2689,"tags":{},"startTime":1776949090839,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39332,"timestamp":7342144580999,"id":2689,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37156,"timestamp":7342144583182,"id":2734,"parentId":2692,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342144620344,"id":2860,"parentId":2692,"tags":{},"startTime":1776949090839,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39349,"timestamp":7342144581132,"id":2692,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37297,"timestamp":7342144583190,"id":2736,"parentId":2694,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144620492,"id":2861,"parentId":2694,"tags":{},"startTime":1776949090840,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39425,"timestamp":7342144581209,"id":2694,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37489,"timestamp":7342144583151,"id":2728,"parentId":2686,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342144620645,"id":2862,"parentId":2686,"tags":{},"startTime":1776949090840,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40185,"timestamp":7342144580736,"id":2686,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37733,"timestamp":7342144583202,"id":2739,"parentId":2697,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342144620941,"id":2863,"parentId":2697,"tags":{},"startTime":1776949090840,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43594,"timestamp":7342144581325,"id":2697,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41720,"timestamp":7342144583210,"id":2741,"parentId":2699,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342144624938,"id":2864,"parentId":2699,"tags":{},"startTime":1776949090844,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48601,"timestamp":7342144581397,"id":2699,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46822,"timestamp":7342144583206,"id":2740,"parentId":2698,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":62,"timestamp":7342144630040,"id":2865,"parentId":2698,"tags":{},"startTime":1776949090849,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48985,"timestamp":7342144581361,"id":2698,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47139,"timestamp":7342144583220,"id":2744,"parentId":2702,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":69,"timestamp":7342144630368,"id":2866,"parentId":2702,"tags":{},"startTime":1776949090849,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58174,"timestamp":7342144581510,"id":2702,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56537,"timestamp":7342144583174,"id":2732,"parentId":2690,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":413,"timestamp":7342144639721,"id":2867,"parentId":2690,"tags":{},"startTime":1776949090859,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59372,"timestamp":7342144581042,"id":2690,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57244,"timestamp":7342144583223,"id":2745,"parentId":2703,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342144640474,"id":2868,"parentId":2703,"tags":{},"startTime":1776949090860,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64611,"timestamp":7342144581545,"id":2703,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":62981,"timestamp":7342144583213,"id":2742,"parentId":2700,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":74,"timestamp":7342144646209,"id":2869,"parentId":2700,"tags":{},"startTime":1776949090865,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":66828,"timestamp":7342144581434,"id":2700,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":65260,"timestamp":7342144583226,"id":2746,"parentId":2704,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":130,"timestamp":7342144648501,"id":2870,"parentId":2704,"tags":{},"startTime":1776949090868,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":67624,"timestamp":7342144581705,"id":2704,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":66143,"timestamp":7342144583216,"id":2743,"parentId":2701,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":55,"timestamp":7342144649369,"id":2871,"parentId":2701,"tags":{},"startTime":1776949090868,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":68627,"timestamp":7342144581471,"id":2701,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":66874,"timestamp":7342144583234,"id":2748,"parentId":2706,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342144650115,"id":2872,"parentId":2706,"tags":{},"startTime":1776949090869,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":68500,"timestamp":7342144581802,"id":2706,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":67079,"timestamp":7342144583230,"id":2747,"parentId":2705,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342144650313,"id":2873,"parentId":2705,"tags":{},"startTime":1776949090869,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":70449,"timestamp":7342144581759,"id":2705,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":68993,"timestamp":7342144583241,"id":2750,"parentId":2708,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342144652245,"id":2874,"parentId":2708,"tags":{},"startTime":1776949090871,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":70255,"timestamp":7342144582289,"id":2708,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":69326,"timestamp":7342144583238,"id":2749,"parentId":2707,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342144652571,"id":2875,"parentId":2707,"tags":{},"startTime":1776949090872,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":71174,"timestamp":7342144582212,"id":2707,"parentId":2499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":70151,"timestamp":7342144583251,"id":2753,"parentId":2711,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":781,"timestamp":7342144653409,"id":2876,"parentId":2711,"tags":{},"startTime":1776949090872,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73093,"timestamp":7342144582420,"id":2711,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":72281,"timestamp":7342144583248,"id":2752,"parentId":2710,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342144655539,"id":2877,"parentId":2710,"tags":{},"startTime":1776949090875,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73599,"timestamp":7342144582379,"id":2710,"parentId":2501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":72824,"timestamp":7342144583164,"id":2730,"parentId":2688,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":121,"timestamp":7342144655993,"id":2878,"parentId":2688,"tags":{},"startTime":1776949090875,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":80827,"timestamp":7342144580894,"id":2688,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":78493,"timestamp":7342144583259,"id":2756,"parentId":2714,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342144661764,"id":2879,"parentId":2714,"tags":{},"startTime":1776949090881,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":79691,"timestamp":7342144582536,"id":2714,"parentId":2500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":78994,"timestamp":7342144583254,"id":2754,"parentId":2712,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342144662255,"id":2880,"parentId":2712,"tags":{},"startTime":1776949090881,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":84134,"timestamp":7342144582459,"id":2712,"parentId":2501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":83350,"timestamp":7342144583262,"id":2757,"parentId":2715,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":175,"timestamp":7342144666622,"id":2881,"parentId":2715,"tags":{},"startTime":1776949090886,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86994,"timestamp":7342144582575,"id":2715,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":86327,"timestamp":7342144583256,"id":2755,"parentId":2713,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":75,"timestamp":7342144669592,"id":2882,"parentId":2713,"tags":{},"startTime":1776949090889,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":96044,"timestamp":7342144582497,"id":2713,"parentId":2500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":95333,"timestamp":7342144583244,"id":2751,"parentId":2709,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":153,"timestamp":7342144678595,"id":2883,"parentId":2709,"tags":{},"startTime":1776949090898,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":104884,"timestamp":7342144582336,"id":2709,"parentId":2499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"ssr"},"startTime":1776949090801,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":103983,"timestamp":7342144583269,"id":2758,"parentId":2716,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":115,"timestamp":7342144687266,"id":2884,"parentId":2716,"tags":{},"startTime":1776949090906,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":106041,"timestamp":7342144582614,"id":2716,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":105473,"timestamp":7342144583198,"id":2738,"parentId":2696,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342144688678,"id":2885,"parentId":2696,"tags":{},"startTime":1776949090908,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":108290,"timestamp":7342144581289,"id":2696,"parentId":2495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":106315,"timestamp":7342144583279,"id":2761,"parentId":2719,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":195,"timestamp":7342144689601,"id":2886,"parentId":2719,"tags":{},"startTime":1776949090909,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":108303,"timestamp":7342144582779,"id":2719,"parentId":2502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":107862,"timestamp":7342144583272,"id":2759,"parentId":2717,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342144691147,"id":2887,"parentId":2717,"tags":{},"startTime":1776949090910,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":109301,"timestamp":7342144582652,"id":2717,"parentId":2499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":108677,"timestamp":7342144583290,"id":2765,"parentId":2723,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":80,"timestamp":7342144691974,"id":2888,"parentId":2723,"tags":{},"startTime":1776949090911,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":109614,"timestamp":7342144582971,"id":2723,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":109311,"timestamp":7342144583285,"id":2763,"parentId":2721,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":322,"timestamp":7342144692630,"id":2889,"parentId":2721,"tags":{},"startTime":1776949090912,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":112664,"timestamp":7342144582878,"id":2721,"parentId":2502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":112297,"timestamp":7342144583282,"id":2762,"parentId":2720,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":58,"timestamp":7342144695596,"id":2890,"parentId":2720,"tags":{},"startTime":1776949090915,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":114330,"timestamp":7342144582839,"id":2720,"parentId":2502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":113903,"timestamp":7342144583288,"id":2764,"parentId":2722,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342144697202,"id":2891,"parentId":2722,"tags":{},"startTime":1776949090916,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":115977,"timestamp":7342144582916,"id":2722,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":115634,"timestamp":7342144583275,"id":2760,"parentId":2718,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342144698918,"id":2892,"parentId":2718,"tags":{},"startTime":1776949090918,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":116779,"timestamp":7342144582700,"id":2718,"parentId":2502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":116258,"timestamp":7342144583295,"id":2767,"parentId":2725,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144699560,"id":2893,"parentId":2725,"tags":{},"startTime":1776949090919,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":116943,"timestamp":7342144583045,"id":2725,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":116756,"timestamp":7342144583293,"id":2766,"parentId":2724,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342144700060,"id":2894,"parentId":2724,"tags":{},"startTime":1776949090919,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":125075,"timestamp":7342144583008,"id":2724,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":124810,"timestamp":7342144583297,"id":2768,"parentId":2726,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342144708116,"id":2895,"parentId":2726,"tags":{},"startTime":1776949090927,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":125481,"timestamp":7342144583081,"id":2726,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"ssr"},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":113962,"timestamp":7342144594609,"id":2787,"parentId":2770,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342144708577,"id":2896,"parentId":2770,"tags":{},"startTime":1776949090928,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":115943,"timestamp":7342144592784,"id":2770,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":114084,"timestamp":7342144594650,"id":2792,"parentId":2775,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144708739,"id":2897,"parentId":2775,"tags":{},"startTime":1776949090928,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":115784,"timestamp":7342144593105,"id":2775,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":114318,"timestamp":7342144594576,"id":2786,"parentId":2769,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144708898,"id":2898,"parentId":2769,"tags":{},"startTime":1776949090928,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":117109,"timestamp":7342144592475,"id":2769,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":114976,"timestamp":7342144594618,"id":2788,"parentId":2771,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342144709601,"id":2899,"parentId":2771,"tags":{},"startTime":1776949090929,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":120805,"timestamp":7342144592873,"id":2771,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":119182,"timestamp":7342144594645,"id":2791,"parentId":2774,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":83,"timestamp":7342144713859,"id":2900,"parentId":2774,"tags":{},"startTime":1776949090933,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":121503,"timestamp":7342144593045,"id":2774,"parentId":2499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":131377,"timestamp":7342144583194,"id":2737,"parentId":2695,"tags":{},"startTime":1776949090802,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342144714581,"id":2901,"parentId":2695,"tags":{},"startTime":1776949090934,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":133825,"timestamp":7342144581251,"id":2695,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"ssr"},"startTime":1776949090800,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":120494,"timestamp":7342144594628,"id":2789,"parentId":2772,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342144715131,"id":2902,"parentId":2772,"tags":{},"startTime":1776949090934,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":123419,"timestamp":7342144592933,"id":2772,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":121715,"timestamp":7342144594654,"id":2793,"parentId":2776,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342144716378,"id":2903,"parentId":2776,"tags":{},"startTime":1776949090935,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":123605,"timestamp":7342144593156,"id":2776,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":122226,"timestamp":7342144594639,"id":2790,"parentId":2773,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342144716871,"id":2904,"parentId":2773,"tags":{},"startTime":1776949090936,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":125608,"timestamp":7342144592990,"id":2773,"parentId":2501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":129995,"timestamp":7342144594668,"id":2796,"parentId":2779,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342144724678,"id":2905,"parentId":2779,"tags":{},"startTime":1776949090944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":131501,"timestamp":7342144593568,"id":2779,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"ssr"},"startTime":1776949090813,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":130415,"timestamp":7342144594664,"id":2795,"parentId":2778,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342144725085,"id":2906,"parentId":2778,"tags":{},"startTime":1776949090944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":131911,"timestamp":7342144593396,"id":2778,"parentId":2508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":130654,"timestamp":7342144594660,"id":2794,"parentId":2777,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342144725319,"id":2907,"parentId":2777,"tags":{},"startTime":1776949090944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":132889,"timestamp":7342144593214,"id":2777,"parentId":2508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"ssr"},"startTime":1776949090812,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":131460,"timestamp":7342144594673,"id":2797,"parentId":2780,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144726141,"id":2908,"parentId":2780,"tags":{},"startTime":1776949090945,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":132785,"timestamp":7342144593626,"id":2780,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"ssr"},"startTime":1776949090813,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":131738,"timestamp":7342144594681,"id":2798,"parentId":2781,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":31,"timestamp":7342144726509,"id":2909,"parentId":2781,"tags":{},"startTime":1776949090946,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":133238,"timestamp":7342144593679,"id":2781,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"ssr"},"startTime":1776949090813,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":132304,"timestamp":7342144594693,"id":2801,"parentId":2784,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":134,"timestamp":7342144727074,"id":2910,"parentId":2784,"tags":{},"startTime":1776949090946,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":136840,"timestamp":7342144594416,"id":2784,"parentId":2507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"ssr"},"startTime":1776949090813,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":136642,"timestamp":7342144594689,"id":2800,"parentId":2783,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":146,"timestamp":7342144731353,"id":2911,"parentId":2783,"tags":{},"startTime":1776949090950,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":137496,"timestamp":7342144594334,"id":2783,"parentId":2507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"ssr"},"startTime":1776949090813,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":137199,"timestamp":7342144594696,"id":2802,"parentId":2785,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342144731902,"id":2912,"parentId":2785,"tags":{},"startTime":1776949090951,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":138698,"timestamp":7342144594480,"id":2785,"parentId":2507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"ssr"},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":138508,"timestamp":7342144594685,"id":2799,"parentId":2782,"tags":{},"startTime":1776949090814,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342144733203,"id":2913,"parentId":2782,"tags":{},"startTime":1776949090952,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":139688,"timestamp":7342144593916,"id":2782,"parentId":2508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"ssr"},"startTime":1776949090813,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":139874,"timestamp":7342144600997,"id":2831,"parentId":2806,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144740889,"id":2914,"parentId":2806,"tags":{},"startTime":1776949090960,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":144741,"timestamp":7342144596764,"id":2806,"parentId":2505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":140517,"timestamp":7342144601016,"id":2834,"parentId":2809,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342144741543,"id":2915,"parentId":2809,"tags":{},"startTime":1776949090961,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":144938,"timestamp":7342144596928,"id":2809,"parentId":2505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":140870,"timestamp":7342144601005,"id":2832,"parentId":2807,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342144741880,"id":2916,"parentId":2807,"tags":{},"startTime":1776949090961,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":145606,"timestamp":7342144596816,"id":2807,"parentId":2505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":141452,"timestamp":7342144600988,"id":2830,"parentId":2805,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342144742448,"id":2917,"parentId":2805,"tags":{},"startTime":1776949090961,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":148482,"timestamp":7342144596709,"id":2805,"parentId":2505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":144174,"timestamp":7342144601030,"id":2837,"parentId":2812,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":71,"timestamp":7342144745213,"id":2918,"parentId":2812,"tags":{},"startTime":1776949090964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":149123,"timestamp":7342144597088,"id":2812,"parentId":2507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":145201,"timestamp":7342144601026,"id":2836,"parentId":2811,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":64,"timestamp":7342144746237,"id":2919,"parentId":2811,"tags":{},"startTime":1776949090965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":151148,"timestamp":7342144597035,"id":2811,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":147313,"timestamp":7342144600963,"id":2828,"parentId":2803,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":255,"timestamp":7342144748284,"id":2920,"parentId":2803,"tags":{},"startTime":1776949090967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":152812,"timestamp":7342144596566,"id":2803,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":148351,"timestamp":7342144601035,"id":2838,"parentId":2813,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342144749391,"id":2921,"parentId":2813,"tags":{},"startTime":1776949090968,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":153157,"timestamp":7342144597143,"id":2813,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":149296,"timestamp":7342144601021,"id":2835,"parentId":2810,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":69,"timestamp":7342144750324,"id":2922,"parentId":2810,"tags":{},"startTime":1776949090969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":154591,"timestamp":7342144596983,"id":2810,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":150573,"timestamp":7342144601010,"id":2833,"parentId":2808,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144751589,"id":2923,"parentId":2808,"tags":{},"startTime":1776949090971,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":154946,"timestamp":7342144596871,"id":2808,"parentId":2505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":150780,"timestamp":7342144601045,"id":2840,"parentId":2815,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342144751830,"id":2924,"parentId":2815,"tags":{},"startTime":1776949090971,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":155034,"timestamp":7342144597832,"id":2815,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"ssr"},"startTime":1776949090817,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":151820,"timestamp":7342144601054,"id":2842,"parentId":2817,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342144752917,"id":2925,"parentId":2817,"tags":{},"startTime":1776949090972,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":154584,"timestamp":7342144598701,"id":2817,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":152231,"timestamp":7342144601062,"id":2844,"parentId":2819,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342144753300,"id":2926,"parentId":2819,"tags":{},"startTime":1776949090972,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":159369,"timestamp":7342144598819,"id":2819,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":157142,"timestamp":7342144601065,"id":2845,"parentId":2820,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":139,"timestamp":7342144758215,"id":2927,"parentId":2820,"tags":{},"startTime":1776949090977,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":160083,"timestamp":7342144598869,"id":2820,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":158511,"timestamp":7342144601050,"id":2841,"parentId":2816,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342144759567,"id":2928,"parentId":2816,"tags":{},"startTime":1776949090979,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":162274,"timestamp":7342144598547,"id":2816,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":159766,"timestamp":7342144601071,"id":2846,"parentId":2821,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342144760845,"id":2929,"parentId":2821,"tags":{},"startTime":1776949090980,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":162506,"timestamp":7342144598925,"id":2821,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":160404,"timestamp":7342144601040,"id":2839,"parentId":2814,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342144761453,"id":2930,"parentId":2814,"tags":{},"startTime":1776949090980,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":164523,"timestamp":7342144597190,"id":2814,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":160639,"timestamp":7342144601086,"id":2850,"parentId":2825,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342144761735,"id":2931,"parentId":2825,"tags":{},"startTime":1776949090981,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":162055,"timestamp":7342144599818,"id":2825,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"ssr"},"startTime":1776949090819,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":160897,"timestamp":7342144600982,"id":2829,"parentId":2804,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":67,"timestamp":7342144761883,"id":2932,"parentId":2804,"tags":{},"startTime":1776949090981,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":167048,"timestamp":7342144596651,"id":2804,"parentId":2507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"ssr"},"startTime":1776949090816,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":162652,"timestamp":7342144601058,"id":2843,"parentId":2818,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342144763718,"id":2933,"parentId":2818,"tags":{},"startTime":1776949090983,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":165937,"timestamp":7342144598763,"id":2818,"parentId":2498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":163620,"timestamp":7342144601089,"id":2851,"parentId":2826,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342144764715,"id":2934,"parentId":2826,"tags":{},"startTime":1776949090984,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":164945,"timestamp":7342144600017,"id":2826,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"ssr"},"startTime":1776949090819,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":163888,"timestamp":7342144601081,"id":2849,"parentId":2824,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342144764977,"id":2935,"parentId":2824,"tags":{},"startTime":1776949090984,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":165470,"timestamp":7342144599710,"id":2824,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"ssr"},"startTime":1776949090819,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":164111,"timestamp":7342144601075,"id":2847,"parentId":2822,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342144765193,"id":2936,"parentId":2822,"tags":{},"startTime":1776949090984,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":167068,"timestamp":7342144598975,"id":2822,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":164974,"timestamp":7342144601078,"id":2848,"parentId":2823,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342144766056,"id":2937,"parentId":2823,"tags":{},"startTime":1776949090985,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":167162,"timestamp":7342144599327,"id":2823,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"ssr"},"startTime":1776949090818,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":165402,"timestamp":7342144601092,"id":2852,"parentId":2827,"tags":{},"startTime":1776949090820,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342144766499,"id":2938,"parentId":2827,"tags":{},"startTime":1776949090986,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":166822,"timestamp":7342144600300,"id":2827,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"ssr"},"startTime":1776949090819,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8139,"timestamp":7342144840491,"id":2985,"parentId":2943,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":67,"timestamp":7342144848658,"id":3067,"parentId":2943,"tags":{},"startTime":1776949091068,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10608,"timestamp":7342144838860,"id":2943,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9000,"timestamp":7342144840480,"id":2984,"parentId":2942,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":67,"timestamp":7342144849505,"id":3068,"parentId":2942,"tags":{},"startTime":1776949091069,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11286,"timestamp":7342144838816,"id":2942,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9732,"timestamp":7342144840495,"id":2986,"parentId":2944,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":348,"timestamp":7342144850259,"id":3069,"parentId":2944,"tags":{},"startTime":1776949091069,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12208,"timestamp":7342144838904,"id":2944,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10671,"timestamp":7342144840465,"id":2982,"parentId":2940,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342144851142,"id":3070,"parentId":2940,"tags":{},"startTime":1776949091070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12758,"timestamp":7342144838664,"id":2940,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":11517,"timestamp":7342144840502,"id":2988,"parentId":2946,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342144852025,"id":3071,"parentId":2946,"tags":{},"startTime":1776949091071,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14231,"timestamp":7342144838983,"id":2946,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12720,"timestamp":7342144840510,"id":2990,"parentId":2948,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342144853234,"id":3072,"parentId":2948,"tags":{},"startTime":1776949091072,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14727,"timestamp":7342144839075,"id":2948,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13313,"timestamp":7342144840499,"id":2987,"parentId":2945,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342144853817,"id":3073,"parentId":2945,"tags":{},"startTime":1776949091073,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15393,"timestamp":7342144838944,"id":2945,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13822,"timestamp":7342144840523,"id":2994,"parentId":2952,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342144854350,"id":3074,"parentId":2952,"tags":{},"startTime":1776949091073,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15663,"timestamp":7342144839225,"id":2952,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14377,"timestamp":7342144840516,"id":2992,"parentId":2950,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342144854898,"id":3075,"parentId":2950,"tags":{},"startTime":1776949091074,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16073,"timestamp":7342144839151,"id":2950,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14781,"timestamp":7342144840449,"id":2981,"parentId":2939,"tags":{},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342144855234,"id":3076,"parentId":2939,"tags":{},"startTime":1776949091074,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16925,"timestamp":7342144838538,"id":2939,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14924,"timestamp":7342144840548,"id":2999,"parentId":2957,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342144855477,"id":3077,"parentId":2957,"tags":{},"startTime":1776949091075,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37471,"timestamp":7342144839412,"id":2957,"parentId":2519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36513,"timestamp":7342144840472,"id":2983,"parentId":2941,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":144,"timestamp":7342144877000,"id":3078,"parentId":2941,"tags":{},"startTime":1776949091096,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39560,"timestamp":7342144838762,"id":2941,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37835,"timestamp":7342144840519,"id":2993,"parentId":2951,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342144878364,"id":3079,"parentId":2951,"tags":{},"startTime":1776949091097,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39645,"timestamp":7342144839188,"id":2951,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38351,"timestamp":7342144840506,"id":2989,"parentId":2947,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":96,"timestamp":7342144878863,"id":3080,"parentId":2947,"tags":{},"startTime":1776949091098,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41412,"timestamp":7342144839023,"id":2947,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39910,"timestamp":7342144840541,"id":2997,"parentId":2955,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":160,"timestamp":7342144880459,"id":3081,"parentId":2955,"tags":{},"startTime":1776949091100,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42998,"timestamp":7342144839337,"id":2955,"parentId":2519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41825,"timestamp":7342144840551,"id":3000,"parentId":2958,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342144882386,"id":3082,"parentId":2958,"tags":{},"startTime":1776949091101,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43608,"timestamp":7342144839449,"id":2958,"parentId":2520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42516,"timestamp":7342144840554,"id":3001,"parentId":2959,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":98,"timestamp":7342144883138,"id":3083,"parentId":2959,"tags":{},"startTime":1776949091102,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46231,"timestamp":7342144839486,"id":2959,"parentId":2520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45184,"timestamp":7342144840544,"id":2998,"parentId":2956,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342144885735,"id":3084,"parentId":2956,"tags":{},"startTime":1776949091105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47947,"timestamp":7342144839375,"id":2956,"parentId":2519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46780,"timestamp":7342144840557,"id":3002,"parentId":2960,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342144887345,"id":3085,"parentId":2960,"tags":{},"startTime":1776949091106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49285,"timestamp":7342144839525,"id":2960,"parentId":2510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":48288,"timestamp":7342144840532,"id":2996,"parentId":2954,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342144888850,"id":3086,"parentId":2954,"tags":{},"startTime":1776949091108,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53107,"timestamp":7342144839300,"id":2954,"parentId":2519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52009,"timestamp":7342144840563,"id":3004,"parentId":2962,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":700,"timestamp":7342144892613,"id":3087,"parentId":2962,"tags":{},"startTime":1776949091112,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":62260,"timestamp":7342144839614,"id":2962,"parentId":2510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61333,"timestamp":7342144840569,"id":3006,"parentId":2964,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54,"timestamp":7342144901913,"id":3088,"parentId":2964,"tags":{},"startTime":1776949091121,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":62726,"timestamp":7342144839688,"id":2964,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61911,"timestamp":7342144840513,"id":2991,"parentId":2949,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342144902430,"id":3089,"parentId":2949,"tags":{},"startTime":1776949091121,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64874,"timestamp":7342144839114,"id":2949,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63445,"timestamp":7342144840561,"id":3003,"parentId":2961,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342144904014,"id":3090,"parentId":2961,"tags":{},"startTime":1776949091123,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64932,"timestamp":7342144839576,"id":2961,"parentId":2510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63957,"timestamp":7342144840578,"id":3009,"parentId":2967,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":80,"timestamp":7342144904542,"id":3091,"parentId":2967,"tags":{},"startTime":1776949091124,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":65378,"timestamp":7342144839811,"id":2967,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":64628,"timestamp":7342144840572,"id":3007,"parentId":2965,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":81,"timestamp":7342144905226,"id":3092,"parentId":2965,"tags":{},"startTime":1776949091124,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":246451,"timestamp":7342144839724,"id":2965,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":245652,"timestamp":7342144840566,"id":3005,"parentId":2963,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":71,"timestamp":7342145086232,"id":3093,"parentId":2963,"tags":{},"startTime":1776949091305,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":265393,"timestamp":7342144839651,"id":2963,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":264710,"timestamp":7342144840581,"id":3010,"parentId":2968,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":650,"timestamp":7342145105329,"id":3094,"parentId":2968,"tags":{},"startTime":1776949091324,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":296349,"timestamp":7342144839849,"id":2968,"parentId":2524,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":295657,"timestamp":7342144840596,"id":3015,"parentId":2973,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":85,"timestamp":7342145136271,"id":3095,"parentId":2973,"tags":{},"startTime":1776949091355,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":318113,"timestamp":7342144840028,"id":2973,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":317681,"timestamp":7342144840590,"id":3013,"parentId":2971,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4554,"timestamp":7342145158322,"id":3096,"parentId":2971,"tags":{},"startTime":1776949091377,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":380591,"timestamp":7342144839955,"id":2971,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":380224,"timestamp":7342144840584,"id":3011,"parentId":2969,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":123,"timestamp":7342145220881,"id":3097,"parentId":2969,"tags":{},"startTime":1776949091440,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":389712,"timestamp":7342144839884,"id":2969,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":395192,"timestamp":7342144840587,"id":3012,"parentId":2970,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19010,"timestamp":7342145235806,"id":3098,"parentId":2970,"tags":{},"startTime":1776949091455,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":421323,"timestamp":7342144839920,"id":2970,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":420729,"timestamp":7342144840575,"id":3008,"parentId":2966,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":88,"timestamp":7342145261326,"id":3099,"parentId":2966,"tags":{},"startTime":1776949091480,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":422118,"timestamp":7342144839763,"id":2966,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":421293,"timestamp":7342144840604,"id":3018,"parentId":2976,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342145261904,"id":3100,"parentId":2976,"tags":{},"startTime":1776949091481,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":422029,"timestamp":7342144840138,"id":2976,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":421575,"timestamp":7342144840598,"id":3016,"parentId":2974,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342145262177,"id":3101,"parentId":2974,"tags":{},"startTime":1776949091481,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":422863,"timestamp":7342144840066,"id":2974,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":422418,"timestamp":7342144840606,"id":3019,"parentId":2977,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":140,"timestamp":7342145263032,"id":3102,"parentId":2977,"tags":{},"startTime":1776949091482,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":426117,"timestamp":7342144840174,"id":2977,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":425724,"timestamp":7342144840593,"id":3014,"parentId":2972,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":72,"timestamp":7342145266326,"id":3103,"parentId":2972,"tags":{},"startTime":1776949091485,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":426756,"timestamp":7342144839993,"id":2972,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":426156,"timestamp":7342144840601,"id":3017,"parentId":2975,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342145266763,"id":3104,"parentId":2975,"tags":{},"startTime":1776949091486,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":429162,"timestamp":7342144840102,"id":2975,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":428763,"timestamp":7342144840527,"id":2995,"parentId":2953,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342145269298,"id":3105,"parentId":2953,"tags":{},"startTime":1776949091488,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":430523,"timestamp":7342144839263,"id":2953,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"ssr"},"startTime":1776949091058,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":462904,"timestamp":7342144840612,"id":3021,"parentId":2979,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":368,"timestamp":7342145303544,"id":3106,"parentId":2979,"tags":{},"startTime":1776949091523,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":471791,"timestamp":7342144840258,"id":2979,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":481700,"timestamp":7342144840614,"id":3022,"parentId":2980,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":76,"timestamp":7342145322339,"id":3107,"parentId":2980,"tags":{},"startTime":1776949091541,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":487839,"timestamp":7342144840364,"id":2980,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":487639,"timestamp":7342144840609,"id":3020,"parentId":2978,"tags":{},"startTime":1776949091060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":89,"timestamp":7342145328271,"id":3108,"parentId":2978,"tags":{},"startTime":1776949091547,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":489482,"timestamp":7342144840211,"id":2978,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"ssr"},"startTime":1776949091059,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":485542,"timestamp":7342144844189,"id":3043,"parentId":3023,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":77,"timestamp":7342145329746,"id":3109,"parentId":3023,"tags":{},"startTime":1776949091549,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":489251,"timestamp":7342144843298,"id":3023,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"ssr"},"startTime":1776949091062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":488347,"timestamp":7342144844238,"id":3049,"parentId":3029,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342145332596,"id":3110,"parentId":3029,"tags":{},"startTime":1776949091552,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":489599,"timestamp":7342144843659,"id":3029,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":489095,"timestamp":7342144844215,"id":3045,"parentId":3025,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145333316,"id":3111,"parentId":3025,"tags":{},"startTime":1776949091552,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":490296,"timestamp":7342144843509,"id":3025,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":489588,"timestamp":7342144844230,"id":3047,"parentId":3027,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145333823,"id":3112,"parentId":3027,"tags":{},"startTime":1776949091553,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":490676,"timestamp":7342144843586,"id":3027,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":490040,"timestamp":7342144844234,"id":3048,"parentId":3028,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342145334278,"id":3113,"parentId":3028,"tags":{},"startTime":1776949091553,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":491933,"timestamp":7342144843623,"id":3028,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":491353,"timestamp":7342144844222,"id":3046,"parentId":3026,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":68,"timestamp":7342145335585,"id":3114,"parentId":3026,"tags":{},"startTime":1776949091555,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":492534,"timestamp":7342144843548,"id":3026,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":491885,"timestamp":7342144844205,"id":3044,"parentId":3024,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145336095,"id":3115,"parentId":3024,"tags":{},"startTime":1776949091555,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":493011,"timestamp":7342144843466,"id":3024,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":492251,"timestamp":7342144844242,"id":3050,"parentId":3030,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":380,"timestamp":7342145336498,"id":3116,"parentId":3030,"tags":{},"startTime":1776949091556,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":494340,"timestamp":7342144843696,"id":3030,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":493808,"timestamp":7342144844244,"id":3051,"parentId":3031,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342145338061,"id":3117,"parentId":3031,"tags":{},"startTime":1776949091557,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":495022,"timestamp":7342144843734,"id":3031,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":494524,"timestamp":7342144844248,"id":3052,"parentId":3032,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342145338778,"id":3118,"parentId":3032,"tags":{},"startTime":1776949091558,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":495567,"timestamp":7342144843771,"id":3032,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":495100,"timestamp":7342144844250,"id":3053,"parentId":3033,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145339356,"id":3119,"parentId":3033,"tags":{},"startTime":1776949091558,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":495866,"timestamp":7342144843810,"id":3033,"parentId":2559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":495428,"timestamp":7342144844255,"id":3055,"parentId":3035,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":181,"timestamp":7342145339689,"id":3120,"parentId":3035,"tags":{},"startTime":1776949091559,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":498285,"timestamp":7342144843886,"id":3035,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":497925,"timestamp":7342144844253,"id":3054,"parentId":3034,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145342184,"id":3121,"parentId":3034,"tags":{},"startTime":1776949091561,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":499560,"timestamp":7342144843849,"id":3034,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":499159,"timestamp":7342144844260,"id":3057,"parentId":3037,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":159,"timestamp":7342145343424,"id":3122,"parentId":3037,"tags":{},"startTime":1776949091562,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":504303,"timestamp":7342144843958,"id":3037,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":504006,"timestamp":7342144844269,"id":3060,"parentId":3040,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145348282,"id":3123,"parentId":3040,"tags":{},"startTime":1776949091567,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":504829,"timestamp":7342144844067,"id":3040,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":504667,"timestamp":7342144844266,"id":3059,"parentId":3039,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145348939,"id":3124,"parentId":3039,"tags":{},"startTime":1776949091568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":505084,"timestamp":7342144844031,"id":3039,"parentId":2524,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":504866,"timestamp":7342144844258,"id":3056,"parentId":3036,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145349129,"id":3125,"parentId":3036,"tags":{},"startTime":1776949091568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":505447,"timestamp":7342144843921,"id":3036,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":505100,"timestamp":7342144844274,"id":3062,"parentId":3042,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145349378,"id":3126,"parentId":3042,"tags":{},"startTime":1776949091568,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":506486,"timestamp":7342144844143,"id":3042,"parentId":2571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":506406,"timestamp":7342144844271,"id":3061,"parentId":3041,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145350681,"id":3127,"parentId":3041,"tags":{},"startTime":1776949091570,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":506833,"timestamp":7342144844104,"id":3041,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":506684,"timestamp":7342144844263,"id":3058,"parentId":3038,"tags":{},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342145350951,"id":3128,"parentId":3038,"tags":{},"startTime":1776949091570,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":508674,"timestamp":7342144843996,"id":3038,"parentId":2526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"ssr"},"startTime":1776949091063,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":519956,"timestamp":7342144844662,"id":3065,"parentId":3063,"tags":{},"startTime":1776949091064,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145364634,"id":3129,"parentId":3063,"tags":{},"startTime":1776949091584,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":521207,"timestamp":7342144844465,"id":3063,"parentId":2565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"ssr"},"startTime":1776949091064,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":520981,"timestamp":7342144844712,"id":3066,"parentId":3064,"tags":{},"startTime":1776949091064,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342145365703,"id":3130,"parentId":3064,"tags":{},"startTime":1776949091585,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":521831,"timestamp":7342144844510,"id":3064,"parentId":2562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"ssr"},"startTime":1776949091064,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15057,"timestamp":7342145407774,"id":3135,"parentId":3131,"tags":{},"startTime":1776949091627,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":132,"timestamp":7342145422846,"id":3213,"parentId":3131,"tags":{},"startTime":1776949091642,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17144,"timestamp":7342145407309,"id":3131,"parentId":2562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"ssr"},"startTime":1776949091626,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18478,"timestamp":7342145407791,"id":3136,"parentId":3132,"tags":{},"startTime":1776949091627,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":141,"timestamp":7342145426335,"id":3214,"parentId":3132,"tags":{},"startTime":1776949091645,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22459,"timestamp":7342145407587,"id":3132,"parentId":2562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"ssr"},"startTime":1776949091627,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22450,"timestamp":7342145407805,"id":3138,"parentId":3134,"tags":{},"startTime":1776949091627,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2406,"timestamp":7342145430362,"id":3215,"parentId":3134,"tags":{},"startTime":1776949091649,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28934,"timestamp":7342145407690,"id":3134,"parentId":2569,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"ssr"},"startTime":1776949091627,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28868,"timestamp":7342145407797,"id":3137,"parentId":3133,"tags":{},"startTime":1776949091627,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342145436693,"id":3216,"parentId":3133,"tags":{},"startTime":1776949091656,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29700,"timestamp":7342145407644,"id":3133,"parentId":2562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"ssr"},"startTime":1776949091627,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28999,"timestamp":7342145413113,"id":3169,"parentId":3141,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342145442122,"id":3217,"parentId":3141,"tags":{},"startTime":1776949091661,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30693,"timestamp":7342145411748,"id":3141,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32572,"timestamp":7342145413106,"id":3168,"parentId":3140,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145445696,"id":3218,"parentId":3140,"tags":{},"startTime":1776949091665,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34276,"timestamp":7342145411700,"id":3140,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32867,"timestamp":7342145413120,"id":3170,"parentId":3142,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145445991,"id":3219,"parentId":3142,"tags":{},"startTime":1776949091665,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35530,"timestamp":7342145411793,"id":3142,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34198,"timestamp":7342145413142,"id":3174,"parentId":3146,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":35,"timestamp":7342145447469,"id":3220,"parentId":3146,"tags":{},"startTime":1776949091667,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36602,"timestamp":7342145411991,"id":3146,"parentId":2525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35517,"timestamp":7342145413087,"id":3167,"parentId":3139,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145448610,"id":3221,"parentId":3139,"tags":{},"startTime":1776949091668,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38749,"timestamp":7342145411595,"id":3139,"parentId":2569,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37240,"timestamp":7342145413138,"id":3173,"parentId":3145,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":74,"timestamp":7342145450391,"id":3222,"parentId":3145,"tags":{},"startTime":1776949091669,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39867,"timestamp":7342145411928,"id":3145,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38669,"timestamp":7342145413147,"id":3175,"parentId":3147,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145451824,"id":3223,"parentId":3147,"tags":{},"startTime":1776949091671,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40067,"timestamp":7342145412034,"id":3147,"parentId":2559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38986,"timestamp":7342145413128,"id":3171,"parentId":3143,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342145452119,"id":3224,"parentId":3143,"tags":{},"startTime":1776949091671,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40927,"timestamp":7342145411837,"id":3143,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39657,"timestamp":7342145413150,"id":3176,"parentId":3148,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145452815,"id":3225,"parentId":3148,"tags":{},"startTime":1776949091672,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40944,"timestamp":7342145412074,"id":3148,"parentId":2559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39931,"timestamp":7342145413133,"id":3172,"parentId":3144,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145453069,"id":3226,"parentId":3144,"tags":{},"startTime":1776949091672,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42335,"timestamp":7342145411877,"id":3144,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41071,"timestamp":7342145413154,"id":3177,"parentId":3149,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342145454230,"id":3227,"parentId":3149,"tags":{},"startTime":1776949091673,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43211,"timestamp":7342145412112,"id":3149,"parentId":2559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42166,"timestamp":7342145413200,"id":3185,"parentId":3157,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145455371,"id":3228,"parentId":3157,"tags":{},"startTime":1776949091674,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43284,"timestamp":7342145412648,"id":3157,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42766,"timestamp":7342145413175,"id":3181,"parentId":3153,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145455947,"id":3229,"parentId":3153,"tags":{},"startTime":1776949091675,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45324,"timestamp":7342145412424,"id":3153,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44578,"timestamp":7342145413193,"id":3183,"parentId":3155,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":58,"timestamp":7342145457781,"id":3230,"parentId":3155,"tags":{},"startTime":1776949091677,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45517,"timestamp":7342145412535,"id":3155,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44863,"timestamp":7342145413197,"id":3184,"parentId":3156,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145458064,"id":3231,"parentId":3156,"tags":{},"startTime":1776949091677,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45660,"timestamp":7342145412601,"id":3156,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45103,"timestamp":7342145413164,"id":3179,"parentId":3151,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145458270,"id":3232,"parentId":3151,"tags":{},"startTime":1776949091677,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46261,"timestamp":7342145412243,"id":3151,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45321,"timestamp":7342145413189,"id":3182,"parentId":3154,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145458513,"id":3233,"parentId":3154,"tags":{},"startTime":1776949091678,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46433,"timestamp":7342145412474,"id":3154,"parentId":2565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45704,"timestamp":7342145413209,"id":3188,"parentId":3160,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":67,"timestamp":7342145458918,"id":3234,"parentId":3160,"tags":{},"startTime":1776949091678,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46674,"timestamp":7342145412779,"id":3160,"parentId":2570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46262,"timestamp":7342145413204,"id":3186,"parentId":3158,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":544,"timestamp":7342145459472,"id":3235,"parentId":3158,"tags":{},"startTime":1776949091679,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48638,"timestamp":7342145412690,"id":3158,"parentId":2571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":48136,"timestamp":7342145413215,"id":3190,"parentId":3162,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342145461357,"id":3236,"parentId":3162,"tags":{},"startTime":1776949091680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49493,"timestamp":7342145412859,"id":3162,"parentId":2570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49195,"timestamp":7342145413170,"id":3180,"parentId":3152,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145462372,"id":3237,"parentId":3152,"tags":{},"startTime":1776949091681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51127,"timestamp":7342145412339,"id":3152,"parentId":2563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50272,"timestamp":7342145413207,"id":3187,"parentId":3159,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342145463484,"id":3238,"parentId":3159,"tags":{},"startTime":1776949091683,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51221,"timestamp":7342145412734,"id":3159,"parentId":2570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50804,"timestamp":7342145413158,"id":3178,"parentId":3150,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145463968,"id":3239,"parentId":3150,"tags":{},"startTime":1776949091683,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52425,"timestamp":7342145412149,"id":3150,"parentId":2559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"ssr"},"startTime":1776949091631,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51354,"timestamp":7342145413228,"id":3194,"parentId":3166,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145464586,"id":3240,"parentId":3166,"tags":{},"startTime":1776949091684,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51700,"timestamp":7342145413033,"id":3166,"parentId":2574,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51775,"timestamp":7342145413218,"id":3191,"parentId":3163,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342145465018,"id":3241,"parentId":3163,"tags":{},"startTime":1776949091684,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53060,"timestamp":7342145412910,"id":3163,"parentId":2570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52774,"timestamp":7342145413212,"id":3189,"parentId":3161,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342145465995,"id":3242,"parentId":3161,"tags":{},"startTime":1776949091685,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53503,"timestamp":7342145412820,"id":3161,"parentId":2570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53112,"timestamp":7342145413221,"id":3192,"parentId":3164,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342145466338,"id":3243,"parentId":3164,"tags":{},"startTime":1776949091685,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53894,"timestamp":7342145412949,"id":3164,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53625,"timestamp":7342145413224,"id":3193,"parentId":3165,"tags":{},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342145466853,"id":3244,"parentId":3165,"tags":{},"startTime":1776949091686,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56715,"timestamp":7342145412987,"id":3165,"parentId":2567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"ssr"},"startTime":1776949091632,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":66891,"timestamp":7342145414199,"id":3205,"parentId":3199,"tags":{},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145481108,"id":3245,"parentId":3199,"tags":{},"startTime":1776949091700,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":67562,"timestamp":7342145414089,"id":3199,"parentId":2577,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"ssr"},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":67519,"timestamp":7342145414196,"id":3204,"parentId":3198,"tags":{},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":124,"timestamp":7342145481782,"id":3246,"parentId":3198,"tags":{},"startTime":1776949091701,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":68460,"timestamp":7342145414038,"id":3198,"parentId":2577,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"ssr"},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":68334,"timestamp":7342145414186,"id":3202,"parentId":3196,"tags":{},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342145482530,"id":3247,"parentId":3196,"tags":{},"startTime":1776949091702,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":70955,"timestamp":7342145413961,"id":3196,"parentId":2577,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"ssr"},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":70744,"timestamp":7342145414202,"id":3206,"parentId":3200,"tags":{},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":72,"timestamp":7342145484956,"id":3248,"parentId":3200,"tags":{},"startTime":1776949091704,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":71102,"timestamp":7342145414129,"id":3200,"parentId":2579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"ssr"},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":71066,"timestamp":7342145414174,"id":3201,"parentId":3195,"tags":{},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342145485245,"id":3249,"parentId":3195,"tags":{},"startTime":1776949091704,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73280,"timestamp":7342145413916,"id":3195,"parentId":2574,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"ssr"},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":73027,"timestamp":7342145414193,"id":3203,"parentId":3197,"tags":{},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":60,"timestamp":7342145487229,"id":3250,"parentId":3197,"tags":{},"startTime":1776949091706,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":75147,"timestamp":7342145414000,"id":3197,"parentId":2577,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"ssr"},"startTime":1776949091633,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":76697,"timestamp":7342145422715,"id":3210,"parentId":3207,"tags":{},"startTime":1776949091642,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342145499427,"id":3251,"parentId":3207,"tags":{},"startTime":1776949091718,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":77889,"timestamp":7342145422518,"id":3207,"parentId":2579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"ssr"},"startTime":1776949091642,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":77709,"timestamp":7342145422731,"id":3212,"parentId":3209,"tags":{},"startTime":1776949091642,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":75,"timestamp":7342145500451,"id":3252,"parentId":3209,"tags":{},"startTime":1776949091719,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":82081,"timestamp":7342145422664,"id":3209,"parentId":2568,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"ssr"},"startTime":1776949091642,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":82068,"timestamp":7342145422727,"id":3211,"parentId":3208,"tags":{},"startTime":1776949091642,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342145504808,"id":3253,"parentId":3208,"tags":{},"startTime":1776949091724,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":82551,"timestamp":7342145422618,"id":3208,"parentId":2568,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"ssr"},"startTime":1776949091642,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":144789,"timestamp":7342145632697,"id":3305,"parentId":3255,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342145777503,"id":3448,"parentId":3255,"tags":{},"startTime":1776949091997,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":154606,"timestamp":7342145624292,"id":3255,"parentId":2561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"ssr"},"startTime":1776949091843,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":146186,"timestamp":7342145632738,"id":3307,"parentId":3257,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145778932,"id":3449,"parentId":3257,"tags":{},"startTime":1776949091998,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":155211,"timestamp":7342145624395,"id":3257,"parentId":2565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"ssr"},"startTime":1776949091843,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":146912,"timestamp":7342145632708,"id":3306,"parentId":3256,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342145779626,"id":3450,"parentId":3256,"tags":{},"startTime":1776949091999,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":155665,"timestamp":7342145624346,"id":3256,"parentId":2579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"ssr"},"startTime":1776949091843,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":147299,"timestamp":7342145632747,"id":3308,"parentId":3258,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":64,"timestamp":7342145780064,"id":3451,"parentId":3258,"tags":{},"startTime":1776949091999,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":156183,"timestamp":7342145624439,"id":3258,"parentId":2565,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"ssr"},"startTime":1776949091843,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":147885,"timestamp":7342145632758,"id":3310,"parentId":3260,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342145780662,"id":3452,"parentId":3260,"tags":{},"startTime":1776949092000,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":154585,"timestamp":7342145626701,"id":3260,"parentId":2561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"ssr"},"startTime":1776949091846,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":148741,"timestamp":7342145632556,"id":3304,"parentId":3254,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145781303,"id":3453,"parentId":3254,"tags":{},"startTime":1776949092000,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":157696,"timestamp":7342145624154,"id":3254,"parentId":2579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"ssr"},"startTime":1776949091843,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":149092,"timestamp":7342145632768,"id":3312,"parentId":3262,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145781866,"id":3454,"parentId":3262,"tags":{},"startTime":1776949092001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":153063,"timestamp":7342145629058,"id":3262,"parentId":2576,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"ssr"},"startTime":1776949091848,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":149366,"timestamp":7342145632776,"id":3314,"parentId":3264,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145782148,"id":3455,"parentId":3264,"tags":{},"startTime":1776949092001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":152817,"timestamp":7342145629494,"id":3264,"parentId":2576,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":149528,"timestamp":7342145632790,"id":3317,"parentId":3267,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145782324,"id":3456,"parentId":3267,"tags":{},"startTime":1776949092001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":152888,"timestamp":7342145629829,"id":3267,"parentId":2581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":149944,"timestamp":7342145632781,"id":3315,"parentId":3265,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145782729,"id":3457,"parentId":3265,"tags":{},"startTime":1776949092002,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":153406,"timestamp":7342145629540,"id":3265,"parentId":2581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":150150,"timestamp":7342145632802,"id":3319,"parentId":3269,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342145782956,"id":3458,"parentId":3269,"tags":{},"startTime":1776949092002,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":153083,"timestamp":7342145629993,"id":3269,"parentId":2581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":150293,"timestamp":7342145632786,"id":3316,"parentId":3266,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145783083,"id":3459,"parentId":3266,"tags":{},"startTime":1776949092002,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":153532,"timestamp":7342145629785,"id":3266,"parentId":2581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":150527,"timestamp":7342145632794,"id":3318,"parentId":3268,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342145783325,"id":3460,"parentId":3268,"tags":{},"startTime":1776949092002,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":154145,"timestamp":7342145629939,"id":3268,"parentId":2581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":151278,"timestamp":7342145632816,"id":3322,"parentId":3272,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342145784099,"id":3461,"parentId":3272,"tags":{},"startTime":1776949092003,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":155173,"timestamp":7342145630129,"id":3272,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":152502,"timestamp":7342145632808,"id":3320,"parentId":3270,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145785314,"id":3462,"parentId":3270,"tags":{},"startTime":1776949092004,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":155791,"timestamp":7342145630041,"id":3270,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":153047,"timestamp":7342145632812,"id":3321,"parentId":3271,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342145785870,"id":3463,"parentId":3271,"tags":{},"startTime":1776949092005,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":156096,"timestamp":7342145630088,"id":3271,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":153376,"timestamp":7342145632829,"id":3325,"parentId":3275,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145786214,"id":3464,"parentId":3275,"tags":{},"startTime":1776949092005,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":156247,"timestamp":7342145630347,"id":3275,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":153782,"timestamp":7342145632819,"id":3323,"parentId":3273,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145786606,"id":3465,"parentId":3273,"tags":{},"startTime":1776949092006,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":156741,"timestamp":7342145630203,"id":3273,"parentId":2567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":154114,"timestamp":7342145632838,"id":3327,"parentId":3277,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145786957,"id":3466,"parentId":3277,"tags":{},"startTime":1776949092006,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":156705,"timestamp":7342145630433,"id":3277,"parentId":2561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":154321,"timestamp":7342145632823,"id":3324,"parentId":3274,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145787148,"id":3467,"parentId":3274,"tags":{},"startTime":1776949092006,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":159906,"timestamp":7342145630289,"id":3274,"parentId":2567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":161517,"timestamp":7342145632834,"id":3326,"parentId":3276,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145794367,"id":3468,"parentId":3276,"tags":{},"startTime":1776949092013,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":164681,"timestamp":7342145630393,"id":3276,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"ssr"},"startTime":1776949091849,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":162243,"timestamp":7342145632846,"id":3329,"parentId":3279,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145795096,"id":3469,"parentId":3279,"tags":{},"startTime":1776949092014,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":164740,"timestamp":7342145630536,"id":3279,"parentId":2561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":162440,"timestamp":7342145632842,"id":3328,"parentId":3278,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145795286,"id":3470,"parentId":3278,"tags":{},"startTime":1776949092014,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":165065,"timestamp":7342145630473,"id":3278,"parentId":2561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":162693,"timestamp":7342145632849,"id":3330,"parentId":3280,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145795548,"id":3471,"parentId":3280,"tags":{},"startTime":1776949092015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":165198,"timestamp":7342145630579,"id":3280,"parentId":2561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":162933,"timestamp":7342145632853,"id":3331,"parentId":3281,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145795792,"id":3472,"parentId":3281,"tags":{},"startTime":1776949092015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":165699,"timestamp":7342145630623,"id":3281,"parentId":2587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":163478,"timestamp":7342145632864,"id":3334,"parentId":3284,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145796348,"id":3473,"parentId":3284,"tags":{},"startTime":1776949092015,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":165841,"timestamp":7342145630745,"id":3284,"parentId":2582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":163736,"timestamp":7342145632856,"id":3332,"parentId":3282,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145796598,"id":3474,"parentId":3282,"tags":{},"startTime":1776949092016,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":166130,"timestamp":7342145630665,"id":3282,"parentId":2580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":163940,"timestamp":7342145632860,"id":3333,"parentId":3283,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":98,"timestamp":7342145796807,"id":3475,"parentId":3283,"tags":{},"startTime":1776949092016,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":168742,"timestamp":7342145630708,"id":3283,"parentId":2580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":166613,"timestamp":7342145632868,"id":3335,"parentId":3285,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54,"timestamp":7342145799492,"id":3476,"parentId":3285,"tags":{},"startTime":1776949092019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":168910,"timestamp":7342145630876,"id":3285,"parentId":2573,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":166921,"timestamp":7342145632873,"id":3336,"parentId":3286,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342145799799,"id":3477,"parentId":3286,"tags":{},"startTime":1776949092019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":169468,"timestamp":7342145630913,"id":3286,"parentId":2573,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":167517,"timestamp":7342145632876,"id":3337,"parentId":3287,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342145800399,"id":3478,"parentId":3287,"tags":{},"startTime":1776949092019,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":169618,"timestamp":7342145630951,"id":3287,"parentId":2587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":167803,"timestamp":7342145632772,"id":3313,"parentId":3263,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342145800580,"id":3479,"parentId":3263,"tags":{},"startTime":1776949092020,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":172220,"timestamp":7342145629419,"id":3263,"parentId":2576,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"ssr"},"startTime":1776949091848,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":168768,"timestamp":7342145632883,"id":3339,"parentId":3289,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145801657,"id":3480,"parentId":3289,"tags":{},"startTime":1776949092021,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":170796,"timestamp":7342145631043,"id":3289,"parentId":2588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":169081,"timestamp":7342145632763,"id":3311,"parentId":3261,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145801848,"id":3481,"parentId":3261,"tags":{},"startTime":1776949092021,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":173510,"timestamp":7342145628554,"id":3261,"parentId":2561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"ssr"},"startTime":1776949091848,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":169180,"timestamp":7342145632890,"id":3341,"parentId":3291,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342145802074,"id":3482,"parentId":3291,"tags":{},"startTime":1776949092021,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":171895,"timestamp":7342145631120,"id":3291,"parentId":2586,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":170133,"timestamp":7342145632892,"id":3342,"parentId":3292,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145803030,"id":3483,"parentId":3292,"tags":{},"startTime":1776949092022,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":172344,"timestamp":7342145631234,"id":3292,"parentId":2586,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":170689,"timestamp":7342145632895,"id":3343,"parentId":3293,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145803588,"id":3484,"parentId":3293,"tags":{},"startTime":1776949092023,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":174515,"timestamp":7342145632022,"id":3293,"parentId":2588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":173733,"timestamp":7342145632880,"id":3338,"parentId":3288,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342145806623,"id":3485,"parentId":3288,"tags":{},"startTime":1776949092026,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":175958,"timestamp":7342145630999,"id":3288,"parentId":2588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":174066,"timestamp":7342145632898,"id":3344,"parentId":3294,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145806969,"id":3486,"parentId":3294,"tags":{},"startTime":1776949092026,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":175375,"timestamp":7342145632066,"id":3294,"parentId":2582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":174546,"timestamp":7342145632901,"id":3345,"parentId":3295,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145807452,"id":3487,"parentId":3295,"tags":{},"startTime":1776949092026,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":175857,"timestamp":7342145632111,"id":3295,"parentId":2584,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":175070,"timestamp":7342145632904,"id":3346,"parentId":3296,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145807977,"id":3488,"parentId":3296,"tags":{},"startTime":1776949092027,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":175980,"timestamp":7342145632150,"id":3296,"parentId":2586,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":175227,"timestamp":7342145632909,"id":3348,"parentId":3298,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145808141,"id":3489,"parentId":3298,"tags":{},"startTime":1776949092027,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":176229,"timestamp":7342145632224,"id":3298,"parentId":2581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":175555,"timestamp":7342145632906,"id":3347,"parentId":3297,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":93,"timestamp":7342145808466,"id":3490,"parentId":3297,"tags":{},"startTime":1776949092028,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":180904,"timestamp":7342145632186,"id":3297,"parentId":2584,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":180290,"timestamp":7342145632912,"id":3349,"parentId":3299,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":219,"timestamp":7342145813298,"id":3491,"parentId":3299,"tags":{},"startTime":1776949092032,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":181750,"timestamp":7342145632261,"id":3299,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":181278,"timestamp":7342145632752,"id":3309,"parentId":3259,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145814038,"id":3492,"parentId":3259,"tags":{},"startTime":1776949092033,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":189653,"timestamp":7342145624619,"id":3259,"parentId":2583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"ssr"},"startTime":1776949091844,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":181373,"timestamp":7342145632917,"id":3351,"parentId":3301,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145814297,"id":3493,"parentId":3301,"tags":{},"startTime":1776949092033,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":186070,"timestamp":7342145632336,"id":3301,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":185507,"timestamp":7342145632914,"id":3350,"parentId":3300,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342145818429,"id":3494,"parentId":3300,"tags":{},"startTime":1776949092037,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":186613,"timestamp":7342145632299,"id":3300,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":186441,"timestamp":7342145632922,"id":3353,"parentId":3303,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342145819372,"id":3495,"parentId":3303,"tags":{},"startTime":1776949092038,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":187188,"timestamp":7342145632407,"id":3303,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":186884,"timestamp":7342145632920,"id":3352,"parentId":3302,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":79,"timestamp":7342145819833,"id":3496,"parentId":3302,"tags":{},"startTime":1776949092039,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":188671,"timestamp":7342145632371,"id":3302,"parentId":2566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"ssr"},"startTime":1776949091851,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":197907,"timestamp":7342145632886,"id":3340,"parentId":3290,"tags":{},"startTime":1776949091852,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342145830824,"id":3497,"parentId":3290,"tags":{},"startTime":1776949092050,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":200312,"timestamp":7342145631082,"id":3290,"parentId":2588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"ssr"},"startTime":1776949091850,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":66839,"timestamp":7342145764574,"id":3396,"parentId":3355,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342145831424,"id":3498,"parentId":3355,"tags":{},"startTime":1776949092050,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":75952,"timestamp":7342145758060,"id":3355,"parentId":2682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"ssr"},"startTime":1776949091977,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":69365,"timestamp":7342145764676,"id":3398,"parentId":3357,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145834047,"id":3499,"parentId":3357,"tags":{},"startTime":1776949092053,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":72840,"timestamp":7342145761399,"id":3357,"parentId":2681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"ssr"},"startTime":1776949091980,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":69132,"timestamp":7342145765112,"id":3402,"parentId":3361,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145834248,"id":3500,"parentId":3361,"tags":{},"startTime":1776949092053,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":72915,"timestamp":7342145762020,"id":3361,"parentId":2689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":70302,"timestamp":7342145764648,"id":3397,"parentId":3356,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145834955,"id":3501,"parentId":3356,"tags":{},"startTime":1776949092054,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74012,"timestamp":7342145761173,"id":3356,"parentId":2682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"ssr"},"startTime":1776949091980,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":70476,"timestamp":7342145764714,"id":3400,"parentId":3359,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342145835193,"id":3502,"parentId":3359,"tags":{},"startTime":1776949092054,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73596,"timestamp":7342145761753,"id":3359,"parentId":2681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":70624,"timestamp":7342145764730,"id":3401,"parentId":3360,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342145835358,"id":3503,"parentId":3360,"tags":{},"startTime":1776949092054,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73645,"timestamp":7342145761831,"id":3360,"parentId":2681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":70782,"timestamp":7342145764697,"id":3399,"parentId":3358,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342145835483,"id":3504,"parentId":3358,"tags":{},"startTime":1776949092055,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74055,"timestamp":7342145761615,"id":3358,"parentId":2681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":70540,"timestamp":7342145765134,"id":3405,"parentId":3364,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342145835679,"id":3505,"parentId":3364,"tags":{},"startTime":1776949092055,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74903,"timestamp":7342145762378,"id":3364,"parentId":2702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":72205,"timestamp":7342145765154,"id":3407,"parentId":3366,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342145837371,"id":3506,"parentId":3366,"tags":{},"startTime":1776949092056,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":75483,"timestamp":7342145762482,"id":3366,"parentId":2689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":72864,"timestamp":7342145765123,"id":3403,"parentId":3362,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145837994,"id":3507,"parentId":3362,"tags":{},"startTime":1776949092057,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":75946,"timestamp":7342145762251,"id":3362,"parentId":2689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":73077,"timestamp":7342145765129,"id":3404,"parentId":3363,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145838212,"id":3508,"parentId":3363,"tags":{},"startTime":1776949092057,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":76631,"timestamp":7342145762321,"id":3363,"parentId":2689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":73866,"timestamp":7342145765141,"id":3406,"parentId":3365,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145839014,"id":3509,"parentId":3365,"tags":{},"startTime":1776949092058,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":77013,"timestamp":7342145762423,"id":3365,"parentId":2689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"ssr"},"startTime":1776949091981,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":74290,"timestamp":7342145765158,"id":3408,"parentId":3367,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145839455,"id":3510,"parentId":3367,"tags":{},"startTime":1776949092059,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":77529,"timestamp":7342145762535,"id":3367,"parentId":2689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":75626,"timestamp":7342145764446,"id":3395,"parentId":3354,"tags":{},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145840076,"id":3511,"parentId":3354,"tags":{},"startTime":1776949092059,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":82641,"timestamp":7342145757625,"id":3354,"parentId":2682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"ssr"},"startTime":1776949091977,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":75084,"timestamp":7342145765187,"id":3413,"parentId":3372,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":60,"timestamp":7342145840277,"id":3512,"parentId":3372,"tags":{},"startTime":1776949092059,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":77694,"timestamp":7342145762815,"id":3372,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":75322,"timestamp":7342145765192,"id":3414,"parentId":3373,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7342145840518,"id":3513,"parentId":3373,"tags":{},"startTime":1776949092060,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":77778,"timestamp":7342145762853,"id":3373,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":75468,"timestamp":7342145765168,"id":3409,"parentId":3368,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145840640,"id":3514,"parentId":3368,"tags":{},"startTime":1776949092060,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":78860,"timestamp":7342145762615,"id":3368,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":76310,"timestamp":7342145765173,"id":3410,"parentId":3369,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":41,"timestamp":7342145842667,"id":3515,"parentId":3369,"tags":{},"startTime":1776949092062,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":81642,"timestamp":7342145762677,"id":3369,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":79140,"timestamp":7342145765203,"id":3416,"parentId":3375,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342145844353,"id":3516,"parentId":3375,"tags":{},"startTime":1776949092063,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":82036,"timestamp":7342145762931,"id":3375,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":79795,"timestamp":7342145765182,"id":3412,"parentId":3371,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342145844981,"id":3517,"parentId":3371,"tags":{},"startTime":1776949092064,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":84493,"timestamp":7342145762764,"id":3371,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":82096,"timestamp":7342145765178,"id":3411,"parentId":3370,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145847279,"id":3518,"parentId":3370,"tags":{},"startTime":1776949092066,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":84812,"timestamp":7342145762722,"id":3370,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":82315,"timestamp":7342145765227,"id":3421,"parentId":3380,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145847547,"id":3519,"parentId":3380,"tags":{},"startTime":1776949092067,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":85323,"timestamp":7342145763504,"id":3380,"parentId":2690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":83606,"timestamp":7342145765231,"id":3422,"parentId":3381,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342145848843,"id":3520,"parentId":3381,"tags":{},"startTime":1776949092068,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86096,"timestamp":7342145763551,"id":3381,"parentId":2701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":84430,"timestamp":7342145765222,"id":3420,"parentId":3379,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342145849659,"id":3521,"parentId":3379,"tags":{},"startTime":1776949092069,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":87356,"timestamp":7342145763164,"id":3379,"parentId":2700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85309,"timestamp":7342145765218,"id":3419,"parentId":3378,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":108,"timestamp":7342145850532,"id":3522,"parentId":3378,"tags":{},"startTime":1776949092070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":87856,"timestamp":7342145763099,"id":3378,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85752,"timestamp":7342145765209,"id":3417,"parentId":3376,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145850964,"id":3523,"parentId":3376,"tags":{},"startTime":1776949092070,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":89531,"timestamp":7342145762977,"id":3376,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":86987,"timestamp":7342145765528,"id":3423,"parentId":3382,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145852520,"id":3524,"parentId":3382,"tags":{},"startTime":1776949092072,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":89066,"timestamp":7342145763598,"id":3382,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":86838,"timestamp":7342145765832,"id":3425,"parentId":3384,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":55,"timestamp":7342145852675,"id":3525,"parentId":3384,"tags":{},"startTime":1776949092072,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":91813,"timestamp":7342145763698,"id":3384,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":89978,"timestamp":7342145765571,"id":3424,"parentId":3383,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342145855563,"id":3526,"parentId":3383,"tags":{},"startTime":1776949092075,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":92822,"timestamp":7342145763658,"id":3383,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":90642,"timestamp":7342145765862,"id":3427,"parentId":3386,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342145856512,"id":3527,"parentId":3386,"tags":{},"startTime":1776949092076,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":93755,"timestamp":7342145763782,"id":3386,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":92349,"timestamp":7342145765198,"id":3415,"parentId":3374,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342145857551,"id":3528,"parentId":3374,"tags":{},"startTime":1776949092077,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":94854,"timestamp":7342145762894,"id":3374,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":91907,"timestamp":7342145765852,"id":3426,"parentId":3385,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145857763,"id":3529,"parentId":3385,"tags":{},"startTime":1776949092077,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":94374,"timestamp":7342145763743,"id":3385,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":92930,"timestamp":7342145765213,"id":3418,"parentId":3377,"tags":{},"startTime":1776949091984,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145858147,"id":3530,"parentId":3377,"tags":{},"startTime":1776949092077,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":96686,"timestamp":7342145763016,"id":3377,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"ssr"},"startTime":1776949091982,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":93830,"timestamp":7342145765901,"id":3431,"parentId":3390,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342145859741,"id":3531,"parentId":3390,"tags":{},"startTime":1776949092079,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":96133,"timestamp":7342145764090,"id":3390,"parentId":2710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":94338,"timestamp":7342145765896,"id":3430,"parentId":3389,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145860241,"id":3532,"parentId":3389,"tags":{},"startTime":1776949092079,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":96615,"timestamp":7342145764049,"id":3389,"parentId":2712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":94780,"timestamp":7342145765890,"id":3429,"parentId":3388,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145860673,"id":3533,"parentId":3388,"tags":{},"startTime":1776949092080,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":96815,"timestamp":7342145763946,"id":3388,"parentId":2712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":94883,"timestamp":7342145765883,"id":3428,"parentId":3387,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145860770,"id":3534,"parentId":3387,"tags":{},"startTime":1776949092080,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":97375,"timestamp":7342145763827,"id":3387,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":95292,"timestamp":7342145765917,"id":3434,"parentId":3393,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145861223,"id":3535,"parentId":3393,"tags":{},"startTime":1776949092080,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":97125,"timestamp":7342145764227,"id":3393,"parentId":2712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":95447,"timestamp":7342145765910,"id":3433,"parentId":3392,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342145861362,"id":3536,"parentId":3392,"tags":{},"startTime":1776949092080,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":97327,"timestamp":7342145764189,"id":3392,"parentId":2712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":95615,"timestamp":7342145765906,"id":3432,"parentId":3391,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145861525,"id":3537,"parentId":3391,"tags":{},"startTime":1776949092081,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":98112,"timestamp":7342145764145,"id":3391,"parentId":2712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":96351,"timestamp":7342145765922,"id":3435,"parentId":3394,"tags":{},"startTime":1776949091985,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":74,"timestamp":7342145862280,"id":3538,"parentId":3394,"tags":{},"startTime":1776949092081,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":98283,"timestamp":7342145764364,"id":3394,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"ssr"},"startTime":1776949091983,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":97123,"timestamp":7342145776785,"id":3442,"parentId":3436,"tags":{},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145873918,"id":3539,"parentId":3436,"tags":{},"startTime":1776949092093,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":101055,"timestamp":7342145773186,"id":3436,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"ssr"},"startTime":1776949091992,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":114360,"timestamp":7342145776825,"id":3446,"parentId":3440,"tags":{},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145891197,"id":3540,"parentId":3440,"tags":{},"startTime":1776949092110,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":114921,"timestamp":7342145776667,"id":3440,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"ssr"},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":114777,"timestamp":7342145776818,"id":3444,"parentId":3438,"tags":{},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342145891599,"id":3541,"parentId":3438,"tags":{},"startTime":1776949092111,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":115849,"timestamp":7342145775928,"id":3438,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"ssr"},"startTime":1776949091995,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":114953,"timestamp":7342145776828,"id":3447,"parentId":3441,"tags":{},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145891785,"id":3542,"parentId":3441,"tags":{},"startTime":1776949092111,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":115286,"timestamp":7342145776722,"id":3441,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"ssr"},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":115214,"timestamp":7342145776822,"id":3445,"parentId":3439,"tags":{},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342145892048,"id":3543,"parentId":3439,"tags":{},"startTime":1776949092111,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":115883,"timestamp":7342145776564,"id":3439,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"ssr"},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":115643,"timestamp":7342145776812,"id":3443,"parentId":3437,"tags":{},"startTime":1776949091996,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145892461,"id":3544,"parentId":3437,"tags":{},"startTime":1776949092112,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":117112,"timestamp":7342145775551,"id":3437,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"ssr"},"startTime":1776949091995,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10217,"timestamp":7342145922689,"id":3611,"parentId":3545,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":58,"timestamp":7342145932927,"id":3711,"parentId":3545,"tags":{},"startTime":1776949092152,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14224,"timestamp":7342145919925,"id":3545,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11585,"timestamp":7342145922724,"id":3612,"parentId":3546,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145934317,"id":3712,"parentId":3546,"tags":{},"startTime":1776949092153,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14489,"timestamp":7342145920080,"id":3546,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11839,"timestamp":7342145922736,"id":3613,"parentId":3547,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145934579,"id":3713,"parentId":3547,"tags":{},"startTime":1776949092154,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14639,"timestamp":7342145920129,"id":3547,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12038,"timestamp":7342145922745,"id":3614,"parentId":3548,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145934789,"id":3714,"parentId":3548,"tags":{},"startTime":1776949092154,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14963,"timestamp":7342145920175,"id":3548,"parentId":2697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":13019,"timestamp":7342145922761,"id":3616,"parentId":3550,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342145935785,"id":3715,"parentId":3550,"tags":{},"startTime":1776949092155,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15731,"timestamp":7342145920281,"id":3550,"parentId":2704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13257,"timestamp":7342145922771,"id":3618,"parentId":3552,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145936036,"id":3716,"parentId":3552,"tags":{},"startTime":1776949092155,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16393,"timestamp":7342145920361,"id":3552,"parentId":2709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13985,"timestamp":7342145922777,"id":3619,"parentId":3553,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342145936767,"id":3717,"parentId":3553,"tags":{},"startTime":1776949092156,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17093,"timestamp":7342145920420,"id":3553,"parentId":2709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14767,"timestamp":7342145922754,"id":3615,"parentId":3549,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145937525,"id":3718,"parentId":3549,"tags":{},"startTime":1776949092157,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17476,"timestamp":7342145920240,"id":3549,"parentId":2704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14938,"timestamp":7342145922782,"id":3620,"parentId":3554,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145937724,"id":3719,"parentId":3554,"tags":{},"startTime":1776949092157,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17598,"timestamp":7342145920459,"id":3554,"parentId":2709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15280,"timestamp":7342145922787,"id":3621,"parentId":3555,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145938072,"id":3720,"parentId":3555,"tags":{},"startTime":1776949092157,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18287,"timestamp":7342145920500,"id":3555,"parentId":2709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16006,"timestamp":7342145922792,"id":3622,"parentId":3556,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342145938802,"id":3721,"parentId":3556,"tags":{},"startTime":1776949092158,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18508,"timestamp":7342145920535,"id":3556,"parentId":2709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16249,"timestamp":7342145922798,"id":3623,"parentId":3557,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342145939051,"id":3722,"parentId":3557,"tags":{},"startTime":1776949092158,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18610,"timestamp":7342145920574,"id":3557,"parentId":2721,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16377,"timestamp":7342145922813,"id":3626,"parentId":3560,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342145939193,"id":3723,"parentId":3560,"tags":{},"startTime":1776949092158,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18701,"timestamp":7342145920699,"id":3560,"parentId":2712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16603,"timestamp":7342145922804,"id":3624,"parentId":3558,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145939410,"id":3724,"parentId":3558,"tags":{},"startTime":1776949092158,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19524,"timestamp":7342145920619,"id":3558,"parentId":2721,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17327,"timestamp":7342145922823,"id":3628,"parentId":3562,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145940154,"id":3725,"parentId":3562,"tags":{},"startTime":1776949092159,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19512,"timestamp":7342145920781,"id":3562,"parentId":2722,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17532,"timestamp":7342145922767,"id":3617,"parentId":3551,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7342145940302,"id":3726,"parentId":3551,"tags":{},"startTime":1776949092159,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20079,"timestamp":7342145920323,"id":3551,"parentId":2774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"ssr"},"startTime":1776949092139,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17640,"timestamp":7342145922819,"id":3627,"parentId":3561,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145940463,"id":3727,"parentId":3561,"tags":{},"startTime":1776949092160,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21704,"timestamp":7342145920734,"id":3561,"parentId":2724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19654,"timestamp":7342145922809,"id":3625,"parentId":3559,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":67,"timestamp":7342145942473,"id":3728,"parentId":3559,"tags":{},"startTime":1776949092162,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22721,"timestamp":7342145920656,"id":3559,"parentId":2715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20561,"timestamp":7342145922828,"id":3629,"parentId":3563,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145943393,"id":3729,"parentId":3563,"tags":{},"startTime":1776949092162,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22729,"timestamp":7342145920821,"id":3563,"parentId":2781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20720,"timestamp":7342145922836,"id":3631,"parentId":3565,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145943560,"id":3730,"parentId":3565,"tags":{},"startTime":1776949092163,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23833,"timestamp":7342145920901,"id":3565,"parentId":2719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21884,"timestamp":7342145922858,"id":3636,"parentId":3570,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342145944746,"id":3731,"parentId":3570,"tags":{},"startTime":1776949092164,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24126,"timestamp":7342145921080,"id":3570,"parentId":2784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22372,"timestamp":7342145922841,"id":3632,"parentId":3566,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145945216,"id":3732,"parentId":3566,"tags":{},"startTime":1776949092164,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24957,"timestamp":7342145920936,"id":3566,"parentId":2806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23072,"timestamp":7342145922849,"id":3634,"parentId":3568,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342145945933,"id":3733,"parentId":3568,"tags":{},"startTime":1776949092165,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25315,"timestamp":7342145921010,"id":3568,"parentId":2784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23484,"timestamp":7342145922853,"id":3635,"parentId":3569,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145946341,"id":3734,"parentId":3569,"tags":{},"startTime":1776949092165,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25603,"timestamp":7342145921044,"id":3569,"parentId":2784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23830,"timestamp":7342145922832,"id":3630,"parentId":3564,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145946666,"id":3735,"parentId":3564,"tags":{},"startTime":1776949092166,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26458,"timestamp":7342145920862,"id":3564,"parentId":2771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24473,"timestamp":7342145922862,"id":3637,"parentId":3571,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145947343,"id":3736,"parentId":3571,"tags":{},"startTime":1776949092166,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26410,"timestamp":7342145921117,"id":3571,"parentId":2807,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24692,"timestamp":7342145922845,"id":3633,"parentId":3567,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145947541,"id":3737,"parentId":3567,"tags":{},"startTime":1776949092167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27547,"timestamp":7342145920969,"id":3567,"parentId":2785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25658,"timestamp":7342145922865,"id":3638,"parentId":3572,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145948529,"id":3738,"parentId":3572,"tags":{},"startTime":1776949092168,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27815,"timestamp":7342145921156,"id":3572,"parentId":2784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26110,"timestamp":7342145922869,"id":3639,"parentId":3573,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342145948983,"id":3739,"parentId":3573,"tags":{},"startTime":1776949092168,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28319,"timestamp":7342145921194,"id":3573,"parentId":2807,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26648,"timestamp":7342145922874,"id":3640,"parentId":3574,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145949527,"id":3740,"parentId":3574,"tags":{},"startTime":1776949092169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28455,"timestamp":7342145921228,"id":3574,"parentId":2805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26805,"timestamp":7342145922885,"id":3643,"parentId":3577,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145949696,"id":3741,"parentId":3577,"tags":{},"startTime":1776949092169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28549,"timestamp":7342145921338,"id":3577,"parentId":2812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27019,"timestamp":7342145922877,"id":3641,"parentId":3575,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145949901,"id":3742,"parentId":3575,"tags":{},"startTime":1776949092169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28764,"timestamp":7342145921265,"id":3575,"parentId":2805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27143,"timestamp":7342145922890,"id":3644,"parentId":3578,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342145950036,"id":3743,"parentId":3578,"tags":{},"startTime":1776949092169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29870,"timestamp":7342145921375,"id":3578,"parentId":2818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28354,"timestamp":7342145922897,"id":3646,"parentId":3580,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145951255,"id":3744,"parentId":3580,"tags":{},"startTime":1776949092170,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32786,"timestamp":7342145921465,"id":3580,"parentId":2810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31383,"timestamp":7342145922881,"id":3642,"parentId":3576,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145954269,"id":3745,"parentId":3576,"tags":{},"startTime":1776949092173,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33567,"timestamp":7342145921300,"id":3576,"parentId":2805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31984,"timestamp":7342145922894,"id":3645,"parentId":3579,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145954884,"id":3746,"parentId":3579,"tags":{},"startTime":1776949092174,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33741,"timestamp":7342145921423,"id":3579,"parentId":2817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"ssr"},"startTime":1776949092140,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32259,"timestamp":7342145922909,"id":3649,"parentId":3583,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145955171,"id":3747,"parentId":3583,"tags":{},"startTime":1776949092174,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33896,"timestamp":7342145921573,"id":3583,"parentId":2814,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32576,"timestamp":7342145922901,"id":3647,"parentId":3581,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145955481,"id":3748,"parentId":3581,"tags":{},"startTime":1776949092175,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":35005,"timestamp":7342145921498,"id":3581,"parentId":2811,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33604,"timestamp":7342145922905,"id":3648,"parentId":3582,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145956513,"id":3749,"parentId":3582,"tags":{},"startTime":1776949092176,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35485,"timestamp":7342145921536,"id":3582,"parentId":2818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34106,"timestamp":7342145922919,"id":3652,"parentId":3586,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145957029,"id":3750,"parentId":3586,"tags":{},"startTime":1776949092176,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35676,"timestamp":7342145921682,"id":3586,"parentId":2946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34447,"timestamp":7342145922916,"id":3651,"parentId":3585,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342145957366,"id":3751,"parentId":3585,"tags":{},"startTime":1776949092176,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35870,"timestamp":7342145921647,"id":3585,"parentId":2942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34598,"timestamp":7342145922923,"id":3653,"parentId":3587,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145957524,"id":3752,"parentId":3587,"tags":{},"startTime":1776949092177,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36351,"timestamp":7342145921720,"id":3587,"parentId":2946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35172,"timestamp":7342145922912,"id":3650,"parentId":3584,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145958091,"id":3753,"parentId":3584,"tags":{},"startTime":1776949092177,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36631,"timestamp":7342145921612,"id":3584,"parentId":2818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35306,"timestamp":7342145922942,"id":3654,"parentId":3588,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145958252,"id":3754,"parentId":3588,"tags":{},"startTime":1776949092177,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37101,"timestamp":7342145921754,"id":3588,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35911,"timestamp":7342145922955,"id":3657,"parentId":3591,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145958872,"id":3755,"parentId":3591,"tags":{},"startTime":1776949092178,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37288,"timestamp":7342145921864,"id":3591,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36201,"timestamp":7342145922959,"id":3658,"parentId":3592,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145959165,"id":3756,"parentId":3592,"tags":{},"startTime":1776949092178,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37955,"timestamp":7342145921898,"id":3592,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36923,"timestamp":7342145922948,"id":3655,"parentId":3589,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342145959877,"id":3757,"parentId":3589,"tags":{},"startTime":1776949092179,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38943,"timestamp":7342145921793,"id":3589,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37792,"timestamp":7342145922951,"id":3656,"parentId":3590,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342145960748,"id":3758,"parentId":3590,"tags":{},"startTime":1776949092180,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39115,"timestamp":7342145921828,"id":3590,"parentId":2946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37998,"timestamp":7342145922962,"id":3659,"parentId":3593,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145960965,"id":3759,"parentId":3593,"tags":{},"startTime":1776949092180,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39506,"timestamp":7342145921935,"id":3593,"parentId":2943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38487,"timestamp":7342145922966,"id":3660,"parentId":3594,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342145961459,"id":3760,"parentId":3594,"tags":{},"startTime":1776949092181,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39879,"timestamp":7342145921972,"id":3594,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38856,"timestamp":7342145923002,"id":3664,"parentId":3598,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145961862,"id":3761,"parentId":3598,"tags":{},"startTime":1776949092181,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40047,"timestamp":7342145922124,"id":3598,"parentId":2947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39195,"timestamp":7342145922984,"id":3661,"parentId":3595,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145962182,"id":3762,"parentId":3595,"tags":{},"startTime":1776949092181,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40502,"timestamp":7342145922008,"id":3595,"parentId":2945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39517,"timestamp":7342145922998,"id":3663,"parentId":3597,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145962535,"id":3763,"parentId":3597,"tags":{},"startTime":1776949092182,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40900,"timestamp":7342145922089,"id":3597,"parentId":2952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39989,"timestamp":7342145923005,"id":3665,"parentId":3599,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145962998,"id":3764,"parentId":3599,"tags":{},"startTime":1776949092182,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41168,"timestamp":7342145922159,"id":3599,"parentId":2959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40321,"timestamp":7342145923012,"id":3667,"parentId":3601,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342145963342,"id":3765,"parentId":3601,"tags":{},"startTime":1776949092182,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41320,"timestamp":7342145922228,"id":3601,"parentId":2965,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40545,"timestamp":7342145923009,"id":3666,"parentId":3600,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342145963558,"id":3766,"parentId":3600,"tags":{},"startTime":1776949092183,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41943,"timestamp":7342145922194,"id":3600,"parentId":2964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41125,"timestamp":7342145923016,"id":3668,"parentId":3602,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145964145,"id":3767,"parentId":3602,"tags":{},"startTime":1776949092183,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43312,"timestamp":7342145922264,"id":3602,"parentId":2973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42575,"timestamp":7342145923019,"id":3669,"parentId":3603,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342145965604,"id":3768,"parentId":3603,"tags":{},"startTime":1776949092185,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44198,"timestamp":7342145922303,"id":3603,"parentId":2978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43480,"timestamp":7342145923031,"id":3673,"parentId":3607,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145966517,"id":3769,"parentId":3607,"tags":{},"startTime":1776949092186,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44438,"timestamp":7342145922513,"id":3607,"parentId":2980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"ssr"},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43933,"timestamp":7342145923025,"id":3671,"parentId":3605,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145966963,"id":3770,"parentId":3605,"tags":{},"startTime":1776949092186,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44745,"timestamp":7342145922403,"id":3605,"parentId":2978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44132,"timestamp":7342145923022,"id":3670,"parentId":3604,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":62,"timestamp":7342145967158,"id":3771,"parentId":3604,"tags":{},"startTime":1776949092186,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45196,"timestamp":7342145922341,"id":3604,"parentId":2978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44501,"timestamp":7342145923041,"id":3676,"parentId":3610,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145967546,"id":3772,"parentId":3610,"tags":{},"startTime":1776949092187,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45172,"timestamp":7342145922626,"id":3610,"parentId":3023,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"ssr"},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44809,"timestamp":7342145922994,"id":3662,"parentId":3596,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342145967807,"id":3773,"parentId":3596,"tags":{},"startTime":1776949092187,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46104,"timestamp":7342145922045,"id":3596,"parentId":2945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"ssr"},"startTime":1776949092141,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45126,"timestamp":7342145923028,"id":3672,"parentId":3606,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7342145968158,"id":3774,"parentId":3606,"tags":{},"startTime":1776949092187,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45956,"timestamp":7342145922468,"id":3606,"parentId":2980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"ssr"},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45406,"timestamp":7342145923034,"id":3674,"parentId":3608,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25,"timestamp":7342145968443,"id":3775,"parentId":3608,"tags":{},"startTime":1776949092187,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46027,"timestamp":7342145922551,"id":3608,"parentId":2980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"ssr"},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45545,"timestamp":7342145923037,"id":3675,"parentId":3609,"tags":{},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":24,"timestamp":7342145968585,"id":3776,"parentId":3609,"tags":{},"startTime":1776949092188,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46062,"timestamp":7342145922590,"id":3609,"parentId":2980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"ssr"},"startTime":1776949092142,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":55199,"timestamp":7342145925002,"id":3690,"parentId":3678,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":95,"timestamp":7342145980230,"id":3777,"parentId":3678,"tags":{},"startTime":1776949092199,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56823,"timestamp":7342145924535,"id":3678,"parentId":3033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56368,"timestamp":7342145925009,"id":3691,"parentId":3679,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342145981386,"id":3778,"parentId":3679,"tags":{},"startTime":1776949092200,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57126,"timestamp":7342145924580,"id":3679,"parentId":3033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56701,"timestamp":7342145925014,"id":3692,"parentId":3680,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342145981721,"id":3779,"parentId":3680,"tags":{},"startTime":1776949092201,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57225,"timestamp":7342145924626,"id":3680,"parentId":3033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56873,"timestamp":7342145925018,"id":3693,"parentId":3681,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342145981896,"id":3780,"parentId":3681,"tags":{},"startTime":1776949092201,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57821,"timestamp":7342145924671,"id":3681,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57476,"timestamp":7342145925023,"id":3695,"parentId":3683,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342145982502,"id":3781,"parentId":3683,"tags":{},"startTime":1776949092202,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57902,"timestamp":7342145924756,"id":3683,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57637,"timestamp":7342145925025,"id":3696,"parentId":3684,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":37,"timestamp":7342145982736,"id":3782,"parentId":3684,"tags":{},"startTime":1776949092202,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58944,"timestamp":7342145924793,"id":3684,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58715,"timestamp":7342145925027,"id":3697,"parentId":3685,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342145983747,"id":3783,"parentId":3685,"tags":{},"startTime":1776949092203,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59053,"timestamp":7342145924829,"id":3685,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58857,"timestamp":7342145925030,"id":3698,"parentId":3686,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342145983890,"id":3784,"parentId":3686,"tags":{},"startTime":1776949092203,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59119,"timestamp":7342145924867,"id":3686,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59003,"timestamp":7342145924987,"id":3689,"parentId":3677,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25,"timestamp":7342145983993,"id":3785,"parentId":3677,"tags":{},"startTime":1776949092203,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59732,"timestamp":7342145924448,"id":3677,"parentId":2980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"ssr"},"startTime":1776949092143,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59164,"timestamp":7342145925021,"id":3694,"parentId":3682,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342145984188,"id":3786,"parentId":3682,"tags":{},"startTime":1776949092203,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59599,"timestamp":7342145924713,"id":3682,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59127,"timestamp":7342145925189,"id":3700,"parentId":3688,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342145984320,"id":3787,"parentId":3688,"tags":{},"startTime":1776949092203,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60828,"timestamp":7342145924943,"id":3688,"parentId":3030,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":73276,"timestamp":7342145925120,"id":3699,"parentId":3687,"tags":{},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342145998413,"id":3788,"parentId":3687,"tags":{},"startTime":1776949092217,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73938,"timestamp":7342145924905,"id":3687,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"ssr"},"startTime":1776949092144,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80362,"timestamp":7342145927518,"id":3710,"parentId":3708,"tags":{},"startTime":1776949092147,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342146007890,"id":3789,"parentId":3708,"tags":{},"startTime":1776949092227,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":80963,"timestamp":7342145927473,"id":3708,"parentId":3037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"ssr"},"startTime":1776949092147,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":81870,"timestamp":7342145926576,"id":3704,"parentId":3702,"tags":{},"startTime":1776949092146,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342146008451,"id":3790,"parentId":3702,"tags":{},"startTime":1776949092227,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":83996,"timestamp":7342145926504,"id":3702,"parentId":2978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"ssr"},"startTime":1776949092146,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":83016,"timestamp":7342145927514,"id":3709,"parentId":3707,"tags":{},"startTime":1776949092147,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":72,"timestamp":7342146010543,"id":3791,"parentId":3707,"tags":{},"startTime":1776949092230,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":84138,"timestamp":7342145927429,"id":3707,"parentId":3037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"ssr"},"startTime":1776949092146,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":84195,"timestamp":7342145927388,"id":3706,"parentId":3705,"tags":{},"startTime":1776949092146,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342146011589,"id":3792,"parentId":3705,"tags":{},"startTime":1776949092231,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":84721,"timestamp":7342145927322,"id":3705,"parentId":3035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"ssr"},"startTime":1776949092146,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85495,"timestamp":7342145926566,"id":3703,"parentId":3701,"tags":{},"startTime":1776949092146,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342146012068,"id":3793,"parentId":3701,"tags":{},"startTime":1776949092231,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86018,"timestamp":7342145926410,"id":3701,"parentId":2978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"ssr"},"startTime":1776949092145,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13723,"timestamp":7342146014632,"id":3816,"parentId":3799,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342146028367,"id":3944,"parentId":3799,"tags":{},"startTime":1776949092247,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15231,"timestamp":7342146014063,"id":3799,"parentId":3146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14682,"timestamp":7342146014623,"id":3814,"parentId":3797,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342146029310,"id":3945,"parentId":3797,"tags":{},"startTime":1776949092248,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15631,"timestamp":7342146013947,"id":3797,"parentId":3063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14937,"timestamp":7342146014649,"id":3821,"parentId":3804,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146029592,"id":3946,"parentId":3804,"tags":{},"startTime":1776949092249,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16100,"timestamp":7342146014255,"id":3804,"parentId":3142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15769,"timestamp":7342146014597,"id":3811,"parentId":3794,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":64,"timestamp":7342146030372,"id":3947,"parentId":3794,"tags":{},"startTime":1776949092249,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18959,"timestamp":7342146013757,"id":3794,"parentId":3037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18116,"timestamp":7342146014617,"id":3813,"parentId":3796,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342146032740,"id":3948,"parentId":3796,"tags":{},"startTime":1776949092252,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19004,"timestamp":7342146013906,"id":3796,"parentId":3038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18305,"timestamp":7342146014611,"id":3812,"parentId":3795,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":87,"timestamp":7342146032962,"id":3949,"parentId":3795,"tags":{},"startTime":1776949092252,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21197,"timestamp":7342146013863,"id":3795,"parentId":3038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20427,"timestamp":7342146014641,"id":3819,"parentId":3802,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146035074,"id":3950,"parentId":3802,"tags":{},"startTime":1776949092254,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21335,"timestamp":7342146014174,"id":3802,"parentId":3141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20899,"timestamp":7342146014639,"id":3818,"parentId":3801,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342146035543,"id":3951,"parentId":3801,"tags":{},"startTime":1776949092255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21963,"timestamp":7342146014135,"id":3801,"parentId":3133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21475,"timestamp":7342146014628,"id":3815,"parentId":3798,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342146036108,"id":3952,"parentId":3798,"tags":{},"startTime":1776949092255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22598,"timestamp":7342146013985,"id":3798,"parentId":3131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21954,"timestamp":7342146014635,"id":3817,"parentId":3800,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342146036593,"id":3953,"parentId":3800,"tags":{},"startTime":1776949092256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24185,"timestamp":7342146014101,"id":3800,"parentId":3146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23653,"timestamp":7342146014661,"id":3825,"parentId":3808,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342146038324,"id":3954,"parentId":3808,"tags":{},"startTime":1776949092257,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24738,"timestamp":7342146014394,"id":3808,"parentId":3146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24493,"timestamp":7342146014655,"id":3823,"parentId":3806,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342146039155,"id":3955,"parentId":3806,"tags":{},"startTime":1776949092258,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29639,"timestamp":7342146014325,"id":3806,"parentId":3145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29391,"timestamp":7342146014647,"id":3820,"parentId":3803,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342146044048,"id":3956,"parentId":3803,"tags":{},"startTime":1776949092263,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30308,"timestamp":7342146014213,"id":3803,"parentId":3142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29881,"timestamp":7342146014652,"id":3822,"parentId":3805,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342146044540,"id":3957,"parentId":3805,"tags":{},"startTime":1776949092264,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30775,"timestamp":7342146014290,"id":3805,"parentId":3133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30415,"timestamp":7342146014667,"id":3827,"parentId":3810,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342146045089,"id":3958,"parentId":3810,"tags":{},"startTime":1776949092264,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31106,"timestamp":7342146014464,"id":3810,"parentId":3149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"ssr"},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30920,"timestamp":7342146014658,"id":3824,"parentId":3807,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342146045583,"id":3959,"parentId":3807,"tags":{},"startTime":1776949092265,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31683,"timestamp":7342146014359,"id":3807,"parentId":3146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31409,"timestamp":7342146014663,"id":3826,"parentId":3809,"tags":{},"startTime":1776949092234,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342146046077,"id":3960,"parentId":3809,"tags":{},"startTime":1776949092265,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32599,"timestamp":7342146014431,"id":3809,"parentId":3144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"ssr"},"startTime":1776949092233,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27825,"timestamp":7342146023966,"id":3880,"parentId":3831,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342146051820,"id":3961,"parentId":3831,"tags":{},"startTime":1776949092271,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31296,"timestamp":7342146021996,"id":3831,"parentId":3149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29350,"timestamp":7342146023960,"id":3879,"parentId":3830,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342146053319,"id":3962,"parentId":3830,"tags":{},"startTime":1776949092272,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32148,"timestamp":7342146021956,"id":3830,"parentId":3157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30163,"timestamp":7342146023953,"id":3878,"parentId":3829,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342146054123,"id":3963,"parentId":3829,"tags":{},"startTime":1776949092273,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32995,"timestamp":7342146021905,"id":3829,"parentId":3149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30980,"timestamp":7342146023936,"id":3877,"parentId":3828,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146054923,"id":3964,"parentId":3828,"tags":{},"startTime":1776949092274,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33570,"timestamp":7342146021831,"id":3828,"parentId":3149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37849,"timestamp":7342146023972,"id":3881,"parentId":3832,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2094,"timestamp":7342146061872,"id":3965,"parentId":3832,"tags":{},"startTime":1776949092281,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42260,"timestamp":7342146022035,"id":3832,"parentId":3158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":40561,"timestamp":7342146023980,"id":3883,"parentId":3834,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342146064554,"id":3966,"parentId":3834,"tags":{},"startTime":1776949092284,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43003,"timestamp":7342146022134,"id":3834,"parentId":3158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41201,"timestamp":7342146023976,"id":3882,"parentId":3833,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342146065188,"id":3967,"parentId":3833,"tags":{},"startTime":1776949092284,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43863,"timestamp":7342146022089,"id":3833,"parentId":3154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41987,"timestamp":7342146023998,"id":3885,"parentId":3836,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54,"timestamp":7342146066000,"id":3968,"parentId":3836,"tags":{},"startTime":1776949092285,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44374,"timestamp":7342146022212,"id":3836,"parentId":3149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42601,"timestamp":7342146024010,"id":3889,"parentId":3840,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342146066618,"id":3969,"parentId":3840,"tags":{},"startTime":1776949092286,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45132,"timestamp":7342146022377,"id":3840,"parentId":3200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43517,"timestamp":7342146024001,"id":3886,"parentId":3837,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342146067523,"id":3970,"parentId":3837,"tags":{},"startTime":1776949092287,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45490,"timestamp":7342146022264,"id":3837,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43757,"timestamp":7342146024004,"id":3887,"parentId":3838,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342146067765,"id":3971,"parentId":3838,"tags":{},"startTime":1776949092287,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45708,"timestamp":7342146022302,"id":3838,"parentId":3161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43998,"timestamp":7342146024017,"id":3891,"parentId":3842,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342146068019,"id":3972,"parentId":3842,"tags":{},"startTime":1776949092287,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45692,"timestamp":7342146022454,"id":3842,"parentId":3207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44136,"timestamp":7342146024015,"id":3890,"parentId":3841,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342146068154,"id":3973,"parentId":3841,"tags":{},"startTime":1776949092287,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46045,"timestamp":7342146022415,"id":3841,"parentId":3197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44457,"timestamp":7342146024020,"id":3892,"parentId":3843,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342146068485,"id":3974,"parentId":3843,"tags":{},"startTime":1776949092288,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46302,"timestamp":7342146022522,"id":3843,"parentId":3207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44829,"timestamp":7342146024008,"id":3888,"parentId":3839,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342146068842,"id":3975,"parentId":3839,"tags":{},"startTime":1776949092288,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48312,"timestamp":7342146022341,"id":3839,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46656,"timestamp":7342146024026,"id":3894,"parentId":3845,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342146070696,"id":3976,"parentId":3845,"tags":{},"startTime":1776949092290,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48724,"timestamp":7342146022641,"id":3845,"parentId":3209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47351,"timestamp":7342146024029,"id":3895,"parentId":3846,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342146071385,"id":3977,"parentId":3846,"tags":{},"startTime":1776949092290,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48981,"timestamp":7342146022678,"id":3846,"parentId":3209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47642,"timestamp":7342146024023,"id":3893,"parentId":3844,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":55,"timestamp":7342146071671,"id":3978,"parentId":3844,"tags":{},"startTime":1776949092291,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50239,"timestamp":7342146022570,"id":3844,"parentId":3209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":48828,"timestamp":7342146023993,"id":3884,"parentId":3835,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":78,"timestamp":7342146072828,"id":3979,"parentId":3835,"tags":{},"startTime":1776949092292,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52185,"timestamp":7342146022170,"id":3835,"parentId":3158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"ssr"},"startTime":1776949092241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50327,"timestamp":7342146024039,"id":3896,"parentId":3847,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342146074371,"id":3980,"parentId":3847,"tags":{},"startTime":1776949092293,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51912,"timestamp":7342146022711,"id":3847,"parentId":3256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50598,"timestamp":7342146024048,"id":3899,"parentId":3850,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342146074650,"id":3981,"parentId":3850,"tags":{},"startTime":1776949092294,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53570,"timestamp":7342146022816,"id":3850,"parentId":3260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52348,"timestamp":7342146024051,"id":3900,"parentId":3851,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":146,"timestamp":7342146076405,"id":3982,"parentId":3851,"tags":{},"startTime":1776949092295,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53920,"timestamp":7342146022850,"id":3851,"parentId":3260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52733,"timestamp":7342146024045,"id":3898,"parentId":3849,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342146076783,"id":3983,"parentId":3849,"tags":{},"startTime":1776949092296,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54461,"timestamp":7342146022783,"id":3849,"parentId":3258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53198,"timestamp":7342146024066,"id":3906,"parentId":3857,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342146077268,"id":3984,"parentId":3857,"tags":{},"startTime":1776949092296,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54308,"timestamp":7342146023084,"id":3857,"parentId":3270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53341,"timestamp":7342146024055,"id":3902,"parentId":3853,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342146077399,"id":3985,"parentId":3853,"tags":{},"startTime":1776949092296,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54774,"timestamp":7342146022930,"id":3853,"parentId":3268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53651,"timestamp":7342146024058,"id":3903,"parentId":3854,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342146077743,"id":3986,"parentId":3854,"tags":{},"startTime":1776949092297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55074,"timestamp":7342146022971,"id":3854,"parentId":3254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53988,"timestamp":7342146024064,"id":3905,"parentId":3856,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342146078057,"id":3987,"parentId":3856,"tags":{},"startTime":1776949092297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55120,"timestamp":7342146023049,"id":3856,"parentId":3270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54130,"timestamp":7342146024042,"id":3897,"parentId":3848,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342146078178,"id":3988,"parentId":3848,"tags":{},"startTime":1776949092297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55540,"timestamp":7342146022746,"id":3848,"parentId":3256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54216,"timestamp":7342146024074,"id":3909,"parentId":3860,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342146078294,"id":3989,"parentId":3860,"tags":{},"startTime":1776949092297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56626,"timestamp":7342146023244,"id":3860,"parentId":3284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":55855,"timestamp":7342146024061,"id":3904,"parentId":3855,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":68,"timestamp":7342146079929,"id":3990,"parentId":3855,"tags":{},"startTime":1776949092299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58042,"timestamp":7342146023008,"id":3855,"parentId":3268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57008,"timestamp":7342146024069,"id":3907,"parentId":3858,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342146081087,"id":3991,"parentId":3858,"tags":{},"startTime":1776949092300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58465,"timestamp":7342146023134,"id":3858,"parentId":3272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57535,"timestamp":7342146024077,"id":3910,"parentId":3861,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342146081624,"id":3992,"parentId":3861,"tags":{},"startTime":1776949092301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58508,"timestamp":7342146023287,"id":3861,"parentId":3276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57747,"timestamp":7342146024053,"id":3901,"parentId":3852,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342146081805,"id":3993,"parentId":3852,"tags":{},"startTime":1776949092301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59360,"timestamp":7342146022896,"id":3852,"parentId":3267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58182,"timestamp":7342146024081,"id":3912,"parentId":3863,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342146082269,"id":3994,"parentId":3863,"tags":{},"startTime":1776949092301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59697,"timestamp":7342146023367,"id":3863,"parentId":3291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58992,"timestamp":7342146024079,"id":3911,"parentId":3862,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146083079,"id":3995,"parentId":3862,"tags":{},"startTime":1776949092302,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60599,"timestamp":7342146023325,"id":3862,"parentId":3279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59847,"timestamp":7342146024095,"id":3917,"parentId":3868,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146083947,"id":3996,"parentId":3868,"tags":{},"startTime":1776949092303,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60705,"timestamp":7342146023552,"id":3868,"parentId":3292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60174,"timestamp":7342146024099,"id":3919,"parentId":3870,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342146084277,"id":3997,"parentId":3870,"tags":{},"startTime":1776949092303,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60787,"timestamp":7342146023621,"id":3870,"parentId":3293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60329,"timestamp":7342146024085,"id":3913,"parentId":3864,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342146084417,"id":3998,"parentId":3864,"tags":{},"startTime":1776949092303,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61390,"timestamp":7342146023405,"id":3864,"parentId":3283,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60697,"timestamp":7342146024104,"id":3921,"parentId":3872,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146084804,"id":3999,"parentId":3872,"tags":{},"startTime":1776949092304,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":61468,"timestamp":7342146023719,"id":3872,"parentId":3288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61086,"timestamp":7342146024106,"id":3922,"parentId":3873,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342146085195,"id":4000,"parentId":3873,"tags":{},"startTime":1776949092304,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61531,"timestamp":7342146023759,"id":3873,"parentId":3296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61192,"timestamp":7342146024101,"id":3920,"parentId":3871,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7342146085297,"id":4001,"parentId":3871,"tags":{},"startTime":1776949092304,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61729,"timestamp":7342146023678,"id":3871,"parentId":3293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61312,"timestamp":7342146024097,"id":3918,"parentId":3869,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342146085412,"id":4002,"parentId":3869,"tags":{},"startTime":1776949092304,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61990,"timestamp":7342146023587,"id":3869,"parentId":3292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61488,"timestamp":7342146024093,"id":3916,"parentId":3867,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":62,"timestamp":7342146085584,"id":4003,"parentId":3867,"tags":{},"startTime":1776949092305,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":63076,"timestamp":7342146023508,"id":3867,"parentId":3361,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":62501,"timestamp":7342146024090,"id":3915,"parentId":3866,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342146086606,"id":4004,"parentId":3866,"tags":{},"startTime":1776949092306,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":63506,"timestamp":7342146023474,"id":3866,"parentId":3361,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":62879,"timestamp":7342146024108,"id":3923,"parentId":3874,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342146086992,"id":4005,"parentId":3874,"tags":{},"startTime":1776949092306,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":63328,"timestamp":7342146023804,"id":3874,"parentId":3296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63025,"timestamp":7342146024110,"id":3924,"parentId":3875,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342146087138,"id":4006,"parentId":3875,"tags":{},"startTime":1776949092306,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":63508,"timestamp":7342146023839,"id":3875,"parentId":3296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63263,"timestamp":7342146024087,"id":3914,"parentId":3865,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342146087353,"id":4007,"parentId":3865,"tags":{},"startTime":1776949092306,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64041,"timestamp":7342146023440,"id":3865,"parentId":3291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63412,"timestamp":7342146024072,"id":3908,"parentId":3859,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342146087487,"id":4008,"parentId":3859,"tags":{},"startTime":1776949092307,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64727,"timestamp":7342146023180,"id":3859,"parentId":3276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"ssr"},"startTime":1776949092242,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63799,"timestamp":7342146024113,"id":3925,"parentId":3876,"tags":{},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342146087915,"id":4009,"parentId":3876,"tags":{},"startTime":1776949092307,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64452,"timestamp":7342146023892,"id":3876,"parentId":3361,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"ssr"},"startTime":1776949092243,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":62306,"timestamp":7342146026291,"id":3933,"parentId":3927,"tags":{},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342146088603,"id":4010,"parentId":3927,"tags":{},"startTime":1776949092308,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":62857,"timestamp":7342146026079,"id":3927,"parentId":3365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"ssr"},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":72553,"timestamp":7342146026326,"id":3937,"parentId":3931,"tags":{},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146098896,"id":4011,"parentId":3931,"tags":{},"startTime":1776949092318,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73046,"timestamp":7342146026232,"id":3931,"parentId":3368,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"ssr"},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":72968,"timestamp":7342146026318,"id":3935,"parentId":3929,"tags":{},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342146099292,"id":4012,"parentId":3929,"tags":{},"startTime":1776949092318,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":73635,"timestamp":7342146026158,"id":3929,"parentId":3361,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"ssr"},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":73517,"timestamp":7342146026297,"id":3934,"parentId":3928,"tags":{},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342146099822,"id":4013,"parentId":3928,"tags":{},"startTime":1776949092319,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74018,"timestamp":7342146026120,"id":3928,"parentId":3373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"ssr"},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":73870,"timestamp":7342146026279,"id":3932,"parentId":3926,"tags":{},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342146100159,"id":4014,"parentId":3926,"tags":{},"startTime":1776949092319,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74468,"timestamp":7342146025998,"id":3926,"parentId":3361,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"ssr"},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":74163,"timestamp":7342146026324,"id":3936,"parentId":3930,"tags":{},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342146100491,"id":4015,"parentId":3930,"tags":{},"startTime":1776949092320,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74564,"timestamp":7342146026193,"id":3930,"parentId":3303,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"ssr"},"startTime":1776949092245,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85529,"timestamp":7342146027103,"id":3942,"parentId":3939,"tags":{},"startTime":1776949092246,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342146112656,"id":4016,"parentId":3939,"tags":{},"startTime":1776949092332,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86207,"timestamp":7342146026948,"id":3939,"parentId":3440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"ssr"},"startTime":1776949092246,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":86094,"timestamp":7342146027107,"id":3943,"parentId":3940,"tags":{},"startTime":1776949092246,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":71,"timestamp":7342146113218,"id":4017,"parentId":3940,"tags":{},"startTime":1776949092332,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86687,"timestamp":7342146027000,"id":3940,"parentId":3441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"ssr"},"startTime":1776949092246,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":86631,"timestamp":7342146027069,"id":3941,"parentId":3938,"tags":{},"startTime":1776949092246,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342146113705,"id":4018,"parentId":3938,"tags":{},"startTime":1776949092333,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":87005,"timestamp":7342146026895,"id":3938,"parentId":3381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"ssr"},"startTime":1776949092246,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4153,"timestamp":7342146129696,"id":4047,"parentId":4020,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54,"timestamp":7342146133863,"id":4091,"parentId":4020,"tags":{},"startTime":1776949092353,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6356,"timestamp":7342146128704,"id":4020,"parentId":3545,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5366,"timestamp":7342146129710,"id":4049,"parentId":4022,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342146135082,"id":4092,"parentId":4022,"tags":{},"startTime":1776949092354,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6497,"timestamp":7342146128793,"id":4022,"parentId":3561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5575,"timestamp":7342146129721,"id":4051,"parentId":4024,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342146135299,"id":4093,"parentId":4024,"tags":{},"startTime":1776949092354,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6604,"timestamp":7342146128867,"id":4024,"parentId":3592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5773,"timestamp":7342146129702,"id":4048,"parentId":4021,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342146135478,"id":4094,"parentId":4021,"tags":{},"startTime":1776949092355,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6889,"timestamp":7342146128749,"id":4021,"parentId":3570,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5971,"timestamp":7342146129672,"id":4046,"parentId":4019,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342146135645,"id":4095,"parentId":4019,"tags":{},"startTime":1776949092355,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7667,"timestamp":7342146128603,"id":4019,"parentId":3438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7485,"timestamp":7342146129728,"id":4052,"parentId":4025,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342146137219,"id":4096,"parentId":4025,"tags":{},"startTime":1776949092356,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8615,"timestamp":7342146128911,"id":4025,"parentId":3589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7797,"timestamp":7342146129737,"id":4055,"parentId":4028,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342146137539,"id":4097,"parentId":4028,"tags":{},"startTime":1776949092357,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8883,"timestamp":7342146129023,"id":4028,"parentId":3603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8181,"timestamp":7342146129734,"id":4054,"parentId":4027,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342146137919,"id":4098,"parentId":4027,"tags":{},"startTime":1776949092357,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9100,"timestamp":7342146128982,"id":4027,"parentId":3592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8362,"timestamp":7342146129732,"id":4053,"parentId":4026,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342146138099,"id":4099,"parentId":4026,"tags":{},"startTime":1776949092357,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10132,"timestamp":7342146128948,"id":4026,"parentId":3598,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9369,"timestamp":7342146129716,"id":4050,"parentId":4023,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342146139089,"id":4100,"parentId":4023,"tags":{},"startTime":1776949092358,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10822,"timestamp":7342146128829,"id":4023,"parentId":3566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9943,"timestamp":7342146129740,"id":4056,"parentId":4029,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342146139688,"id":4101,"parentId":4029,"tags":{},"startTime":1776949092359,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11591,"timestamp":7342146129056,"id":4029,"parentId":3688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10916,"timestamp":7342146129743,"id":4057,"parentId":4030,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342146140662,"id":4102,"parentId":4030,"tags":{},"startTime":1776949092360,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12095,"timestamp":7342146129093,"id":4030,"parentId":3688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11446,"timestamp":7342146129748,"id":4059,"parentId":4032,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342146141197,"id":4103,"parentId":4032,"tags":{},"startTime":1776949092360,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12295,"timestamp":7342146129162,"id":4032,"parentId":3603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11716,"timestamp":7342146129745,"id":4058,"parentId":4031,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342146141464,"id":4104,"parentId":4031,"tags":{},"startTime":1776949092361,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16411,"timestamp":7342146129127,"id":4031,"parentId":3701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15799,"timestamp":7342146129752,"id":4061,"parentId":4034,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":47,"timestamp":7342146145673,"id":4105,"parentId":4034,"tags":{},"startTime":1776949092365,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18453,"timestamp":7342146129240,"id":4034,"parentId":3801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17953,"timestamp":7342146129755,"id":4062,"parentId":4035,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342146147716,"id":4106,"parentId":4035,"tags":{},"startTime":1776949092367,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18831,"timestamp":7342146129279,"id":4035,"parentId":3800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18358,"timestamp":7342146129758,"id":4063,"parentId":4036,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342146148119,"id":4107,"parentId":4036,"tags":{},"startTime":1776949092367,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19352,"timestamp":7342146129320,"id":4036,"parentId":3800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18930,"timestamp":7342146129750,"id":4060,"parentId":4033,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342146148684,"id":4108,"parentId":4033,"tags":{},"startTime":1776949092368,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22941,"timestamp":7342146129204,"id":4033,"parentId":3145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22392,"timestamp":7342146129766,"id":4066,"parentId":4039,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342146152162,"id":4109,"parentId":4039,"tags":{},"startTime":1776949092371,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23055,"timestamp":7342146129420,"id":4039,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22851,"timestamp":7342146129762,"id":4065,"parentId":4038,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":144,"timestamp":7342146152650,"id":4110,"parentId":4038,"tags":{},"startTime":1776949092372,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23904,"timestamp":7342146129387,"id":4038,"parentId":3800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23543,"timestamp":7342146129760,"id":4064,"parentId":4037,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342146153310,"id":4111,"parentId":4037,"tags":{},"startTime":1776949092372,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24811,"timestamp":7342146129354,"id":4037,"parentId":3800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24407,"timestamp":7342146129767,"id":4067,"parentId":4040,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342146154179,"id":4112,"parentId":4040,"tags":{},"startTime":1776949092373,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24882,"timestamp":7342146129453,"id":4040,"parentId":3809,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"ssr"},"startTime":1776949092348,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24563,"timestamp":7342146129776,"id":4071,"parentId":4044,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342146154343,"id":4113,"parentId":4044,"tags":{},"startTime":1776949092373,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24899,"timestamp":7342146129592,"id":4044,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"ssr"},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24721,"timestamp":7342146129774,"id":4070,"parentId":4043,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342146154498,"id":4114,"parentId":4043,"tags":{},"startTime":1776949092374,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25079,"timestamp":7342146129555,"id":4043,"parentId":3810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"ssr"},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24868,"timestamp":7342146129770,"id":4068,"parentId":4041,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7342146154641,"id":4115,"parentId":4041,"tags":{},"startTime":1776949092374,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25287,"timestamp":7342146129488,"id":4041,"parentId":3809,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"ssr"},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25024,"timestamp":7342146129778,"id":4072,"parentId":4045,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25,"timestamp":7342146154806,"id":4116,"parentId":4045,"tags":{},"startTime":1776949092374,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25272,"timestamp":7342146129626,"id":4045,"parentId":3801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"ssr"},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35600,"timestamp":7342146129772,"id":4069,"parentId":4042,"tags":{},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342146165393,"id":4117,"parentId":4042,"tags":{},"startTime":1776949092384,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36213,"timestamp":7342146129522,"id":4042,"parentId":3809,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"ssr"},"startTime":1776949092349,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34835,"timestamp":7342146130926,"id":4077,"parentId":4073,"tags":{},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342146165765,"id":4118,"parentId":4073,"tags":{},"startTime":1776949092385,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35512,"timestamp":7342146130580,"id":4073,"parentId":3834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"ssr"},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35150,"timestamp":7342146130956,"id":4079,"parentId":4075,"tags":{},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342146166109,"id":4119,"parentId":4075,"tags":{},"startTime":1776949092385,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35999,"timestamp":7342146130790,"id":4075,"parentId":3847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"ssr"},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35846,"timestamp":7342146130949,"id":4078,"parentId":4074,"tags":{},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342146166799,"id":4120,"parentId":4074,"tags":{},"startTime":1776949092386,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36343,"timestamp":7342146130697,"id":4074,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"ssr"},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36082,"timestamp":7342146130963,"id":4080,"parentId":4076,"tags":{},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342146167048,"id":4121,"parentId":4076,"tags":{},"startTime":1776949092386,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36318,"timestamp":7342146130855,"id":4076,"parentId":3849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"ssr"},"startTime":1776949092350,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35209,"timestamp":7342146132418,"id":4088,"parentId":4084,"tags":{},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":63,"timestamp":7342146167647,"id":4122,"parentId":4084,"tags":{},"startTime":1776949092387,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35734,"timestamp":7342146132328,"id":4084,"parentId":3862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"ssr"},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35661,"timestamp":7342146132412,"id":4087,"parentId":4083,"tags":{},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146168077,"id":4123,"parentId":4083,"tags":{},"startTime":1776949092387,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36113,"timestamp":7342146132275,"id":4083,"parentId":3805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"ssr"},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35997,"timestamp":7342146132402,"id":4086,"parentId":4082,"tags":{},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342146168404,"id":4124,"parentId":4082,"tags":{},"startTime":1776949092387,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36366,"timestamp":7342146132211,"id":4082,"parentId":3805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"ssr"},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42678,"timestamp":7342146132384,"id":4085,"parentId":4081,"tags":{},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342146175073,"id":4125,"parentId":4081,"tags":{},"startTime":1776949092394,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45657,"timestamp":7342146132068,"id":4081,"parentId":3805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"ssr"},"startTime":1776949092351,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":48193,"timestamp":7342146132833,"id":4090,"parentId":4089,"tags":{},"startTime":1776949092352,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342146181037,"id":4126,"parentId":4089,"tags":{},"startTime":1776949092400,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48679,"timestamp":7342146132781,"id":4089,"parentId":3940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"ssr"},"startTime":1776949092352,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11603,"timestamp":7342146186267,"id":4134,"parentId":4130,"tags":{},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":65,"timestamp":7342146197894,"id":4135,"parentId":4130,"tags":{},"startTime":1776949092417,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12225,"timestamp":7342146186054,"id":4130,"parentId":4038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"ssr"},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12135,"timestamp":7342146186213,"id":4133,"parentId":4129,"tags":{},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342146198356,"id":4136,"parentId":4129,"tags":{},"startTime":1776949092417,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12816,"timestamp":7342146186002,"id":4129,"parentId":4031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"ssr"},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12724,"timestamp":7342146186109,"id":4131,"parentId":4127,"tags":{},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342146198838,"id":4137,"parentId":4127,"tags":{},"startTime":1776949092418,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13522,"timestamp":7342146185659,"id":4127,"parentId":4031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"ssr"},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13815,"timestamp":7342146186132,"id":4132,"parentId":4128,"tags":{},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342146199966,"id":4138,"parentId":4128,"tags":{},"startTime":1776949092419,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14718,"timestamp":7342146185914,"id":4128,"parentId":4031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"ssr"},"startTime":1776949092405,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":2361564,"timestamp":7342143842478,"id":2437,"parentId":2436,"tags":{},"startTime":1776949090062,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":7839,"timestamp":7342146231619,"id":4140,"parentId":4139,"tags":{},"startTime":1776949092451,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342146239480,"id":4142,"parentId":4139,"tags":{},"startTime":1776949092459,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":7691,"timestamp":7342146239494,"id":4143,"parentId":4139,"tags":{},"startTime":1776949092459,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7342146247219,"id":4144,"parentId":4139,"tags":{},"startTime":1776949092466,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342146247240,"id":4145,"parentId":4139,"tags":{},"startTime":1776949092466,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":12052,"timestamp":7342146239473,"id":4141,"parentId":4139,"tags":{},"startTime":1776949092459,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":6009,"timestamp":7342146255008,"id":4146,"parentId":4139,"tags":{},"startTime":1776949092474,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":62077,"timestamp":7342146261049,"id":4147,"parentId":4139,"tags":{},"startTime":1776949092480,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1189,"timestamp":7342146325659,"id":4148,"parentId":4139,"tags":{},"startTime":1776949092545,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":79,"timestamp":7342146326847,"id":4149,"parentId":4139,"tags":{},"startTime":1776949092546,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":98,"timestamp":7342146326921,"id":4150,"parentId":4139,"tags":{},"startTime":1776949092546,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":246813,"timestamp":7342146327021,"id":4151,"parentId":4139,"tags":{},"startTime":1776949092546,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":352207,"timestamp":7342146224711,"id":4139,"parentId":2436,"tags":{},"startTime":1776949092444,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":2740107,"timestamp":7342143841411,"id":2436,"parentId":2434,"tags":{"name":"server"},"startTime":1776949090060,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":36902,"timestamp":7342146581563,"id":4152,"parentId":2434,"tags":{},"startTime":1776949092801,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":2790321,"timestamp":7342143828563,"id":2434,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949090048,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":5037,"timestamp":7342146652709,"id":4163,"parentId":4162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776949092872,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36306,"timestamp":7342146630640,"id":4155,"parentId":4154,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":46020,"timestamp":7342146630831,"id":4161,"parentId":4154,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47285,"timestamp":7342146630824,"id":4160,"parentId":4154,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47331,"timestamp":7342146630789,"id":4158,"parentId":4154,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":49223,"timestamp":7342146630814,"id":4159,"parentId":4154,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":49348,"timestamp":7342146630759,"id":4156,"parentId":4154,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":49509,"timestamp":7342146630780,"id":4157,"parentId":4154,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14429,"timestamp":7342146679223,"id":4166,"parentId":4165,"tags":{},"startTime":1776949092898,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14591,"timestamp":7342146679073,"id":4165,"parentId":4164,"tags":{},"startTime":1776949092898,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":23193,"timestamp":7342146678786,"id":4164,"parentId":4163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"app-pages-browser"},"startTime":1776949092898,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5867,"timestamp":7342146708011,"id":4170,"parentId":4169,"tags":{},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5940,"timestamp":7342146707954,"id":4169,"parentId":4167,"tags":{},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":8177,"timestamp":7342146707758,"id":4167,"parentId":4164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"app-pages-browser"},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9292,"timestamp":7342146708334,"id":4175,"parentId":4174,"tags":{},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9340,"timestamp":7342146708291,"id":4174,"parentId":4173,"tags":{},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":9998,"timestamp":7342146708214,"id":4173,"parentId":4164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"app-pages-browser"},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10210,"timestamp":7342146708050,"id":4172,"parentId":4171,"tags":{},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10243,"timestamp":7342146708019,"id":4171,"parentId":4168,"tags":{},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":10967,"timestamp":7342146707881,"id":4168,"parentId":4164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"app-pages-browser"},"startTime":1776949092927,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6,"timestamp":7342146720062,"id":4177,"parentId":4176,"tags":{},"startTime":1776949092939,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342146720075,"id":4178,"parentId":4176,"tags":{},"startTime":1776949092939,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":667,"timestamp":7342146719917,"id":4176,"parentId":4167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"app-pages-browser"},"startTime":1776949092939,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16,"timestamp":7342146724715,"id":4185,"parentId":4179,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56,"timestamp":7342146724721,"id":4186,"parentId":4180,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85,"timestamp":7342146724724,"id":4187,"parentId":4181,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":109,"timestamp":7342146724726,"id":4188,"parentId":4182,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":133,"timestamp":7342146724728,"id":4189,"parentId":4183,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":157,"timestamp":7342146724730,"id":4190,"parentId":4184,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":176,"timestamp":7342146724737,"id":4191,"parentId":4179,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":133,"timestamp":7342146724779,"id":4192,"parentId":4180,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":102,"timestamp":7342146724811,"id":4193,"parentId":4181,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":77,"timestamp":7342146724836,"id":4194,"parentId":4182,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342146724862,"id":4195,"parentId":4183,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25,"timestamp":7342146724888,"id":4196,"parentId":4184,"tags":{},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":931,"timestamp":7342146724408,"id":4179,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"app-pages-browser"},"startTime":1776949092943,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1142,"timestamp":7342146724494,"id":4180,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"app-pages-browser"},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1230,"timestamp":7342146724537,"id":4181,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"app-pages-browser"},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1412,"timestamp":7342146724593,"id":4182,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"app-pages-browser"},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1595,"timestamp":7342146724635,"id":4183,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"app-pages-browser"},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1620,"timestamp":7342146724672,"id":4184,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"app-pages-browser"},"startTime":1776949092944,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":222,"timestamp":7342146746249,"id":4260,"parentId":4197,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":434,"timestamp":7342146746261,"id":4261,"parentId":4198,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":483,"timestamp":7342146746265,"id":4262,"parentId":4199,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":523,"timestamp":7342146746271,"id":4263,"parentId":4200,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":563,"timestamp":7342146746276,"id":4264,"parentId":4201,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":608,"timestamp":7342146746280,"id":4265,"parentId":4202,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":631,"timestamp":7342146746283,"id":4266,"parentId":4203,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":662,"timestamp":7342146746287,"id":4267,"parentId":4204,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":686,"timestamp":7342146746290,"id":4268,"parentId":4205,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":709,"timestamp":7342146746294,"id":4269,"parentId":4206,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":741,"timestamp":7342146746298,"id":4270,"parentId":4207,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":795,"timestamp":7342146746302,"id":4271,"parentId":4208,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":822,"timestamp":7342146746306,"id":4272,"parentId":4209,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":844,"timestamp":7342146746310,"id":4273,"parentId":4210,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":872,"timestamp":7342146746312,"id":4274,"parentId":4211,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":895,"timestamp":7342146746316,"id":4275,"parentId":4212,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":923,"timestamp":7342146746320,"id":4276,"parentId":4213,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":944,"timestamp":7342146746324,"id":4277,"parentId":4214,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":967,"timestamp":7342146746328,"id":4278,"parentId":4215,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":990,"timestamp":7342146746330,"id":4279,"parentId":4216,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1015,"timestamp":7342146746334,"id":4280,"parentId":4217,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1038,"timestamp":7342146746337,"id":4281,"parentId":4218,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1065,"timestamp":7342146746339,"id":4282,"parentId":4219,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1088,"timestamp":7342146746342,"id":4283,"parentId":4220,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1098,"timestamp":7342146746359,"id":4284,"parentId":4221,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1135,"timestamp":7342146746365,"id":4285,"parentId":4222,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1160,"timestamp":7342146746368,"id":4286,"parentId":4223,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1189,"timestamp":7342146746372,"id":4287,"parentId":4224,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1214,"timestamp":7342146746377,"id":4288,"parentId":4225,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1239,"timestamp":7342146746379,"id":4289,"parentId":4226,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1263,"timestamp":7342146746383,"id":4290,"parentId":4227,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1284,"timestamp":7342146746387,"id":4291,"parentId":4228,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1307,"timestamp":7342146746391,"id":4292,"parentId":4229,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1331,"timestamp":7342146746394,"id":4293,"parentId":4230,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1356,"timestamp":7342146746397,"id":4294,"parentId":4231,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1389,"timestamp":7342146746399,"id":4295,"parentId":4232,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1413,"timestamp":7342146746403,"id":4296,"parentId":4233,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1441,"timestamp":7342146746407,"id":4297,"parentId":4234,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1472,"timestamp":7342146746410,"id":4298,"parentId":4235,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1495,"timestamp":7342146746413,"id":4299,"parentId":4236,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1520,"timestamp":7342146746415,"id":4300,"parentId":4237,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1545,"timestamp":7342146746418,"id":4301,"parentId":4238,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1574,"timestamp":7342146746420,"id":4302,"parentId":4239,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1598,"timestamp":7342146746423,"id":4303,"parentId":4240,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1621,"timestamp":7342146746426,"id":4304,"parentId":4241,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1702,"timestamp":7342146746428,"id":4305,"parentId":4242,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1799,"timestamp":7342146746431,"id":4306,"parentId":4243,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1838,"timestamp":7342146746433,"id":4307,"parentId":4244,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1866,"timestamp":7342146746436,"id":4308,"parentId":4245,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1892,"timestamp":7342146746438,"id":4309,"parentId":4246,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1918,"timestamp":7342146746440,"id":4310,"parentId":4247,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1948,"timestamp":7342146746442,"id":4311,"parentId":4248,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1973,"timestamp":7342146746444,"id":4312,"parentId":4249,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2000,"timestamp":7342146746446,"id":4313,"parentId":4250,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2027,"timestamp":7342146746448,"id":4314,"parentId":4251,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2051,"timestamp":7342146746452,"id":4315,"parentId":4252,"tags":{},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2080,"timestamp":7342146746454,"id":4316,"parentId":4253,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2106,"timestamp":7342146746456,"id":4317,"parentId":4254,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2136,"timestamp":7342146746459,"id":4318,"parentId":4255,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2163,"timestamp":7342146746461,"id":4319,"parentId":4256,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2189,"timestamp":7342146746464,"id":4320,"parentId":4257,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2214,"timestamp":7342146746466,"id":4321,"parentId":4258,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2240,"timestamp":7342146746468,"id":4322,"parentId":4259,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2254,"timestamp":7342146746486,"id":4323,"parentId":4197,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2037,"timestamp":7342146746704,"id":4324,"parentId":4198,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1990,"timestamp":7342146746752,"id":4325,"parentId":4199,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1945,"timestamp":7342146746798,"id":4326,"parentId":4200,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":2078,"timestamp":7342146746842,"id":4327,"parentId":4201,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2031,"timestamp":7342146746891,"id":4328,"parentId":4202,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2007,"timestamp":7342146746916,"id":4329,"parentId":4203,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1973,"timestamp":7342146746951,"id":4330,"parentId":4204,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1947,"timestamp":7342146746978,"id":4331,"parentId":4205,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1920,"timestamp":7342146747006,"id":4332,"parentId":4206,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1887,"timestamp":7342146747040,"id":4333,"parentId":4207,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1829,"timestamp":7342146747098,"id":4334,"parentId":4208,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1799,"timestamp":7342146747129,"id":4335,"parentId":4209,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1774,"timestamp":7342146747156,"id":4336,"parentId":4210,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1744,"timestamp":7342146747187,"id":4337,"parentId":4211,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1719,"timestamp":7342146747213,"id":4338,"parentId":4212,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1688,"timestamp":7342146747244,"id":4339,"parentId":4213,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1663,"timestamp":7342146747270,"id":4340,"parentId":4214,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1638,"timestamp":7342146747296,"id":4341,"parentId":4215,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1613,"timestamp":7342146747322,"id":4342,"parentId":4216,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1586,"timestamp":7342146747351,"id":4343,"parentId":4217,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1559,"timestamp":7342146747378,"id":4344,"parentId":4218,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1532,"timestamp":7342146747406,"id":4345,"parentId":4219,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1507,"timestamp":7342146747432,"id":4346,"parentId":4220,"tags":{},"startTime":1776949092966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1467,"timestamp":7342146747473,"id":4347,"parentId":4221,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1438,"timestamp":7342146747503,"id":4348,"parentId":4222,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1412,"timestamp":7342146747529,"id":4349,"parentId":4223,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1377,"timestamp":7342146747564,"id":4350,"parentId":4224,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1350,"timestamp":7342146747593,"id":4351,"parentId":4225,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1323,"timestamp":7342146747620,"id":4352,"parentId":4226,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1296,"timestamp":7342146747648,"id":4353,"parentId":4227,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1271,"timestamp":7342146747674,"id":4354,"parentId":4228,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1244,"timestamp":7342146747700,"id":4355,"parentId":4229,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1219,"timestamp":7342146747727,"id":4356,"parentId":4230,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1191,"timestamp":7342146747754,"id":4357,"parentId":4231,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1156,"timestamp":7342146747790,"id":4358,"parentId":4232,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1128,"timestamp":7342146747818,"id":4359,"parentId":4233,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1097,"timestamp":7342146747850,"id":4360,"parentId":4234,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1064,"timestamp":7342146747884,"id":4361,"parentId":4235,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1039,"timestamp":7342146747910,"id":4362,"parentId":4236,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1013,"timestamp":7342146747937,"id":4363,"parentId":4237,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":985,"timestamp":7342146747965,"id":4364,"parentId":4238,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":955,"timestamp":7342146747996,"id":4365,"parentId":4239,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":927,"timestamp":7342146748023,"id":4366,"parentId":4240,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":903,"timestamp":7342146748049,"id":4367,"parentId":4241,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":799,"timestamp":7342146748153,"id":4368,"parentId":4242,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":718,"timestamp":7342146748235,"id":4369,"parentId":4243,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":679,"timestamp":7342146748275,"id":4370,"parentId":4244,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":651,"timestamp":7342146748304,"id":4371,"parentId":4245,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":623,"timestamp":7342146748332,"id":4372,"parentId":4246,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":595,"timestamp":7342146748360,"id":4373,"parentId":4247,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":565,"timestamp":7342146748391,"id":4374,"parentId":4248,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":538,"timestamp":7342146748419,"id":4375,"parentId":4249,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":508,"timestamp":7342146748448,"id":4376,"parentId":4250,"tags":{},"startTime":1776949092967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":480,"timestamp":7342146748477,"id":4377,"parentId":4251,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":451,"timestamp":7342146748506,"id":4378,"parentId":4252,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":421,"timestamp":7342146748536,"id":4379,"parentId":4253,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":394,"timestamp":7342146748564,"id":4380,"parentId":4254,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":361,"timestamp":7342146748598,"id":4381,"parentId":4255,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":332,"timestamp":7342146748627,"id":4382,"parentId":4256,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":303,"timestamp":7342146748655,"id":4383,"parentId":4257,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":277,"timestamp":7342146748682,"id":4384,"parentId":4258,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":250,"timestamp":7342146748709,"id":4385,"parentId":4259,"tags":{},"startTime":1776949092968,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12376,"timestamp":7342146741964,"id":4197,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"app-pages-browser"},"startTime":1776949092961,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11195,"timestamp":7342146743410,"id":4198,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"app-pages-browser"},"startTime":1776949092962,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11442,"timestamp":7342146743540,"id":4199,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13265,"timestamp":7342146743585,"id":4200,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14195,"timestamp":7342146743815,"id":4201,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14270,"timestamp":7342146743914,"id":4202,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16148,"timestamp":7342146743968,"id":4203,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16259,"timestamp":7342146744010,"id":4204,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16282,"timestamp":7342146744052,"id":4205,"parentId":4181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16289,"timestamp":7342146744095,"id":4206,"parentId":4181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18207,"timestamp":7342146744167,"id":4207,"parentId":4184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18300,"timestamp":7342146744223,"id":4208,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18333,"timestamp":7342146744316,"id":4209,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18371,"timestamp":7342146744360,"id":4210,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18415,"timestamp":7342146744400,"id":4211,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18472,"timestamp":7342146744440,"id":4212,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"app-pages-browser"},"startTime":1776949092963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18510,"timestamp":7342146744478,"id":4213,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18536,"timestamp":7342146744518,"id":4214,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18564,"timestamp":7342146744556,"id":4215,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18673,"timestamp":7342146744607,"id":4216,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18684,"timestamp":7342146744655,"id":4217,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18958,"timestamp":7342146744691,"id":4218,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19011,"timestamp":7342146744738,"id":4219,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19041,"timestamp":7342146744791,"id":4220,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19065,"timestamp":7342146744827,"id":4221,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19095,"timestamp":7342146744865,"id":4222,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19113,"timestamp":7342146744903,"id":4223,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19161,"timestamp":7342146744939,"id":4224,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19182,"timestamp":7342146744975,"id":4225,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19219,"timestamp":7342146745009,"id":4226,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19244,"timestamp":7342146745045,"id":4227,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19353,"timestamp":7342146745079,"id":4228,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19432,"timestamp":7342146745118,"id":4229,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19961,"timestamp":7342146745152,"id":4230,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20008,"timestamp":7342146745187,"id":4231,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20134,"timestamp":7342146745224,"id":4232,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20180,"timestamp":7342146745258,"id":4233,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20767,"timestamp":7342146745293,"id":4234,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20896,"timestamp":7342146745327,"id":4235,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20966,"timestamp":7342146745363,"id":4236,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20989,"timestamp":7342146745398,"id":4237,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21051,"timestamp":7342146745433,"id":4238,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"app-pages-browser"},"startTime":1776949092964,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":21183,"timestamp":7342146745468,"id":4239,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21599,"timestamp":7342146745504,"id":4240,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22146,"timestamp":7342146745547,"id":4241,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22455,"timestamp":7342146745586,"id":4242,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24990,"timestamp":7342146745626,"id":4243,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25281,"timestamp":7342146745663,"id":4244,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25353,"timestamp":7342146745698,"id":4245,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25396,"timestamp":7342146745734,"id":4246,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25428,"timestamp":7342146745768,"id":4247,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25710,"timestamp":7342146745802,"id":4248,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25797,"timestamp":7342146745837,"id":4249,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25830,"timestamp":7342146745873,"id":4250,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25906,"timestamp":7342146745908,"id":4251,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26071,"timestamp":7342146745943,"id":4252,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26091,"timestamp":7342146745979,"id":4253,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26107,"timestamp":7342146746015,"id":4254,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26130,"timestamp":7342146746049,"id":4255,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26148,"timestamp":7342146746085,"id":4256,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26162,"timestamp":7342146746123,"id":4257,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26212,"timestamp":7342146746158,"id":4258,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26679,"timestamp":7342146746194,"id":4259,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"app-pages-browser"},"startTime":1776949092965,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1272,"timestamp":7342146842432,"id":4400,"parentId":4386,"tags":{},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1460,"timestamp":7342146842449,"id":4401,"parentId":4387,"tags":{},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1543,"timestamp":7342146842472,"id":4402,"parentId":4388,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1597,"timestamp":7342146842481,"id":4403,"parentId":4389,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1624,"timestamp":7342146842484,"id":4404,"parentId":4390,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1656,"timestamp":7342146842487,"id":4405,"parentId":4391,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1710,"timestamp":7342146842489,"id":4406,"parentId":4392,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1745,"timestamp":7342146842492,"id":4407,"parentId":4393,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1782,"timestamp":7342146842494,"id":4408,"parentId":4394,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1827,"timestamp":7342146842496,"id":4409,"parentId":4395,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1856,"timestamp":7342146842499,"id":4410,"parentId":4396,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1917,"timestamp":7342146842501,"id":4411,"parentId":4397,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1986,"timestamp":7342146842503,"id":4412,"parentId":4398,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2043,"timestamp":7342146842506,"id":4413,"parentId":4399,"tags":{},"startTime":1776949093062,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5128,"timestamp":7342146843728,"id":4414,"parentId":4386,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4939,"timestamp":7342146843920,"id":4415,"parentId":4387,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4838,"timestamp":7342146844022,"id":4416,"parentId":4388,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4780,"timestamp":7342146844081,"id":4417,"parentId":4389,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4751,"timestamp":7342146844111,"id":4418,"parentId":4390,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4717,"timestamp":7342146844146,"id":4419,"parentId":4391,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4661,"timestamp":7342146844203,"id":4420,"parentId":4392,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4625,"timestamp":7342146844240,"id":4421,"parentId":4393,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4586,"timestamp":7342146844279,"id":4422,"parentId":4394,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4540,"timestamp":7342146844327,"id":4423,"parentId":4395,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4509,"timestamp":7342146844359,"id":4424,"parentId":4396,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4448,"timestamp":7342146844421,"id":4425,"parentId":4397,"tags":{},"startTime":1776949093063,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4372,"timestamp":7342146844497,"id":4426,"parentId":4398,"tags":{},"startTime":1776949093064,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4318,"timestamp":7342146844553,"id":4427,"parentId":4399,"tags":{},"startTime":1776949093064,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8270,"timestamp":7342146841684,"id":4386,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9594,"timestamp":7342146841794,"id":4387,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14150,"timestamp":7342146841840,"id":4388,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14363,"timestamp":7342146841904,"id":4389,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14493,"timestamp":7342146841942,"id":4390,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15072,"timestamp":7342146841981,"id":4391,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16514,"timestamp":7342146842017,"id":4392,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17423,"timestamp":7342146842054,"id":4393,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18798,"timestamp":7342146842090,"id":4394,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18923,"timestamp":7342146842125,"id":4395,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20312,"timestamp":7342146842159,"id":4396,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21783,"timestamp":7342146842199,"id":4397,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22137,"timestamp":7342146842233,"id":4398,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22561,"timestamp":7342146842268,"id":4399,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"app-pages-browser"},"startTime":1776949093061,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":523,"timestamp":7342146868809,"id":4438,"parentId":4428,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":554,"timestamp":7342146868835,"id":4439,"parentId":4429,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":599,"timestamp":7342146868838,"id":4440,"parentId":4430,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":623,"timestamp":7342146868840,"id":4441,"parentId":4431,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":654,"timestamp":7342146868842,"id":4442,"parentId":4432,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":690,"timestamp":7342146868844,"id":4443,"parentId":4433,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":716,"timestamp":7342146868846,"id":4444,"parentId":4434,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":741,"timestamp":7342146868848,"id":4445,"parentId":4435,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":782,"timestamp":7342146868850,"id":4446,"parentId":4436,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":808,"timestamp":7342146868852,"id":4447,"parentId":4437,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10001,"timestamp":7342146869339,"id":4448,"parentId":4428,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9952,"timestamp":7342146869391,"id":4449,"parentId":4429,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9905,"timestamp":7342146869439,"id":4450,"parentId":4430,"tags":{},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9880,"timestamp":7342146869465,"id":4451,"parentId":4431,"tags":{},"startTime":1776949093089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9848,"timestamp":7342146869497,"id":4452,"parentId":4432,"tags":{},"startTime":1776949093089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9810,"timestamp":7342146869535,"id":4453,"parentId":4433,"tags":{},"startTime":1776949093089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9782,"timestamp":7342146869564,"id":4454,"parentId":4434,"tags":{},"startTime":1776949093089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9755,"timestamp":7342146869591,"id":4455,"parentId":4435,"tags":{},"startTime":1776949093089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9713,"timestamp":7342146869633,"id":4456,"parentId":4436,"tags":{},"startTime":1776949093089,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9685,"timestamp":7342146869661,"id":4457,"parentId":4437,"tags":{},"startTime":1776949093089,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11512,"timestamp":7342146868336,"id":4428,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"app-pages-browser"},"startTime":1776949093087,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12894,"timestamp":7342146868430,"id":4429,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"app-pages-browser"},"startTime":1776949093087,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13060,"timestamp":7342146868481,"id":4430,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13200,"timestamp":7342146868520,"id":4431,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13832,"timestamp":7342146868556,"id":4432,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14062,"timestamp":7342146868592,"id":4433,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14259,"timestamp":7342146868628,"id":4434,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14417,"timestamp":7342146868665,"id":4435,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14646,"timestamp":7342146868699,"id":4436,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14863,"timestamp":7342146868735,"id":4437,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"app-pages-browser"},"startTime":1776949093088,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":305,"timestamp":7342146887732,"id":4514,"parentId":4458,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":337,"timestamp":7342146887737,"id":4515,"parentId":4459,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":359,"timestamp":7342146887740,"id":4516,"parentId":4460,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":381,"timestamp":7342146887743,"id":4517,"parentId":4461,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":403,"timestamp":7342146887746,"id":4518,"parentId":4462,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":432,"timestamp":7342146887748,"id":4519,"parentId":4463,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":469,"timestamp":7342146887751,"id":4520,"parentId":4464,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":494,"timestamp":7342146887754,"id":4521,"parentId":4465,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":720,"timestamp":7342146887756,"id":4522,"parentId":4466,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":782,"timestamp":7342146887759,"id":4523,"parentId":4467,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":814,"timestamp":7342146887762,"id":4524,"parentId":4468,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":854,"timestamp":7342146887765,"id":4525,"parentId":4469,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":894,"timestamp":7342146887768,"id":4526,"parentId":4470,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":925,"timestamp":7342146887770,"id":4527,"parentId":4471,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":955,"timestamp":7342146887773,"id":4528,"parentId":4472,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":985,"timestamp":7342146887775,"id":4529,"parentId":4473,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1017,"timestamp":7342146887778,"id":4530,"parentId":4474,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1046,"timestamp":7342146887780,"id":4531,"parentId":4475,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1073,"timestamp":7342146887783,"id":4532,"parentId":4476,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1099,"timestamp":7342146887785,"id":4533,"parentId":4477,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1123,"timestamp":7342146887787,"id":4534,"parentId":4478,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1148,"timestamp":7342146887790,"id":4535,"parentId":4479,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1172,"timestamp":7342146887792,"id":4536,"parentId":4480,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1195,"timestamp":7342146887794,"id":4537,"parentId":4481,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1218,"timestamp":7342146887797,"id":4538,"parentId":4482,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1247,"timestamp":7342146887799,"id":4539,"parentId":4483,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1282,"timestamp":7342146887801,"id":4540,"parentId":4484,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1309,"timestamp":7342146887803,"id":4541,"parentId":4485,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1332,"timestamp":7342146887805,"id":4542,"parentId":4486,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1362,"timestamp":7342146887808,"id":4543,"parentId":4487,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1385,"timestamp":7342146887810,"id":4544,"parentId":4488,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1409,"timestamp":7342146887812,"id":4545,"parentId":4489,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1442,"timestamp":7342146887814,"id":4546,"parentId":4490,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1484,"timestamp":7342146887816,"id":4547,"parentId":4491,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1515,"timestamp":7342146887818,"id":4548,"parentId":4492,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1557,"timestamp":7342146887819,"id":4549,"parentId":4493,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1590,"timestamp":7342146887822,"id":4550,"parentId":4494,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1626,"timestamp":7342146887824,"id":4551,"parentId":4495,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1663,"timestamp":7342146887826,"id":4552,"parentId":4496,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1696,"timestamp":7342146887827,"id":4553,"parentId":4497,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1723,"timestamp":7342146887829,"id":4554,"parentId":4498,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1766,"timestamp":7342146887831,"id":4555,"parentId":4499,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1790,"timestamp":7342146887833,"id":4556,"parentId":4500,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1816,"timestamp":7342146887835,"id":4557,"parentId":4501,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1846,"timestamp":7342146887836,"id":4558,"parentId":4502,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1906,"timestamp":7342146887838,"id":4559,"parentId":4503,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1931,"timestamp":7342146887840,"id":4560,"parentId":4504,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1985,"timestamp":7342146887842,"id":4561,"parentId":4505,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2029,"timestamp":7342146887843,"id":4562,"parentId":4506,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2058,"timestamp":7342146887845,"id":4563,"parentId":4507,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2096,"timestamp":7342146887847,"id":4564,"parentId":4508,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2129,"timestamp":7342146887849,"id":4565,"parentId":4509,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2164,"timestamp":7342146887850,"id":4566,"parentId":4510,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2193,"timestamp":7342146887852,"id":4567,"parentId":4511,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2219,"timestamp":7342146887853,"id":4568,"parentId":4512,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2254,"timestamp":7342146887855,"id":4569,"parentId":4513,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3487,"timestamp":7342146888042,"id":4570,"parentId":4458,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3454,"timestamp":7342146888076,"id":4571,"parentId":4459,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3430,"timestamp":7342146888101,"id":4572,"parentId":4460,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3407,"timestamp":7342146888125,"id":4573,"parentId":4461,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3382,"timestamp":7342146888150,"id":4574,"parentId":4462,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3351,"timestamp":7342146888182,"id":4575,"parentId":4463,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3311,"timestamp":7342146888223,"id":4576,"parentId":4464,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3117,"timestamp":7342146888418,"id":4577,"parentId":4465,"tags":{},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3054,"timestamp":7342146888482,"id":4578,"parentId":4466,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2993,"timestamp":7342146888544,"id":4579,"parentId":4467,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2959,"timestamp":7342146888578,"id":4580,"parentId":4468,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2917,"timestamp":7342146888621,"id":4581,"parentId":4469,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2875,"timestamp":7342146888664,"id":4582,"parentId":4470,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2843,"timestamp":7342146888698,"id":4583,"parentId":4471,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2811,"timestamp":7342146888730,"id":4584,"parentId":4472,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2780,"timestamp":7342146888762,"id":4585,"parentId":4473,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2745,"timestamp":7342146888798,"id":4586,"parentId":4474,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2714,"timestamp":7342146888830,"id":4587,"parentId":4475,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2687,"timestamp":7342146888858,"id":4588,"parentId":4476,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2659,"timestamp":7342146888887,"id":4589,"parentId":4477,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2632,"timestamp":7342146888914,"id":4590,"parentId":4478,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2606,"timestamp":7342146888941,"id":4591,"parentId":4479,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2582,"timestamp":7342146888966,"id":4592,"parentId":4480,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2557,"timestamp":7342146888992,"id":4593,"parentId":4481,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2533,"timestamp":7342146889017,"id":4594,"parentId":4482,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2502,"timestamp":7342146889049,"id":4595,"parentId":4483,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2466,"timestamp":7342146889086,"id":4596,"parentId":4484,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2438,"timestamp":7342146889114,"id":4597,"parentId":4485,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2413,"timestamp":7342146889140,"id":4598,"parentId":4486,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2382,"timestamp":7342146889172,"id":4599,"parentId":4487,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2357,"timestamp":7342146889197,"id":4600,"parentId":4488,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2332,"timestamp":7342146889223,"id":4601,"parentId":4489,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2297,"timestamp":7342146889259,"id":4602,"parentId":4490,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2254,"timestamp":7342146889303,"id":4603,"parentId":4491,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2222,"timestamp":7342146889336,"id":4604,"parentId":4492,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2179,"timestamp":7342146889379,"id":4605,"parentId":4493,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2144,"timestamp":7342146889415,"id":4606,"parentId":4494,"tags":{},"startTime":1776949093108,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2107,"timestamp":7342146889453,"id":4607,"parentId":4495,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2070,"timestamp":7342146889491,"id":4608,"parentId":4496,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2036,"timestamp":7342146889525,"id":4609,"parentId":4497,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2007,"timestamp":7342146889555,"id":4610,"parentId":4498,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1964,"timestamp":7342146889599,"id":4611,"parentId":4499,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1938,"timestamp":7342146889626,"id":4612,"parentId":4500,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1912,"timestamp":7342146889653,"id":4613,"parentId":4501,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1880,"timestamp":7342146889685,"id":4614,"parentId":4502,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1819,"timestamp":7342146889747,"id":4615,"parentId":4503,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1793,"timestamp":7342146889774,"id":4616,"parentId":4504,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1738,"timestamp":7342146889829,"id":4617,"parentId":4505,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1694,"timestamp":7342146889874,"id":4618,"parentId":4506,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1663,"timestamp":7342146889905,"id":4619,"parentId":4507,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1624,"timestamp":7342146889946,"id":4620,"parentId":4508,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1590,"timestamp":7342146889980,"id":4621,"parentId":4509,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1554,"timestamp":7342146890016,"id":4622,"parentId":4510,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":1587,"timestamp":7342146890047,"id":4623,"parentId":4511,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1560,"timestamp":7342146890074,"id":4624,"parentId":4512,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1524,"timestamp":7342146890111,"id":4625,"parentId":4513,"tags":{},"startTime":1776949093109,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6428,"timestamp":7342146885640,"id":4458,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6525,"timestamp":7342146885711,"id":4459,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6654,"timestamp":7342146885757,"id":4460,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6920,"timestamp":7342146885794,"id":4461,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7363,"timestamp":7342146885831,"id":4462,"parentId":4198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7959,"timestamp":7342146885867,"id":4463,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8375,"timestamp":7342146885901,"id":4464,"parentId":4200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9324,"timestamp":7342146885941,"id":4465,"parentId":4200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12253,"timestamp":7342146885976,"id":4466,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12705,"timestamp":7342146886011,"id":4467,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13554,"timestamp":7342146886046,"id":4468,"parentId":4204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16396,"timestamp":7342146886081,"id":4469,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16580,"timestamp":7342146886117,"id":4470,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16800,"timestamp":7342146886154,"id":4471,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17200,"timestamp":7342146886194,"id":4472,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17806,"timestamp":7342146886231,"id":4473,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18007,"timestamp":7342146886267,"id":4474,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18190,"timestamp":7342146886303,"id":4475,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18442,"timestamp":7342146886343,"id":4476,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18489,"timestamp":7342146886378,"id":4477,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18509,"timestamp":7342146886413,"id":4478,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18563,"timestamp":7342146886452,"id":4479,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"app-pages-browser"},"startTime":1776949093105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18611,"timestamp":7342146886487,"id":4480,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18641,"timestamp":7342146886520,"id":4481,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18930,"timestamp":7342146886554,"id":4482,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19792,"timestamp":7342146886588,"id":4483,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20084,"timestamp":7342146886622,"id":4484,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20297,"timestamp":7342146886655,"id":4485,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20734,"timestamp":7342146886690,"id":4486,"parentId":4198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20977,"timestamp":7342146886724,"id":4487,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21300,"timestamp":7342146886757,"id":4488,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22925,"timestamp":7342146886798,"id":4489,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27264,"timestamp":7342146886836,"id":4490,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27974,"timestamp":7342146886870,"id":4491,"parentId":4205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29353,"timestamp":7342146886906,"id":4492,"parentId":4206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29870,"timestamp":7342146886941,"id":4493,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31043,"timestamp":7342146886977,"id":4494,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31552,"timestamp":7342146887011,"id":4495,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31710,"timestamp":7342146887051,"id":4496,"parentId":4208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32256,"timestamp":7342146887086,"id":4497,"parentId":4208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33864,"timestamp":7342146887125,"id":4498,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33962,"timestamp":7342146887159,"id":4499,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34024,"timestamp":7342146887200,"id":4500,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34925,"timestamp":7342146887235,"id":4501,"parentId":4208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37169,"timestamp":7342146887269,"id":4502,"parentId":4208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37306,"timestamp":7342146887303,"id":4503,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41641,"timestamp":7342146887339,"id":4504,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43436,"timestamp":7342146887372,"id":4505,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44100,"timestamp":7342146887410,"id":4506,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44857,"timestamp":7342146887445,"id":4507,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"app-pages-browser"},"startTime":1776949093106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45235,"timestamp":7342146887478,"id":4508,"parentId":4211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"app-pages-browser"},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45601,"timestamp":7342146887516,"id":4509,"parentId":4211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"app-pages-browser"},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45926,"timestamp":7342146887552,"id":4510,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"app-pages-browser"},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46166,"timestamp":7342146887586,"id":4511,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47042,"timestamp":7342146887625,"id":4512,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47448,"timestamp":7342146887659,"id":4513,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"app-pages-browser"},"startTime":1776949093107,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":312,"timestamp":7342146972347,"id":4667,"parentId":4626,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":379,"timestamp":7342146972354,"id":4668,"parentId":4627,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":414,"timestamp":7342146972357,"id":4669,"parentId":4628,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":458,"timestamp":7342146972360,"id":4670,"parentId":4629,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":490,"timestamp":7342146972362,"id":4671,"parentId":4630,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":521,"timestamp":7342146972365,"id":4672,"parentId":4631,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":557,"timestamp":7342146972367,"id":4673,"parentId":4632,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":586,"timestamp":7342146972370,"id":4674,"parentId":4633,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":609,"timestamp":7342146972372,"id":4675,"parentId":4634,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":652,"timestamp":7342146972375,"id":4676,"parentId":4635,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":680,"timestamp":7342146972377,"id":4677,"parentId":4636,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":711,"timestamp":7342146972379,"id":4678,"parentId":4637,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":734,"timestamp":7342146972382,"id":4679,"parentId":4638,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":757,"timestamp":7342146972384,"id":4680,"parentId":4639,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":780,"timestamp":7342146972386,"id":4681,"parentId":4640,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":822,"timestamp":7342146972390,"id":4682,"parentId":4641,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":922,"timestamp":7342146972392,"id":4683,"parentId":4642,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":959,"timestamp":7342146972394,"id":4684,"parentId":4643,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1029,"timestamp":7342146972398,"id":4685,"parentId":4644,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1055,"timestamp":7342146972400,"id":4686,"parentId":4645,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1079,"timestamp":7342146972402,"id":4687,"parentId":4646,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1102,"timestamp":7342146972405,"id":4688,"parentId":4647,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1126,"timestamp":7342146972407,"id":4689,"parentId":4648,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1149,"timestamp":7342146972409,"id":4690,"parentId":4649,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1183,"timestamp":7342146972411,"id":4691,"parentId":4650,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1207,"timestamp":7342146972413,"id":4692,"parentId":4651,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1241,"timestamp":7342146972414,"id":4693,"parentId":4652,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1274,"timestamp":7342146972416,"id":4694,"parentId":4653,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1316,"timestamp":7342146972420,"id":4695,"parentId":4654,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1346,"timestamp":7342146972423,"id":4696,"parentId":4655,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1382,"timestamp":7342146972424,"id":4697,"parentId":4656,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1411,"timestamp":7342146972426,"id":4698,"parentId":4657,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1448,"timestamp":7342146972428,"id":4699,"parentId":4658,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1475,"timestamp":7342146972429,"id":4700,"parentId":4659,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1499,"timestamp":7342146972431,"id":4701,"parentId":4660,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1523,"timestamp":7342146972433,"id":4702,"parentId":4661,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1551,"timestamp":7342146972434,"id":4703,"parentId":4662,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1577,"timestamp":7342146972436,"id":4704,"parentId":4663,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1613,"timestamp":7342146972438,"id":4705,"parentId":4664,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1637,"timestamp":7342146972439,"id":4706,"parentId":4665,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1660,"timestamp":7342146972442,"id":4707,"parentId":4666,"tags":{},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8147,"timestamp":7342146972681,"id":4708,"parentId":4626,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":8302,"timestamp":7342146972735,"id":4709,"parentId":4627,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8266,"timestamp":7342146972773,"id":4710,"parentId":4628,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8221,"timestamp":7342146972820,"id":4711,"parentId":4629,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8187,"timestamp":7342146972854,"id":4712,"parentId":4630,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8154,"timestamp":7342146972888,"id":4713,"parentId":4631,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8116,"timestamp":7342146972926,"id":4714,"parentId":4632,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8086,"timestamp":7342146972957,"id":4715,"parentId":4633,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8060,"timestamp":7342146972984,"id":4716,"parentId":4634,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8016,"timestamp":7342146973028,"id":4717,"parentId":4635,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7987,"timestamp":7342146973058,"id":4718,"parentId":4636,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7954,"timestamp":7342146973092,"id":4719,"parentId":4637,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7929,"timestamp":7342146973118,"id":4720,"parentId":4638,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7904,"timestamp":7342146973143,"id":4721,"parentId":4639,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7880,"timestamp":7342146973168,"id":4722,"parentId":4640,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7834,"timestamp":7342146973213,"id":4723,"parentId":4641,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7732,"timestamp":7342146973316,"id":4724,"parentId":4642,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7694,"timestamp":7342146973355,"id":4725,"parentId":4643,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7621,"timestamp":7342146973428,"id":4726,"parentId":4644,"tags":{},"startTime":1776949093192,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7593,"timestamp":7342146973457,"id":4727,"parentId":4645,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7568,"timestamp":7342146973483,"id":4728,"parentId":4646,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7542,"timestamp":7342146973509,"id":4729,"parentId":4647,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7518,"timestamp":7342146973534,"id":4730,"parentId":4648,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7493,"timestamp":7342146973560,"id":4731,"parentId":4649,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7458,"timestamp":7342146973595,"id":4732,"parentId":4650,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7433,"timestamp":7342146973621,"id":4733,"parentId":4651,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7398,"timestamp":7342146973656,"id":4734,"parentId":4652,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7363,"timestamp":7342146973692,"id":4735,"parentId":4653,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7317,"timestamp":7342146973738,"id":4736,"parentId":4654,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7286,"timestamp":7342146973770,"id":4737,"parentId":4655,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7248,"timestamp":7342146973808,"id":4738,"parentId":4656,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7218,"timestamp":7342146973838,"id":4739,"parentId":4657,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7179,"timestamp":7342146973878,"id":4740,"parentId":4658,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7152,"timestamp":7342146973906,"id":4741,"parentId":4659,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7127,"timestamp":7342146973932,"id":4742,"parentId":4660,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7102,"timestamp":7342146973957,"id":4743,"parentId":4661,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7073,"timestamp":7342146973987,"id":4744,"parentId":4662,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7046,"timestamp":7342146974014,"id":4745,"parentId":4663,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7009,"timestamp":7342146974052,"id":4746,"parentId":4664,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6984,"timestamp":7342146974077,"id":4747,"parentId":4665,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6959,"timestamp":7342146974103,"id":4748,"parentId":4666,"tags":{},"startTime":1776949093193,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11155,"timestamp":7342146970652,"id":4626,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11930,"timestamp":7342146970825,"id":4627,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12611,"timestamp":7342146970873,"id":4628,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12973,"timestamp":7342146970913,"id":4629,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13077,"timestamp":7342146970950,"id":4630,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13403,"timestamp":7342146970987,"id":4631,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13562,"timestamp":7342146971025,"id":4632,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13645,"timestamp":7342146971062,"id":4633,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15105,"timestamp":7342146971099,"id":4634,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15593,"timestamp":7342146971134,"id":4635,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15872,"timestamp":7342146971170,"id":4636,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15935,"timestamp":7342146971205,"id":4637,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16003,"timestamp":7342146971241,"id":4638,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16856,"timestamp":7342146971301,"id":4639,"parentId":4215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17423,"timestamp":7342146971339,"id":4640,"parentId":4215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19099,"timestamp":7342146971377,"id":4641,"parentId":4215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19667,"timestamp":7342146971413,"id":4642,"parentId":4215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"app-pages-browser"},"startTime":1776949093190,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20578,"timestamp":7342146971467,"id":4643,"parentId":4215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20683,"timestamp":7342146971502,"id":4644,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20795,"timestamp":7342146971537,"id":4645,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20921,"timestamp":7342146971572,"id":4646,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21004,"timestamp":7342146971608,"id":4647,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21030,"timestamp":7342146971645,"id":4648,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21357,"timestamp":7342146971680,"id":4649,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21502,"timestamp":7342146971715,"id":4650,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22062,"timestamp":7342146971753,"id":4651,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22437,"timestamp":7342146971786,"id":4652,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23650,"timestamp":7342146971821,"id":4653,"parentId":4217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23788,"timestamp":7342146971858,"id":4654,"parentId":4217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24077,"timestamp":7342146971892,"id":4655,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24245,"timestamp":7342146971926,"id":4656,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24894,"timestamp":7342146971961,"id":4657,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25244,"timestamp":7342146971996,"id":4658,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26494,"timestamp":7342146972030,"id":4659,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26702,"timestamp":7342146972064,"id":4660,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27513,"timestamp":7342146972097,"id":4661,"parentId":4220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29560,"timestamp":7342146972132,"id":4662,"parentId":4220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30474,"timestamp":7342146972170,"id":4663,"parentId":4220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30630,"timestamp":7342146972204,"id":4664,"parentId":4220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30738,"timestamp":7342146972237,"id":4665,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31037,"timestamp":7342146972272,"id":4666,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"app-pages-browser"},"startTime":1776949093191,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":644,"timestamp":7342147082010,"id":4830,"parentId":4749,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":523,"timestamp":7342147082191,"id":4831,"parentId":4750,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":538,"timestamp":7342147082211,"id":4832,"parentId":4751,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":569,"timestamp":7342147082221,"id":4833,"parentId":4752,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":593,"timestamp":7342147082230,"id":4834,"parentId":4753,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":618,"timestamp":7342147082236,"id":4835,"parentId":4754,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":646,"timestamp":7342147082241,"id":4836,"parentId":4755,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":687,"timestamp":7342147082244,"id":4837,"parentId":4756,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":721,"timestamp":7342147082248,"id":4838,"parentId":4757,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":755,"timestamp":7342147082253,"id":4839,"parentId":4758,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":784,"timestamp":7342147082257,"id":4840,"parentId":4759,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":830,"timestamp":7342147082261,"id":4841,"parentId":4760,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":864,"timestamp":7342147082265,"id":4842,"parentId":4761,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2239,"timestamp":7342147082269,"id":4843,"parentId":4762,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2307,"timestamp":7342147082273,"id":4844,"parentId":4763,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2338,"timestamp":7342147082277,"id":4845,"parentId":4764,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2390,"timestamp":7342147082281,"id":4846,"parentId":4765,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2418,"timestamp":7342147082285,"id":4847,"parentId":4766,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2482,"timestamp":7342147082289,"id":4848,"parentId":4767,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2516,"timestamp":7342147082293,"id":4849,"parentId":4768,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":2721,"timestamp":7342147082298,"id":4850,"parentId":4769,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2823,"timestamp":7342147082301,"id":4851,"parentId":4770,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2861,"timestamp":7342147082305,"id":4852,"parentId":4771,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2895,"timestamp":7342147082310,"id":4853,"parentId":4772,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2922,"timestamp":7342147082314,"id":4854,"parentId":4773,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2965,"timestamp":7342147082318,"id":4855,"parentId":4774,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3006,"timestamp":7342147082322,"id":4856,"parentId":4775,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3035,"timestamp":7342147082325,"id":4857,"parentId":4776,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3068,"timestamp":7342147082329,"id":4858,"parentId":4777,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3095,"timestamp":7342147082333,"id":4859,"parentId":4778,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3160,"timestamp":7342147082338,"id":4860,"parentId":4779,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3190,"timestamp":7342147082342,"id":4861,"parentId":4780,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3242,"timestamp":7342147082345,"id":4862,"parentId":4781,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3282,"timestamp":7342147082351,"id":4863,"parentId":4782,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3319,"timestamp":7342147082354,"id":4864,"parentId":4783,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3353,"timestamp":7342147082357,"id":4865,"parentId":4784,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3384,"timestamp":7342147082360,"id":4866,"parentId":4785,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3410,"timestamp":7342147082364,"id":4867,"parentId":4786,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3439,"timestamp":7342147082368,"id":4868,"parentId":4787,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3476,"timestamp":7342147082371,"id":4869,"parentId":4788,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3514,"timestamp":7342147082374,"id":4870,"parentId":4789,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3545,"timestamp":7342147082378,"id":4871,"parentId":4790,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3574,"timestamp":7342147082384,"id":4872,"parentId":4791,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3601,"timestamp":7342147082387,"id":4873,"parentId":4792,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3628,"timestamp":7342147082390,"id":4874,"parentId":4793,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3675,"timestamp":7342147082394,"id":4875,"parentId":4794,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3734,"timestamp":7342147082397,"id":4876,"parentId":4795,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3766,"timestamp":7342147082400,"id":4877,"parentId":4796,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3814,"timestamp":7342147082404,"id":4878,"parentId":4797,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3844,"timestamp":7342147082408,"id":4879,"parentId":4798,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3875,"timestamp":7342147082411,"id":4880,"parentId":4799,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3906,"timestamp":7342147082414,"id":4881,"parentId":4800,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3937,"timestamp":7342147082417,"id":4882,"parentId":4801,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3966,"timestamp":7342147082420,"id":4883,"parentId":4802,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3997,"timestamp":7342147082423,"id":4884,"parentId":4803,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4026,"timestamp":7342147082426,"id":4885,"parentId":4804,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4058,"timestamp":7342147082430,"id":4886,"parentId":4805,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4088,"timestamp":7342147082433,"id":4887,"parentId":4806,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4115,"timestamp":7342147082436,"id":4888,"parentId":4807,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4147,"timestamp":7342147082439,"id":4889,"parentId":4808,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4179,"timestamp":7342147082443,"id":4890,"parentId":4809,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4208,"timestamp":7342147082446,"id":4891,"parentId":4810,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4235,"timestamp":7342147082449,"id":4892,"parentId":4811,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4285,"timestamp":7342147082452,"id":4893,"parentId":4812,"tags":{},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4329,"timestamp":7342147082455,"id":4894,"parentId":4813,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4368,"timestamp":7342147082458,"id":4895,"parentId":4814,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4405,"timestamp":7342147082462,"id":4896,"parentId":4815,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4431,"timestamp":7342147082466,"id":4897,"parentId":4816,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4459,"timestamp":7342147082469,"id":4898,"parentId":4817,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4493,"timestamp":7342147082471,"id":4899,"parentId":4818,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4520,"timestamp":7342147082474,"id":4900,"parentId":4819,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4548,"timestamp":7342147082477,"id":4901,"parentId":4820,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4666,"timestamp":7342147082479,"id":4902,"parentId":4821,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4697,"timestamp":7342147082483,"id":4903,"parentId":4822,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4725,"timestamp":7342147082485,"id":4904,"parentId":4823,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4752,"timestamp":7342147082487,"id":4905,"parentId":4824,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4785,"timestamp":7342147082489,"id":4906,"parentId":4825,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4823,"timestamp":7342147082492,"id":4907,"parentId":4826,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4850,"timestamp":7342147082495,"id":4908,"parentId":4827,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4876,"timestamp":7342147082497,"id":4909,"parentId":4828,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4903,"timestamp":7342147082499,"id":4910,"parentId":4829,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6892,"timestamp":7342147082666,"id":4911,"parentId":4749,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6843,"timestamp":7342147082718,"id":4912,"parentId":4750,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6811,"timestamp":7342147082751,"id":4913,"parentId":4751,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6770,"timestamp":7342147082793,"id":4914,"parentId":4752,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6737,"timestamp":7342147082826,"id":4915,"parentId":4753,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6706,"timestamp":7342147082857,"id":4916,"parentId":4754,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6674,"timestamp":7342147082889,"id":4917,"parentId":4755,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6628,"timestamp":7342147082936,"id":4918,"parentId":4756,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6588,"timestamp":7342147082977,"id":4919,"parentId":4757,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6553,"timestamp":7342147083012,"id":4920,"parentId":4758,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6522,"timestamp":7342147083043,"id":4921,"parentId":4759,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6469,"timestamp":7342147083096,"id":4922,"parentId":4760,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6433,"timestamp":7342147083133,"id":4923,"parentId":4761,"tags":{},"startTime":1776949093302,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5040,"timestamp":7342147084528,"id":4924,"parentId":4762,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4983,"timestamp":7342147084586,"id":4925,"parentId":4763,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4952,"timestamp":7342147084618,"id":4926,"parentId":4764,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4897,"timestamp":7342147084675,"id":4927,"parentId":4765,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4866,"timestamp":7342147084706,"id":4928,"parentId":4766,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4799,"timestamp":7342147084774,"id":4929,"parentId":4767,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4590,"timestamp":7342147084986,"id":4930,"parentId":4768,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4556,"timestamp":7342147085022,"id":4931,"parentId":4769,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4451,"timestamp":7342147085127,"id":4932,"parentId":4770,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4410,"timestamp":7342147085170,"id":4933,"parentId":4771,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4374,"timestamp":7342147085207,"id":4934,"parentId":4772,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4343,"timestamp":7342147085239,"id":4935,"parentId":4773,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4293,"timestamp":7342147085290,"id":4936,"parentId":4774,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4253,"timestamp":7342147085331,"id":4937,"parentId":4775,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4221,"timestamp":7342147085364,"id":4938,"parentId":4776,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4186,"timestamp":7342147085400,"id":4939,"parentId":4777,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4157,"timestamp":7342147085430,"id":4940,"parentId":4778,"tags":{},"startTime":1776949093304,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4088,"timestamp":7342147085501,"id":4941,"parentId":4779,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4038,"timestamp":7342147085552,"id":4942,"parentId":4780,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4001,"timestamp":7342147085590,"id":4943,"parentId":4781,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3956,"timestamp":7342147085636,"id":4944,"parentId":4782,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3917,"timestamp":7342147085676,"id":4945,"parentId":4783,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3881,"timestamp":7342147085713,"id":4946,"parentId":4784,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3848,"timestamp":7342147085747,"id":4947,"parentId":4785,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3818,"timestamp":7342147085778,"id":4948,"parentId":4786,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3787,"timestamp":7342147085810,"id":4949,"parentId":4787,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3749,"timestamp":7342147085849,"id":4950,"parentId":4788,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":3789,"timestamp":7342147085892,"id":4951,"parentId":4789,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3756,"timestamp":7342147085926,"id":4952,"parentId":4790,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3723,"timestamp":7342147085960,"id":4953,"parentId":4791,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3693,"timestamp":7342147085991,"id":4954,"parentId":4792,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3664,"timestamp":7342147086021,"id":4955,"parentId":4793,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3614,"timestamp":7342147086072,"id":4956,"parentId":4794,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3549,"timestamp":7342147086138,"id":4957,"parentId":4795,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3519,"timestamp":7342147086170,"id":4958,"parentId":4796,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3469,"timestamp":7342147086221,"id":4959,"parentId":4797,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3436,"timestamp":7342147086255,"id":4960,"parentId":4798,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3402,"timestamp":7342147086290,"id":4961,"parentId":4799,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3370,"timestamp":7342147086323,"id":4962,"parentId":4800,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3337,"timestamp":7342147086357,"id":4963,"parentId":4801,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3306,"timestamp":7342147086389,"id":4964,"parentId":4802,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3272,"timestamp":7342147086424,"id":4965,"parentId":4803,"tags":{},"startTime":1776949093305,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3241,"timestamp":7342147086455,"id":4966,"parentId":4804,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3206,"timestamp":7342147086491,"id":4967,"parentId":4805,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3175,"timestamp":7342147086523,"id":4968,"parentId":4806,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3145,"timestamp":7342147086555,"id":4969,"parentId":4807,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3110,"timestamp":7342147086590,"id":4970,"parentId":4808,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3077,"timestamp":7342147086625,"id":4971,"parentId":4809,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3045,"timestamp":7342147086657,"id":4972,"parentId":4810,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3016,"timestamp":7342147086688,"id":4973,"parentId":4811,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2963,"timestamp":7342147086741,"id":4974,"parentId":4812,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2918,"timestamp":7342147086787,"id":4975,"parentId":4813,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2876,"timestamp":7342147086830,"id":4976,"parentId":4814,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2837,"timestamp":7342147086871,"id":4977,"parentId":4815,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2809,"timestamp":7342147086900,"id":4978,"parentId":4816,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2778,"timestamp":7342147086932,"id":4979,"parentId":4817,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2744,"timestamp":7342147086967,"id":4980,"parentId":4818,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2715,"timestamp":7342147086997,"id":4981,"parentId":4819,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2685,"timestamp":7342147087028,"id":4982,"parentId":4820,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2564,"timestamp":7342147087150,"id":4983,"parentId":4821,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2532,"timestamp":7342147087183,"id":4984,"parentId":4822,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2502,"timestamp":7342147087213,"id":4985,"parentId":4823,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2474,"timestamp":7342147087242,"id":4986,"parentId":4824,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2440,"timestamp":7342147087277,"id":4987,"parentId":4825,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2400,"timestamp":7342147087319,"id":4988,"parentId":4826,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2372,"timestamp":7342147087347,"id":4989,"parentId":4827,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2344,"timestamp":7342147087376,"id":4990,"parentId":4828,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2316,"timestamp":7342147087405,"id":4991,"parentId":4829,"tags":{},"startTime":1776949093306,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12646,"timestamp":7342147077921,"id":4749,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12735,"timestamp":7342147078059,"id":4750,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13546,"timestamp":7342147078113,"id":4751,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13693,"timestamp":7342147078161,"id":4752,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13812,"timestamp":7342147078202,"id":4753,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13937,"timestamp":7342147078249,"id":4754,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15298,"timestamp":7342147078290,"id":4755,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15481,"timestamp":7342147078333,"id":4756,"parentId":4223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"app-pages-browser"},"startTime":1776949093297,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15276,"timestamp":7342147078682,"id":4757,"parentId":4223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15620,"timestamp":7342147078736,"id":4758,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16470,"timestamp":7342147078781,"id":4759,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16903,"timestamp":7342147078827,"id":4760,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17000,"timestamp":7342147078872,"id":4761,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17697,"timestamp":7342147078916,"id":4762,"parentId":4225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17780,"timestamp":7342147078959,"id":4763,"parentId":4225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20395,"timestamp":7342147079001,"id":4764,"parentId":4226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20515,"timestamp":7342147079041,"id":4765,"parentId":4226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20791,"timestamp":7342147079083,"id":4766,"parentId":4227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21316,"timestamp":7342147079121,"id":4767,"parentId":4227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22072,"timestamp":7342147079163,"id":4768,"parentId":4227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22469,"timestamp":7342147079209,"id":4769,"parentId":4228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22757,"timestamp":7342147079252,"id":4770,"parentId":4228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23087,"timestamp":7342147079295,"id":4771,"parentId":4228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23175,"timestamp":7342147079332,"id":4772,"parentId":4228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23275,"timestamp":7342147079414,"id":4773,"parentId":4228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"app-pages-browser"},"startTime":1776949093298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24492,"timestamp":7342147079456,"id":4774,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24679,"timestamp":7342147079494,"id":4775,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25091,"timestamp":7342147079531,"id":4776,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25206,"timestamp":7342147079567,"id":4777,"parentId":4229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26816,"timestamp":7342147079606,"id":4778,"parentId":4229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26872,"timestamp":7342147079643,"id":4779,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26933,"timestamp":7342147079682,"id":4780,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27740,"timestamp":7342147079719,"id":4781,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28149,"timestamp":7342147079755,"id":4782,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28289,"timestamp":7342147079793,"id":4783,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28531,"timestamp":7342147079828,"id":4784,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28565,"timestamp":7342147079889,"id":4785,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28629,"timestamp":7342147079949,"id":4786,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28918,"timestamp":7342147079991,"id":4787,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31274,"timestamp":7342147080029,"id":4788,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32037,"timestamp":7342147080068,"id":4789,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32323,"timestamp":7342147080112,"id":4790,"parentId":4233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32786,"timestamp":7342147080162,"id":4791,"parentId":4233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33182,"timestamp":7342147080202,"id":4792,"parentId":4233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33556,"timestamp":7342147080242,"id":4793,"parentId":4234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34208,"timestamp":7342147080279,"id":4794,"parentId":4234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34520,"timestamp":7342147080315,"id":4795,"parentId":4234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35497,"timestamp":7342147080354,"id":4796,"parentId":4243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36161,"timestamp":7342147080390,"id":4797,"parentId":4243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36302,"timestamp":7342147080425,"id":4798,"parentId":4234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"app-pages-browser"},"startTime":1776949093299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36558,"timestamp":7342147080461,"id":4799,"parentId":4235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36637,"timestamp":7342147080498,"id":4800,"parentId":4235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36698,"timestamp":7342147080534,"id":4801,"parentId":4235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37103,"timestamp":7342147080570,"id":4802,"parentId":4235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37213,"timestamp":7342147080610,"id":4803,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37453,"timestamp":7342147080647,"id":4804,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37595,"timestamp":7342147080686,"id":4805,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37646,"timestamp":7342147080764,"id":4806,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37765,"timestamp":7342147080803,"id":4807,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38150,"timestamp":7342147080839,"id":4808,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":38299,"timestamp":7342147080875,"id":4809,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38439,"timestamp":7342147080946,"id":4810,"parentId":4237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39344,"timestamp":7342147080987,"id":4811,"parentId":4237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40025,"timestamp":7342147081024,"id":4812,"parentId":4237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40568,"timestamp":7342147081061,"id":4813,"parentId":4238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41299,"timestamp":7342147081098,"id":4814,"parentId":4238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41327,"timestamp":7342147081142,"id":4815,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41431,"timestamp":7342147081180,"id":4816,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42853,"timestamp":7342147081220,"id":4817,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42956,"timestamp":7342147081256,"id":4818,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43067,"timestamp":7342147081294,"id":4819,"parentId":4240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45605,"timestamp":7342147081332,"id":4820,"parentId":4240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46499,"timestamp":7342147081421,"id":4821,"parentId":4241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"app-pages-browser"},"startTime":1776949093300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46603,"timestamp":7342147081463,"id":4822,"parentId":4241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46719,"timestamp":7342147081526,"id":4823,"parentId":4241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47133,"timestamp":7342147081641,"id":4824,"parentId":4241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47652,"timestamp":7342147081738,"id":4825,"parentId":4241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47745,"timestamp":7342147081793,"id":4826,"parentId":4242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48298,"timestamp":7342147081835,"id":4827,"parentId":4242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48570,"timestamp":7342147081877,"id":4828,"parentId":4242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49116,"timestamp":7342147081919,"id":4829,"parentId":4242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776949093301,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":329,"timestamp":7342147189834,"id":5006,"parentId":4992,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":393,"timestamp":7342147189840,"id":5007,"parentId":4993,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":442,"timestamp":7342147189842,"id":5008,"parentId":4994,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":467,"timestamp":7342147189845,"id":5009,"parentId":4995,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":492,"timestamp":7342147189846,"id":5010,"parentId":4996,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":517,"timestamp":7342147189848,"id":5011,"parentId":4997,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":539,"timestamp":7342147189850,"id":5012,"parentId":4998,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":579,"timestamp":7342147189852,"id":5013,"parentId":4999,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":603,"timestamp":7342147189854,"id":5014,"parentId":5000,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":640,"timestamp":7342147189855,"id":5015,"parentId":5001,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":663,"timestamp":7342147189857,"id":5016,"parentId":5002,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":698,"timestamp":7342147189859,"id":5017,"parentId":5003,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":731,"timestamp":7342147189861,"id":5018,"parentId":5004,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":757,"timestamp":7342147189862,"id":5019,"parentId":5005,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10952,"timestamp":7342147190176,"id":5020,"parentId":4992,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10897,"timestamp":7342147190236,"id":5021,"parentId":4993,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10847,"timestamp":7342147190286,"id":5022,"parentId":4994,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10821,"timestamp":7342147190313,"id":5023,"parentId":4995,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10793,"timestamp":7342147190341,"id":5024,"parentId":4996,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10768,"timestamp":7342147190366,"id":5025,"parentId":4997,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10744,"timestamp":7342147190391,"id":5026,"parentId":4998,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10703,"timestamp":7342147190433,"id":5027,"parentId":4999,"tags":{},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10677,"timestamp":7342147190458,"id":5028,"parentId":5000,"tags":{},"startTime":1776949093410,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10639,"timestamp":7342147190497,"id":5029,"parentId":5001,"tags":{},"startTime":1776949093410,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10615,"timestamp":7342147190522,"id":5030,"parentId":5002,"tags":{},"startTime":1776949093410,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10578,"timestamp":7342147190560,"id":5031,"parentId":5003,"tags":{},"startTime":1776949093410,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10545,"timestamp":7342147190593,"id":5032,"parentId":5004,"tags":{},"startTime":1776949093410,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10516,"timestamp":7342147190621,"id":5033,"parentId":5005,"tags":{},"startTime":1776949093410,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12372,"timestamp":7342147189201,"id":4992,"parentId":4244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"app-pages-browser"},"startTime":1776949093408,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13757,"timestamp":7342147189320,"id":4993,"parentId":4244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"app-pages-browser"},"startTime":1776949093408,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13879,"timestamp":7342147189366,"id":4994,"parentId":4244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"app-pages-browser"},"startTime":1776949093408,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14021,"timestamp":7342147189405,"id":4995,"parentId":4244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"app-pages-browser"},"startTime":1776949093408,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14065,"timestamp":7342147189442,"id":4996,"parentId":4245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"app-pages-browser"},"startTime":1776949093408,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14147,"timestamp":7342147189480,"id":4997,"parentId":4245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14722,"timestamp":7342147189515,"id":4998,"parentId":4245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14916,"timestamp":7342147189551,"id":4999,"parentId":4246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15688,"timestamp":7342147189586,"id":5000,"parentId":4246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15779,"timestamp":7342147189625,"id":5001,"parentId":4247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16520,"timestamp":7342147189659,"id":5002,"parentId":4247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16797,"timestamp":7342147189694,"id":5003,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17866,"timestamp":7342147189729,"id":5004,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18652,"timestamp":7342147189764,"id":5005,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"app-pages-browser"},"startTime":1776949093409,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":292,"timestamp":7342147210946,"id":5036,"parentId":5034,"tags":{},"startTime":1776949093430,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":330,"timestamp":7342147210955,"id":5037,"parentId":5035,"tags":{},"startTime":1776949093430,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9774,"timestamp":7342147211250,"id":5038,"parentId":5034,"tags":{},"startTime":1776949093430,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9744,"timestamp":7342147211288,"id":5039,"parentId":5035,"tags":{},"startTime":1776949093430,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10666,"timestamp":7342147210756,"id":5034,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"app-pages-browser"},"startTime":1776949093430,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11124,"timestamp":7342147210861,"id":5035,"parentId":4239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"app-pages-browser"},"startTime":1776949093430,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":638,"timestamp":7342147227014,"id":5125,"parentId":5040,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":684,"timestamp":7342147227023,"id":5126,"parentId":5041,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":721,"timestamp":7342147227028,"id":5127,"parentId":5042,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":776,"timestamp":7342147227033,"id":5128,"parentId":5043,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":808,"timestamp":7342147227038,"id":5129,"parentId":5044,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":844,"timestamp":7342147227042,"id":5130,"parentId":5045,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":872,"timestamp":7342147227046,"id":5131,"parentId":5046,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":971,"timestamp":7342147227050,"id":5132,"parentId":5047,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1037,"timestamp":7342147227055,"id":5133,"parentId":5048,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1045,"timestamp":7342147227078,"id":5134,"parentId":5049,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1067,"timestamp":7342147227091,"id":5135,"parentId":5050,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1093,"timestamp":7342147227096,"id":5136,"parentId":5051,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1140,"timestamp":7342147227100,"id":5137,"parentId":5052,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1175,"timestamp":7342147227104,"id":5138,"parentId":5053,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1129,"timestamp":7342147227180,"id":5139,"parentId":5054,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1149,"timestamp":7342147227189,"id":5140,"parentId":5055,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1234,"timestamp":7342147227196,"id":5141,"parentId":5056,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1260,"timestamp":7342147227202,"id":5142,"parentId":5057,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1336,"timestamp":7342147227208,"id":5143,"parentId":5058,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1359,"timestamp":7342147227213,"id":5144,"parentId":5059,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1402,"timestamp":7342147227219,"id":5145,"parentId":5060,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1429,"timestamp":7342147227225,"id":5146,"parentId":5061,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1453,"timestamp":7342147227229,"id":5147,"parentId":5062,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1476,"timestamp":7342147227235,"id":5148,"parentId":5063,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1502,"timestamp":7342147227240,"id":5149,"parentId":5064,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1534,"timestamp":7342147227246,"id":5150,"parentId":5065,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1561,"timestamp":7342147227251,"id":5151,"parentId":5066,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1602,"timestamp":7342147227257,"id":5152,"parentId":5067,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1630,"timestamp":7342147227262,"id":5153,"parentId":5068,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1665,"timestamp":7342147227268,"id":5154,"parentId":5069,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1692,"timestamp":7342147227272,"id":5155,"parentId":5070,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1718,"timestamp":7342147227277,"id":5156,"parentId":5071,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":1945,"timestamp":7342147227281,"id":5157,"parentId":5072,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1983,"timestamp":7342147227286,"id":5158,"parentId":5073,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2018,"timestamp":7342147227291,"id":5159,"parentId":5074,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2042,"timestamp":7342147227295,"id":5160,"parentId":5075,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2066,"timestamp":7342147227300,"id":5161,"parentId":5076,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2093,"timestamp":7342147227304,"id":5162,"parentId":5077,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2133,"timestamp":7342147227310,"id":5163,"parentId":5078,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2170,"timestamp":7342147227314,"id":5164,"parentId":5079,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2193,"timestamp":7342147227319,"id":5165,"parentId":5080,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2242,"timestamp":7342147227323,"id":5166,"parentId":5081,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2264,"timestamp":7342147227327,"id":5167,"parentId":5082,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2292,"timestamp":7342147227332,"id":5168,"parentId":5083,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2315,"timestamp":7342147227336,"id":5169,"parentId":5084,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2347,"timestamp":7342147227341,"id":5170,"parentId":5085,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2373,"timestamp":7342147227344,"id":5171,"parentId":5086,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2400,"timestamp":7342147227349,"id":5172,"parentId":5087,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2430,"timestamp":7342147227352,"id":5173,"parentId":5088,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2455,"timestamp":7342147227357,"id":5174,"parentId":5089,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2479,"timestamp":7342147227361,"id":5175,"parentId":5090,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2502,"timestamp":7342147227364,"id":5176,"parentId":5091,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2523,"timestamp":7342147227369,"id":5177,"parentId":5092,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2546,"timestamp":7342147227374,"id":5178,"parentId":5093,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2571,"timestamp":7342147227379,"id":5179,"parentId":5094,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2593,"timestamp":7342147227383,"id":5180,"parentId":5095,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2615,"timestamp":7342147227388,"id":5181,"parentId":5096,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2640,"timestamp":7342147227392,"id":5182,"parentId":5097,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2661,"timestamp":7342147227397,"id":5183,"parentId":5098,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2686,"timestamp":7342147227400,"id":5184,"parentId":5099,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2733,"timestamp":7342147227406,"id":5185,"parentId":5100,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2757,"timestamp":7342147227410,"id":5186,"parentId":5101,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2791,"timestamp":7342147227413,"id":5187,"parentId":5102,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2835,"timestamp":7342147227418,"id":5188,"parentId":5103,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2858,"timestamp":7342147227424,"id":5189,"parentId":5104,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2901,"timestamp":7342147227427,"id":5190,"parentId":5105,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2965,"timestamp":7342147227431,"id":5191,"parentId":5106,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2996,"timestamp":7342147227435,"id":5192,"parentId":5107,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3057,"timestamp":7342147227440,"id":5193,"parentId":5108,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3085,"timestamp":7342147227443,"id":5194,"parentId":5109,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3110,"timestamp":7342147227446,"id":5195,"parentId":5110,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3152,"timestamp":7342147227449,"id":5196,"parentId":5111,"tags":{},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3174,"timestamp":7342147227453,"id":5197,"parentId":5112,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3205,"timestamp":7342147227456,"id":5198,"parentId":5113,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3227,"timestamp":7342147227460,"id":5199,"parentId":5114,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3249,"timestamp":7342147227463,"id":5200,"parentId":5115,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3289,"timestamp":7342147227467,"id":5201,"parentId":5116,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3314,"timestamp":7342147227470,"id":5202,"parentId":5117,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3340,"timestamp":7342147227474,"id":5203,"parentId":5118,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3367,"timestamp":7342147227477,"id":5204,"parentId":5119,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3405,"timestamp":7342147227482,"id":5205,"parentId":5120,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3432,"timestamp":7342147227485,"id":5206,"parentId":5121,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3466,"timestamp":7342147227488,"id":5207,"parentId":5122,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3496,"timestamp":7342147227491,"id":5208,"parentId":5123,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3521,"timestamp":7342147227494,"id":5209,"parentId":5124,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4359,"timestamp":7342147227665,"id":5210,"parentId":5040,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4314,"timestamp":7342147227711,"id":5211,"parentId":5041,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4275,"timestamp":7342147227752,"id":5212,"parentId":5042,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4213,"timestamp":7342147227815,"id":5213,"parentId":5043,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4181,"timestamp":7342147227849,"id":5214,"parentId":5044,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4140,"timestamp":7342147227891,"id":5215,"parentId":5045,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4110,"timestamp":7342147227921,"id":5216,"parentId":5046,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3998,"timestamp":7342147228034,"id":5217,"parentId":5047,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3937,"timestamp":7342147228096,"id":5218,"parentId":5048,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3906,"timestamp":7342147228128,"id":5219,"parentId":5049,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3873,"timestamp":7342147228162,"id":5220,"parentId":5050,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3845,"timestamp":7342147228192,"id":5221,"parentId":5051,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3794,"timestamp":7342147228243,"id":5222,"parentId":5052,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3755,"timestamp":7342147228283,"id":5223,"parentId":5053,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3728,"timestamp":7342147228311,"id":5224,"parentId":5054,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3699,"timestamp":7342147228341,"id":5225,"parentId":5055,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3609,"timestamp":7342147228432,"id":5226,"parentId":5056,"tags":{},"startTime":1776949093447,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3577,"timestamp":7342147228466,"id":5227,"parentId":5057,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3496,"timestamp":7342147228547,"id":5228,"parentId":5058,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3469,"timestamp":7342147228575,"id":5229,"parentId":5059,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3422,"timestamp":7342147228623,"id":5230,"parentId":5060,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3389,"timestamp":7342147228657,"id":5231,"parentId":5061,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3362,"timestamp":7342147228686,"id":5232,"parentId":5062,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3334,"timestamp":7342147228714,"id":5233,"parentId":5063,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3305,"timestamp":7342147228744,"id":5234,"parentId":5064,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3268,"timestamp":7342147228783,"id":5235,"parentId":5065,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3225,"timestamp":7342147228827,"id":5236,"parentId":5066,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3188,"timestamp":7342147228865,"id":5237,"parentId":5067,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3159,"timestamp":7342147228895,"id":5238,"parentId":5068,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3120,"timestamp":7342147228936,"id":5239,"parentId":5069,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3088,"timestamp":7342147228968,"id":5240,"parentId":5070,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2900,"timestamp":7342147229158,"id":5241,"parentId":5071,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2830,"timestamp":7342147229229,"id":5242,"parentId":5072,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2787,"timestamp":7342147229273,"id":5243,"parentId":5073,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2750,"timestamp":7342147229311,"id":5244,"parentId":5074,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2722,"timestamp":7342147229340,"id":5245,"parentId":5075,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2690,"timestamp":7342147229372,"id":5246,"parentId":5076,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2665,"timestamp":7342147229399,"id":5247,"parentId":5077,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2619,"timestamp":7342147229445,"id":5248,"parentId":5078,"tags":{},"startTime":1776949093448,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2579,"timestamp":7342147229487,"id":5249,"parentId":5079,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2552,"timestamp":7342147229514,"id":5250,"parentId":5080,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2499,"timestamp":7342147229568,"id":5251,"parentId":5081,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2474,"timestamp":7342147229594,"id":5252,"parentId":5082,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2442,"timestamp":7342147229627,"id":5253,"parentId":5083,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2416,"timestamp":7342147229654,"id":5254,"parentId":5084,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2379,"timestamp":7342147229691,"id":5255,"parentId":5085,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2351,"timestamp":7342147229721,"id":5256,"parentId":5086,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2321,"timestamp":7342147229751,"id":5257,"parentId":5087,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":2357,"timestamp":7342147229785,"id":5258,"parentId":5088,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2328,"timestamp":7342147229815,"id":5259,"parentId":5089,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2301,"timestamp":7342147229842,"id":5260,"parentId":5090,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2275,"timestamp":7342147229869,"id":5261,"parentId":5091,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2249,"timestamp":7342147229896,"id":5262,"parentId":5092,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2221,"timestamp":7342147229924,"id":5263,"parentId":5093,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2193,"timestamp":7342147229952,"id":5264,"parentId":5094,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2167,"timestamp":7342147229979,"id":5265,"parentId":5095,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2141,"timestamp":7342147230006,"id":5266,"parentId":5096,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2114,"timestamp":7342147230034,"id":5267,"parentId":5097,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2088,"timestamp":7342147230060,"id":5268,"parentId":5098,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2060,"timestamp":7342147230089,"id":5269,"parentId":5099,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2008,"timestamp":7342147230142,"id":5270,"parentId":5100,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1980,"timestamp":7342147230170,"id":5271,"parentId":5101,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1943,"timestamp":7342147230207,"id":5272,"parentId":5102,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1896,"timestamp":7342147230256,"id":5273,"parentId":5103,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1866,"timestamp":7342147230286,"id":5274,"parentId":5104,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1821,"timestamp":7342147230331,"id":5275,"parentId":5105,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1754,"timestamp":7342147230399,"id":5276,"parentId":5106,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1720,"timestamp":7342147230434,"id":5277,"parentId":5107,"tags":{},"startTime":1776949093449,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1655,"timestamp":7342147230499,"id":5278,"parentId":5108,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1625,"timestamp":7342147230530,"id":5279,"parentId":5109,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1596,"timestamp":7342147230559,"id":5280,"parentId":5110,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1553,"timestamp":7342147230603,"id":5281,"parentId":5111,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1526,"timestamp":7342147230631,"id":5282,"parentId":5112,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1494,"timestamp":7342147230664,"id":5283,"parentId":5113,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1470,"timestamp":7342147230689,"id":5284,"parentId":5114,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1445,"timestamp":7342147230715,"id":5285,"parentId":5115,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1401,"timestamp":7342147230760,"id":5286,"parentId":5116,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1372,"timestamp":7342147230789,"id":5287,"parentId":5117,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1345,"timestamp":7342147230817,"id":5288,"parentId":5118,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1316,"timestamp":7342147230847,"id":5289,"parentId":5119,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1272,"timestamp":7342147230891,"id":5290,"parentId":5120,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1245,"timestamp":7342147230919,"id":5291,"parentId":5121,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1207,"timestamp":7342147230957,"id":5292,"parentId":5122,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1177,"timestamp":7342147230989,"id":5293,"parentId":5123,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1147,"timestamp":7342147231018,"id":5294,"parentId":5124,"tags":{},"startTime":1776949093450,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9787,"timestamp":7342147222982,"id":5040,"parentId":4242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10306,"timestamp":7342147223067,"id":5041,"parentId":4257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10396,"timestamp":7342147223109,"id":5042,"parentId":4259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10547,"timestamp":7342147223146,"id":5043,"parentId":4249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12297,"timestamp":7342147223185,"id":5044,"parentId":4249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12390,"timestamp":7342147223222,"id":5045,"parentId":4249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12811,"timestamp":7342147223258,"id":5046,"parentId":4250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13856,"timestamp":7342147223294,"id":5047,"parentId":4250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13904,"timestamp":7342147223330,"id":5048,"parentId":4250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14023,"timestamp":7342147223367,"id":5049,"parentId":4250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14079,"timestamp":7342147223403,"id":5050,"parentId":4252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14419,"timestamp":7342147223438,"id":5051,"parentId":4252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"app-pages-browser"},"startTime":1776949093442,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14734,"timestamp":7342147223473,"id":5052,"parentId":4252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14770,"timestamp":7342147223508,"id":5053,"parentId":4252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15149,"timestamp":7342147223543,"id":5054,"parentId":4253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17206,"timestamp":7342147223582,"id":5055,"parentId":4253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17609,"timestamp":7342147223621,"id":5056,"parentId":4255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19704,"timestamp":7342147223663,"id":5057,"parentId":4255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19893,"timestamp":7342147223702,"id":5058,"parentId":4255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20944,"timestamp":7342147223747,"id":5059,"parentId":4256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21305,"timestamp":7342147223788,"id":5060,"parentId":4256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21351,"timestamp":7342147223823,"id":5061,"parentId":4257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23019,"timestamp":7342147223858,"id":5062,"parentId":4258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23515,"timestamp":7342147223894,"id":5063,"parentId":4258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24288,"timestamp":7342147223931,"id":5064,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24616,"timestamp":7342147223970,"id":5065,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24764,"timestamp":7342147224007,"id":5066,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25045,"timestamp":7342147224044,"id":5067,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25626,"timestamp":7342147224078,"id":5068,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25753,"timestamp":7342147224113,"id":5069,"parentId":4388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25843,"timestamp":7342147224148,"id":5070,"parentId":4388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26717,"timestamp":7342147224186,"id":5071,"parentId":4393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27324,"timestamp":7342147224222,"id":5072,"parentId":4388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27937,"timestamp":7342147224257,"id":5073,"parentId":4392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28190,"timestamp":7342147224303,"id":5074,"parentId":4399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28348,"timestamp":7342147224342,"id":5075,"parentId":4399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28402,"timestamp":7342147224395,"id":5076,"parentId":4399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31057,"timestamp":7342147224433,"id":5077,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"app-pages-browser"},"startTime":1776949093443,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31882,"timestamp":7342147224477,"id":5078,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32056,"timestamp":7342147224515,"id":5079,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33354,"timestamp":7342147224549,"id":5080,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33511,"timestamp":7342147224583,"id":5081,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33571,"timestamp":7342147224618,"id":5082,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33612,"timestamp":7342147224652,"id":5083,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34030,"timestamp":7342147224686,"id":5084,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34361,"timestamp":7342147224720,"id":5085,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34614,"timestamp":7342147224754,"id":5086,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35261,"timestamp":7342147224787,"id":5087,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35525,"timestamp":7342147224824,"id":5088,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36747,"timestamp":7342147224889,"id":5089,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36880,"timestamp":7342147224922,"id":5090,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37018,"timestamp":7342147224956,"id":5091,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37078,"timestamp":7342147225001,"id":5092,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37116,"timestamp":7342147225054,"id":5093,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37191,"timestamp":7342147225123,"id":5094,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37207,"timestamp":7342147225253,"id":5095,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37343,"timestamp":7342147225345,"id":5096,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37395,"timestamp":7342147225402,"id":5097,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37517,"timestamp":7342147225442,"id":5098,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"app-pages-browser"},"startTime":1776949093444,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39503,"timestamp":7342147225482,"id":5099,"parentId":4486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39584,"timestamp":7342147225520,"id":5100,"parentId":4458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39894,"timestamp":7342147225646,"id":5101,"parentId":4458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40651,"timestamp":7342147225735,"id":5102,"parentId":4460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40687,"timestamp":7342147225833,"id":5103,"parentId":4466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":41522,"timestamp":7342147225921,"id":5104,"parentId":4466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43553,"timestamp":7342147225981,"id":5105,"parentId":4466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44098,"timestamp":7342147226086,"id":5106,"parentId":4467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45138,"timestamp":7342147226147,"id":5107,"parentId":4468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45553,"timestamp":7342147226190,"id":5108,"parentId":4468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45763,"timestamp":7342147226231,"id":5109,"parentId":4489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48457,"timestamp":7342147226271,"id":5110,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48964,"timestamp":7342147226307,"id":5111,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49227,"timestamp":7342147226344,"id":5112,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49358,"timestamp":7342147226381,"id":5113,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49377,"timestamp":7342147226416,"id":5114,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"app-pages-browser"},"startTime":1776949093445,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50909,"timestamp":7342147226453,"id":5115,"parentId":4491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51223,"timestamp":7342147226489,"id":5116,"parentId":4491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52024,"timestamp":7342147226556,"id":5117,"parentId":4491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52644,"timestamp":7342147226601,"id":5118,"parentId":4491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53185,"timestamp":7342147226642,"id":5119,"parentId":4475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53222,"timestamp":7342147226682,"id":5120,"parentId":4475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53686,"timestamp":7342147226744,"id":5121,"parentId":4475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54286,"timestamp":7342147226847,"id":5122,"parentId":4478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54345,"timestamp":7342147226888,"id":5123,"parentId":4464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54433,"timestamp":7342147226941,"id":5124,"parentId":4464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"app-pages-browser"},"startTime":1776949093446,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":370,"timestamp":7342147320608,"id":5339,"parentId":5295,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":426,"timestamp":7342147320619,"id":5340,"parentId":5296,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":469,"timestamp":7342147320622,"id":5341,"parentId":5297,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":496,"timestamp":7342147320625,"id":5342,"parentId":5298,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":518,"timestamp":7342147320627,"id":5343,"parentId":5299,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":546,"timestamp":7342147320630,"id":5344,"parentId":5300,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":576,"timestamp":7342147320633,"id":5345,"parentId":5301,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":602,"timestamp":7342147320636,"id":5346,"parentId":5302,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":628,"timestamp":7342147320638,"id":5347,"parentId":5303,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":658,"timestamp":7342147320640,"id":5348,"parentId":5304,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":697,"timestamp":7342147320643,"id":5349,"parentId":5305,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":722,"timestamp":7342147320645,"id":5350,"parentId":5306,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":753,"timestamp":7342147320648,"id":5351,"parentId":5307,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":778,"timestamp":7342147320650,"id":5352,"parentId":5308,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":800,"timestamp":7342147320652,"id":5353,"parentId":5309,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":821,"timestamp":7342147320656,"id":5354,"parentId":5310,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":861,"timestamp":7342147320658,"id":5355,"parentId":5311,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":895,"timestamp":7342147320660,"id":5356,"parentId":5312,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":926,"timestamp":7342147320662,"id":5357,"parentId":5313,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":960,"timestamp":7342147320664,"id":5358,"parentId":5314,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":993,"timestamp":7342147320670,"id":5359,"parentId":5315,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1017,"timestamp":7342147320671,"id":5360,"parentId":5316,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1042,"timestamp":7342147320674,"id":5361,"parentId":5317,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1071,"timestamp":7342147320675,"id":5362,"parentId":5318,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1096,"timestamp":7342147320677,"id":5363,"parentId":5319,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1124,"timestamp":7342147320679,"id":5364,"parentId":5320,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1147,"timestamp":7342147320682,"id":5365,"parentId":5321,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1186,"timestamp":7342147320684,"id":5366,"parentId":5322,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1213,"timestamp":7342147320686,"id":5367,"parentId":5323,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1255,"timestamp":7342147320689,"id":5368,"parentId":5324,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1280,"timestamp":7342147320691,"id":5369,"parentId":5325,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1305,"timestamp":7342147320696,"id":5370,"parentId":5326,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1336,"timestamp":7342147320698,"id":5371,"parentId":5327,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1363,"timestamp":7342147320700,"id":5372,"parentId":5328,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1398,"timestamp":7342147320702,"id":5373,"parentId":5329,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1422,"timestamp":7342147320704,"id":5374,"parentId":5330,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1454,"timestamp":7342147320705,"id":5375,"parentId":5331,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1508,"timestamp":7342147320707,"id":5376,"parentId":5332,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1558,"timestamp":7342147320709,"id":5377,"parentId":5333,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1585,"timestamp":7342147320711,"id":5378,"parentId":5334,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1613,"timestamp":7342147320713,"id":5379,"parentId":5335,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1637,"timestamp":7342147320714,"id":5380,"parentId":5336,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1665,"timestamp":7342147320716,"id":5381,"parentId":5337,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1690,"timestamp":7342147320718,"id":5382,"parentId":5338,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7501,"timestamp":7342147320988,"id":5383,"parentId":5295,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7451,"timestamp":7342147321047,"id":5384,"parentId":5296,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7407,"timestamp":7342147321093,"id":5385,"parentId":5297,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7377,"timestamp":7342147321123,"id":5386,"parentId":5298,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7353,"timestamp":7342147321148,"id":5387,"parentId":5299,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7323,"timestamp":7342147321178,"id":5388,"parentId":5300,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7290,"timestamp":7342147321211,"id":5389,"parentId":5301,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7262,"timestamp":7342147321240,"id":5390,"parentId":5302,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7234,"timestamp":7342147321268,"id":5391,"parentId":5303,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7202,"timestamp":7342147321300,"id":5392,"parentId":5304,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7161,"timestamp":7342147321342,"id":5393,"parentId":5305,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7134,"timestamp":7342147321369,"id":5394,"parentId":5306,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7102,"timestamp":7342147321402,"id":5395,"parentId":5307,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7075,"timestamp":7342147321430,"id":5396,"parentId":5308,"tags":{},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7052,"timestamp":7342147321454,"id":5397,"parentId":5309,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7028,"timestamp":7342147321479,"id":5398,"parentId":5310,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6987,"timestamp":7342147321520,"id":5399,"parentId":5311,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6951,"timestamp":7342147321556,"id":5400,"parentId":5312,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6918,"timestamp":7342147321590,"id":5401,"parentId":5313,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6882,"timestamp":7342147321626,"id":5402,"parentId":5314,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6845,"timestamp":7342147321664,"id":5403,"parentId":5315,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6820,"timestamp":7342147321690,"id":5404,"parentId":5316,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6791,"timestamp":7342147321719,"id":5405,"parentId":5317,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6762,"timestamp":7342147321748,"id":5406,"parentId":5318,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6735,"timestamp":7342147321775,"id":5407,"parentId":5319,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6706,"timestamp":7342147321805,"id":5408,"parentId":5320,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6680,"timestamp":7342147321831,"id":5409,"parentId":5321,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6640,"timestamp":7342147321872,"id":5410,"parentId":5322,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6611,"timestamp":7342147321901,"id":5411,"parentId":5323,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6567,"timestamp":7342147321945,"id":5412,"parentId":5324,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6541,"timestamp":7342147321972,"id":5413,"parentId":5325,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6511,"timestamp":7342147322002,"id":5414,"parentId":5326,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6478,"timestamp":7342147322036,"id":5415,"parentId":5327,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6449,"timestamp":7342147322065,"id":5416,"parentId":5328,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6413,"timestamp":7342147322101,"id":5417,"parentId":5329,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6387,"timestamp":7342147322128,"id":5418,"parentId":5330,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":6479,"timestamp":7342147322161,"id":5419,"parentId":5331,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6423,"timestamp":7342147322217,"id":5420,"parentId":5332,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6370,"timestamp":7342147322271,"id":5421,"parentId":5333,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6344,"timestamp":7342147322298,"id":5422,"parentId":5334,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6314,"timestamp":7342147322328,"id":5423,"parentId":5335,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6289,"timestamp":7342147322354,"id":5424,"parentId":5336,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6259,"timestamp":7342147322384,"id":5425,"parentId":5337,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6232,"timestamp":7342147322411,"id":5426,"parentId":5338,"tags":{},"startTime":1776949093541,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10962,"timestamp":7342147318743,"id":5295,"parentId":4466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11188,"timestamp":7342147318882,"id":5296,"parentId":4466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11538,"timestamp":7342147318932,"id":5297,"parentId":4466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11668,"timestamp":7342147318973,"id":5298,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11948,"timestamp":7342147319012,"id":5299,"parentId":4469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12555,"timestamp":7342147319049,"id":5300,"parentId":4474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12795,"timestamp":7342147319086,"id":5301,"parentId":4475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12989,"timestamp":7342147319124,"id":5302,"parentId":4475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13499,"timestamp":7342147319165,"id":5303,"parentId":4475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13955,"timestamp":7342147319209,"id":5304,"parentId":4476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13967,"timestamp":7342147319251,"id":5305,"parentId":4468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14489,"timestamp":7342147319293,"id":5306,"parentId":4492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14527,"timestamp":7342147319342,"id":5307,"parentId":4492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14554,"timestamp":7342147319384,"id":5308,"parentId":4496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14558,"timestamp":7342147319423,"id":5309,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776949093538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14834,"timestamp":7342147319460,"id":5310,"parentId":4504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15131,"timestamp":7342147319495,"id":5311,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15627,"timestamp":7342147319530,"id":5312,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15854,"timestamp":7342147319569,"id":5313,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17771,"timestamp":7342147319610,"id":5314,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18127,"timestamp":7342147319645,"id":5315,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18805,"timestamp":7342147319679,"id":5316,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18932,"timestamp":7342147319727,"id":5317,"parentId":4502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19189,"timestamp":7342147319762,"id":5318,"parentId":4503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19385,"timestamp":7342147319801,"id":5319,"parentId":4504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19446,"timestamp":7342147319840,"id":5320,"parentId":4504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20697,"timestamp":7342147319885,"id":5321,"parentId":4493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20793,"timestamp":7342147319932,"id":5322,"parentId":4507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22733,"timestamp":7342147319975,"id":5323,"parentId":4506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23979,"timestamp":7342147320015,"id":5324,"parentId":4507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25450,"timestamp":7342147320055,"id":5325,"parentId":4509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26993,"timestamp":7342147320098,"id":5326,"parentId":4486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27709,"timestamp":7342147320134,"id":5327,"parentId":4627,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28203,"timestamp":7342147320170,"id":5328,"parentId":4635,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28320,"timestamp":7342147320204,"id":5329,"parentId":4641,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29087,"timestamp":7342147320241,"id":5330,"parentId":4642,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30133,"timestamp":7342147320278,"id":5331,"parentId":4626,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30485,"timestamp":7342147320316,"id":5332,"parentId":4634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30558,"timestamp":7342147320350,"id":5333,"parentId":4634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31701,"timestamp":7342147320384,"id":5334,"parentId":4634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31807,"timestamp":7342147320418,"id":5335,"parentId":4634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31985,"timestamp":7342147320452,"id":5336,"parentId":4635,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"app-pages-browser"},"startTime":1776949093539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32101,"timestamp":7342147320485,"id":5337,"parentId":4636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"app-pages-browser"},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32162,"timestamp":7342147320523,"id":5338,"parentId":4640,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"app-pages-browser"},"startTime":1776949093540,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":517,"timestamp":7342147375523,"id":5508,"parentId":5427,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":595,"timestamp":7342147375542,"id":5509,"parentId":5428,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":631,"timestamp":7342147375546,"id":5510,"parentId":5429,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":718,"timestamp":7342147375550,"id":5511,"parentId":5430,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":764,"timestamp":7342147375554,"id":5512,"parentId":5431,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":793,"timestamp":7342147375557,"id":5513,"parentId":5432,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":831,"timestamp":7342147375560,"id":5514,"parentId":5433,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":857,"timestamp":7342147375563,"id":5515,"parentId":5434,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":891,"timestamp":7342147375567,"id":5516,"parentId":5435,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":917,"timestamp":7342147375570,"id":5517,"parentId":5436,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":945,"timestamp":7342147375573,"id":5518,"parentId":5437,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":973,"timestamp":7342147375576,"id":5519,"parentId":5438,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1010,"timestamp":7342147375579,"id":5520,"parentId":5439,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1036,"timestamp":7342147375582,"id":5521,"parentId":5440,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1063,"timestamp":7342147375584,"id":5522,"parentId":5441,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1090,"timestamp":7342147375588,"id":5523,"parentId":5442,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1121,"timestamp":7342147375591,"id":5524,"parentId":5443,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1145,"timestamp":7342147375595,"id":5525,"parentId":5444,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1169,"timestamp":7342147375598,"id":5526,"parentId":5445,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1168,"timestamp":7342147375631,"id":5527,"parentId":5446,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1181,"timestamp":7342147375647,"id":5528,"parentId":5447,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1206,"timestamp":7342147375652,"id":5529,"parentId":5448,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1229,"timestamp":7342147375656,"id":5530,"parentId":5449,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1251,"timestamp":7342147375661,"id":5531,"parentId":5450,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1272,"timestamp":7342147375664,"id":5532,"parentId":5451,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1309,"timestamp":7342147375669,"id":5533,"parentId":5452,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1342,"timestamp":7342147375673,"id":5534,"parentId":5453,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1379,"timestamp":7342147375677,"id":5535,"parentId":5454,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1404,"timestamp":7342147375681,"id":5536,"parentId":5455,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1439,"timestamp":7342147375684,"id":5537,"parentId":5456,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2417,"timestamp":7342147375688,"id":5538,"parentId":5457,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2471,"timestamp":7342147375692,"id":5539,"parentId":5458,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2501,"timestamp":7342147375695,"id":5540,"parentId":5459,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2530,"timestamp":7342147375698,"id":5541,"parentId":5460,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2560,"timestamp":7342147375701,"id":5542,"parentId":5461,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2590,"timestamp":7342147375705,"id":5543,"parentId":5462,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2619,"timestamp":7342147375708,"id":5544,"parentId":5463,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2648,"timestamp":7342147375711,"id":5545,"parentId":5464,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2709,"timestamp":7342147375715,"id":5546,"parentId":5465,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2735,"timestamp":7342147375719,"id":5547,"parentId":5466,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2777,"timestamp":7342147375722,"id":5548,"parentId":5467,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2814,"timestamp":7342147375724,"id":5549,"parentId":5468,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2846,"timestamp":7342147375727,"id":5550,"parentId":5469,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2872,"timestamp":7342147375730,"id":5551,"parentId":5470,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2902,"timestamp":7342147375734,"id":5552,"parentId":5471,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2929,"timestamp":7342147375737,"id":5553,"parentId":5472,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2960,"timestamp":7342147375741,"id":5554,"parentId":5473,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2993,"timestamp":7342147375744,"id":5555,"parentId":5474,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3021,"timestamp":7342147375748,"id":5556,"parentId":5475,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":3201,"timestamp":7342147375751,"id":5557,"parentId":5476,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3232,"timestamp":7342147375754,"id":5558,"parentId":5477,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3265,"timestamp":7342147375757,"id":5559,"parentId":5478,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3309,"timestamp":7342147375760,"id":5560,"parentId":5479,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3333,"timestamp":7342147375763,"id":5561,"parentId":5480,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3363,"timestamp":7342147375766,"id":5562,"parentId":5481,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3436,"timestamp":7342147375769,"id":5563,"parentId":5482,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3476,"timestamp":7342147375771,"id":5564,"parentId":5483,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3506,"timestamp":7342147375773,"id":5565,"parentId":5484,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3537,"timestamp":7342147375776,"id":5566,"parentId":5485,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3569,"timestamp":7342147375778,"id":5567,"parentId":5486,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3605,"timestamp":7342147375781,"id":5568,"parentId":5487,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3634,"timestamp":7342147375783,"id":5569,"parentId":5488,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3659,"timestamp":7342147375786,"id":5570,"parentId":5489,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3686,"timestamp":7342147375788,"id":5571,"parentId":5490,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3711,"timestamp":7342147375791,"id":5572,"parentId":5491,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3744,"timestamp":7342147375793,"id":5573,"parentId":5492,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3783,"timestamp":7342147375795,"id":5574,"parentId":5493,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3817,"timestamp":7342147375798,"id":5575,"parentId":5494,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3848,"timestamp":7342147375800,"id":5576,"parentId":5495,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3910,"timestamp":7342147375802,"id":5577,"parentId":5496,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3951,"timestamp":7342147375804,"id":5578,"parentId":5497,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3982,"timestamp":7342147375806,"id":5579,"parentId":5498,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4007,"timestamp":7342147375808,"id":5580,"parentId":5499,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4049,"timestamp":7342147375811,"id":5581,"parentId":5500,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4081,"timestamp":7342147375813,"id":5582,"parentId":5501,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4111,"timestamp":7342147375815,"id":5583,"parentId":5502,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4142,"timestamp":7342147375817,"id":5584,"parentId":5503,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4173,"timestamp":7342147375819,"id":5585,"parentId":5504,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4200,"timestamp":7342147375821,"id":5586,"parentId":5505,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4226,"timestamp":7342147375823,"id":5587,"parentId":5506,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4261,"timestamp":7342147375826,"id":5588,"parentId":5507,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5833,"timestamp":7342147376050,"id":5589,"parentId":5427,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5741,"timestamp":7342147376145,"id":5590,"parentId":5428,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5688,"timestamp":7342147376199,"id":5591,"parentId":5429,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5613,"timestamp":7342147376273,"id":5592,"parentId":5430,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5565,"timestamp":7342147376322,"id":5593,"parentId":5431,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5535,"timestamp":7342147376353,"id":5594,"parentId":5432,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5493,"timestamp":7342147376394,"id":5595,"parentId":5433,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5465,"timestamp":7342147376423,"id":5596,"parentId":5434,"tags":{},"startTime":1776949093595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5427,"timestamp":7342147376461,"id":5597,"parentId":5435,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5399,"timestamp":7342147376489,"id":5598,"parentId":5436,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5367,"timestamp":7342147376522,"id":5599,"parentId":5437,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5337,"timestamp":7342147376552,"id":5600,"parentId":5438,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5298,"timestamp":7342147376592,"id":5601,"parentId":5439,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5269,"timestamp":7342147376621,"id":5602,"parentId":5440,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5239,"timestamp":7342147376651,"id":5603,"parentId":5441,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5210,"timestamp":7342147376680,"id":5604,"parentId":5442,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5175,"timestamp":7342147376715,"id":5605,"parentId":5443,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5149,"timestamp":7342147376742,"id":5606,"parentId":5444,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5121,"timestamp":7342147376770,"id":5607,"parentId":5445,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5091,"timestamp":7342147376801,"id":5608,"parentId":5446,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5062,"timestamp":7342147376830,"id":5609,"parentId":5447,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5031,"timestamp":7342147376860,"id":5610,"parentId":5448,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5005,"timestamp":7342147376887,"id":5611,"parentId":5449,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4978,"timestamp":7342147376914,"id":5612,"parentId":5450,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4953,"timestamp":7342147376939,"id":5613,"parentId":5451,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4913,"timestamp":7342147376980,"id":5614,"parentId":5452,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4876,"timestamp":7342147377017,"id":5615,"parentId":5453,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4835,"timestamp":7342147377058,"id":5616,"parentId":5454,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4806,"timestamp":7342147377088,"id":5617,"parentId":5455,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4767,"timestamp":7342147377127,"id":5618,"parentId":5456,"tags":{},"startTime":1776949093596,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3777,"timestamp":7342147378118,"id":5619,"parentId":5457,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3730,"timestamp":7342147378166,"id":5620,"parentId":5458,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3697,"timestamp":7342147378199,"id":5621,"parentId":5459,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3666,"timestamp":7342147378231,"id":5622,"parentId":5460,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3634,"timestamp":7342147378265,"id":5623,"parentId":5461,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3601,"timestamp":7342147378298,"id":5624,"parentId":5462,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3569,"timestamp":7342147378331,"id":5625,"parentId":5463,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3538,"timestamp":7342147378362,"id":5626,"parentId":5464,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3474,"timestamp":7342147378427,"id":5627,"parentId":5465,"tags":{},"startTime":1776949093597,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3447,"timestamp":7342147378456,"id":5628,"parentId":5466,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3401,"timestamp":7342147378502,"id":5629,"parentId":5467,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3362,"timestamp":7342147378542,"id":5630,"parentId":5468,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3330,"timestamp":7342147378575,"id":5631,"parentId":5469,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3301,"timestamp":7342147378605,"id":5632,"parentId":5470,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3269,"timestamp":7342147378638,"id":5633,"parentId":5471,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3240,"timestamp":7342147378668,"id":5634,"parentId":5472,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3206,"timestamp":7342147378703,"id":5635,"parentId":5473,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3172,"timestamp":7342147378739,"id":5636,"parentId":5474,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2991,"timestamp":7342147378923,"id":5637,"parentId":5475,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2960,"timestamp":7342147378955,"id":5638,"parentId":5476,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2929,"timestamp":7342147378988,"id":5639,"parentId":5477,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2894,"timestamp":7342147379024,"id":5640,"parentId":5478,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2849,"timestamp":7342147379071,"id":5641,"parentId":5479,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2825,"timestamp":7342147379097,"id":5642,"parentId":5480,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2792,"timestamp":7342147379132,"id":5643,"parentId":5481,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2714,"timestamp":7342147379211,"id":5644,"parentId":5482,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2673,"timestamp":7342147379253,"id":5645,"parentId":5483,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2641,"timestamp":7342147379287,"id":5646,"parentId":5484,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2612,"timestamp":7342147379316,"id":5647,"parentId":5485,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2580,"timestamp":7342147379350,"id":5648,"parentId":5486,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2542,"timestamp":7342147379389,"id":5649,"parentId":5487,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2513,"timestamp":7342147379419,"id":5650,"parentId":5488,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2485,"timestamp":7342147379448,"id":5651,"parentId":5489,"tags":{},"startTime":1776949093598,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2457,"timestamp":7342147379476,"id":5652,"parentId":5490,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2426,"timestamp":7342147379509,"id":5653,"parentId":5491,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2395,"timestamp":7342147379540,"id":5654,"parentId":5492,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2354,"timestamp":7342147379582,"id":5655,"parentId":5493,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2320,"timestamp":7342147379618,"id":5656,"parentId":5494,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2288,"timestamp":7342147379650,"id":5657,"parentId":5495,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":2294,"timestamp":7342147379715,"id":5658,"parentId":5496,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2251,"timestamp":7342147379759,"id":5659,"parentId":5497,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2220,"timestamp":7342147379791,"id":5660,"parentId":5498,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2194,"timestamp":7342147379818,"id":5661,"parentId":5499,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2151,"timestamp":7342147379863,"id":5662,"parentId":5500,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2118,"timestamp":7342147379897,"id":5663,"parentId":5501,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2087,"timestamp":7342147379929,"id":5664,"parentId":5502,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2055,"timestamp":7342147379962,"id":5665,"parentId":5503,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2023,"timestamp":7342147379995,"id":5666,"parentId":5504,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1995,"timestamp":7342147380024,"id":5667,"parentId":5505,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1968,"timestamp":7342147380052,"id":5668,"parentId":5506,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1931,"timestamp":7342147380090,"id":5669,"parentId":5507,"tags":{},"startTime":1776949093599,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10759,"timestamp":7342147372174,"id":5427,"parentId":4641,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"app-pages-browser"},"startTime":1776949093591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10923,"timestamp":7342147372296,"id":5428,"parentId":4647,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776949093591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11253,"timestamp":7342147372355,"id":5429,"parentId":4648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776949093591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11493,"timestamp":7342147372395,"id":5430,"parentId":4649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"app-pages-browser"},"startTime":1776949093591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11783,"timestamp":7342147372438,"id":5431,"parentId":4634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"app-pages-browser"},"startTime":1776949093591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12032,"timestamp":7342147372476,"id":5432,"parentId":4649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12271,"timestamp":7342147372515,"id":5433,"parentId":4651,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12583,"timestamp":7342147372550,"id":5434,"parentId":4651,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12620,"timestamp":7342147372592,"id":5435,"parentId":4651,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12756,"timestamp":7342147372631,"id":5436,"parentId":4652,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12855,"timestamp":7342147372666,"id":5437,"parentId":4653,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13021,"timestamp":7342147372703,"id":5438,"parentId":4665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13124,"timestamp":7342147372744,"id":5439,"parentId":4750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13562,"timestamp":7342147372787,"id":5440,"parentId":4756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14182,"timestamp":7342147372825,"id":5441,"parentId":4758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15001,"timestamp":7342147372858,"id":5442,"parentId":4758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15150,"timestamp":7342147372895,"id":5443,"parentId":4758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15335,"timestamp":7342147372930,"id":5444,"parentId":4758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15877,"timestamp":7342147372964,"id":5445,"parentId":4758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16151,"timestamp":7342147373000,"id":5446,"parentId":4762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17923,"timestamp":7342147373038,"id":5447,"parentId":4769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18138,"timestamp":7342147373075,"id":5448,"parentId":4775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18847,"timestamp":7342147373111,"id":5449,"parentId":4775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18911,"timestamp":7342147373151,"id":5450,"parentId":4775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19474,"timestamp":7342147373184,"id":5451,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20505,"timestamp":7342147373217,"id":5452,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20913,"timestamp":7342147373255,"id":5453,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21150,"timestamp":7342147373288,"id":5454,"parentId":4781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21392,"timestamp":7342147373324,"id":5455,"parentId":4781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21473,"timestamp":7342147373355,"id":5456,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21540,"timestamp":7342147373392,"id":5457,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21597,"timestamp":7342147373428,"id":5458,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776949093592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21690,"timestamp":7342147373464,"id":5459,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21830,"timestamp":7342147373497,"id":5460,"parentId":4778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22259,"timestamp":7342147373535,"id":5461,"parentId":4781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22372,"timestamp":7342147373572,"id":5462,"parentId":4781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22618,"timestamp":7342147373608,"id":5463,"parentId":4781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23767,"timestamp":7342147373641,"id":5464,"parentId":4782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23960,"timestamp":7342147373674,"id":5465,"parentId":4782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24500,"timestamp":7342147373715,"id":5466,"parentId":4784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24827,"timestamp":7342147373748,"id":5467,"parentId":4784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25158,"timestamp":7342147373781,"id":5468,"parentId":4787,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25195,"timestamp":7342147373819,"id":5469,"parentId":4797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25539,"timestamp":7342147373861,"id":5470,"parentId":4792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25579,"timestamp":7342147373894,"id":5471,"parentId":4792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25918,"timestamp":7342147373930,"id":5472,"parentId":4794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26333,"timestamp":7342147373967,"id":5473,"parentId":4798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26611,"timestamp":7342147374002,"id":5474,"parentId":4798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26721,"timestamp":7342147374038,"id":5475,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27031,"timestamp":7342147374074,"id":5476,"parentId":4801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28635,"timestamp":7342147374109,"id":5477,"parentId":4806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29916,"timestamp":7342147374143,"id":5478,"parentId":4808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30003,"timestamp":7342147374179,"id":5479,"parentId":4808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30223,"timestamp":7342147374213,"id":5480,"parentId":4797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31496,"timestamp":7342147374254,"id":5481,"parentId":4797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32014,"timestamp":7342147374290,"id":5482,"parentId":4828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32065,"timestamp":7342147374326,"id":5483,"parentId":4815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32057,"timestamp":7342147374407,"id":5484,"parentId":4815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"app-pages-browser"},"startTime":1776949093593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32086,"timestamp":7342147374508,"id":5485,"parentId":4817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32818,"timestamp":7342147374553,"id":5486,"parentId":4820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33104,"timestamp":7342147374593,"id":5487,"parentId":4820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33222,"timestamp":7342147374632,"id":5488,"parentId":4820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33366,"timestamp":7342147374669,"id":5489,"parentId":4820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33485,"timestamp":7342147374705,"id":5490,"parentId":4820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33660,"timestamp":7342147374741,"id":5491,"parentId":4829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34267,"timestamp":7342147374778,"id":5492,"parentId":4829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34582,"timestamp":7342147374820,"id":5493,"parentId":4817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34922,"timestamp":7342147374855,"id":5494,"parentId":4993,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36264,"timestamp":7342147374890,"id":5495,"parentId":4993,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36566,"timestamp":7342147374924,"id":5496,"parentId":4992,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36620,"timestamp":7342147374960,"id":5497,"parentId":4993,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36668,"timestamp":7342147374995,"id":5498,"parentId":4993,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36901,"timestamp":7342147375031,"id":5499,"parentId":4997,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37220,"timestamp":7342147375074,"id":5500,"parentId":4998,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37345,"timestamp":7342147375112,"id":5501,"parentId":4998,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37713,"timestamp":7342147375154,"id":5502,"parentId":5005,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39111,"timestamp":7342147375189,"id":5503,"parentId":5034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39280,"timestamp":7342147375224,"id":5504,"parentId":5035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39430,"timestamp":7342147375259,"id":5505,"parentId":5059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40067,"timestamp":7342147375299,"id":5506,"parentId":5050,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40059,"timestamp":7342147375412,"id":5507,"parentId":5051,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"app-pages-browser"},"startTime":1776949093594,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":377,"timestamp":7342147462547,"id":5709,"parentId":5670,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":422,"timestamp":7342147462554,"id":5710,"parentId":5671,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":448,"timestamp":7342147462557,"id":5711,"parentId":5672,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":471,"timestamp":7342147462560,"id":5712,"parentId":5673,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":513,"timestamp":7342147462564,"id":5713,"parentId":5674,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":538,"timestamp":7342147462566,"id":5714,"parentId":5675,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":562,"timestamp":7342147462568,"id":5715,"parentId":5676,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":585,"timestamp":7342147462571,"id":5716,"parentId":5677,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":814,"timestamp":7342147462574,"id":5717,"parentId":5678,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":847,"timestamp":7342147462576,"id":5718,"parentId":5679,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":874,"timestamp":7342147462578,"id":5719,"parentId":5680,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":898,"timestamp":7342147462581,"id":5720,"parentId":5681,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":949,"timestamp":7342147462583,"id":5721,"parentId":5682,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":974,"timestamp":7342147462585,"id":5722,"parentId":5683,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":996,"timestamp":7342147462588,"id":5723,"parentId":5684,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1024,"timestamp":7342147462590,"id":5724,"parentId":5685,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1057,"timestamp":7342147462592,"id":5725,"parentId":5686,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1086,"timestamp":7342147462594,"id":5726,"parentId":5687,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1108,"timestamp":7342147462597,"id":5727,"parentId":5688,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1132,"timestamp":7342147462599,"id":5728,"parentId":5689,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1154,"timestamp":7342147462601,"id":5729,"parentId":5690,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1178,"timestamp":7342147462604,"id":5730,"parentId":5691,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1201,"timestamp":7342147462607,"id":5731,"parentId":5692,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1236,"timestamp":7342147462610,"id":5732,"parentId":5693,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1261,"timestamp":7342147462612,"id":5733,"parentId":5694,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1283,"timestamp":7342147462614,"id":5734,"parentId":5695,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1307,"timestamp":7342147462616,"id":5735,"parentId":5696,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1341,"timestamp":7342147462619,"id":5736,"parentId":5697,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1369,"timestamp":7342147462622,"id":5737,"parentId":5698,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1398,"timestamp":7342147462624,"id":5738,"parentId":5699,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1424,"timestamp":7342147462625,"id":5739,"parentId":5700,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1448,"timestamp":7342147462627,"id":5740,"parentId":5701,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2477,"timestamp":7342147462630,"id":5741,"parentId":5702,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2503,"timestamp":7342147462631,"id":5742,"parentId":5703,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2526,"timestamp":7342147462633,"id":5743,"parentId":5704,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2548,"timestamp":7342147462635,"id":5744,"parentId":5705,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2577,"timestamp":7342147462637,"id":5745,"parentId":5706,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2604,"timestamp":7342147462638,"id":5746,"parentId":5707,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2626,"timestamp":7342147462640,"id":5747,"parentId":5708,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5086,"timestamp":7342147462937,"id":5748,"parentId":5670,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5047,"timestamp":7342147462978,"id":5749,"parentId":5671,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5018,"timestamp":7342147463007,"id":5750,"parentId":5672,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4993,"timestamp":7342147463032,"id":5751,"parentId":5673,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4948,"timestamp":7342147463078,"id":5752,"parentId":5674,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4920,"timestamp":7342147463106,"id":5753,"parentId":5675,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4895,"timestamp":7342147463132,"id":5754,"parentId":5676,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4680,"timestamp":7342147463348,"id":5755,"parentId":5677,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4632,"timestamp":7342147463396,"id":5756,"parentId":5678,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4603,"timestamp":7342147463425,"id":5757,"parentId":5679,"tags":{},"startTime":1776949093682,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4573,"timestamp":7342147463456,"id":5758,"parentId":5680,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4548,"timestamp":7342147463481,"id":5759,"parentId":5681,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4494,"timestamp":7342147463536,"id":5760,"parentId":5682,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4468,"timestamp":7342147463562,"id":5761,"parentId":5683,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4444,"timestamp":7342147463586,"id":5762,"parentId":5684,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4413,"timestamp":7342147463617,"id":5763,"parentId":5685,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4379,"timestamp":7342147463652,"id":5764,"parentId":5686,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4348,"timestamp":7342147463683,"id":5765,"parentId":5687,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4324,"timestamp":7342147463707,"id":5766,"parentId":5688,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4298,"timestamp":7342147463733,"id":5767,"parentId":5689,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4274,"timestamp":7342147463758,"id":5768,"parentId":5690,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4248,"timestamp":7342147463784,"id":5769,"parentId":5691,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4222,"timestamp":7342147463811,"id":5770,"parentId":5692,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4185,"timestamp":7342147463848,"id":5771,"parentId":5693,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4158,"timestamp":7342147463875,"id":5772,"parentId":5694,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4134,"timestamp":7342147463899,"id":5773,"parentId":5695,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4107,"timestamp":7342147463926,"id":5774,"parentId":5696,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4072,"timestamp":7342147463962,"id":5775,"parentId":5697,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4041,"timestamp":7342147463993,"id":5776,"parentId":5698,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4011,"timestamp":7342147464024,"id":5777,"parentId":5699,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3982,"timestamp":7342147464052,"id":5778,"parentId":5700,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3958,"timestamp":7342147464078,"id":5779,"parentId":5701,"tags":{},"startTime":1776949093683,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2924,"timestamp":7342147465112,"id":5780,"parentId":5702,"tags":{},"startTime":1776949093684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2900,"timestamp":7342147465137,"id":5781,"parentId":5703,"tags":{},"startTime":1776949093684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2876,"timestamp":7342147465161,"id":5782,"parentId":5704,"tags":{},"startTime":1776949093684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2854,"timestamp":7342147465185,"id":5783,"parentId":5705,"tags":{},"startTime":1776949093684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2823,"timestamp":7342147465216,"id":5784,"parentId":5706,"tags":{},"startTime":1776949093684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2795,"timestamp":7342147465244,"id":5785,"parentId":5707,"tags":{},"startTime":1776949093684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2773,"timestamp":7342147465268,"id":5786,"parentId":5708,"tags":{},"startTime":1776949093684,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7889,"timestamp":7342147460723,"id":5670,"parentId":5052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8128,"timestamp":7342147460911,"id":5671,"parentId":5053,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8184,"timestamp":7342147461003,"id":5672,"parentId":5053,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9097,"timestamp":7342147461052,"id":5673,"parentId":5056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9387,"timestamp":7342147461099,"id":5674,"parentId":5057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9553,"timestamp":7342147461138,"id":5675,"parentId":5057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9578,"timestamp":7342147461180,"id":5676,"parentId":5058,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9697,"timestamp":7342147461220,"id":5677,"parentId":5058,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9744,"timestamp":7342147461286,"id":5678,"parentId":5058,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9940,"timestamp":7342147461325,"id":5679,"parentId":5064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10105,"timestamp":7342147461365,"id":5680,"parentId":5064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11397,"timestamp":7342147461401,"id":5681,"parentId":5099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11581,"timestamp":7342147461436,"id":5682,"parentId":5077,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"app-pages-browser"},"startTime":1776949093680,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11607,"timestamp":7342147461471,"id":5683,"parentId":5082,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12059,"timestamp":7342147461504,"id":5684,"parentId":5062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12896,"timestamp":7342147461539,"id":5685,"parentId":5096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13502,"timestamp":7342147461573,"id":5686,"parentId":5090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13576,"timestamp":7342147461627,"id":5687,"parentId":5092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13706,"timestamp":7342147461667,"id":5688,"parentId":5094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13798,"timestamp":7342147461701,"id":5689,"parentId":5102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14148,"timestamp":7342147461733,"id":5690,"parentId":5115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14419,"timestamp":7342147461768,"id":5691,"parentId":5115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16164,"timestamp":7342147461801,"id":5692,"parentId":5115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16424,"timestamp":7342147461835,"id":5693,"parentId":5115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16584,"timestamp":7342147461867,"id":5694,"parentId":5118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16821,"timestamp":7342147461902,"id":5695,"parentId":5119,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17223,"timestamp":7342147461936,"id":5696,"parentId":5119,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17672,"timestamp":7342147461969,"id":5697,"parentId":5119,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18356,"timestamp":7342147462005,"id":5698,"parentId":5321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18723,"timestamp":7342147462118,"id":5699,"parentId":5321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18783,"timestamp":7342147462152,"id":5700,"parentId":5327,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":18940,"timestamp":7342147462190,"id":5701,"parentId":5327,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18985,"timestamp":7342147462226,"id":5702,"parentId":5327,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19062,"timestamp":7342147462258,"id":5703,"parentId":5327,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19110,"timestamp":7342147462292,"id":5704,"parentId":5327,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19410,"timestamp":7342147462325,"id":5705,"parentId":5301,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19590,"timestamp":7342147462359,"id":5706,"parentId":5328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19643,"timestamp":7342147462396,"id":5707,"parentId":5304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19726,"timestamp":7342147462432,"id":5708,"parentId":5334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"app-pages-browser"},"startTime":1776949093681,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":228,"timestamp":7342147489030,"id":5800,"parentId":5787,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":262,"timestamp":7342147489037,"id":5801,"parentId":5788,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":307,"timestamp":7342147489040,"id":5802,"parentId":5789,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":332,"timestamp":7342147489042,"id":5803,"parentId":5790,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":360,"timestamp":7342147489044,"id":5804,"parentId":5791,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":384,"timestamp":7342147489046,"id":5805,"parentId":5792,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":411,"timestamp":7342147489049,"id":5806,"parentId":5793,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":429,"timestamp":7342147489055,"id":5807,"parentId":5794,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":453,"timestamp":7342147489057,"id":5808,"parentId":5795,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":488,"timestamp":7342147489059,"id":5809,"parentId":5796,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":512,"timestamp":7342147489061,"id":5810,"parentId":5797,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":538,"timestamp":7342147489063,"id":5811,"parentId":5798,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":588,"timestamp":7342147489065,"id":5812,"parentId":5799,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4988,"timestamp":7342147489265,"id":5813,"parentId":5787,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4958,"timestamp":7342147489301,"id":5814,"parentId":5788,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4911,"timestamp":7342147489348,"id":5815,"parentId":5789,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4885,"timestamp":7342147489375,"id":5816,"parentId":5790,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4853,"timestamp":7342147489407,"id":5817,"parentId":5791,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4829,"timestamp":7342147489432,"id":5818,"parentId":5792,"tags":{},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4800,"timestamp":7342147489461,"id":5819,"parentId":5793,"tags":{},"startTime":1776949093709,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4775,"timestamp":7342147489486,"id":5820,"parentId":5794,"tags":{},"startTime":1776949093709,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4750,"timestamp":7342147489512,"id":5821,"parentId":5795,"tags":{},"startTime":1776949093709,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4714,"timestamp":7342147489549,"id":5822,"parentId":5796,"tags":{},"startTime":1776949093709,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4688,"timestamp":7342147489574,"id":5823,"parentId":5797,"tags":{},"startTime":1776949093709,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4661,"timestamp":7342147489602,"id":5824,"parentId":5798,"tags":{},"startTime":1776949093709,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4607,"timestamp":7342147489657,"id":5825,"parentId":5799,"tags":{},"startTime":1776949093709,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6409,"timestamp":7342147488274,"id":5787,"parentId":5480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"app-pages-browser"},"startTime":1776949093707,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7111,"timestamp":7342147488385,"id":5788,"parentId":5436,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"app-pages-browser"},"startTime":1776949093707,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7561,"timestamp":7342147488432,"id":5789,"parentId":5442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"app-pages-browser"},"startTime":1776949093707,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7707,"timestamp":7342147488488,"id":5790,"parentId":5461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7847,"timestamp":7342147488532,"id":5791,"parentId":5468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8026,"timestamp":7342147488575,"id":5792,"parentId":5468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8098,"timestamp":7342147488616,"id":5793,"parentId":5476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8173,"timestamp":7342147488654,"id":5794,"parentId":5477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8442,"timestamp":7342147488692,"id":5795,"parentId":5474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8498,"timestamp":7342147488730,"id":5796,"parentId":5474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8533,"timestamp":7342147488769,"id":5797,"parentId":5474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10140,"timestamp":7342147488805,"id":5798,"parentId":5473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10238,"timestamp":7342147488843,"id":5799,"parentId":5473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"app-pages-browser"},"startTime":1776949093708,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45,"timestamp":7342147504480,"id":5832,"parentId":5826,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80,"timestamp":7342147504487,"id":5833,"parentId":5827,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80,"timestamp":7342147504516,"id":5834,"parentId":5828,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":105,"timestamp":7342147504519,"id":5835,"parentId":5829,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":129,"timestamp":7342147504521,"id":5836,"parentId":5830,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":160,"timestamp":7342147504523,"id":5837,"parentId":5831,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":180,"timestamp":7342147504533,"id":5838,"parentId":5826,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":145,"timestamp":7342147504570,"id":5839,"parentId":5827,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":117,"timestamp":7342147504598,"id":5840,"parentId":5828,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":89,"timestamp":7342147504626,"id":5841,"parentId":5829,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":63,"timestamp":7342147504652,"id":5842,"parentId":5830,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342147504685,"id":5843,"parentId":5831,"tags":{},"startTime":1776949093724,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":947,"timestamp":7342147504102,"id":5826,"parentId":5681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"app-pages-browser"},"startTime":1776949093723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1781,"timestamp":7342147504252,"id":5827,"parentId":5681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"app-pages-browser"},"startTime":1776949093723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1925,"timestamp":7342147504309,"id":5828,"parentId":5681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"app-pages-browser"},"startTime":1776949093723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1927,"timestamp":7342147504357,"id":5829,"parentId":5692,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"app-pages-browser"},"startTime":1776949093723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2477,"timestamp":7342147504395,"id":5830,"parentId":5671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"app-pages-browser"},"startTime":1776949093723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2625,"timestamp":7342147504432,"id":5831,"parentId":5687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"app-pages-browser"},"startTime":1776949093723,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":473,"timestamp":7342147510579,"id":5845,"parentId":5844,"tags":{},"startTime":1776949093730,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342147511060,"id":5846,"parentId":5844,"tags":{},"startTime":1776949093730,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4321,"timestamp":7342147510507,"id":5844,"parentId":5117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/buffer/index.js","layer":"app-pages-browser"},"startTime":1776949093730,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":884056,"timestamp":7342146630852,"id":4162,"parentId":4154,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949092850,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":894684,"timestamp":7342146620245,"id":4154,"parentId":4153,"tags":{},"startTime":1776949092839,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6871,"timestamp":7342147537683,"id":5848,"parentId":5847,"tags":{},"startTime":1776949093757,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7342147544575,"id":5850,"parentId":5847,"tags":{},"startTime":1776949093764,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":247,"timestamp":7342147544590,"id":5851,"parentId":5847,"tags":{},"startTime":1776949093764,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":13,"timestamp":7342147544866,"id":5852,"parentId":5847,"tags":{},"startTime":1776949093764,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342147544900,"id":5853,"parentId":5847,"tags":{},"startTime":1776949093764,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2511,"timestamp":7342147544569,"id":5849,"parentId":5847,"tags":{},"startTime":1776949093764,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":6084,"timestamp":7342147551838,"id":5854,"parentId":5847,"tags":{},"startTime":1776949093771,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":47190,"timestamp":7342147557946,"id":5855,"parentId":5847,"tags":{},"startTime":1776949093777,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":14905,"timestamp":7342147607057,"id":5856,"parentId":5847,"tags":{},"startTime":1776949093826,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":166,"timestamp":7342147621960,"id":5857,"parentId":5847,"tags":{},"startTime":1776949093841,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":112,"timestamp":7342147622120,"id":5858,"parentId":5847,"tags":{},"startTime":1776949093841,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":109575,"timestamp":7342147622234,"id":5859,"parentId":5847,"tags":{},"startTime":1776949093841,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":66,"timestamp":7342147733101,"id":5861,"parentId":4153,"tags":{},"startTime":1776949093952,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":136,"timestamp":7342147733036,"id":5860,"parentId":4153,"tags":{},"startTime":1776949093952,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":203174,"timestamp":7342147531815,"id":5847,"parentId":4153,"tags":{},"startTime":1776949093751,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1115091,"timestamp":7342146619943,"id":4153,"parentId":2457,"tags":{"name":"client"},"startTime":1776949092839,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":96079,"timestamp":7342147735051,"id":5862,"parentId":2457,"tags":{},"startTime":1776949093954,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":4003226,"timestamp":7342143828669,"id":2435,"tags":{"trigger":"/stock/[code]","isTurbopack":false},"startTime":1776949090048,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":3926931,"timestamp":7342143905701,"id":2457,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949090125,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":8,"timestamp":7342147837684,"id":5863,"parentId":3,"tags":{},"startTime":1776949094057,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":3963000,"timestamp":7342143906026,"id":5864,"parentId":3,"tags":{"updatedModules":[],"page":"/recommendations","isPageHidden":false},"startTime":1776949094090,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":4935461,"timestamp":7342143801638,"id":2433,"tags":{"url":"/stock/300054.SZ","isTurbopack":false},"startTime":1776949090021,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":40,"timestamp":7342148737553,"id":5865,"parentId":2433,"tags":{"url":"/stock/300054.SZ","memory.rss":"342851584","memory.heapUsed":"334246216","memory.heapTotal":"411303936"},"startTime":1776949094957,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":4,"timestamp":7342149205587,"id":5866,"parentId":3,"tags":{},"startTime":1776949095425,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":31868,"timestamp":7342150088105,"id":5867,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776949096307,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342150120078,"id":5868,"parentId":5867,"tags":{"url":"/recommendations","memory.rss":"178372608","memory.heapUsed":"337613760","memory.heapTotal":"412155904"},"startTime":1776949096339,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":120,"timestamp":7342150645193,"id":5869,"parentId":3,"tags":{},"startTime":1776949096864,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":38783,"timestamp":7342165505245,"id":5874,"parentId":5873,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949111724,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":43977,"timestamp":7342165505689,"id":5879,"parentId":5873,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949111725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27928,"timestamp":7342165542022,"id":5885,"parentId":5884,"tags":{},"startTime":1776949111761,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28485,"timestamp":7342165541473,"id":5884,"parentId":5883,"tags":{},"startTime":1776949111761,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":77575,"timestamp":7342165540903,"id":5883,"parentId":5872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776949111760,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":113655,"timestamp":7342165505681,"id":5878,"parentId":5873,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949111725,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":113815,"timestamp":7342165505675,"id":5876,"parentId":5873,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949111725,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":67036,"timestamp":7342165552658,"id":5887,"parentId":5886,"tags":{},"startTime":1776949111772,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":140749,"timestamp":7342165505658,"id":5875,"parentId":5873,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949111725,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":142798,"timestamp":7342165505698,"id":5880,"parentId":5873,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949111725,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":265100,"timestamp":7342165619921,"id":5889,"parentId":5888,"tags":{},"startTime":1776949111839,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":266064,"timestamp":7342165619734,"id":5888,"parentId":5886,"tags":{},"startTime":1776949111839,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":18782,"timestamp":7342165885845,"id":5890,"parentId":5886,"tags":{"astUsed":"true"},"startTime":1776949112105,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":353983,"timestamp":7342165551827,"id":5886,"parentId":5882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949111771,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":388490,"timestamp":7342165529767,"id":5882,"parentId":5872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949111749,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":31,"timestamp":7342165919795,"id":5891,"parentId":5882,"tags":{},"startTime":1776949112139,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":414269,"timestamp":7342165505679,"id":5877,"parentId":5873,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949111725,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":414480,"timestamp":7342165505701,"id":5881,"parentId":5873,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949111725,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":416365,"timestamp":7342165503848,"id":5873,"parentId":5872,"tags":{},"startTime":1776949111723,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6735,"timestamp":7342165937916,"id":5893,"parentId":5892,"tags":{},"startTime":1776949112157,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7342165944677,"id":5895,"parentId":5892,"tags":{},"startTime":1776949112164,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":239,"timestamp":7342165944689,"id":5896,"parentId":5892,"tags":{},"startTime":1776949112164,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7342165945041,"id":5897,"parentId":5892,"tags":{},"startTime":1776949112164,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342165945060,"id":5898,"parentId":5892,"tags":{},"startTime":1776949112164,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":5459,"timestamp":7342165944670,"id":5894,"parentId":5892,"tags":{},"startTime":1776949112164,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1271,"timestamp":7342165961918,"id":5899,"parentId":5892,"tags":{},"startTime":1776949112181,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4194,"timestamp":7342165963204,"id":5900,"parentId":5892,"tags":{},"startTime":1776949112182,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":5285,"timestamp":7342165968505,"id":5901,"parentId":5892,"tags":{},"startTime":1776949112188,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":115,"timestamp":7342165973789,"id":5902,"parentId":5892,"tags":{},"startTime":1776949112193,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":97,"timestamp":7342165973897,"id":5903,"parentId":5892,"tags":{},"startTime":1776949112193,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7201,"timestamp":7342165973997,"id":5904,"parentId":5892,"tags":{},"startTime":1776949112193,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":135,"timestamp":7342165982387,"id":5906,"parentId":5872,"tags":{},"startTime":1776949112201,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":230,"timestamp":7342165982309,"id":5905,"parentId":5872,"tags":{},"startTime":1776949112201,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":60781,"timestamp":7342165924056,"id":5892,"parentId":5872,"tags":{},"startTime":1776949112143,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":482562,"timestamp":7342165502308,"id":5872,"parentId":5870,"tags":{"name":"client"},"startTime":1776949111721,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4336,"timestamp":7342165984886,"id":5907,"parentId":5870,"tags":{},"startTime":1776949112204,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":506894,"timestamp":7342165482970,"id":5870,"parentId":3,"tags":{"trigger":"src/components/stock-card.tsx"},"startTime":1776949111702,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":8,"timestamp":7342165994348,"id":5910,"parentId":3,"tags":{},"startTime":1776949112213,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7019,"timestamp":7342165997343,"id":5912,"parentId":5909,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949112216,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7041,"timestamp":7342165997347,"id":5913,"parentId":5909,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949112216,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8258,"timestamp":7342165997313,"id":5911,"parentId":5909,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949112216,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":537000,"timestamp":7342165484730,"id":5929,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css","[project]/src/components/stock-card.tsx"],"page":"/recommendations","isPageHidden":false},"startTime":1776949112242,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10367,"timestamp":7342166021515,"id":5928,"parentId":5927,"tags":{},"startTime":1776949112241,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10441,"timestamp":7342166021446,"id":5927,"parentId":5926,"tags":{},"startTime":1776949112241,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":19908,"timestamp":7342166021292,"id":5926,"parentId":5908,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776949112240,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":71669,"timestamp":7342165992566,"id":5909,"parentId":5908,"tags":{},"startTime":1776949112212,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5115,"timestamp":7342166098591,"id":5931,"parentId":5930,"tags":{},"startTime":1776949112318,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342166103728,"id":5933,"parentId":5930,"tags":{},"startTime":1776949112323,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2455,"timestamp":7342166103748,"id":5934,"parentId":5930,"tags":{},"startTime":1776949112323,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342166106231,"id":5935,"parentId":5930,"tags":{},"startTime":1776949112325,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342166106249,"id":5936,"parentId":5930,"tags":{},"startTime":1776949112325,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4547,"timestamp":7342166103720,"id":5932,"parentId":5930,"tags":{},"startTime":1776949112323,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":643,"timestamp":7342166111416,"id":5937,"parentId":5930,"tags":{},"startTime":1776949112330,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3150,"timestamp":7342166112068,"id":5938,"parentId":5930,"tags":{},"startTime":1776949112331,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2274,"timestamp":7342166116388,"id":5939,"parentId":5930,"tags":{},"startTime":1776949112335,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":144,"timestamp":7342166118661,"id":5940,"parentId":5930,"tags":{},"startTime":1776949112338,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":77,"timestamp":7342166118795,"id":5941,"parentId":5930,"tags":{},"startTime":1776949112338,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1994,"timestamp":7342166118875,"id":5942,"parentId":5930,"tags":{},"startTime":1776949112338,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":39958,"timestamp":7342166084357,"id":5930,"parentId":5908,"tags":{},"startTime":1776949112303,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":140024,"timestamp":7342165992254,"id":5908,"parentId":5871,"tags":{"name":"server"},"startTime":1776949112211,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":5720,"timestamp":7342166132470,"id":5943,"parentId":5871,"tags":{},"startTime":1776949112352,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":653590,"timestamp":7342165485382,"id":5871,"parentId":3,"tags":{"trigger":"src/components/stock-card.tsx"},"startTime":1776949111704,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":22312,"timestamp":7342166150282,"id":5944,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1776949112369,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342166172626,"id":5945,"parentId":5944,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"333611008","memory.heapUsed":"365014752","memory.heapTotal":"415760384"},"startTime":1776949112392,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16524,"timestamp":7342199780885,"id":5953,"parentId":5950,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949146000,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16625,"timestamp":7342199780889,"id":5954,"parentId":5950,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949146000,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":31946,"timestamp":7342199780865,"id":5952,"parentId":5950,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949146000,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":47711,"timestamp":7342199793786,"id":5955,"parentId":5951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776949146013,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3596,"timestamp":7342199849821,"id":5958,"parentId":5957,"tags":{},"startTime":1776949146069,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3711,"timestamp":7342199849715,"id":5957,"parentId":5956,"tags":{},"startTime":1776949146069,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":4367,"timestamp":7342199849495,"id":5956,"parentId":5955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"rsc"},"startTime":1776949146069,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":81998,"timestamp":7342199780442,"id":5951,"parentId":5950,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949146000,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":693,"timestamp":7342199883743,"id":5976,"parentId":5949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776949146103,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8093,"timestamp":7342199887189,"id":5979,"parentId":5978,"tags":{},"startTime":1776949146106,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8170,"timestamp":7342199887119,"id":5978,"parentId":5977,"tags":{},"startTime":1776949146106,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":13804,"timestamp":7342199886933,"id":5977,"parentId":5976,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"ssr"},"startTime":1776949146106,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":147298,"timestamp":7342199776976,"id":5950,"parentId":5949,"tags":{},"startTime":1776949145996,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3352,"timestamp":7342199938471,"id":5981,"parentId":5980,"tags":{},"startTime":1776949146158,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342199941845,"id":5983,"parentId":5980,"tags":{},"startTime":1776949146161,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3011,"timestamp":7342199941857,"id":5984,"parentId":5980,"tags":{},"startTime":1776949146161,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342199944892,"id":5985,"parentId":5980,"tags":{},"startTime":1776949146164,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":7,"timestamp":7342199944908,"id":5986,"parentId":5980,"tags":{},"startTime":1776949146164,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4193,"timestamp":7342199941837,"id":5982,"parentId":5980,"tags":{},"startTime":1776949146161,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":776,"timestamp":7342199948026,"id":5987,"parentId":5980,"tags":{},"startTime":1776949146167,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3934,"timestamp":7342199948808,"id":5988,"parentId":5980,"tags":{},"startTime":1776949146168,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":924,"timestamp":7342199953751,"id":5989,"parentId":5980,"tags":{},"startTime":1776949146173,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":86,"timestamp":7342199954675,"id":5990,"parentId":5980,"tags":{},"startTime":1776949146174,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":58,"timestamp":7342199954757,"id":5991,"parentId":5980,"tags":{},"startTime":1776949146174,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2016,"timestamp":7342199954820,"id":5992,"parentId":5980,"tags":{},"startTime":1776949146174,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":33385,"timestamp":7342199927873,"id":5980,"parentId":5949,"tags":{},"startTime":1776949146147,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":188517,"timestamp":7342199776102,"id":5949,"parentId":5947,"tags":{"name":"server"},"startTime":1776949145995,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":8206,"timestamp":7342199964644,"id":5993,"parentId":5947,"tags":{},"startTime":1776949146184,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":209217,"timestamp":7342199763973,"id":5947,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949145983,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6572,"timestamp":7342199981118,"id":5996,"parentId":5995,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7083,"timestamp":7342199981170,"id":6002,"parentId":5995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7900,"timestamp":7342199981168,"id":6001,"parentId":5995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7909,"timestamp":7342199981162,"id":5999,"parentId":5995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13068,"timestamp":7342199981165,"id":6000,"parentId":5995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24465,"timestamp":7342199981156,"id":5997,"parentId":5995,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24467,"timestamp":7342199981160,"id":5998,"parentId":5995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":28400,"timestamp":7342199981172,"id":6003,"parentId":5995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":755,"timestamp":7342200016989,"id":6005,"parentId":6004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776949146236,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4238,"timestamp":7342200019146,"id":6008,"parentId":6007,"tags":{},"startTime":1776949146238,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4309,"timestamp":7342200019080,"id":6007,"parentId":6006,"tags":{},"startTime":1776949146238,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":9036,"timestamp":7342200018948,"id":6006,"parentId":6005,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"app-pages-browser"},"startTime":1776949146238,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":53942,"timestamp":7342199981174,"id":6004,"parentId":5995,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949146200,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":60364,"timestamp":7342199974780,"id":5995,"parentId":5994,"tags":{},"startTime":1776949146194,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2349,"timestamp":7342200043333,"id":6010,"parentId":6009,"tags":{},"startTime":1776949146262,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7342200045703,"id":6012,"parentId":6009,"tags":{},"startTime":1776949146265,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":228,"timestamp":7342200045718,"id":6013,"parentId":6009,"tags":{},"startTime":1776949146265,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342200045962,"id":6014,"parentId":6009,"tags":{},"startTime":1776949146265,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342200045976,"id":6015,"parentId":6009,"tags":{},"startTime":1776949146265,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2138,"timestamp":7342200045697,"id":6011,"parentId":6009,"tags":{},"startTime":1776949146265,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":684,"timestamp":7342200050967,"id":6016,"parentId":6009,"tags":{},"startTime":1776949146270,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":8428,"timestamp":7342200051658,"id":6017,"parentId":6009,"tags":{},"startTime":1776949146271,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":5211,"timestamp":7342200061712,"id":6018,"parentId":6009,"tags":{},"startTime":1776949146281,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":126,"timestamp":7342200066922,"id":6019,"parentId":6009,"tags":{},"startTime":1776949146286,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":87,"timestamp":7342200067038,"id":6020,"parentId":6009,"tags":{},"startTime":1776949146286,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2551,"timestamp":7342200067128,"id":6021,"parentId":6009,"tags":{},"startTime":1776949146286,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":56,"timestamp":7342200070617,"id":6023,"parentId":5994,"tags":{},"startTime":1776949146290,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":107,"timestamp":7342200070571,"id":6022,"parentId":5994,"tags":{},"startTime":1776949146290,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":34016,"timestamp":7342200038412,"id":6009,"parentId":5994,"tags":{},"startTime":1776949146258,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":97868,"timestamp":7342199974585,"id":5994,"parentId":5975,"tags":{"name":"client"},"startTime":1776949146194,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7746,"timestamp":7342200072476,"id":6024,"parentId":5975,"tags":{},"startTime":1776949146292,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":316568,"timestamp":7342199764061,"id":5948,"tags":{"trigger":"/strategy","isTurbopack":false},"startTime":1776949145983,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":215409,"timestamp":7342199865508,"id":5975,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949146085,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":6,"timestamp":7342200090717,"id":6025,"parentId":3,"tags":{},"startTime":1776949146310,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":350021,"timestamp":7342199755395,"id":5946,"tags":{"url":"/strategy?_rsc=1oe23","isTurbopack":false},"startTime":1776949145975,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342200105470,"id":6026,"parentId":5946,"tags":{"url":"/strategy?_rsc=1oe23","memory.rss":"437354496","memory.heapUsed":"346428592","memory.heapTotal":"409387008"},"startTime":1776949146325,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":241000,"timestamp":7342199865453,"id":6027,"parentId":3,"tags":{"updatedModules":[],"page":"/recommendations","isPageHidden":false},"startTime":1776949146327,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":7720,"timestamp":7342200108092,"id":6028,"tags":{"url":"/strategy?_rsc=g4vg8","isTurbopack":false},"startTime":1776949146327,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342200115829,"id":6029,"parentId":6028,"tags":{"url":"/strategy?_rsc=g4vg8","memory.rss":"437370880","memory.heapUsed":"349072336","memory.heapTotal":"409387008"},"startTime":1776949146335,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9450,"timestamp":7342218071511,"id":6037,"parentId":6034,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949164291,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9458,"timestamp":7342218071514,"id":6038,"parentId":6034,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949164291,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13679,"timestamp":7342218071507,"id":6036,"parentId":6034,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949164291,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":14500,"timestamp":7342218080115,"id":6039,"parentId":6035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776949164299,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4346,"timestamp":7342218097909,"id":6042,"parentId":6041,"tags":{},"startTime":1776949164317,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4445,"timestamp":7342218097814,"id":6041,"parentId":6040,"tags":{},"startTime":1776949164317,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":5064,"timestamp":7342218097635,"id":6040,"parentId":6039,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776949164317,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":32457,"timestamp":7342218071453,"id":6035,"parentId":6034,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949164291,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":591,"timestamp":7342218115564,"id":6060,"parentId":6033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776949164335,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14391,"timestamp":7342218118389,"id":6063,"parentId":6062,"tags":{},"startTime":1776949164338,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14480,"timestamp":7342218118307,"id":6062,"parentId":6061,"tags":{},"startTime":1776949164337,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":29169,"timestamp":7342218118137,"id":6061,"parentId":6060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776949164337,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6681,"timestamp":7342218157718,"id":6065,"parentId":6064,"tags":{},"startTime":1776949164377,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5665,"timestamp":7342218164502,"id":6067,"parentId":6066,"tags":{},"startTime":1776949164384,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5758,"timestamp":7342218164415,"id":6066,"parentId":6064,"tags":{},"startTime":1776949164384,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15201,"timestamp":7342218157581,"id":6064,"parentId":6061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"ssr"},"startTime":1776949164377,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":108857,"timestamp":7342218068772,"id":6034,"parentId":6033,"tags":{},"startTime":1776949164288,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3742,"timestamp":7342218185756,"id":6069,"parentId":6068,"tags":{},"startTime":1776949164405,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342218189518,"id":6071,"parentId":6068,"tags":{},"startTime":1776949164409,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2043,"timestamp":7342218189533,"id":6072,"parentId":6068,"tags":{},"startTime":1776949164409,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":11,"timestamp":7342218191595,"id":6073,"parentId":6068,"tags":{},"startTime":1776949164411,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342218191620,"id":6074,"parentId":6068,"tags":{},"startTime":1776949164411,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4038,"timestamp":7342218189512,"id":6070,"parentId":6068,"tags":{},"startTime":1776949164409,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1412,"timestamp":7342218194944,"id":6075,"parentId":6068,"tags":{},"startTime":1776949164414,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4105,"timestamp":7342218196373,"id":6076,"parentId":6068,"tags":{},"startTime":1776949164416,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":915,"timestamp":7342218201323,"id":6077,"parentId":6068,"tags":{},"startTime":1776949164420,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":58,"timestamp":7342218202237,"id":6078,"parentId":6068,"tags":{},"startTime":1776949164421,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":66,"timestamp":7342218202290,"id":6079,"parentId":6068,"tags":{},"startTime":1776949164421,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":5404,"timestamp":7342218202359,"id":6080,"parentId":6068,"tags":{},"startTime":1776949164422,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":28944,"timestamp":7342218180645,"id":6068,"parentId":6033,"tags":{},"startTime":1776949164400,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":143608,"timestamp":7342218068534,"id":6033,"parentId":6031,"tags":{"name":"server"},"startTime":1776949164288,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3417,"timestamp":7342218212163,"id":6081,"parentId":6031,"tags":{},"startTime":1776949164431,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":149389,"timestamp":7342218066441,"id":6031,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949164286,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":711,"timestamp":7342218227481,"id":6094,"parentId":6093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776949164447,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8439,"timestamp":7342218223204,"id":6092,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9194,"timestamp":7342218223150,"id":6084,"parentId":6083,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9732,"timestamp":7342218223199,"id":6090,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10725,"timestamp":7342218223195,"id":6089,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10737,"timestamp":7342218223191,"id":6087,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15665,"timestamp":7342218223193,"id":6088,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19834,"timestamp":7342218223182,"id":6085,"parentId":6083,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19835,"timestamp":7342218223188,"id":6086,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19583,"timestamp":7342218235024,"id":6097,"parentId":6096,"tags":{},"startTime":1776949164454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19666,"timestamp":7342218234948,"id":6096,"parentId":6095,"tags":{},"startTime":1776949164454,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":34045,"timestamp":7342218234751,"id":6095,"parentId":6094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776949164454,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":46872,"timestamp":7342218223202,"id":6091,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9,"timestamp":7342218274722,"id":6099,"parentId":6098,"tags":{},"startTime":1776949164494,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6712,"timestamp":7342218274832,"id":6101,"parentId":6100,"tags":{},"startTime":1776949164494,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6807,"timestamp":7342218274740,"id":6100,"parentId":6098,"tags":{},"startTime":1776949164494,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11514,"timestamp":7342218274583,"id":6098,"parentId":6095,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"app-pages-browser"},"startTime":1776949164494,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":63918,"timestamp":7342218223206,"id":6093,"parentId":6083,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949164442,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":70229,"timestamp":7342218216921,"id":6083,"parentId":6082,"tags":{},"startTime":1776949164436,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4337,"timestamp":7342218300212,"id":6103,"parentId":6102,"tags":{},"startTime":1776949164519,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342218304584,"id":6105,"parentId":6102,"tags":{},"startTime":1776949164524,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":747,"timestamp":7342218304608,"id":6106,"parentId":6102,"tags":{},"startTime":1776949164524,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342218305380,"id":6107,"parentId":6102,"tags":{},"startTime":1776949164525,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342218305401,"id":6108,"parentId":6102,"tags":{},"startTime":1776949164525,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3219,"timestamp":7342218304572,"id":6104,"parentId":6102,"tags":{},"startTime":1776949164524,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2042,"timestamp":7342218312728,"id":6109,"parentId":6102,"tags":{},"startTime":1776949164532,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":15704,"timestamp":7342218314785,"id":6110,"parentId":6102,"tags":{},"startTime":1776949164534,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":10029,"timestamp":7342218332548,"id":6111,"parentId":6102,"tags":{},"startTime":1776949164552,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":548,"timestamp":7342218342575,"id":6112,"parentId":6102,"tags":{},"startTime":1776949164562,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":112,"timestamp":7342218343107,"id":6113,"parentId":6102,"tags":{},"startTime":1776949164562,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":18951,"timestamp":7342218343223,"id":6114,"parentId":6102,"tags":{},"startTime":1776949164562,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":68,"timestamp":7342218363715,"id":6116,"parentId":6082,"tags":{},"startTime":1776949164583,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":126,"timestamp":7342218363665,"id":6115,"parentId":6082,"tags":{},"startTime":1776949164583,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":75056,"timestamp":7342218290449,"id":6102,"parentId":6082,"tags":{},"startTime":1776949164510,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":148798,"timestamp":7342218216737,"id":6082,"parentId":6059,"tags":{"name":"client"},"startTime":1776949164436,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":15228,"timestamp":7342218365563,"id":6117,"parentId":6059,"tags":{},"startTime":1776949164585,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":314784,"timestamp":7342218066458,"id":6032,"tags":{"trigger":"/sectors","isTurbopack":false},"startTime":1776949164286,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":276623,"timestamp":7342218104917,"id":6059,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949164324,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":3,"timestamp":7342218383994,"id":6118,"parentId":3,"tags":{},"startTime":1776949164603,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":345754,"timestamp":7342218054888,"id":6030,"tags":{"url":"/sectors?_rsc=opwvn","isTurbopack":false},"startTime":1776949164274,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342218400660,"id":6119,"parentId":6030,"tags":{"url":"/sectors?_rsc=opwvn","memory.rss":"430407680","memory.heapUsed":"359885344","memory.heapTotal":"401866752"},"startTime":1776949164620,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":299000,"timestamp":7342218105341,"id":6120,"parentId":3,"tags":{"updatedModules":[],"page":"/strategy","isPageHidden":false},"startTime":1776949164623,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":11048,"timestamp":7342218404676,"id":6121,"tags":{"url":"/sectors?_rsc=b5e9m","isTurbopack":false},"startTime":1776949164624,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342218415745,"id":6122,"parentId":6121,"tags":{"url":"/sectors?_rsc=b5e9m","memory.rss":"430456832","memory.heapUsed":"362770008","memory.heapTotal":"401866752"},"startTime":1776949164635,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11219,"timestamp":7342282292997,"id":6126,"parentId":6125,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12128,"timestamp":7342282293105,"id":6131,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12256,"timestamp":7342282293107,"id":6132,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12385,"timestamp":7342282293110,"id":6133,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16640,"timestamp":7342282293102,"id":6130,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17442,"timestamp":7342282293096,"id":6128,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2890,"timestamp":7342282307773,"id":6137,"parentId":6136,"tags":{},"startTime":1776949228527,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":95495,"timestamp":7342282310746,"id":6139,"parentId":6138,"tags":{},"startTime":1776949228530,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":96350,"timestamp":7342282310696,"id":6138,"parentId":6136,"tags":{},"startTime":1776949228530,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":27641,"timestamp":7342282407094,"id":6140,"parentId":6136,"tags":{"astUsed":"true"},"startTime":1776949228626,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":131969,"timestamp":7342282307626,"id":6136,"parentId":6135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949228527,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":151012,"timestamp":7342282293090,"id":6127,"parentId":6125,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":153337,"timestamp":7342282301423,"id":6135,"parentId":6124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949228521,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":28,"timestamp":7342282455136,"id":6141,"parentId":6135,"tags":{},"startTime":1776949228674,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":165293,"timestamp":7342282293099,"id":6129,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":175390,"timestamp":7342282293112,"id":6134,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":176200,"timestamp":7342282292348,"id":6125,"parentId":6124,"tags":{},"startTime":1776949228512,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":7713,"timestamp":7342282591312,"id":6146,"parentId":6145,"tags":{},"startTime":1776949228811,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":8,"timestamp":7342282599061,"id":6148,"parentId":6145,"tags":{},"startTime":1776949228818,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":495,"timestamp":7342282599084,"id":6149,"parentId":6145,"tags":{},"startTime":1776949228818,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":63,"timestamp":7342282599636,"id":6150,"parentId":6145,"tags":{},"startTime":1776949228819,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":4,"timestamp":7342282599717,"id":6151,"parentId":6145,"tags":{},"startTime":1776949228819,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":6291,"timestamp":7342282599049,"id":6147,"parentId":6145,"tags":{},"startTime":1776949228818,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2996,"timestamp":7342282657086,"id":6152,"parentId":6145,"tags":{},"startTime":1776949228876,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":13557,"timestamp":7342282660111,"id":6153,"parentId":6145,"tags":{},"startTime":1776949228879,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":10924,"timestamp":7342282680283,"id":6154,"parentId":6145,"tags":{},"startTime":1776949228900,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":184,"timestamp":7342282691205,"id":6155,"parentId":6145,"tags":{},"startTime":1776949228910,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":105,"timestamp":7342282691376,"id":6156,"parentId":6145,"tags":{},"startTime":1776949228911,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":5823,"timestamp":7342282691484,"id":6157,"parentId":6145,"tags":{},"startTime":1776949228911,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":54,"timestamp":7342282698818,"id":6159,"parentId":6124,"tags":{},"startTime":1776949228918,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":126,"timestamp":7342282698751,"id":6158,"parentId":6124,"tags":{},"startTime":1776949228918,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":138082,"timestamp":7342282562840,"id":6145,"parentId":6124,"tags":{},"startTime":1776949228782,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":409202,"timestamp":7342282291752,"id":6124,"parentId":6123,"tags":{"name":"client"},"startTime":1776949228511,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":17166,"timestamp":7342282700979,"id":6160,"parentId":6123,"tags":{},"startTime":1776949228920,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":27,"timestamp":7342282718828,"id":6161,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949228938,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":5,"timestamp":7342282727987,"id":6164,"parentId":3,"tags":{},"startTime":1776949228947,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":54000,"timestamp":7342282719397,"id":6168,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","[project]/src/app/(auth)/strategy/page.tsx","[project]/src/app/globals.css"],"page":"/sectors","isPageHidden":false},"startTime":1776949228995,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":258915,"timestamp":7342282523083,"id":6144,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949228742,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342282782024,"id":6169,"parentId":6144,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"394035200","memory.heapUsed":"343642552","memory.heapTotal":"396148736"},"startTime":1776949229001,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36935,"timestamp":7342282757353,"id":6166,"parentId":6163,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949228977,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36941,"timestamp":7342282757359,"id":6167,"parentId":6163,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949228977,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":38187,"timestamp":7342282757313,"id":6165,"parentId":6163,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949228977,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":99655,"timestamp":7342282723168,"id":6163,"parentId":6162,"tags":{},"startTime":1776949228942,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6427,"timestamp":7342282860803,"id":6183,"parentId":6182,"tags":{},"startTime":1776949229080,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":22,"timestamp":7342282867313,"id":6185,"parentId":6182,"tags":{},"startTime":1776949229087,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3871,"timestamp":7342282867357,"id":6186,"parentId":6182,"tags":{},"startTime":1776949229087,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342282871326,"id":6187,"parentId":6182,"tags":{},"startTime":1776949229091,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":4,"timestamp":7342282871343,"id":6188,"parentId":6182,"tags":{},"startTime":1776949229091,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":9855,"timestamp":7342282867290,"id":6184,"parentId":6182,"tags":{},"startTime":1776949229087,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":756,"timestamp":7342282883272,"id":6189,"parentId":6182,"tags":{},"startTime":1776949229103,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":7398,"timestamp":7342282884049,"id":6190,"parentId":6182,"tags":{},"startTime":1776949229103,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":8132,"timestamp":7342282893658,"id":6191,"parentId":6182,"tags":{},"startTime":1776949229113,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":261,"timestamp":7342282901788,"id":6192,"parentId":6182,"tags":{},"startTime":1776949229121,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":473,"timestamp":7342282901997,"id":6193,"parentId":6182,"tags":{},"startTime":1776949229121,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":575,"timestamp":7342282902478,"id":6194,"parentId":6182,"tags":{},"startTime":1776949229122,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":78006,"timestamp":7342282829002,"id":6182,"parentId":6162,"tags":{},"startTime":1776949229048,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":188719,"timestamp":7342282722892,"id":6162,"parentId":6142,"tags":{"name":"server"},"startTime":1776949228942,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":6102,"timestamp":7342282911646,"id":6195,"parentId":6142,"tags":{},"startTime":1776949229131,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":421185,"timestamp":7342282497263,"id":6142,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949228716,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":17373,"timestamp":7342282925404,"id":6197,"parentId":6196,"tags":{},"startTime":1776949229145,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":15,"timestamp":7342282943110,"id":6199,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342282943132,"id":6201,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6,"timestamp":7342282943141,"id":6202,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":2,"timestamp":7342282943155,"id":6203,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342282943170,"id":6204,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":54,"timestamp":7342282943130,"id":6200,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":3,"timestamp":7342282943257,"id":6205,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2,"timestamp":7342282943264,"id":6206,"parentId":6198,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":32,"timestamp":7342282943281,"id":6207,"parentId":6198,"tags":{},"startTime":1776949229163,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":9,"timestamp":7342282943313,"id":6208,"parentId":6198,"tags":{},"startTime":1776949229163,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":4,"timestamp":7342282943320,"id":6209,"parentId":6198,"tags":{},"startTime":1776949229163,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7,"timestamp":7342282943326,"id":6210,"parentId":6198,"tags":{},"startTime":1776949229163,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":633,"timestamp":7342282943089,"id":6198,"parentId":6196,"tags":{},"startTime":1776949229162,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":19259,"timestamp":7342282924477,"id":6196,"parentId":6143,"tags":{"name":"edge-server"},"startTime":1776949229144,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":5827,"timestamp":7342282943748,"id":6211,"parentId":6143,"tags":{},"startTime":1776949229163,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":453080,"timestamp":7342282497297,"id":6143,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949228717,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13945,"timestamp":7342282955028,"id":6214,"parentId":6213,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14405,"timestamp":7342282955140,"id":6219,"parentId":6213,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14437,"timestamp":7342282955143,"id":6220,"parentId":6213,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14452,"timestamp":7342282955146,"id":6221,"parentId":6213,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15589,"timestamp":7342282955135,"id":6217,"parentId":6213,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24299,"timestamp":7342282955137,"id":6218,"parentId":6213,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24580,"timestamp":7342282955126,"id":6215,"parentId":6213,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24578,"timestamp":7342282955132,"id":6216,"parentId":6213,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24663,"timestamp":7342282955148,"id":6222,"parentId":6213,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949229174,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":25665,"timestamp":7342282954176,"id":6213,"parentId":6212,"tags":{},"startTime":1776949229173,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5849,"timestamp":7342282991441,"id":6224,"parentId":6223,"tags":{},"startTime":1776949229211,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342282997316,"id":6226,"parentId":6223,"tags":{},"startTime":1776949229217,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":845,"timestamp":7342282997328,"id":6227,"parentId":6223,"tags":{},"startTime":1776949229217,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342282998191,"id":6228,"parentId":6223,"tags":{},"startTime":1776949229217,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":17,"timestamp":7342282998287,"id":6229,"parentId":6223,"tags":{},"startTime":1776949229218,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3373,"timestamp":7342282997308,"id":6225,"parentId":6223,"tags":{},"startTime":1776949229217,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":269,"timestamp":7342283004673,"id":6230,"parentId":6223,"tags":{},"startTime":1776949229224,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2277,"timestamp":7342283004950,"id":6231,"parentId":6223,"tags":{},"startTime":1776949229224,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":7278,"timestamp":7342283008115,"id":6232,"parentId":6223,"tags":{},"startTime":1776949229227,"traceId":"d76ab653cbe90d54"}]
-[{"name":"code-generation-jobs","duration":283,"timestamp":7342283015391,"id":6233,"parentId":6223,"tags":{},"startTime":1776949229235,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":79,"timestamp":7342283015666,"id":6234,"parentId":6223,"tags":{},"startTime":1776949229235,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":720,"timestamp":7342283015748,"id":6235,"parentId":6223,"tags":{},"startTime":1776949229235,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":111,"timestamp":7342283017552,"id":6237,"parentId":6212,"tags":{},"startTime":1776949229237,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":175,"timestamp":7342283017493,"id":6236,"parentId":6212,"tags":{},"startTime":1776949229237,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":37666,"timestamp":7342282982120,"id":6223,"parentId":6212,"tags":{},"startTime":1776949229201,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":65922,"timestamp":7342282953890,"id":6212,"parentId":3,"tags":{"name":"client"},"startTime":1776949229173,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2491,"timestamp":7342283019836,"id":6238,"parentId":3,"tags":{},"startTime":1776949229239,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":3,"timestamp":7342283024963,"id":6239,"parentId":3,"tags":{},"startTime":1776949229244,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":26715,"timestamp":7342283025904,"id":6240,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949229245,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342283052644,"id":6241,"parentId":6240,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"399114240","memory.heapUsed":"363867256","memory.heapTotal":"402210816"},"startTime":1776949229272,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12235,"timestamp":7342364669447,"id":6245,"parentId":6244,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12884,"timestamp":7342364669631,"id":6250,"parentId":6244,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12962,"timestamp":7342364669634,"id":6251,"parentId":6244,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13021,"timestamp":7342364669638,"id":6252,"parentId":6244,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16596,"timestamp":7342364669627,"id":6249,"parentId":6244,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17570,"timestamp":7342364669620,"id":6247,"parentId":6244,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3059,"timestamp":7342364684240,"id":6256,"parentId":6255,"tags":{},"startTime":1776949310904,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":29904,"timestamp":7342364669613,"id":6246,"parentId":6244,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":112201,"timestamp":7342364687395,"id":6258,"parentId":6257,"tags":{},"startTime":1776949310907,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":113136,"timestamp":7342364687327,"id":6257,"parentId":6255,"tags":{},"startTime":1776949310907,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":62069,"timestamp":7342364800617,"id":6259,"parentId":6255,"tags":{"astUsed":"true"},"startTime":1776949311020,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":189311,"timestamp":7342364684103,"id":6255,"parentId":6254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949310903,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":309639,"timestamp":7342364678175,"id":6254,"parentId":6243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949310898,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":77,"timestamp":7342364989451,"id":6262,"parentId":6254,"tags":{},"startTime":1776949311209,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":320493,"timestamp":7342364669624,"id":6248,"parentId":6244,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":322063,"timestamp":7342364669641,"id":6253,"parentId":6244,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949310889,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":323051,"timestamp":7342364668721,"id":6244,"parentId":6243,"tags":{},"startTime":1776949310888,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4273,"timestamp":7342365095163,"id":6266,"parentId":6265,"tags":{},"startTime":1776949311315,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342365099466,"id":6268,"parentId":6265,"tags":{},"startTime":1776949311319,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":367,"timestamp":7342365099481,"id":6269,"parentId":6265,"tags":{},"startTime":1776949311319,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342365099876,"id":6270,"parentId":6265,"tags":{},"startTime":1776949311319,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342365099890,"id":6271,"parentId":6265,"tags":{},"startTime":1776949311319,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3116,"timestamp":7342365099456,"id":6267,"parentId":6265,"tags":{},"startTime":1776949311319,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":756,"timestamp":7342365107261,"id":6272,"parentId":6265,"tags":{},"startTime":1776949311327,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5934,"timestamp":7342365108027,"id":6273,"parentId":6265,"tags":{},"startTime":1776949311327,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":12953,"timestamp":7342365120478,"id":6274,"parentId":6265,"tags":{},"startTime":1776949311340,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":207,"timestamp":7342365133429,"id":6275,"parentId":6265,"tags":{},"startTime":1776949311353,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":87,"timestamp":7342365133626,"id":6276,"parentId":6265,"tags":{},"startTime":1776949311353,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7014,"timestamp":7342365133716,"id":6277,"parentId":6265,"tags":{},"startTime":1776949311353,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":309,"timestamp":7342365144817,"id":6279,"parentId":6243,"tags":{},"startTime":1776949311364,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":514,"timestamp":7342365144635,"id":6278,"parentId":6243,"tags":{},"startTime":1776949311364,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":63934,"timestamp":7342365084834,"id":6265,"parentId":6243,"tags":{},"startTime":1776949311304,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":480672,"timestamp":7342364668136,"id":6243,"parentId":6242,"tags":{"name":"client"},"startTime":1776949310887,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":24490,"timestamp":7342365148836,"id":6280,"parentId":6242,"tags":{},"startTime":1776949311368,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":30,"timestamp":7342365173938,"id":6281,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949311393,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":9,"timestamp":7342365185251,"id":6284,"parentId":3,"tags":{},"startTime":1776949311405,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":28000,"timestamp":7342365174224,"id":6289,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/sectors","isPageHidden":false},"startTime":1776949311423,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27747,"timestamp":7342365195774,"id":6287,"parentId":6283,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311415,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27758,"timestamp":7342365195778,"id":6288,"parentId":6283,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311415,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":28443,"timestamp":7342365195767,"id":6286,"parentId":6283,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311415,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":15674,"timestamp":7342365214802,"id":6290,"parentId":6285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776949311434,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36001,"timestamp":7342365195725,"id":6285,"parentId":6283,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311415,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":83235,"timestamp":7342365179116,"id":6283,"parentId":6282,"tags":{},"startTime":1776949311398,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2022,"timestamp":7342365272706,"id":6306,"parentId":6305,"tags":{},"startTime":1776949311492,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342365274751,"id":6308,"parentId":6305,"tags":{},"startTime":1776949311494,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3327,"timestamp":7342365274766,"id":6309,"parentId":6305,"tags":{},"startTime":1776949311494,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7342365278120,"id":6310,"parentId":6305,"tags":{},"startTime":1776949311497,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342365278155,"id":6311,"parentId":6305,"tags":{},"startTime":1776949311498,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":5386,"timestamp":7342365274744,"id":6307,"parentId":6305,"tags":{},"startTime":1776949311494,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":422,"timestamp":7342365281476,"id":6312,"parentId":6305,"tags":{},"startTime":1776949311501,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2755,"timestamp":7342365281907,"id":6313,"parentId":6305,"tags":{},"startTime":1776949311501,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2603,"timestamp":7342365286747,"id":6314,"parentId":6305,"tags":{},"startTime":1776949311506,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":115,"timestamp":7342365289348,"id":6315,"parentId":6305,"tags":{},"startTime":1776949311509,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":95,"timestamp":7342365289453,"id":6316,"parentId":6305,"tags":{},"startTime":1776949311509,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1699,"timestamp":7342365289551,"id":6317,"parentId":6305,"tags":{},"startTime":1776949311509,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":33811,"timestamp":7342365264907,"id":6305,"parentId":6282,"tags":{},"startTime":1776949311484,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":123345,"timestamp":7342365178517,"id":6282,"parentId":6260,"tags":{"name":"server"},"startTime":1776949311398,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3904,"timestamp":7342365301955,"id":6318,"parentId":6260,"tags":{},"startTime":1776949311521,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":7,"timestamp":7342365306108,"id":6319,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949311525,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":5418,"timestamp":7342365306975,"id":6321,"parentId":6320,"tags":{},"startTime":1776949311526,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":15,"timestamp":7342365312644,"id":6323,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342365312666,"id":6325,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6,"timestamp":7342365312675,"id":6326,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":2,"timestamp":7342365312689,"id":6327,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342365312699,"id":6328,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":47,"timestamp":7342365312664,"id":6324,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":3,"timestamp":7342365312761,"id":6329,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3,"timestamp":7342365312768,"id":6330,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":30,"timestamp":7342365312783,"id":6331,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":9,"timestamp":7342365312813,"id":6332,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":4,"timestamp":7342365312820,"id":6333,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6,"timestamp":7342365312826,"id":6334,"parentId":6322,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":474,"timestamp":7342365312626,"id":6322,"parentId":6320,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":6465,"timestamp":7342365306657,"id":6320,"parentId":6261,"tags":{"name":"edge-server"},"startTime":1776949311526,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1087,"timestamp":7342365313133,"id":6335,"parentId":6261,"tags":{},"startTime":1776949311532,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":351346,"timestamp":7342364963095,"id":6261,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949311182,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5727,"timestamp":7342365316443,"id":6338,"parentId":6337,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6184,"timestamp":7342365316489,"id":6343,"parentId":6337,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6298,"timestamp":7342365316491,"id":6344,"parentId":6337,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6367,"timestamp":7342365316494,"id":6345,"parentId":6337,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7627,"timestamp":7342365316483,"id":6341,"parentId":6337,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15060,"timestamp":7342365316486,"id":6342,"parentId":6337,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15422,"timestamp":7342365316475,"id":6339,"parentId":6337,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15423,"timestamp":7342365316480,"id":6340,"parentId":6337,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15536,"timestamp":7342365316496,"id":6346,"parentId":6337,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"next-client-pages-loader","duration":421,"timestamp":7342365332524,"id":6349,"parentId":6348,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1776949311552,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1168,"timestamp":7342365332391,"id":6348,"parentId":6347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1776949311552,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2826,"timestamp":7342365334329,"id":6352,"parentId":6351,"tags":{},"startTime":1776949311554,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2933,"timestamp":7342365334224,"id":6351,"parentId":6350,"tags":{},"startTime":1776949311554,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5305,"timestamp":7342365334140,"id":6350,"parentId":6348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1776949311553,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":30383,"timestamp":7342365316499,"id":6347,"parentId":6337,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776949311536,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":31275,"timestamp":7342365315631,"id":6337,"parentId":6336,"tags":{},"startTime":1776949311535,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2323,"timestamp":7342365355003,"id":6354,"parentId":6353,"tags":{},"startTime":1776949311574,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342365357350,"id":6356,"parentId":6353,"tags":{},"startTime":1776949311577,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":276,"timestamp":7342365357363,"id":6357,"parentId":6353,"tags":{},"startTime":1776949311577,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342365357654,"id":6358,"parentId":6353,"tags":{},"startTime":1776949311577,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342365357667,"id":6359,"parentId":6353,"tags":{},"startTime":1776949311577,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1501,"timestamp":7342365357341,"id":6355,"parentId":6353,"tags":{},"startTime":1776949311577,"traceId":"d76ab653cbe90d54"}]
-[{"name":"module-hash","duration":395,"timestamp":7342365364186,"id":6360,"parentId":6353,"tags":{},"startTime":1776949311584,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2600,"timestamp":7342365364589,"id":6361,"parentId":6353,"tags":{},"startTime":1776949311584,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":5769,"timestamp":7342365368691,"id":6362,"parentId":6353,"tags":{},"startTime":1776949311588,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":108,"timestamp":7342365374460,"id":6363,"parentId":6353,"tags":{},"startTime":1776949311594,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":78,"timestamp":7342365374560,"id":6364,"parentId":6353,"tags":{},"startTime":1776949311594,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1507,"timestamp":7342365374641,"id":6365,"parentId":6353,"tags":{},"startTime":1776949311594,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":40,"timestamp":7342365376915,"id":6367,"parentId":6336,"tags":{},"startTime":1776949311596,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":77,"timestamp":7342365376884,"id":6366,"parentId":6336,"tags":{},"startTime":1776949311596,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":29004,"timestamp":7342365349258,"id":6353,"parentId":6336,"tags":{},"startTime":1776949311569,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":62840,"timestamp":7342365315443,"id":6336,"parentId":3,"tags":{"name":"client"},"startTime":1776949311535,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":5161,"timestamp":7342365378302,"id":6368,"parentId":3,"tags":{},"startTime":1776949311598,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7342365386935,"id":6371,"parentId":3,"tags":{},"startTime":1776949311606,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4484,"timestamp":7342365388927,"id":6374,"parentId":6370,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311608,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4486,"timestamp":7342365388930,"id":6375,"parentId":6370,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311608,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4754,"timestamp":7342365388922,"id":6373,"parentId":6370,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311608,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5009,"timestamp":7342365388893,"id":6372,"parentId":6370,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949311608,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":220000,"timestamp":7342365175030,"id":6390,"parentId":3,"tags":{"updatedModules":[],"page":"/sectors","isPageHidden":false},"startTime":1776949311614,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":30268,"timestamp":7342365385705,"id":6370,"parentId":6369,"tags":{},"startTime":1776949311605,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1734,"timestamp":7342365422890,"id":6392,"parentId":6391,"tags":{},"startTime":1776949311642,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342365424644,"id":6394,"parentId":6391,"tags":{},"startTime":1776949311644,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6566,"timestamp":7342365424657,"id":6395,"parentId":6391,"tags":{},"startTime":1776949311644,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342365431263,"id":6396,"parentId":6391,"tags":{},"startTime":1776949311651,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342365431277,"id":6397,"parentId":6391,"tags":{},"startTime":1776949311651,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":7906,"timestamp":7342365424637,"id":6393,"parentId":6391,"tags":{},"startTime":1776949311644,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":407,"timestamp":7342365434024,"id":6398,"parentId":6391,"tags":{},"startTime":1776949311653,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2531,"timestamp":7342365434442,"id":6399,"parentId":6391,"tags":{},"startTime":1776949311654,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":770,"timestamp":7342365437821,"id":6400,"parentId":6391,"tags":{},"startTime":1776949311657,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":45,"timestamp":7342365438591,"id":6401,"parentId":6391,"tags":{},"startTime":1776949311658,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":70,"timestamp":7342365438631,"id":6402,"parentId":6391,"tags":{},"startTime":1776949311658,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":129,"timestamp":7342365438704,"id":6403,"parentId":6391,"tags":{},"startTime":1776949311658,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":22974,"timestamp":7342365418094,"id":6391,"parentId":6369,"tags":{},"startTime":1776949311637,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":58251,"timestamp":7342365385539,"id":6369,"parentId":3,"tags":{"name":"server"},"startTime":1776949311605,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1818,"timestamp":7342365443819,"id":6404,"parentId":3,"tags":{},"startTime":1776949311663,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":365485,"timestamp":7342365080689,"id":6264,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776949311300,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":478913,"timestamp":7342364989931,"id":6263,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949311209,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342365468873,"id":6406,"parentId":6263,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"436535296","memory.heapUsed":"363287760","memory.heapTotal":"431259648"},"startTime":1776949311688,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":11934,"timestamp":7342365468307,"id":6405,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949311688,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342365480281,"id":6407,"parentId":6405,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"438337536","memory.heapUsed":"368922872","memory.heapTotal":"432128000"},"startTime":1776949311700,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":130901,"timestamp":7342365500215,"id":6408,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776949311720,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342365631148,"id":6409,"parentId":6408,"tags":{"url":"/sectors","memory.rss":"441335808","memory.heapUsed":"366328576","memory.heapTotal":"430178304"},"startTime":1776949311850,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":125,"timestamp":7342366255067,"id":6410,"parentId":3,"tags":{},"startTime":1776949312475,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":51307,"timestamp":7342371053116,"id":6417,"parentId":6414,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949317272,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":51395,"timestamp":7342371053123,"id":6418,"parentId":6414,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949317272,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":59250,"timestamp":7342371052846,"id":6415,"parentId":6414,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949317272,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4842,"timestamp":7342371108869,"id":6421,"parentId":6420,"tags":{},"startTime":1776949317328,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6042,"timestamp":7342371107682,"id":6420,"parentId":6419,"tags":{},"startTime":1776949317327,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":16170,"timestamp":7342371105321,"id":6419,"parentId":6413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776949317325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":77842,"timestamp":7342371053093,"id":6416,"parentId":6414,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949317272,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6662,"timestamp":7342371163246,"id":6438,"parentId":6437,"tags":{},"startTime":1776949317383,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7438,"timestamp":7342371162481,"id":6437,"parentId":6436,"tags":{},"startTime":1776949317382,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":18054,"timestamp":7342371162185,"id":6436,"parentId":6413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776949317382,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":184157,"timestamp":7342371046182,"id":6414,"parentId":6413,"tags":{},"startTime":1776949317266,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5847,"timestamp":7342371241414,"id":6440,"parentId":6439,"tags":{},"startTime":1776949317461,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342371247288,"id":6442,"parentId":6439,"tags":{},"startTime":1776949317467,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2495,"timestamp":7342371247303,"id":6443,"parentId":6439,"tags":{},"startTime":1776949317467,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":10,"timestamp":7342371249842,"id":6444,"parentId":6439,"tags":{},"startTime":1776949317469,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342371249862,"id":6445,"parentId":6439,"tags":{},"startTime":1776949317469,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4411,"timestamp":7342371247279,"id":6441,"parentId":6439,"tags":{},"startTime":1776949317467,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":626,"timestamp":7342371254165,"id":6446,"parentId":6439,"tags":{},"startTime":1776949317474,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3390,"timestamp":7342371254804,"id":6447,"parentId":6439,"tags":{},"startTime":1776949317474,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1533,"timestamp":7342371259413,"id":6448,"parentId":6439,"tags":{},"startTime":1776949317479,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":78,"timestamp":7342371260945,"id":6449,"parentId":6439,"tags":{},"startTime":1776949317480,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":75,"timestamp":7342371261011,"id":6450,"parentId":6439,"tags":{},"startTime":1776949317480,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1888,"timestamp":7342371261089,"id":6451,"parentId":6439,"tags":{},"startTime":1776949317480,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":31460,"timestamp":7342371234395,"id":6439,"parentId":6413,"tags":{},"startTime":1776949317454,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":230362,"timestamp":7342371045552,"id":6413,"parentId":6411,"tags":{"name":"server"},"startTime":1776949317265,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":9351,"timestamp":7342371276105,"id":6452,"parentId":6411,"tags":{},"startTime":1776949317495,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":261667,"timestamp":7342371024139,"id":6411,"parentId":3,"tags":{"trigger":"src/components/nav.tsx"},"startTime":1776949317243,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4477,"timestamp":7342371296205,"id":6464,"parentId":6454,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6230,"timestamp":7342371296138,"id":6455,"parentId":6454,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949317515,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9174,"timestamp":7342371296194,"id":6460,"parentId":6454,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9257,"timestamp":7342371296196,"id":6461,"parentId":6454,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9298,"timestamp":7342371296199,"id":6462,"parentId":6454,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6414,"timestamp":7342371299517,"id":6468,"parentId":6467,"tags":{},"startTime":1776949317519,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6494,"timestamp":7342371299440,"id":6467,"parentId":6465,"tags":{},"startTime":1776949317519,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":11814,"timestamp":7342371298987,"id":6465,"parentId":6453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776949317518,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":38010,"timestamp":7342371296190,"id":6459,"parentId":6454,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21628,"timestamp":7342371312613,"id":6470,"parentId":6469,"tags":{},"startTime":1776949317532,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47963,"timestamp":7342371296178,"id":6456,"parentId":6454,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":49063,"timestamp":7342371296202,"id":6463,"parentId":6454,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":76849,"timestamp":7342371334313,"id":6472,"parentId":6471,"tags":{},"startTime":1776949317554,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":77657,"timestamp":7342371334275,"id":6471,"parentId":6469,"tags":{},"startTime":1776949317554,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":11161,"timestamp":7342371411976,"id":6473,"parentId":6469,"tags":{"astUsed":"true"},"startTime":1776949317631,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":111868,"timestamp":7342371312453,"id":6469,"parentId":6466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949317532,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":128554,"timestamp":7342371299205,"id":6466,"parentId":6453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949317519,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":23,"timestamp":7342371427893,"id":6474,"parentId":6466,"tags":{},"startTime":1776949317647,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":131746,"timestamp":7342371296187,"id":6458,"parentId":6454,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":132375,"timestamp":7342371296184,"id":6457,"parentId":6454,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949317516,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":140414,"timestamp":7342371288158,"id":6454,"parentId":6453,"tags":{},"startTime":1776949317508,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3041,"timestamp":7342371441173,"id":6476,"parentId":6475,"tags":{},"startTime":1776949317661,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342371444244,"id":6478,"parentId":6475,"tags":{},"startTime":1776949317664,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":375,"timestamp":7342371444258,"id":6479,"parentId":6475,"tags":{},"startTime":1776949317664,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342371444655,"id":6480,"parentId":6475,"tags":{},"startTime":1776949317664,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342371444673,"id":6481,"parentId":6475,"tags":{},"startTime":1776949317664,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1711,"timestamp":7342371444235,"id":6477,"parentId":6475,"tags":{},"startTime":1776949317664,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":351,"timestamp":7342371448803,"id":6482,"parentId":6475,"tags":{},"startTime":1776949317668,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4773,"timestamp":7342371449160,"id":6483,"parentId":6475,"tags":{},"startTime":1776949317669,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":16063,"timestamp":7342371457760,"id":6484,"parentId":6475,"tags":{},"startTime":1776949317677,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":127,"timestamp":7342371473821,"id":6485,"parentId":6475,"tags":{},"startTime":1776949317693,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":104,"timestamp":7342371473939,"id":6486,"parentId":6475,"tags":{},"startTime":1776949317693,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2406,"timestamp":7342371474046,"id":6487,"parentId":6475,"tags":{},"startTime":1776949317693,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":98,"timestamp":7342371478163,"id":6489,"parentId":6453,"tags":{},"startTime":1776949317698,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":240,"timestamp":7342371478109,"id":6488,"parentId":6453,"tags":{},"startTime":1776949317697,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":48517,"timestamp":7342371431645,"id":6475,"parentId":6453,"tags":{},"startTime":1776949317651,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":192256,"timestamp":7342371287934,"id":6453,"parentId":6412,"tags":{"name":"client"},"startTime":1776949317507,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":10975,"timestamp":7342371480209,"id":6490,"parentId":6412,"tags":{},"startTime":1776949317700,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":467613,"timestamp":7342371024440,"id":6412,"parentId":3,"tags":{"trigger":"src/components/nav.tsx"},"startTime":1776949317244,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":3,"timestamp":7342371495091,"id":6491,"parentId":3,"tags":{},"startTime":1776949317714,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":487000,"timestamp":7342371024272,"id":6493,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css","[project]/src/components/nav.tsx"],"page":"/sectors","isPageHidden":false},"startTime":1776949317732,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":40140,"timestamp":7342371495807,"id":6492,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949317715,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342371535981,"id":6495,"parentId":6492,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"346177536","memory.heapUsed":"400028112","memory.heapTotal":"434077696"},"startTime":1776949317755,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":26812,"timestamp":7342371533707,"id":6494,"tags":{"url":"/_next/static/webpack/f2d926faf98cf0d7.webpack.hot-update.json","isTurbopack":false},"startTime":1776949317753,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342371560567,"id":6496,"parentId":6494,"tags":{"url":"/_next/static/webpack/f2d926faf98cf0d7.webpack.hot-update.json","memory.rss":"347832320","memory.heapUsed":"406374048","memory.heapTotal":"434520064"},"startTime":1776949317780,"traceId":"d76ab653cbe90d54"},{"name":"client-full-reload","duration":8,"timestamp":7342371587989,"id":6497,"parentId":3,"tags":{"stackTrace":""},"startTime":1776949317807,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":37247,"timestamp":7342371594229,"id":6498,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776949317815,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342371631499,"id":6499,"parentId":6498,"tags":{"url":"/sectors","memory.rss":"345358336","memory.heapUsed":"401604640","memory.heapTotal":"433176576"},"startTime":1776949317851,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":4,"timestamp":7342372126350,"id":6500,"parentId":3,"tags":{},"startTime":1776949318346,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11635,"timestamp":7342381982818,"id":6514,"parentId":6504,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13335,"timestamp":7342381982498,"id":6505,"parentId":6504,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15142,"timestamp":7342381982808,"id":6511,"parentId":6504,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15443,"timestamp":7342381982811,"id":6512,"parentId":6504,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26366,"timestamp":7342381982782,"id":6509,"parentId":6504,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":31983,"timestamp":7342381982698,"id":6507,"parentId":6504,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12835,"timestamp":7342382001866,"id":6520,"parentId":6519,"tags":{},"startTime":1776949328221,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":62642,"timestamp":7342381982688,"id":6506,"parentId":6504,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":53808,"timestamp":7342381992074,"id":6518,"parentId":6517,"tags":{},"startTime":1776949328211,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53957,"timestamp":7342381991928,"id":6517,"parentId":6516,"tags":{},"startTime":1776949328211,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":105112,"timestamp":7342381991428,"id":6516,"parentId":6503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776949328211,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":171962,"timestamp":7342382014823,"id":6522,"parentId":6521,"tags":{},"startTime":1776949328234,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":172260,"timestamp":7342382014738,"id":6521,"parentId":6519,"tags":{},"startTime":1776949328234,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":14887,"timestamp":7342382187045,"id":6523,"parentId":6519,"tags":{"astUsed":"true"},"startTime":1776949328406,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":201873,"timestamp":7342382001268,"id":6519,"parentId":6515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949328221,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":224362,"timestamp":7342381990375,"id":6515,"parentId":6503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949328210,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":34,"timestamp":7342382215585,"id":6524,"parentId":6515,"tags":{},"startTime":1776949328435,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":233545,"timestamp":7342381982778,"id":6508,"parentId":6504,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":233985,"timestamp":7342381982815,"id":6513,"parentId":6504,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":241637,"timestamp":7342381982802,"id":6510,"parentId":6504,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949328202,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":250513,"timestamp":7342381973963,"id":6504,"parentId":6503,"tags":{},"startTime":1776949328193,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3968,"timestamp":7342382236223,"id":6526,"parentId":6525,"tags":{},"startTime":1776949328456,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342382240278,"id":6528,"parentId":6525,"tags":{},"startTime":1776949328460,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":793,"timestamp":7342382240332,"id":6529,"parentId":6525,"tags":{},"startTime":1776949328460,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342382241208,"id":6530,"parentId":6525,"tags":{},"startTime":1776949328461,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342382241229,"id":6531,"parentId":6525,"tags":{},"startTime":1776949328461,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3184,"timestamp":7342382240267,"id":6527,"parentId":6525,"tags":{},"startTime":1776949328460,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":874,"timestamp":7342382247845,"id":6532,"parentId":6525,"tags":{},"startTime":1776949328467,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":7526,"timestamp":7342382248736,"id":6533,"parentId":6525,"tags":{},"startTime":1776949328468,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":5217,"timestamp":7342382257989,"id":6534,"parentId":6525,"tags":{},"startTime":1776949328477,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":127,"timestamp":7342382263204,"id":6535,"parentId":6525,"tags":{},"startTime":1776949328483,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":77,"timestamp":7342382263324,"id":6536,"parentId":6525,"tags":{},"startTime":1776949328483,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3490,"timestamp":7342382263404,"id":6537,"parentId":6525,"tags":{},"startTime":1776949328483,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":94,"timestamp":7342382268801,"id":6539,"parentId":6503,"tags":{},"startTime":1776949328488,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":167,"timestamp":7342382268750,"id":6538,"parentId":6503,"tags":{},"startTime":1776949328488,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":42722,"timestamp":7342382228370,"id":6525,"parentId":6503,"tags":{},"startTime":1776949328448,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":298177,"timestamp":7342381973028,"id":6503,"parentId":6501,"tags":{"name":"client"},"startTime":1776949328192,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":8640,"timestamp":7342382271248,"id":6540,"parentId":6501,"tags":{},"startTime":1776949328491,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":322237,"timestamp":7342381958844,"id":6501,"parentId":3,"tags":{"trigger":"src/app/(auth)/dashboard/page.tsx"},"startTime":1776949328178,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7342382288576,"id":6543,"parentId":3,"tags":{},"startTime":1776949328508,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11451,"timestamp":7342382291432,"id":6546,"parentId":6542,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949328511,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11462,"timestamp":7342382291435,"id":6547,"parentId":6542,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949328511,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":340000,"timestamp":7342381961079,"id":6551,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/sectors","isPageHidden":false},"startTime":1776949328522,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12614,"timestamp":7342382291390,"id":6544,"parentId":6542,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949328511,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7273,"timestamp":7342382300276,"id":6550,"parentId":6549,"tags":{},"startTime":1776949328520,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7336,"timestamp":7342382300219,"id":6549,"parentId":6548,"tags":{},"startTime":1776949328520,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":8032,"timestamp":7342382299979,"id":6548,"parentId":6541,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776949328519,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":18213,"timestamp":7342382291427,"id":6545,"parentId":6542,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949328511,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11185,"timestamp":7342382323900,"id":6568,"parentId":6567,"tags":{},"startTime":1776949328543,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11260,"timestamp":7342382323833,"id":6567,"parentId":6566,"tags":{},"startTime":1776949328543,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":17596,"timestamp":7342382323601,"id":6566,"parentId":6541,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776949328543,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":86034,"timestamp":7342382286914,"id":6542,"parentId":6541,"tags":{},"startTime":1776949328506,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2390,"timestamp":7342382390603,"id":6570,"parentId":6569,"tags":{},"startTime":1776949328610,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342382393020,"id":6572,"parentId":6569,"tags":{},"startTime":1776949328612,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2550,"timestamp":7342382393035,"id":6573,"parentId":6569,"tags":{},"startTime":1776949328612,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342382395617,"id":6574,"parentId":6569,"tags":{},"startTime":1776949328615,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342382395635,"id":6575,"parentId":6569,"tags":{},"startTime":1776949328615,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3924,"timestamp":7342382393012,"id":6571,"parentId":6569,"tags":{},"startTime":1776949328612,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":676,"timestamp":7342382398692,"id":6576,"parentId":6569,"tags":{},"startTime":1776949328618,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4113,"timestamp":7342382399375,"id":6577,"parentId":6569,"tags":{},"startTime":1776949328619,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":740,"timestamp":7342382404537,"id":6578,"parentId":6569,"tags":{},"startTime":1776949328624,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":68,"timestamp":7342382405277,"id":6579,"parentId":6569,"tags":{},"startTime":1776949328625,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":57,"timestamp":7342382405339,"id":6580,"parentId":6569,"tags":{},"startTime":1776949328625,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2954,"timestamp":7342382405398,"id":6581,"parentId":6569,"tags":{},"startTime":1776949328625,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":34352,"timestamp":7342382379823,"id":6569,"parentId":6541,"tags":{},"startTime":1776949328599,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":130643,"timestamp":7342382286693,"id":6541,"parentId":6502,"tags":{"name":"server"},"startTime":1776949328506,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":6488,"timestamp":7342382417372,"id":6582,"parentId":6502,"tags":{},"startTime":1776949328637,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":464174,"timestamp":7342381961157,"id":6502,"parentId":3,"tags":{"trigger":"src/app/(auth)/dashboard/page.tsx"},"startTime":1776949328181,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":36786,"timestamp":7342382435246,"id":6583,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949328655,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":3,"timestamp":7342382472137,"id":6584,"parentId":6583,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"467599360","memory.heapUsed":"428522248","memory.heapTotal":"465616896"},"startTime":1776949328692,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9834,"timestamp":7342388968496,"id":6598,"parentId":6588,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11137,"timestamp":7342388968206,"id":6589,"parentId":6588,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11568,"timestamp":7342388968460,"id":6594,"parentId":6588,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11587,"timestamp":7342388968478,"id":6596,"parentId":6588,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14187,"timestamp":7342388968449,"id":6593,"parentId":6588,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14931,"timestamp":7342388968428,"id":6591,"parentId":6588,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2138,"timestamp":7342388981228,"id":6604,"parentId":6603,"tags":{},"startTime":1776949335201,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":22702,"timestamp":7342388968408,"id":6590,"parentId":6588,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18505,"timestamp":7342388977096,"id":6602,"parentId":6601,"tags":{},"startTime":1776949335196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18689,"timestamp":7342388976915,"id":6601,"parentId":6600,"tags":{},"startTime":1776949335196,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":30995,"timestamp":7342388976728,"id":6600,"parentId":6587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776949335196,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":101591,"timestamp":7342388983480,"id":6606,"parentId":6605,"tags":{},"startTime":1776949335203,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":101866,"timestamp":7342388983432,"id":6605,"parentId":6603,"tags":{},"startTime":1776949335203,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":19992,"timestamp":7342389085340,"id":6607,"parentId":6603,"tags":{"astUsed":"true"},"startTime":1776949335305,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":125756,"timestamp":7342388981129,"id":6603,"parentId":6599,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949335201,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":137595,"timestamp":7342388975998,"id":6599,"parentId":6587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949335195,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":24,"timestamp":7342389113859,"id":6608,"parentId":6599,"tags":{},"startTime":1776949335333,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":145543,"timestamp":7342388968440,"id":6592,"parentId":6588,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":149442,"timestamp":7342388968488,"id":6597,"parentId":6588,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":164855,"timestamp":7342388968470,"id":6595,"parentId":6588,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949335188,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":169046,"timestamp":7342388964303,"id":6588,"parentId":6587,"tags":{},"startTime":1776949335184,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3900,"timestamp":7342389142037,"id":6610,"parentId":6609,"tags":{},"startTime":1776949335361,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7342389145964,"id":6612,"parentId":6609,"tags":{},"startTime":1776949335365,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":361,"timestamp":7342389145979,"id":6613,"parentId":6609,"tags":{},"startTime":1776949335365,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":10,"timestamp":7342389146375,"id":6614,"parentId":6609,"tags":{},"startTime":1776949335366,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342389146402,"id":6615,"parentId":6609,"tags":{},"startTime":1776949335366,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3771,"timestamp":7342389145955,"id":6611,"parentId":6609,"tags":{},"startTime":1776949335365,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":408,"timestamp":7342389155568,"id":6616,"parentId":6609,"tags":{},"startTime":1776949335375,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3208,"timestamp":7342389155984,"id":6617,"parentId":6609,"tags":{},"startTime":1776949335375,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":4534,"timestamp":7342389161009,"id":6618,"parentId":6609,"tags":{},"startTime":1776949335380,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":100,"timestamp":7342389165541,"id":6619,"parentId":6609,"tags":{},"startTime":1776949335385,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":72,"timestamp":7342389165634,"id":6620,"parentId":6609,"tags":{},"startTime":1776949335385,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4177,"timestamp":7342389165708,"id":6621,"parentId":6609,"tags":{},"startTime":1776949335385,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":67,"timestamp":7342389170755,"id":6623,"parentId":6587,"tags":{},"startTime":1776949335390,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":109,"timestamp":7342389170717,"id":6622,"parentId":6587,"tags":{},"startTime":1776949335390,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":36076,"timestamp":7342389136388,"id":6609,"parentId":6587,"tags":{},"startTime":1776949335356,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":209857,"timestamp":7342388962635,"id":6587,"parentId":6585,"tags":{"name":"client"},"startTime":1776949335182,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7112,"timestamp":7342389172510,"id":6624,"parentId":6585,"tags":{},"startTime":1776949335392,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":241546,"timestamp":7342388938503,"id":6585,"parentId":3,"tags":{"trigger":"src/app/(auth)/recommendations/page.tsx"},"startTime":1776949335158,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7342389183334,"id":6627,"parentId":3,"tags":{},"startTime":1776949335403,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7984,"timestamp":7342389185798,"id":6631,"parentId":6626,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949335405,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8476,"timestamp":7342389185788,"id":6629,"parentId":6626,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949335405,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8915,"timestamp":7342389185721,"id":6628,"parentId":6626,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949335405,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2708,"timestamp":7342389192673,"id":6634,"parentId":6633,"tags":{},"startTime":1776949335412,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2800,"timestamp":7342389192589,"id":6633,"parentId":6632,"tags":{},"startTime":1776949335412,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":3775,"timestamp":7342389192238,"id":6632,"parentId":6625,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776949335412,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":256000,"timestamp":7342388939319,"id":6635,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/sectors","isPageHidden":false},"startTime":1776949335416,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11691,"timestamp":7342389185795,"id":6630,"parentId":6626,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949335405,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8225,"timestamp":7342389208211,"id":6652,"parentId":6651,"tags":{},"startTime":1776949335428,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8306,"timestamp":7342389208136,"id":6651,"parentId":6650,"tags":{},"startTime":1776949335428,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":12434,"timestamp":7342389207998,"id":6650,"parentId":6625,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776949335427,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":49274,"timestamp":7342389181738,"id":6626,"parentId":6625,"tags":{},"startTime":1776949335401,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1936,"timestamp":7342389239807,"id":6654,"parentId":6653,"tags":{},"startTime":1776949335459,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342389241762,"id":6656,"parentId":6653,"tags":{},"startTime":1776949335461,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2752,"timestamp":7342389241777,"id":6657,"parentId":6653,"tags":{},"startTime":1776949335461,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342389244555,"id":6658,"parentId":6653,"tags":{},"startTime":1776949335464,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342389244569,"id":6659,"parentId":6653,"tags":{},"startTime":1776949335464,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3882,"timestamp":7342389241757,"id":6655,"parentId":6653,"tags":{},"startTime":1776949335461,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":468,"timestamp":7342389247001,"id":6660,"parentId":6653,"tags":{},"startTime":1776949335466,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2706,"timestamp":7342389247476,"id":6661,"parentId":6653,"tags":{},"startTime":1776949335467,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":584,"timestamp":7342389250910,"id":6662,"parentId":6653,"tags":{},"startTime":1776949335470,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":58,"timestamp":7342389251494,"id":6663,"parentId":6653,"tags":{},"startTime":1776949335471,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":52,"timestamp":7342389251546,"id":6664,"parentId":6653,"tags":{},"startTime":1776949335471,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3098,"timestamp":7342389251600,"id":6665,"parentId":6653,"tags":{},"startTime":1776949335471,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":23131,"timestamp":7342389233316,"id":6653,"parentId":6625,"tags":{},"startTime":1776949335453,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":78746,"timestamp":7342389181548,"id":6625,"parentId":6586,"tags":{"name":"server"},"startTime":1776949335401,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2467,"timestamp":7342389260332,"id":6666,"parentId":6586,"tags":{},"startTime":1776949335480,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":324043,"timestamp":7342388939226,"id":6586,"parentId":3,"tags":{"trigger":"src/app/(auth)/recommendations/page.tsx"},"startTime":1776949335159,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":17338,"timestamp":7342389268406,"id":6667,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949335488,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342389285768,"id":6668,"parentId":6667,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"485179392","memory.heapUsed":"405605848","memory.heapTotal":"467419136"},"startTime":1776949335505,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12110,"timestamp":7342438964384,"id":6676,"parentId":6673,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949385184,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12154,"timestamp":7342438964387,"id":6677,"parentId":6673,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949385184,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":22169,"timestamp":7342438964098,"id":6674,"parentId":6673,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949385184,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":24034,"timestamp":7342438974300,"id":6678,"parentId":6675,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776949385194,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2584,"timestamp":7342439003083,"id":6681,"parentId":6680,"tags":{},"startTime":1776949385223,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2756,"timestamp":7342439002916,"id":6680,"parentId":6679,"tags":{},"startTime":1776949385222,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":3413,"timestamp":7342439002647,"id":6679,"parentId":6678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"rsc"},"startTime":1776949385222,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":42695,"timestamp":7342438964374,"id":6675,"parentId":6673,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949385184,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":700,"timestamp":7342439018763,"id":6699,"parentId":6672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776949385238,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6358,"timestamp":7342439022798,"id":6702,"parentId":6701,"tags":{},"startTime":1776949385242,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6442,"timestamp":7342439022721,"id":6701,"parentId":6700,"tags":{},"startTime":1776949385242,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":11027,"timestamp":7342439022469,"id":6700,"parentId":6699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"ssr"},"startTime":1776949385242,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":90778,"timestamp":7342438961059,"id":6673,"parentId":6672,"tags":{},"startTime":1776949385181,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1984,"timestamp":7342439062293,"id":6704,"parentId":6703,"tags":{},"startTime":1776949385282,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342439064296,"id":6706,"parentId":6703,"tags":{},"startTime":1776949385284,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":7647,"timestamp":7342439064313,"id":6707,"parentId":6703,"tags":{},"startTime":1776949385284,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342439072001,"id":6708,"parentId":6703,"tags":{},"startTime":1776949385291,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342439072015,"id":6709,"parentId":6703,"tags":{},"startTime":1776949385291,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":9642,"timestamp":7342439064289,"id":6705,"parentId":6703,"tags":{},"startTime":1776949385284,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":669,"timestamp":7342439076820,"id":6710,"parentId":6703,"tags":{},"startTime":1776949385296,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3626,"timestamp":7342439077507,"id":6711,"parentId":6703,"tags":{},"startTime":1776949385297,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1167,"timestamp":7342439082297,"id":6712,"parentId":6703,"tags":{},"startTime":1776949385302,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":192,"timestamp":7342439083463,"id":6713,"parentId":6703,"tags":{},"startTime":1776949385303,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":99,"timestamp":7342439083636,"id":6714,"parentId":6703,"tags":{},"startTime":1776949385303,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2349,"timestamp":7342439083748,"id":6715,"parentId":6703,"tags":{},"startTime":1776949385303,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":33414,"timestamp":7342439055172,"id":6703,"parentId":6672,"tags":{},"startTime":1776949385275,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":131265,"timestamp":7342438960265,"id":6672,"parentId":6670,"tags":{"name":"server"},"startTime":1776949385180,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4596,"timestamp":7342439091556,"id":6716,"parentId":6670,"tags":{},"startTime":1776949385311,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":145632,"timestamp":7342438950807,"id":6670,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949385170,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":662,"timestamp":7342439108408,"id":6729,"parentId":6728,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776949385328,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6070,"timestamp":7342439105200,"id":6719,"parentId":6718,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6805,"timestamp":7342439105248,"id":6724,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6885,"timestamp":7342439105250,"id":6725,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6953,"timestamp":7342439105253,"id":6726,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8440,"timestamp":7342439105242,"id":6722,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20046,"timestamp":7342439105245,"id":6723,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8291,"timestamp":7342439117176,"id":6732,"parentId":6731,"tags":{},"startTime":1776949385337,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8369,"timestamp":7342439117099,"id":6731,"parentId":6730,"tags":{},"startTime":1776949385337,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":12336,"timestamp":7342439116513,"id":6730,"parentId":6729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"app-pages-browser"},"startTime":1776949385336,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24258,"timestamp":7342439105234,"id":6720,"parentId":6718,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24256,"timestamp":7342439105239,"id":6721,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27850,"timestamp":7342439105258,"id":6727,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":29667,"timestamp":7342439105260,"id":6728,"parentId":6718,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949385325,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":36392,"timestamp":7342439098585,"id":6718,"parentId":6717,"tags":{},"startTime":1776949385318,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2150,"timestamp":7342439146262,"id":6734,"parentId":6733,"tags":{},"startTime":1776949385366,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342439148434,"id":6736,"parentId":6733,"tags":{},"startTime":1776949385368,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":246,"timestamp":7342439148448,"id":6737,"parentId":6733,"tags":{},"startTime":1776949385368,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342439148711,"id":6738,"parentId":6733,"tags":{},"startTime":1776949385368,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342439148722,"id":6739,"parentId":6733,"tags":{},"startTime":1776949385368,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4745,"timestamp":7342439148427,"id":6735,"parentId":6733,"tags":{},"startTime":1776949385368,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":354,"timestamp":7342439156509,"id":6740,"parentId":6733,"tags":{},"startTime":1776949385376,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4520,"timestamp":7342439156870,"id":6741,"parentId":6733,"tags":{},"startTime":1776949385376,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":4845,"timestamp":7342439162694,"id":6742,"parentId":6733,"tags":{},"startTime":1776949385382,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":132,"timestamp":7342439167538,"id":6743,"parentId":6733,"tags":{},"startTime":1776949385387,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":73,"timestamp":7342439167665,"id":6744,"parentId":6733,"tags":{},"startTime":1776949385387,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2890,"timestamp":7342439167740,"id":6745,"parentId":6733,"tags":{},"startTime":1776949385387,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":109,"timestamp":7342439171544,"id":6747,"parentId":6717,"tags":{},"startTime":1776949385391,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":183,"timestamp":7342439171488,"id":6746,"parentId":6717,"tags":{},"startTime":1776949385391,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":33796,"timestamp":7342439139763,"id":6733,"parentId":6717,"tags":{},"startTime":1776949385359,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":75211,"timestamp":7342439098370,"id":6717,"parentId":6698,"tags":{"name":"client"},"startTime":1776949385318,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4524,"timestamp":7342439173603,"id":6748,"parentId":6698,"tags":{},"startTime":1776949385393,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":227629,"timestamp":7342438950883,"id":6671,"tags":{"trigger":"/strategy","isTurbopack":false},"startTime":1776949385170,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":170307,"timestamp":7342439008477,"id":6698,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949385228,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":2,"timestamp":7342439180867,"id":6749,"parentId":3,"tags":{},"startTime":1776949385400,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":280980,"timestamp":7342438912499,"id":6669,"tags":{"url":"/strategy?_rsc=3e40m","isTurbopack":false},"startTime":1776949385132,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342439193507,"id":6750,"parentId":6669,"tags":{"url":"/strategy?_rsc=3e40m","memory.rss":"340246528","memory.heapUsed":"426801456","memory.heapTotal":"470237184"},"startTime":1776949385413,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":188000,"timestamp":7342439008832,"id":6751,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","[project]/node_modules/next/dist/client/components/not-found-error.js"],"page":"/sectors","isPageHidden":false},"startTime":1776949385416,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":11096,"timestamp":7342439197543,"id":6752,"tags":{"url":"/strategy?_rsc=g4vg8","isTurbopack":false},"startTime":1776949385417,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342439208658,"id":6753,"parentId":6752,"tags":{"url":"/strategy?_rsc=g4vg8","memory.rss":"340672512","memory.heapUsed":"431581056","memory.heapTotal":"470237184"},"startTime":1776949385428,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6201,"timestamp":7342450587483,"id":6759,"parentId":6757,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949396807,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6216,"timestamp":7342450587492,"id":6760,"parentId":6757,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949396807,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7357,"timestamp":7342450587210,"id":6758,"parentId":6757,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949396807,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":25367,"timestamp":7342450584252,"id":6757,"parentId":6756,"tags":{},"startTime":1776949396804,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":700,"timestamp":7342450611244,"id":6774,"parentId":6773,"tags":{},"startTime":1776949396831,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342450611953,"id":6776,"parentId":6773,"tags":{},"startTime":1776949396831,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":830,"timestamp":7342450611967,"id":6777,"parentId":6773,"tags":{},"startTime":1776949396831,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342450612813,"id":6778,"parentId":6773,"tags":{},"startTime":1776949396832,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342450612824,"id":6779,"parentId":6773,"tags":{},"startTime":1776949396832,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1289,"timestamp":7342450611949,"id":6775,"parentId":6773,"tags":{},"startTime":1776949396831,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":149,"timestamp":7342450613907,"id":6780,"parentId":6773,"tags":{},"startTime":1776949396833,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":778,"timestamp":7342450614062,"id":6781,"parentId":6773,"tags":{},"startTime":1776949396834,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":561,"timestamp":7342450615294,"id":6782,"parentId":6773,"tags":{},"startTime":1776949396835,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":56,"timestamp":7342450615855,"id":6783,"parentId":6773,"tags":{},"startTime":1776949396835,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":21,"timestamp":7342450615905,"id":6784,"parentId":6773,"tags":{},"startTime":1776949396835,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":278,"timestamp":7342450615928,"id":6785,"parentId":6773,"tags":{},"startTime":1776949396835,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":6755,"timestamp":7342450610707,"id":6773,"parentId":6756,"tags":{},"startTime":1776949396830,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":35091,"timestamp":7342450583868,"id":6756,"parentId":6755,"tags":{"name":"server"},"startTime":1776949396803,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7145,"timestamp":7342450618977,"id":6786,"parentId":6755,"tags":{},"startTime":1776949396838,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":45044,"timestamp":7342450581316,"id":6755,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949396801,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11087,"timestamp":7342450636638,"id":6797,"parentId":6788,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13237,"timestamp":7342450636632,"id":6795,"parentId":6788,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13412,"timestamp":7342450636523,"id":6789,"parentId":6788,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15582,"timestamp":7342450636629,"id":6794,"parentId":6788,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19937,"timestamp":7342450636589,"id":6793,"parentId":6788,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20229,"timestamp":7342450636575,"id":6790,"parentId":6788,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20365,"timestamp":7342450636580,"id":6791,"parentId":6788,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6280,"timestamp":7342450652840,"id":6800,"parentId":6799,"tags":{},"startTime":1776949396872,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":165772,"timestamp":7342450662282,"id":6802,"parentId":6801,"tags":{},"startTime":1776949396882,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":168741,"timestamp":7342450659661,"id":6801,"parentId":6799,"tags":{},"startTime":1776949396879,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":23937,"timestamp":7342450828498,"id":6803,"parentId":6799,"tags":{"astUsed":"true"},"startTime":1776949397048,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":201661,"timestamp":7342450652558,"id":6799,"parentId":6798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949396872,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":243372,"timestamp":7342450643643,"id":6798,"parentId":6787,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949396863,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":133,"timestamp":7342450904208,"id":6806,"parentId":6798,"tags":{},"startTime":1776949397124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":270777,"timestamp":7342450636585,"id":6792,"parentId":6788,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":288637,"timestamp":7342450636635,"id":6796,"parentId":6788,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949396856,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":296959,"timestamp":7342450628338,"id":6788,"parentId":6787,"tags":{},"startTime":1776949396848,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2564,"timestamp":7342450953445,"id":6809,"parentId":6808,"tags":{},"startTime":1776949397173,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342450956036,"id":6811,"parentId":6808,"tags":{},"startTime":1776949397176,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":311,"timestamp":7342450956054,"id":6812,"parentId":6808,"tags":{},"startTime":1776949397176,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":8,"timestamp":7342450956385,"id":6813,"parentId":6808,"tags":{},"startTime":1776949397176,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342450956407,"id":6814,"parentId":6808,"tags":{},"startTime":1776949397176,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1681,"timestamp":7342450956028,"id":6810,"parentId":6808,"tags":{},"startTime":1776949397175,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1185,"timestamp":7342450964031,"id":6815,"parentId":6808,"tags":{},"startTime":1776949397183,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":12246,"timestamp":7342450965228,"id":6816,"parentId":6808,"tags":{},"startTime":1776949397185,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":5034,"timestamp":7342450981146,"id":6817,"parentId":6808,"tags":{},"startTime":1776949397201,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":172,"timestamp":7342450986179,"id":6818,"parentId":6808,"tags":{},"startTime":1776949397206,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":100,"timestamp":7342450986340,"id":6819,"parentId":6808,"tags":{},"startTime":1776949397206,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1465,"timestamp":7342450986446,"id":6820,"parentId":6808,"tags":{},"startTime":1776949397206,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":55,"timestamp":7342450989475,"id":6822,"parentId":6787,"tags":{},"startTime":1776949397209,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":106,"timestamp":7342450989431,"id":6821,"parentId":6787,"tags":{},"startTime":1776949397209,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":47897,"timestamp":7342450945197,"id":6808,"parentId":6787,"tags":{},"startTime":1776949397165,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":364997,"timestamp":7342450628129,"id":6787,"parentId":6754,"tags":{"name":"client"},"startTime":1776949396848,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":13713,"timestamp":7342450993150,"id":6823,"parentId":6754,"tags":{},"startTime":1776949397213,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":42,"timestamp":7342451007376,"id":6824,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949397227,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":8,"timestamp":7342451014833,"id":6827,"parentId":3,"tags":{},"startTime":1776949397234,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":47000,"timestamp":7342451007640,"id":6831,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next-themes/dist/index.js","[project]/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","[project]/src/app/(auth)/sectors/page.tsx","[project]/src/app/globals.css"],"page":"/strategy","isPageHidden":false},"startTime":1776949397277,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10787,"timestamp":7342451048448,"id":6829,"parentId":6826,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949397268,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10802,"timestamp":7342451048455,"id":6830,"parentId":6826,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949397268,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12501,"timestamp":7342451048402,"id":6828,"parentId":6826,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949397268,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":75457,"timestamp":7342451011063,"id":6826,"parentId":6825,"tags":{},"startTime":1776949397231,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":869,"timestamp":7342451088219,"id":6845,"parentId":6844,"tags":{},"startTime":1776949397308,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342451089101,"id":6847,"parentId":6844,"tags":{},"startTime":1776949397309,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1398,"timestamp":7342451089114,"id":6848,"parentId":6844,"tags":{},"startTime":1776949397309,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342451090544,"id":6849,"parentId":6844,"tags":{},"startTime":1776949397310,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342451090560,"id":6850,"parentId":6844,"tags":{},"startTime":1776949397310,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1929,"timestamp":7342451089096,"id":6846,"parentId":6844,"tags":{},"startTime":1776949397309,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":344,"timestamp":7342451091872,"id":6851,"parentId":6844,"tags":{},"startTime":1776949397311,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5023,"timestamp":7342451092259,"id":6852,"parentId":6844,"tags":{},"startTime":1776949397312,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":3761,"timestamp":7342451098199,"id":6853,"parentId":6844,"tags":{},"startTime":1776949397318,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":176,"timestamp":7342451101956,"id":6854,"parentId":6844,"tags":{},"startTime":1776949397321,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":132,"timestamp":7342451102116,"id":6855,"parentId":6844,"tags":{},"startTime":1776949397322,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":292,"timestamp":7342451102255,"id":6856,"parentId":6844,"tags":{},"startTime":1776949397322,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":18304,"timestamp":7342451087603,"id":6844,"parentId":6825,"tags":{},"startTime":1776949397307,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":98462,"timestamp":7342451008923,"id":6825,"parentId":6804,"tags":{"name":"server"},"startTime":1776949397228,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":19604,"timestamp":7342451107417,"id":6857,"parentId":6804,"tags":{},"startTime":1776949397327,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":7,"timestamp":7342451127325,"id":6858,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949397347,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":3861,"timestamp":7342451128298,"id":6860,"parentId":6859,"tags":{},"startTime":1776949397348,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":15,"timestamp":7342451132514,"id":6862,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342451132536,"id":6864,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":5,"timestamp":7342451132546,"id":6865,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342451132558,"id":6866,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342451132572,"id":6867,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":49,"timestamp":7342451132534,"id":6863,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2,"timestamp":7342451132640,"id":6868,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2,"timestamp":7342451132646,"id":6869,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":32,"timestamp":7342451132660,"id":6870,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":8,"timestamp":7342451132692,"id":6871,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":3,"timestamp":7342451132698,"id":6872,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7,"timestamp":7342451132703,"id":6873,"parentId":6861,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":356,"timestamp":7342451132494,"id":6861,"parentId":6859,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":4938,"timestamp":7342451127926,"id":6859,"parentId":6805,"tags":{"name":"edge-server"},"startTime":1776949397347,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":8568,"timestamp":7342451132875,"id":6874,"parentId":6805,"tags":{},"startTime":1776949397352,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":273135,"timestamp":7342450868509,"id":6805,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949397088,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":2448,"timestamp":7342451143893,"id":6885,"parentId":6876,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":3382,"timestamp":7342451143830,"id":6877,"parentId":6876,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3847,"timestamp":7342451143888,"id":6883,"parentId":6876,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4471,"timestamp":7342451143885,"id":6882,"parentId":6876,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4481,"timestamp":7342451143879,"id":6880,"parentId":6876,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7563,"timestamp":7342451143882,"id":6881,"parentId":6876,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11192,"timestamp":7342451143869,"id":6878,"parentId":6876,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11194,"timestamp":7342451143874,"id":6879,"parentId":6876,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17530,"timestamp":7342451143891,"id":6884,"parentId":6876,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":17998,"timestamp":7342451143505,"id":6876,"parentId":6875,"tags":{},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3556,"timestamp":7342451176454,"id":6887,"parentId":6886,"tags":{},"startTime":1776949397396,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342451180037,"id":6889,"parentId":6886,"tags":{},"startTime":1776949397400,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":148,"timestamp":7342451180050,"id":6890,"parentId":6886,"tags":{},"startTime":1776949397400,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342451180218,"id":6891,"parentId":6886,"tags":{},"startTime":1776949397400,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342451180229,"id":6892,"parentId":6886,"tags":{},"startTime":1776949397400,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1490,"timestamp":7342451180029,"id":6888,"parentId":6886,"tags":{},"startTime":1776949397399,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":277,"timestamp":7342451189849,"id":6893,"parentId":6886,"tags":{},"startTime":1776949397409,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3938,"timestamp":7342451190136,"id":6894,"parentId":6886,"tags":{},"startTime":1776949397410,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":4037,"timestamp":7342451195748,"id":6895,"parentId":6886,"tags":{},"startTime":1776949397415,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":86,"timestamp":7342451199784,"id":6896,"parentId":6886,"tags":{},"startTime":1776949397419,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":73,"timestamp":7342451199864,"id":6897,"parentId":6886,"tags":{},"startTime":1776949397419,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":653,"timestamp":7342451199939,"id":6898,"parentId":6886,"tags":{},"startTime":1776949397419,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":43,"timestamp":7342451200828,"id":6900,"parentId":6875,"tags":{},"startTime":1776949397420,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":81,"timestamp":7342451200794,"id":6899,"parentId":6875,"tags":{},"startTime":1776949397420,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":34768,"timestamp":7342451167141,"id":6886,"parentId":6875,"tags":{},"startTime":1776949397387,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":58631,"timestamp":7342451143296,"id":6875,"parentId":3,"tags":{"name":"client"},"startTime":1776949397363,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4785,"timestamp":7342451201940,"id":6901,"parentId":3,"tags":{},"startTime":1776949397421,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":1,"timestamp":7342451209580,"id":6904,"parentId":3,"tags":{},"startTime":1776949397429,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3628,"timestamp":7342451211005,"id":6906,"parentId":6903,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949397430,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3632,"timestamp":7342451211009,"id":6907,"parentId":6903,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949397430,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4036,"timestamp":7342451210973,"id":6905,"parentId":6903,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949397430,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":18900,"timestamp":7342451208374,"id":6903,"parentId":6902,"tags":{},"startTime":1776949397428,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":641,"timestamp":7342451228707,"id":6921,"parentId":6920,"tags":{},"startTime":1776949397448,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342451229363,"id":6923,"parentId":6920,"tags":{},"startTime":1776949397449,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":665,"timestamp":7342451229376,"id":6924,"parentId":6920,"tags":{},"startTime":1776949397449,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342451230057,"id":6925,"parentId":6920,"tags":{},"startTime":1776949397450,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342451230068,"id":6926,"parentId":6920,"tags":{},"startTime":1776949397450,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1017,"timestamp":7342451229359,"id":6922,"parentId":6920,"tags":{},"startTime":1776949397449,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":113,"timestamp":7342451230829,"id":6927,"parentId":6920,"tags":{},"startTime":1776949397450,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":664,"timestamp":7342451230946,"id":6928,"parentId":6920,"tags":{},"startTime":1776949397450,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":471,"timestamp":7342451231972,"id":6929,"parentId":6920,"tags":{},"startTime":1776949397451,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":35,"timestamp":7342451232444,"id":6930,"parentId":6920,"tags":{},"startTime":1776949397452,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":20,"timestamp":7342451232474,"id":6931,"parentId":6920,"tags":{},"startTime":1776949397452,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":60,"timestamp":7342451232496,"id":6932,"parentId":6920,"tags":{},"startTime":1776949397452,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":5764,"timestamp":7342451228011,"id":6920,"parentId":6902,"tags":{},"startTime":1776949397447,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":26632,"timestamp":7342451208204,"id":6902,"parentId":3,"tags":{"name":"server"},"startTime":1776949397428,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3321,"timestamp":7342451234851,"id":6933,"parentId":3,"tags":{},"startTime":1776949397454,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":350388,"timestamp":7342450909612,"id":6807,"tags":{"url":"/strategy?_rsc=jr9a0","isTurbopack":false},"startTime":1776949397129,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":24,"timestamp":7342451260032,"id":6934,"parentId":6807,"tags":{"url":"/strategy?_rsc=jr9a0","memory.rss":"449445888","memory.heapUsed":"350318248","memory.heapTotal":"478658560"},"startTime":1776949397480,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":39982,"timestamp":7342451261849,"id":6935,"tags":{"url":"/strategy?_rsc=jr9a0","isTurbopack":false},"startTime":1776949397481,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342451301860,"id":6936,"parentId":6935,"tags":{"url":"/strategy?_rsc=jr9a0","memory.rss":"447725568","memory.heapUsed":"342898888","memory.heapTotal":"476872704"},"startTime":1776949397521,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":49246,"timestamp":7342587266836,"id":6948,"parentId":6939,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":56328,"timestamp":7342587266458,"id":6940,"parentId":6939,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":59948,"timestamp":7342587266828,"id":6946,"parentId":6939,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":65304,"timestamp":7342587266825,"id":6945,"parentId":6939,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":74217,"timestamp":7342587266821,"id":6944,"parentId":6939,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":75292,"timestamp":7342587266812,"id":6942,"parentId":6939,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7924,"timestamp":7342587334203,"id":6951,"parentId":6950,"tags":{},"startTime":1776949533554,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":91689,"timestamp":7342587266797,"id":6941,"parentId":6939,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":299106,"timestamp":7342587342292,"id":6953,"parentId":6952,"tags":{},"startTime":1776949533562,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":301204,"timestamp":7342587342190,"id":6952,"parentId":6950,"tags":{},"startTime":1776949533562,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":27930,"timestamp":7342587643480,"id":6954,"parentId":6950,"tags":{"astUsed":"true"},"startTime":1776949533863,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":344867,"timestamp":7342587333260,"id":6950,"parentId":6949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949533553,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":398253,"timestamp":7342587301645,"id":6949,"parentId":6938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949533521,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":45,"timestamp":7342587702880,"id":6957,"parentId":6949,"tags":{},"startTime":1776949533923,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":437050,"timestamp":7342587266816,"id":6943,"parentId":6939,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":439409,"timestamp":7342587266833,"id":6947,"parentId":6939,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949533486,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":441329,"timestamp":7342587264946,"id":6939,"parentId":6938,"tags":{},"startTime":1776949533485,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2939,"timestamp":7342588255539,"id":6961,"parentId":6960,"tags":{},"startTime":1776949534475,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":5,"timestamp":7342588258514,"id":6963,"parentId":6960,"tags":{},"startTime":1776949534478,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":206,"timestamp":7342588258530,"id":6964,"parentId":6960,"tags":{},"startTime":1776949534478,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342588258763,"id":6965,"parentId":6960,"tags":{},"startTime":1776949534478,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7342588258778,"id":6966,"parentId":6960,"tags":{},"startTime":1776949534478,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3125,"timestamp":7342588258506,"id":6962,"parentId":6960,"tags":{},"startTime":1776949534478,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":435,"timestamp":7342588265891,"id":6967,"parentId":6960,"tags":{},"startTime":1776949534486,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":7131,"timestamp":7342588266337,"id":6968,"parentId":6960,"tags":{},"startTime":1776949534486,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":7193,"timestamp":7342588275076,"id":6969,"parentId":6960,"tags":{},"startTime":1776949534495,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":383,"timestamp":7342588282267,"id":6970,"parentId":6960,"tags":{},"startTime":1776949534502,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":102,"timestamp":7342588282637,"id":6971,"parentId":6960,"tags":{},"startTime":1776949534502,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1468,"timestamp":7342588282743,"id":6972,"parentId":6960,"tags":{},"startTime":1776949534502,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":53,"timestamp":7342588285087,"id":6974,"parentId":6938,"tags":{},"startTime":1776949534505,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":98,"timestamp":7342588285047,"id":6973,"parentId":6938,"tags":{},"startTime":1776949534505,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":39188,"timestamp":7342588247474,"id":6960,"parentId":6938,"tags":{},"startTime":1776949534467,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1042978,"timestamp":7342587243708,"id":6938,"parentId":6937,"tags":{"name":"client"},"startTime":1776949533463,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":10107,"timestamp":7342588286701,"id":6975,"parentId":6937,"tags":{},"startTime":1776949534506,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":56,"timestamp":7342588297675,"id":6976,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949534517,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":17,"timestamp":7342588302290,"id":6979,"parentId":3,"tags":{},"startTime":1776949534522,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10807,"timestamp":7342588304847,"id":6982,"parentId":6978,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534524,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10815,"timestamp":7342588304850,"id":6983,"parentId":6978,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534525,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13025,"timestamp":7342588304842,"id":6981,"parentId":6978,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534524,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":19000,"timestamp":7342588299396,"id":6985,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/strategy","isPageHidden":false},"startTime":1776949534539,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":9545,"timestamp":7342588314527,"id":6984,"parentId":6980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776949534534,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20458,"timestamp":7342588304793,"id":6980,"parentId":6978,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534524,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":39954,"timestamp":7342588299759,"id":6978,"parentId":6977,"tags":{},"startTime":1776949534519,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":947,"timestamp":7342588341144,"id":7001,"parentId":7000,"tags":{},"startTime":1776949534561,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342588342104,"id":7003,"parentId":7000,"tags":{},"startTime":1776949534562,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1553,"timestamp":7342588342118,"id":7004,"parentId":7000,"tags":{},"startTime":1776949534562,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342588343692,"id":7005,"parentId":7000,"tags":{},"startTime":1776949534563,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342588343712,"id":7006,"parentId":7000,"tags":{},"startTime":1776949534563,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2200,"timestamp":7342588342100,"id":7002,"parentId":7000,"tags":{},"startTime":1776949534562,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":214,"timestamp":7342588344892,"id":7007,"parentId":7000,"tags":{},"startTime":1776949534565,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":906,"timestamp":7342588345111,"id":7008,"parentId":7000,"tags":{},"startTime":1776949534565,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":703,"timestamp":7342588346409,"id":7009,"parentId":7000,"tags":{},"startTime":1776949534566,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":60,"timestamp":7342588347111,"id":7010,"parentId":7000,"tags":{},"startTime":1776949534567,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":31,"timestamp":7342588347165,"id":7011,"parentId":7000,"tags":{},"startTime":1776949534567,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":737,"timestamp":7342588347198,"id":7012,"parentId":7000,"tags":{},"startTime":1776949534567,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":8826,"timestamp":7342588340611,"id":7000,"parentId":6977,"tags":{},"startTime":1776949534560,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":52163,"timestamp":7342588299090,"id":6977,"parentId":6955,"tags":{"name":"server"},"startTime":1776949534519,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2682,"timestamp":7342588351281,"id":7013,"parentId":6955,"tags":{},"startTime":1776949534571,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":6,"timestamp":7342588354204,"id":7014,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949534574,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":4347,"timestamp":7342588355412,"id":7016,"parentId":7015,"tags":{},"startTime":1776949534575,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":16,"timestamp":7342588359897,"id":7018,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342588359920,"id":7020,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6,"timestamp":7342588359929,"id":7021,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":2,"timestamp":7342588359941,"id":7022,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342588359954,"id":7023,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":83,"timestamp":7342588359917,"id":7019,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2,"timestamp":7342588360054,"id":7024,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4,"timestamp":7342588360060,"id":7025,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":29,"timestamp":7342588360076,"id":7026,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":9,"timestamp":7342588360106,"id":7027,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":4,"timestamp":7342588360112,"id":7028,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":9,"timestamp":7342588360118,"id":7029,"parentId":7017,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":410,"timestamp":7342588359874,"id":7017,"parentId":7015,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":5106,"timestamp":7342588355191,"id":7015,"parentId":6956,"tags":{"name":"edge-server"},"startTime":1776949534575,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2763,"timestamp":7342588360308,"id":7030,"parentId":6956,"tags":{},"startTime":1776949534580,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-edge-server","duration":675445,"timestamp":7342587687859,"id":6956,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949533908,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5094,"timestamp":7342588365649,"id":7041,"parentId":7032,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5384,"timestamp":7342588365591,"id":7033,"parentId":7032,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6215,"timestamp":7342588365644,"id":7039,"parentId":7032,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9117,"timestamp":7342588365641,"id":7038,"parentId":7032,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9131,"timestamp":7342588365634,"id":7036,"parentId":7032,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17861,"timestamp":7342588365638,"id":7037,"parentId":7032,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":25448,"timestamp":7342588365626,"id":7034,"parentId":7032,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":25450,"timestamp":7342588365631,"id":7035,"parentId":7032,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":38063,"timestamp":7342588365647,"id":7040,"parentId":7032,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"next-client-pages-loader","duration":63,"timestamp":7342588405009,"id":7044,"parentId":7043,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1776949534625,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":2693,"timestamp":7342588404448,"id":7043,"parentId":7042,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1776949534624,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":32263,"timestamp":7342588410234,"id":7047,"parentId":7046,"tags":{},"startTime":1776949534630,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32695,"timestamp":7342588409993,"id":7046,"parentId":7045,"tags":{},"startTime":1776949534630,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37122,"timestamp":7342588409778,"id":7045,"parentId":7043,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1776949534629,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":85363,"timestamp":7342588365652,"id":7042,"parentId":7032,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776949534585,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":86260,"timestamp":7342588364794,"id":7032,"parentId":7031,"tags":{},"startTime":1776949534584,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4352,"timestamp":7342588460782,"id":7049,"parentId":7048,"tags":{},"startTime":1776949534680,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342588465155,"id":7051,"parentId":7048,"tags":{},"startTime":1776949534685,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":167,"timestamp":7342588465168,"id":7052,"parentId":7048,"tags":{},"startTime":1776949534685,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7342588465350,"id":7053,"parentId":7048,"tags":{},"startTime":1776949534685,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342588465367,"id":7054,"parentId":7048,"tags":{},"startTime":1776949534685,"traceId":"d76ab653cbe90d54"}]
-[{"name":"optimize","duration":1958,"timestamp":7342588465147,"id":7050,"parentId":7048,"tags":{},"startTime":1776949534685,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":453,"timestamp":7342588470413,"id":7055,"parentId":7048,"tags":{},"startTime":1776949534690,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2764,"timestamp":7342588470878,"id":7056,"parentId":7048,"tags":{},"startTime":1776949534691,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":5487,"timestamp":7342588474589,"id":7057,"parentId":7048,"tags":{},"startTime":1776949534694,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":3041,"timestamp":7342588480075,"id":7058,"parentId":7048,"tags":{},"startTime":1776949534700,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":337,"timestamp":7342588483078,"id":7059,"parentId":7048,"tags":{},"startTime":1776949534703,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1358,"timestamp":7342588483425,"id":7060,"parentId":7048,"tags":{},"startTime":1776949534703,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":46,"timestamp":7342588485460,"id":7062,"parentId":7031,"tags":{},"startTime":1776949534705,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":85,"timestamp":7342588485424,"id":7061,"parentId":7031,"tags":{},"startTime":1776949534705,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":32604,"timestamp":7342588454429,"id":7048,"parentId":7031,"tags":{},"startTime":1776949534674,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":122680,"timestamp":7342588364380,"id":7031,"parentId":3,"tags":{"name":"client"},"startTime":1776949534584,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2538,"timestamp":7342588487086,"id":7063,"parentId":3,"tags":{},"startTime":1776949534707,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7342588492627,"id":7066,"parentId":3,"tags":{},"startTime":1776949534712,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9044,"timestamp":7342588495177,"id":7069,"parentId":7065,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534715,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9052,"timestamp":7342588495180,"id":7070,"parentId":7065,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534715,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9706,"timestamp":7342588495173,"id":7068,"parentId":7065,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534715,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":205000,"timestamp":7342588299032,"id":7071,"parentId":3,"tags":{"updatedModules":[],"page":"/strategy","isPageHidden":false},"startTime":1776949534725,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10343,"timestamp":7342588495137,"id":7067,"parentId":7065,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949534715,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":28487,"timestamp":7342588491235,"id":7065,"parentId":7064,"tags":{},"startTime":1776949534711,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":724,"timestamp":7342588521020,"id":7087,"parentId":7086,"tags":{},"startTime":1776949534741,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342588521754,"id":7089,"parentId":7086,"tags":{},"startTime":1776949534741,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1163,"timestamp":7342588521765,"id":7090,"parentId":7086,"tags":{},"startTime":1776949534741,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7342588522942,"id":7091,"parentId":7086,"tags":{},"startTime":1776949534743,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":1,"timestamp":7342588522953,"id":7092,"parentId":7086,"tags":{},"startTime":1776949534743,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1564,"timestamp":7342588521750,"id":7088,"parentId":7086,"tags":{},"startTime":1776949534741,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":138,"timestamp":7342588523869,"id":7093,"parentId":7086,"tags":{},"startTime":1776949534744,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":760,"timestamp":7342588524011,"id":7094,"parentId":7086,"tags":{},"startTime":1776949534744,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":533,"timestamp":7342588525166,"id":7095,"parentId":7086,"tags":{},"startTime":1776949534745,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":45,"timestamp":7342588525699,"id":7096,"parentId":7086,"tags":{},"startTime":1776949534745,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":22,"timestamp":7342588525739,"id":7097,"parentId":7086,"tags":{},"startTime":1776949534745,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":94,"timestamp":7342588525763,"id":7098,"parentId":7086,"tags":{},"startTime":1776949534745,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":7027,"timestamp":7342588520508,"id":7086,"parentId":7064,"tags":{},"startTime":1776949534740,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":37948,"timestamp":7342588491065,"id":7064,"parentId":3,"tags":{"name":"server"},"startTime":1776949534711,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":1529,"timestamp":7342588529040,"id":7099,"parentId":3,"tags":{},"startTime":1776949534749,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":288508,"timestamp":7342588242551,"id":6959,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776949534462,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":849918,"timestamp":7342587703292,"id":6958,"tags":{"url":"/strategy?_rsc=jr9a0","isTurbopack":false},"startTime":1776949533923,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342588553243,"id":7101,"parentId":6958,"tags":{"url":"/strategy?_rsc=jr9a0","memory.rss":"388956160","memory.heapUsed":"336003136","memory.heapTotal":"377405440"},"startTime":1776949534773,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":15442,"timestamp":7342588551762,"id":7100,"tags":{"url":"/strategy?_rsc=jr9a0","isTurbopack":false},"startTime":1776949534771,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342588567287,"id":7102,"parentId":7100,"tags":{"url":"/strategy?_rsc=jr9a0","memory.rss":"388792320","memory.heapUsed":"341259584","memory.heapTotal":"378028032"},"startTime":1776949534787,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":38673,"timestamp":7342588579813,"id":7103,"tags":{"url":"/strategy","isTurbopack":false},"startTime":1776949534799,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342588618523,"id":7104,"parentId":7103,"tags":{"url":"/strategy","memory.rss":"384204800","memory.heapUsed":"338692672","memory.heapTotal":"376061952"},"startTime":1776949534838,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":11,"timestamp":7342589245400,"id":7105,"parentId":3,"tags":{},"startTime":1776949535465,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20064,"timestamp":7342599413459,"id":7113,"parentId":7110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949545633,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20137,"timestamp":7342599413463,"id":7114,"parentId":7110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949545633,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20591,"timestamp":7342599413450,"id":7112,"parentId":7110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949545633,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36114,"timestamp":7342599413205,"id":7111,"parentId":7110,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949545633,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":32658,"timestamp":7342599431756,"id":7116,"parentId":7115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776949545651,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7620,"timestamp":7342599467727,"id":7119,"parentId":7118,"tags":{},"startTime":1776949545687,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7792,"timestamp":7342599467561,"id":7118,"parentId":7117,"tags":{},"startTime":1776949545687,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":8673,"timestamp":7342599467343,"id":7117,"parentId":7116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776949545687,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":64157,"timestamp":7342599413466,"id":7115,"parentId":7110,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949545633,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":645,"timestamp":7342599489827,"id":7139,"parentId":7109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776949545709,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7528,"timestamp":7342599495199,"id":7142,"parentId":7141,"tags":{},"startTime":1776949545715,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7638,"timestamp":7342599495098,"id":7141,"parentId":7140,"tags":{},"startTime":1776949545715,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":19908,"timestamp":7342599494903,"id":7140,"parentId":7139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776949545715,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1727,"timestamp":7342599526334,"id":7144,"parentId":7143,"tags":{},"startTime":1776949545746,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1267,"timestamp":7342599527029,"id":7146,"parentId":7145,"tags":{},"startTime":1776949545747,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342599528306,"id":7152,"parentId":7145,"tags":{},"startTime":1776949545748,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2340,"timestamp":7342599526936,"id":7145,"parentId":7140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"ssr"},"startTime":1776949545747,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3293,"timestamp":7342599527979,"id":7149,"parentId":7148,"tags":{},"startTime":1776949545748,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3349,"timestamp":7342599527924,"id":7148,"parentId":7147,"tags":{},"startTime":1776949545748,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":4018,"timestamp":7342599527845,"id":7147,"parentId":7140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"ssr"},"startTime":1776949545748,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5062,"timestamp":7342599528118,"id":7151,"parentId":7150,"tags":{},"startTime":1776949545748,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5106,"timestamp":7342599528076,"id":7150,"parentId":7143,"tags":{},"startTime":1776949545748,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9457,"timestamp":7342599526122,"id":7143,"parentId":7140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"ssr"},"startTime":1776949545746,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":4473,"timestamp":7342599532032,"id":7154,"parentId":7153,"tags":{},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342599536521,"id":7165,"parentId":7153,"tags":{},"startTime":1776949545756,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5410,"timestamp":7342599531968,"id":7153,"parentId":7145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"ssr"},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5271,"timestamp":7342599532570,"id":7162,"parentId":7157,"tags":{},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599537847,"id":7166,"parentId":7157,"tags":{},"startTime":1776949545758,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5755,"timestamp":7342599532441,"id":7157,"parentId":7145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"ssr"},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5669,"timestamp":7342599532555,"id":7160,"parentId":7155,"tags":{},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599538229,"id":7167,"parentId":7155,"tags":{},"startTime":1776949545758,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6048,"timestamp":7342599532354,"id":7155,"parentId":7145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"ssr"},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5849,"timestamp":7342599532564,"id":7161,"parentId":7156,"tags":{},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599538417,"id":7168,"parentId":7156,"tags":{},"startTime":1776949545758,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6102,"timestamp":7342599532402,"id":7156,"parentId":7145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"ssr"},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7495,"timestamp":7342599532575,"id":7163,"parentId":7158,"tags":{},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":81,"timestamp":7342599540074,"id":7169,"parentId":7158,"tags":{},"startTime":1776949545760,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7943,"timestamp":7342599532479,"id":7158,"parentId":7145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"ssr"},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10285,"timestamp":7342599532581,"id":7164,"parentId":7159,"tags":{},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342599542876,"id":7170,"parentId":7159,"tags":{},"startTime":1776949545763,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10608,"timestamp":7342599532516,"id":7159,"parentId":7145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"ssr"},"startTime":1776949545752,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13797,"timestamp":7342599547220,"id":7172,"parentId":7171,"tags":{},"startTime":1776949545767,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599561027,"id":7235,"parentId":7171,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15870,"timestamp":7342599547084,"id":7171,"parentId":7155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"ssr"},"startTime":1776949545767,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14964,"timestamp":7342599548796,"id":7179,"parentId":7173,"tags":{},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342599563772,"id":7236,"parentId":7173,"tags":{},"startTime":1776949545783,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16055,"timestamp":7342599548512,"id":7173,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"ssr"},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21306,"timestamp":7342599548824,"id":7182,"parentId":7176,"tags":{},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":62,"timestamp":7342599570150,"id":7299,"parentId":7176,"tags":{},"startTime":1776949545790,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23560,"timestamp":7342599548671,"id":7176,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"ssr"},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23442,"timestamp":7342599548817,"id":7181,"parentId":7175,"tags":{},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599572267,"id":7300,"parentId":7175,"tags":{},"startTime":1776949545792,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24085,"timestamp":7342599548627,"id":7175,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"ssr"},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23924,"timestamp":7342599548808,"id":7180,"parentId":7174,"tags":{},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":85,"timestamp":7342599572740,"id":7301,"parentId":7174,"tags":{},"startTime":1776949545792,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37685,"timestamp":7342599548581,"id":7174,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"ssr"},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37467,"timestamp":7342599548832,"id":7183,"parentId":7177,"tags":{},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":73,"timestamp":7342599586311,"id":7302,"parentId":7177,"tags":{},"startTime":1776949545806,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38621,"timestamp":7342599548711,"id":7177,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"ssr"},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38544,"timestamp":7342599548836,"id":7184,"parentId":7178,"tags":{},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342599587390,"id":7303,"parentId":7178,"tags":{},"startTime":1776949545807,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40609,"timestamp":7342599548746,"id":7178,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"ssr"},"startTime":1776949545768,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42987,"timestamp":7342599549397,"id":7188,"parentId":7185,"tags":{},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":151,"timestamp":7342599592422,"id":7304,"parentId":7185,"tags":{},"startTime":1776949545812,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43610,"timestamp":7342599549210,"id":7185,"parentId":7156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"ssr"},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43445,"timestamp":7342599549407,"id":7189,"parentId":7186,"tags":{},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342599592857,"id":7305,"parentId":7186,"tags":{},"startTime":1776949545813,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43742,"timestamp":7342599549277,"id":7186,"parentId":7156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"ssr"},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43617,"timestamp":7342599549419,"id":7190,"parentId":7187,"tags":{},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599593040,"id":7306,"parentId":7187,"tags":{},"startTime":1776949545813,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43944,"timestamp":7342599549348,"id":7187,"parentId":7155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"ssr"},"startTime":1776949545769,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33969,"timestamp":7342599560760,"id":7213,"parentId":7191,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599594734,"id":7307,"parentId":7191,"tags":{},"startTime":1776949545814,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35136,"timestamp":7342599559826,"id":7191,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"ssr"},"startTime":1776949545779,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34178,"timestamp":7342599560788,"id":7216,"parentId":7194,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599594971,"id":7308,"parentId":7194,"tags":{},"startTime":1776949545815,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35107,"timestamp":7342599560012,"id":7194,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34342,"timestamp":7342599560782,"id":7215,"parentId":7193,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599595127,"id":7309,"parentId":7193,"tags":{},"startTime":1776949545815,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35288,"timestamp":7342599559970,"id":7193,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34453,"timestamp":7342599560809,"id":7220,"parentId":7198,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342599595266,"id":7310,"parentId":7198,"tags":{},"startTime":1776949545815,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35270,"timestamp":7342599560197,"id":7198,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34668,"timestamp":7342599560805,"id":7219,"parentId":7197,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599595477,"id":7311,"parentId":7197,"tags":{},"startTime":1776949545815,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35623,"timestamp":7342599560146,"id":7197,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35037,"timestamp":7342599560775,"id":7214,"parentId":7192,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342599595826,"id":7312,"parentId":7192,"tags":{},"startTime":1776949545815,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36296,"timestamp":7342599559920,"id":7192,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35425,"timestamp":7342599560800,"id":7218,"parentId":7196,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342599596231,"id":7313,"parentId":7196,"tags":{},"startTime":1776949545816,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36304,"timestamp":7342599560099,"id":7196,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35614,"timestamp":7342599560795,"id":7217,"parentId":7195,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599596412,"id":7314,"parentId":7195,"tags":{},"startTime":1776949545816,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":36710,"timestamp":7342599560050,"id":7195,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37445,"timestamp":7342599560813,"id":7221,"parentId":7199,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342599598265,"id":7315,"parentId":7199,"tags":{},"startTime":1776949545818,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38185,"timestamp":7342599560249,"id":7199,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38463,"timestamp":7342599560817,"id":7222,"parentId":7200,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599599284,"id":7316,"parentId":7200,"tags":{},"startTime":1776949545819,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39159,"timestamp":7342599560286,"id":7200,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38626,"timestamp":7342599560828,"id":7225,"parentId":7203,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599599458,"id":7317,"parentId":7203,"tags":{},"startTime":1776949545819,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39206,"timestamp":7342599560393,"id":7203,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38782,"timestamp":7342599560820,"id":7223,"parentId":7201,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599599606,"id":7318,"parentId":7201,"tags":{},"startTime":1776949545819,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39391,"timestamp":7342599560325,"id":7201,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38876,"timestamp":7342599560848,"id":7228,"parentId":7206,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599599728,"id":7319,"parentId":7206,"tags":{},"startTime":1776949545819,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39339,"timestamp":7342599560497,"id":7206,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39018,"timestamp":7342599560824,"id":7224,"parentId":7202,"tags":{},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599599854,"id":7320,"parentId":7202,"tags":{},"startTime":1776949545820,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39662,"timestamp":7342599560359,"id":7202,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39165,"timestamp":7342599560861,"id":7232,"parentId":7210,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342599600034,"id":7321,"parentId":7210,"tags":{},"startTime":1776949545820,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39600,"timestamp":7342599560634,"id":7210,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39384,"timestamp":7342599560858,"id":7231,"parentId":7209,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599600247,"id":7322,"parentId":7209,"tags":{},"startTime":1776949545820,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39803,"timestamp":7342599560600,"id":7209,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39568,"timestamp":7342599560844,"id":7227,"parentId":7205,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342599600416,"id":7323,"parentId":7205,"tags":{},"startTime":1776949545820,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40106,"timestamp":7342599560462,"id":7205,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39705,"timestamp":7342599560868,"id":7234,"parentId":7212,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599600577,"id":7324,"parentId":7212,"tags":{},"startTime":1776949545820,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40041,"timestamp":7342599560706,"id":7212,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39897,"timestamp":7342599560855,"id":7230,"parentId":7208,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599600755,"id":7325,"parentId":7208,"tags":{},"startTime":1776949545820,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40320,"timestamp":7342599560566,"id":7208,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40054,"timestamp":7342599560840,"id":7226,"parentId":7204,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599600897,"id":7326,"parentId":7204,"tags":{},"startTime":1776949545821,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40752,"timestamp":7342599560428,"id":7204,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40320,"timestamp":7342599560865,"id":7233,"parentId":7211,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342599601188,"id":7327,"parentId":7211,"tags":{},"startTime":1776949545821,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40638,"timestamp":7342599560668,"id":7211,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40506,"timestamp":7342599560851,"id":7229,"parentId":7207,"tags":{},"startTime":1776949545781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599601361,"id":7328,"parentId":7207,"tags":{},"startTime":1776949545821,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40935,"timestamp":7342599560532,"id":7207,"parentId":7157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"ssr"},"startTime":1776949545780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35154,"timestamp":7342599566350,"id":7273,"parentId":7242,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599601508,"id":7329,"parentId":7242,"tags":{},"startTime":1776949545821,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36237,"timestamp":7342599565371,"id":7242,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35286,"timestamp":7342599566325,"id":7269,"parentId":7238,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599601615,"id":7330,"parentId":7238,"tags":{},"startTime":1776949545821,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36734,"timestamp":7342599565213,"id":7238,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35595,"timestamp":7342599566357,"id":7275,"parentId":7244,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342599601956,"id":7331,"parentId":7244,"tags":{},"startTime":1776949545822,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37004,"timestamp":7342599565444,"id":7244,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36146,"timestamp":7342599566312,"id":7268,"parentId":7237,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342599602463,"id":7332,"parentId":7237,"tags":{},"startTime":1776949545822,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39421,"timestamp":7342599565145,"id":7237,"parentId":7159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38240,"timestamp":7342599566333,"id":7270,"parentId":7239,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342599604577,"id":7333,"parentId":7239,"tags":{},"startTime":1776949545824,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39439,"timestamp":7342599565256,"id":7239,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38354,"timestamp":7342599566346,"id":7272,"parentId":7241,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599604703,"id":7334,"parentId":7241,"tags":{},"startTime":1776949545824,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39514,"timestamp":7342599565334,"id":7241,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38512,"timestamp":7342599566340,"id":7271,"parentId":7240,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599604855,"id":7335,"parentId":7240,"tags":{},"startTime":1776949545825,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39857,"timestamp":7342599565296,"id":7240,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38796,"timestamp":7342599566361,"id":7276,"parentId":7245,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599605161,"id":7336,"parentId":7245,"tags":{},"startTime":1776949545825,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39963,"timestamp":7342599565480,"id":7245,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39072,"timestamp":7342599566376,"id":7280,"parentId":7249,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599605451,"id":7337,"parentId":7249,"tags":{},"startTime":1776949545825,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40004,"timestamp":7342599565623,"id":7249,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39252,"timestamp":7342599566379,"id":7281,"parentId":7250,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599605634,"id":7338,"parentId":7250,"tags":{},"startTime":1776949545825,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40717,"timestamp":7342599565657,"id":7250,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40015,"timestamp":7342599566368,"id":7278,"parentId":7247,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342599606387,"id":7339,"parentId":7247,"tags":{},"startTime":1776949545826,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41047,"timestamp":7342599565552,"id":7247,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40218,"timestamp":7342599566387,"id":7283,"parentId":7252,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599606608,"id":7340,"parentId":7252,"tags":{},"startTime":1776949545826,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41008,"timestamp":7342599565732,"id":7252,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40349,"timestamp":7342599566396,"id":7286,"parentId":7255,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599606749,"id":7341,"parentId":7255,"tags":{},"startTime":1776949545826,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41054,"timestamp":7342599565838,"id":7255,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40532,"timestamp":7342599566364,"id":7277,"parentId":7246,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599606899,"id":7342,"parentId":7246,"tags":{},"startTime":1776949545827,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41555,"timestamp":7342599565516,"id":7246,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40705,"timestamp":7342599566371,"id":7279,"parentId":7248,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599607079,"id":7343,"parentId":7248,"tags":{},"startTime":1776949545827,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41633,"timestamp":7342599565587,"id":7248,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40823,"timestamp":7342599566402,"id":7288,"parentId":7257,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":63,"timestamp":7342599607229,"id":7344,"parentId":7257,"tags":{},"startTime":1776949545827,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41474,"timestamp":7342599565908,"id":7257,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41004,"timestamp":7342599566383,"id":7282,"parentId":7251,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342599607390,"id":7345,"parentId":7251,"tags":{},"startTime":1776949545827,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41814,"timestamp":7342599565696,"id":7251,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41165,"timestamp":7342599566354,"id":7274,"parentId":7243,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599607522,"id":7346,"parentId":7243,"tags":{},"startTime":1776949545827,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42336,"timestamp":7342599565408,"id":7243,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41349,"timestamp":7342599566399,"id":7287,"parentId":7256,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599607751,"id":7347,"parentId":7256,"tags":{},"startTime":1776949545827,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41975,"timestamp":7342599565872,"id":7256,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41437,"timestamp":7342599566415,"id":7292,"parentId":7261,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":34,"timestamp":7342599607974,"id":7348,"parentId":7261,"tags":{},"startTime":1776949545828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42036,"timestamp":7342599566051,"id":7261,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41683,"timestamp":7342599566408,"id":7290,"parentId":7259,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599608095,"id":7349,"parentId":7259,"tags":{},"startTime":1776949545828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42209,"timestamp":7342599565980,"id":7259,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41803,"timestamp":7342599566390,"id":7284,"parentId":7253,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599608196,"id":7350,"parentId":7253,"tags":{},"startTime":1776949545828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42544,"timestamp":7342599565768,"id":7253,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41888,"timestamp":7342599566428,"id":7296,"parentId":7265,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342599608320,"id":7351,"parentId":7265,"tags":{},"startTime":1776949545828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42211,"timestamp":7342599566197,"id":7265,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42006,"timestamp":7342599566405,"id":7289,"parentId":7258,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599608414,"id":7352,"parentId":7258,"tags":{},"startTime":1776949545828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42569,"timestamp":7342599565944,"id":7258,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42105,"timestamp":7342599566411,"id":7291,"parentId":7260,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342599608520,"id":7353,"parentId":7260,"tags":{},"startTime":1776949545828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42613,"timestamp":7342599566015,"id":7260,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42240,"timestamp":7342599566393,"id":7285,"parentId":7254,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599608635,"id":7354,"parentId":7254,"tags":{},"startTime":1776949545828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43069,"timestamp":7342599565803,"id":7254,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"ssr"},"startTime":1776949545785,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46940,"timestamp":7342599566436,"id":7298,"parentId":7267,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342599613384,"id":7355,"parentId":7267,"tags":{},"startTime":1776949545833,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47344,"timestamp":7342599566266,"id":7267,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47196,"timestamp":7342599566421,"id":7294,"parentId":7263,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599613625,"id":7356,"parentId":7263,"tags":{},"startTime":1776949545833,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47627,"timestamp":7342599566124,"id":7263,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47361,"timestamp":7342599566425,"id":7295,"parentId":7264,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599613790,"id":7357,"parentId":7264,"tags":{},"startTime":1776949545833,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47751,"timestamp":7342599566161,"id":7264,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52732,"timestamp":7342599566418,"id":7293,"parentId":7262,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342599619159,"id":7358,"parentId":7262,"tags":{},"startTime":1776949545839,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53309,"timestamp":7342599566087,"id":7262,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52972,"timestamp":7342599566431,"id":7297,"parentId":7266,"tags":{},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342599619408,"id":7359,"parentId":7266,"tags":{},"startTime":1776949545839,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53520,"timestamp":7342599566231,"id":7266,"parentId":7158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"ssr"},"startTime":1776949545786,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13580,"timestamp":7342599693626,"id":7378,"parentId":7361,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342599707220,"id":7544,"parentId":7361,"tags":{},"startTime":1776949545927,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15627,"timestamp":7342599692985,"id":7361,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15007,"timestamp":7342599693633,"id":7379,"parentId":7362,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":64,"timestamp":7342599708647,"id":7545,"parentId":7362,"tags":{},"startTime":1776949545928,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17005,"timestamp":7342599693031,"id":7362,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16409,"timestamp":7342599693645,"id":7380,"parentId":7363,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":103,"timestamp":7342599710062,"id":7546,"parentId":7363,"tags":{},"startTime":1776949545930,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23371,"timestamp":7342599693070,"id":7363,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22923,"timestamp":7342599693651,"id":7381,"parentId":7364,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":166,"timestamp":7342599716637,"id":7547,"parentId":7364,"tags":{},"startTime":1776949545936,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23990,"timestamp":7342599693108,"id":7364,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23503,"timestamp":7342599693607,"id":7377,"parentId":7360,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599717117,"id":7548,"parentId":7360,"tags":{},"startTime":1776949545937,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25366,"timestamp":7342599692886,"id":7360,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24604,"timestamp":7342599693660,"id":7383,"parentId":7366,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342599718270,"id":7549,"parentId":7366,"tags":{},"startTime":1776949545938,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25535,"timestamp":7342599693188,"id":7366,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25075,"timestamp":7342599693656,"id":7382,"parentId":7365,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342599718735,"id":7550,"parentId":7365,"tags":{},"startTime":1776949545938,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28532,"timestamp":7342599693151,"id":7365,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28031,"timestamp":7342599693664,"id":7384,"parentId":7367,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":83,"timestamp":7342599721701,"id":7551,"parentId":7367,"tags":{},"startTime":1776949545941,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29027,"timestamp":7342599693223,"id":7367,"parentId":7173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28590,"timestamp":7342599693668,"id":7385,"parentId":7368,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342599722264,"id":7552,"parentId":7368,"tags":{},"startTime":1776949545942,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29507,"timestamp":7342599693258,"id":7368,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29119,"timestamp":7342599693675,"id":7387,"parentId":7370,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342599722799,"id":7553,"parentId":7370,"tags":{},"startTime":1776949545942,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31800,"timestamp":7342599693334,"id":7370,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31468,"timestamp":7342599693678,"id":7388,"parentId":7371,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342599725153,"id":7554,"parentId":7371,"tags":{},"startTime":1776949545945,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37657,"timestamp":7342599693367,"id":7371,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37360,"timestamp":7342599693681,"id":7389,"parentId":7372,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":60,"timestamp":7342599731052,"id":7555,"parentId":7372,"tags":{},"startTime":1776949545951,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39256,"timestamp":7342599693401,"id":7372,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38976,"timestamp":7342599693695,"id":7393,"parentId":7376,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599732677,"id":7556,"parentId":7376,"tags":{},"startTime":1776949545952,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39293,"timestamp":7342599693538,"id":7376,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39147,"timestamp":7342599693688,"id":7391,"parentId":7374,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599732840,"id":7557,"parentId":7374,"tags":{},"startTime":1776949545953,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39453,"timestamp":7342599693469,"id":7374,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39242,"timestamp":7342599693685,"id":7390,"parentId":7373,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599732932,"id":7558,"parentId":7373,"tags":{},"startTime":1776949545953,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39597,"timestamp":7342599693435,"id":7373,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39364,"timestamp":7342599693672,"id":7386,"parentId":7369,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342599733039,"id":7559,"parentId":7369,"tags":{},"startTime":1776949545953,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40979,"timestamp":7342599693293,"id":7369,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42944,"timestamp":7342599693691,"id":7392,"parentId":7375,"tags":{},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342599736655,"id":7560,"parentId":7375,"tags":{},"startTime":1776949545956,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43666,"timestamp":7342599693504,"id":7375,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"ssr"},"startTime":1776949545913,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35224,"timestamp":7342599702322,"id":7435,"parentId":7395,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342599737558,"id":7561,"parentId":7395,"tags":{},"startTime":1776949545957,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36900,"timestamp":7342599700887,"id":7395,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35458,"timestamp":7342599702341,"id":7438,"parentId":7398,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":65,"timestamp":7342599737804,"id":7562,"parentId":7398,"tags":{},"startTime":1776949545957,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37626,"timestamp":7342599701008,"id":7398,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38127,"timestamp":7342599702346,"id":7439,"parentId":7399,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342599740482,"id":7563,"parentId":7399,"tags":{},"startTime":1776949545960,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39681,"timestamp":7342599701045,"id":7399,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38377,"timestamp":7342599702357,"id":7442,"parentId":7402,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342599740739,"id":7564,"parentId":7402,"tags":{},"startTime":1776949545960,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39937,"timestamp":7342599701150,"id":7402,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38744,"timestamp":7342599702349,"id":7440,"parentId":7400,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":60,"timestamp":7342599741098,"id":7565,"parentId":7400,"tags":{},"startTime":1776949545961,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40220,"timestamp":7342599701079,"id":7400,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":39055,"timestamp":7342599702353,"id":7441,"parentId":7401,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599741413,"id":7566,"parentId":7401,"tags":{},"startTime":1776949545961,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42654,"timestamp":7342599701116,"id":7401,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41452,"timestamp":7342599702329,"id":7436,"parentId":7396,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342599743786,"id":7567,"parentId":7396,"tags":{},"startTime":1776949545963,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43795,"timestamp":7342599700925,"id":7396,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42385,"timestamp":7342599702362,"id":7443,"parentId":7403,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342599744759,"id":7568,"parentId":7403,"tags":{},"startTime":1776949545964,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43975,"timestamp":7342599701185,"id":7403,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42802,"timestamp":7342599702366,"id":7444,"parentId":7404,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599745174,"id":7569,"parentId":7404,"tags":{},"startTime":1776949545965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44079,"timestamp":7342599701218,"id":7404,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42967,"timestamp":7342599702335,"id":7437,"parentId":7397,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599745306,"id":7570,"parentId":7397,"tags":{},"startTime":1776949545965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44759,"timestamp":7342599700967,"id":7397,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43361,"timestamp":7342599702371,"id":7445,"parentId":7405,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599745736,"id":7571,"parentId":7405,"tags":{},"startTime":1776949545965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44576,"timestamp":7342599701251,"id":7405,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43457,"timestamp":7342599702375,"id":7446,"parentId":7406,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599745835,"id":7572,"parentId":7406,"tags":{},"startTime":1776949545966,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45581,"timestamp":7342599701285,"id":7406,"parentId":7177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44493,"timestamp":7342599702379,"id":7447,"parentId":7407,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342599746876,"id":7573,"parentId":7407,"tags":{},"startTime":1776949545967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47979,"timestamp":7342599701318,"id":7407,"parentId":7187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47009,"timestamp":7342599702305,"id":7434,"parentId":7394,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342599749322,"id":7574,"parentId":7394,"tags":{},"startTime":1776949545969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48651,"timestamp":7342599700820,"id":7394,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"ssr"},"startTime":1776949545920,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47095,"timestamp":7342599702382,"id":7448,"parentId":7408,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342599749497,"id":7575,"parentId":7408,"tags":{},"startTime":1776949545969,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48549,"timestamp":7342599701352,"id":7408,"parentId":7178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47506,"timestamp":7342599702420,"id":7450,"parentId":7410,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342599749931,"id":7576,"parentId":7410,"tags":{},"startTime":1776949545970,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51454,"timestamp":7342599701427,"id":7410,"parentId":7191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50493,"timestamp":7342599702414,"id":7449,"parentId":7409,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342599752913,"id":7577,"parentId":7409,"tags":{},"startTime":1776949545973,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51888,"timestamp":7342599701389,"id":7409,"parentId":7191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51085,"timestamp":7342599702428,"id":7452,"parentId":7412,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342599753538,"id":7578,"parentId":7412,"tags":{},"startTime":1776949545973,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52481,"timestamp":7342599701495,"id":7412,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51537,"timestamp":7342599702447,"id":7457,"parentId":7417,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342599753990,"id":7579,"parentId":7417,"tags":{},"startTime":1776949545974,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52691,"timestamp":7342599701663,"id":7417,"parentId":7191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51933,"timestamp":7342599702436,"id":7454,"parentId":7414,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599754374,"id":7580,"parentId":7414,"tags":{},"startTime":1776949545974,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53079,"timestamp":7342599701562,"id":7414,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52207,"timestamp":7342599702439,"id":7455,"parentId":7415,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599754649,"id":7581,"parentId":7415,"tags":{},"startTime":1776949545974,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53282,"timestamp":7342599701596,"id":7415,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52449,"timestamp":7342599702432,"id":7453,"parentId":7413,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342599754885,"id":7582,"parentId":7413,"tags":{},"startTime":1776949545975,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53841,"timestamp":7342599701528,"id":7413,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52930,"timestamp":7342599702443,"id":7456,"parentId":7416,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599755377,"id":7583,"parentId":7416,"tags":{},"startTime":1776949545975,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53878,"timestamp":7342599701630,"id":7416,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53053,"timestamp":7342599702459,"id":7460,"parentId":7420,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342599755516,"id":7584,"parentId":7420,"tags":{},"startTime":1776949545975,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53990,"timestamp":7342599701770,"id":7420,"parentId":7194,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53340,"timestamp":7342599702424,"id":7451,"parentId":7411,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599755768,"id":7585,"parentId":7411,"tags":{},"startTime":1776949545975,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54987,"timestamp":7342599701461,"id":7411,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54002,"timestamp":7342599702451,"id":7458,"parentId":7418,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599756457,"id":7586,"parentId":7418,"tags":{},"startTime":1776949545976,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54884,"timestamp":7342599701700,"id":7418,"parentId":7197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54135,"timestamp":7342599702455,"id":7459,"parentId":7419,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342599756592,"id":7587,"parentId":7419,"tags":{},"startTime":1776949545976,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54973,"timestamp":7342599701734,"id":7419,"parentId":7197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54248,"timestamp":7342599702462,"id":7461,"parentId":7421,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599756714,"id":7588,"parentId":7421,"tags":{},"startTime":1776949545976,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55229,"timestamp":7342599701809,"id":7421,"parentId":7194,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"ssr"},"startTime":1776949545921,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54570,"timestamp":7342599702473,"id":7464,"parentId":7424,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342599757047,"id":7589,"parentId":7424,"tags":{},"startTime":1776949545977,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55287,"timestamp":7342599701914,"id":7424,"parentId":7198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54735,"timestamp":7342599702470,"id":7463,"parentId":7423,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599757208,"id":7590,"parentId":7423,"tags":{},"startTime":1776949545977,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55522,"timestamp":7342599701879,"id":7423,"parentId":7193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54925,"timestamp":7342599702479,"id":7466,"parentId":7426,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":90,"timestamp":7342599757408,"id":7591,"parentId":7426,"tags":{},"startTime":1776949545977,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58351,"timestamp":7342599701984,"id":7426,"parentId":7198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57872,"timestamp":7342599702486,"id":7468,"parentId":7428,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":89,"timestamp":7342599760375,"id":7592,"parentId":7428,"tags":{},"startTime":1776949545980,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60831,"timestamp":7342599702055,"id":7428,"parentId":7198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60437,"timestamp":7342599702476,"id":7465,"parentId":7425,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":139,"timestamp":7342599762925,"id":7593,"parentId":7425,"tags":{},"startTime":1776949545983,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":62123,"timestamp":7342599701949,"id":7425,"parentId":7198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61614,"timestamp":7342599702490,"id":7469,"parentId":7429,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":73,"timestamp":7342599764113,"id":7594,"parentId":7429,"tags":{},"startTime":1776949545984,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":62846,"timestamp":7342599702091,"id":7429,"parentId":7197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":62480,"timestamp":7342599702466,"id":7462,"parentId":7422,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342599764951,"id":7595,"parentId":7422,"tags":{},"startTime":1776949545985,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64793,"timestamp":7342599701844,"id":7422,"parentId":7193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":64181,"timestamp":7342599702495,"id":7470,"parentId":7430,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":136,"timestamp":7342599766708,"id":7596,"parentId":7430,"tags":{},"startTime":1776949545986,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":65596,"timestamp":7342599702126,"id":7430,"parentId":7197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":65235,"timestamp":7342599702499,"id":7471,"parentId":7431,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342599767740,"id":7597,"parentId":7431,"tags":{},"startTime":1776949545987,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":65979,"timestamp":7342599702160,"id":7431,"parentId":7197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":65661,"timestamp":7342599702483,"id":7467,"parentId":7427,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599768148,"id":7598,"parentId":7427,"tags":{},"startTime":1776949545988,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":66639,"timestamp":7342599702020,"id":7427,"parentId":7198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":66161,"timestamp":7342599702503,"id":7472,"parentId":7432,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342599768667,"id":7599,"parentId":7432,"tags":{},"startTime":1776949545988,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":68174,"timestamp":7342599702193,"id":7432,"parentId":7192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":67874,"timestamp":7342599702506,"id":7473,"parentId":7433,"tags":{},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342599770386,"id":7600,"parentId":7433,"tags":{},"startTime":1776949545990,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":70449,"timestamp":7342599702230,"id":7433,"parentId":7192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"ssr"},"startTime":1776949545922,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":73415,"timestamp":7342599706169,"id":7508,"parentId":7478,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342599779596,"id":7601,"parentId":7478,"tags":{},"startTime":1776949545999,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":76512,"timestamp":7342599705078,"id":7478,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":75452,"timestamp":7342599706151,"id":7506,"parentId":7476,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599781612,"id":7602,"parentId":7476,"tags":{},"startTime":1776949546001,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":77058,"timestamp":7342599705002,"id":7476,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":75923,"timestamp":7342599706142,"id":7505,"parentId":7475,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342599782070,"id":7603,"parentId":7475,"tags":{},"startTime":1776949546002,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":78837,"timestamp":7342599704962,"id":7475,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":77693,"timestamp":7342599706123,"id":7504,"parentId":7474,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342599783821,"id":7604,"parentId":7474,"tags":{},"startTime":1776949546003,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":79722,"timestamp":7342599704899,"id":7474,"parentId":7153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":78469,"timestamp":7342599706160,"id":7507,"parentId":7477,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342599784633,"id":7605,"parentId":7477,"tags":{},"startTime":1776949546004,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":80016,"timestamp":7342599705041,"id":7477,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":78887,"timestamp":7342599706175,"id":7509,"parentId":7479,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":103,"timestamp":7342599785065,"id":7606,"parentId":7479,"tags":{},"startTime":1776949546005,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":80379,"timestamp":7342599705113,"id":7479,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":79321,"timestamp":7342599706180,"id":7510,"parentId":7480,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342599785505,"id":7607,"parentId":7480,"tags":{},"startTime":1776949546005,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":81474,"timestamp":7342599705147,"id":7480,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80434,"timestamp":7342599706195,"id":7513,"parentId":7483,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342599786634,"id":7608,"parentId":7483,"tags":{},"startTime":1776949546006,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":82815,"timestamp":7342599705250,"id":7483,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":81880,"timestamp":7342599706191,"id":7512,"parentId":7482,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342599788075,"id":7609,"parentId":7482,"tags":{},"startTime":1776949546008,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":84454,"timestamp":7342599705216,"id":7482,"parentId":7171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":83584,"timestamp":7342599706186,"id":7511,"parentId":7481,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":111,"timestamp":7342599789786,"id":7610,"parentId":7481,"tags":{},"startTime":1776949546009,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":85394,"timestamp":7342599705182,"id":7481,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":84414,"timestamp":7342599706200,"id":7514,"parentId":7484,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":171,"timestamp":7342599790637,"id":7611,"parentId":7484,"tags":{},"startTime":1776949546010,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86260,"timestamp":7342599705284,"id":7484,"parentId":7176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85377,"timestamp":7342599706212,"id":7517,"parentId":7487,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342599791597,"id":7612,"parentId":7487,"tags":{},"startTime":1776949546011,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86347,"timestamp":7342599705384,"id":7487,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85514,"timestamp":7342599706222,"id":7518,"parentId":7488,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599791740,"id":7613,"parentId":7488,"tags":{},"startTime":1776949546011,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86574,"timestamp":7342599705417,"id":7488,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":85787,"timestamp":7342599706208,"id":7516,"parentId":7486,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342599791999,"id":7614,"parentId":7486,"tags":{},"startTime":1776949546012,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86919,"timestamp":7342599705351,"id":7486,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":86039,"timestamp":7342599706235,"id":7521,"parentId":7491,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342599792278,"id":7615,"parentId":7491,"tags":{},"startTime":1776949546012,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":88512,"timestamp":7342599705522,"id":7491,"parentId":7178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":87848,"timestamp":7342599706204,"id":7515,"parentId":7485,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":66,"timestamp":7342599794063,"id":7616,"parentId":7485,"tags":{},"startTime":1776949546014,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":101097,"timestamp":7342599705317,"id":7485,"parentId":7186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":100397,"timestamp":7342599706227,"id":7519,"parentId":7489,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":162,"timestamp":7342599806676,"id":7617,"parentId":7489,"tags":{},"startTime":1776949546026,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":101929,"timestamp":7342599705450,"id":7489,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":101166,"timestamp":7342599706231,"id":7520,"parentId":7490,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342599807409,"id":7618,"parentId":7490,"tags":{},"startTime":1776949546027,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":102964,"timestamp":7342599705488,"id":7490,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":102210,"timestamp":7342599706258,"id":7526,"parentId":7496,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52,"timestamp":7342599808478,"id":7619,"parentId":7496,"tags":{},"startTime":1776949546028,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":103029,"timestamp":7342599705690,"id":7496,"parentId":7196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":102485,"timestamp":7342599706244,"id":7523,"parentId":7493,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342599808733,"id":7620,"parentId":7493,"tags":{},"startTime":1776949546028,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":104539,"timestamp":7342599705589,"id":7493,"parentId":7178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":103918,"timestamp":7342599706262,"id":7527,"parentId":7497,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":129,"timestamp":7342599810206,"id":7621,"parentId":7497,"tags":{},"startTime":1776949546030,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":105271,"timestamp":7342599705726,"id":7497,"parentId":7196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":104760,"timestamp":7342599706266,"id":7528,"parentId":7498,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":67,"timestamp":7342599811038,"id":7622,"parentId":7498,"tags":{},"startTime":1776949546031,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":108492,"timestamp":7342599705763,"id":7498,"parentId":7196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":108043,"timestamp":7342599706270,"id":7529,"parentId":7499,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":156,"timestamp":7342599814337,"id":7623,"parentId":7499,"tags":{},"startTime":1776949546034,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":109587,"timestamp":7342599705862,"id":7499,"parentId":7196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":109233,"timestamp":7342599706240,"id":7522,"parentId":7492,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":55,"timestamp":7342599815483,"id":7624,"parentId":7492,"tags":{},"startTime":1776949546035,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":110511,"timestamp":7342599705556,"id":7492,"parentId":7178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":109882,"timestamp":7342599706273,"id":7530,"parentId":7500,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":58,"timestamp":7342599816170,"id":7625,"parentId":7500,"tags":{},"startTime":1776949546036,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":110924,"timestamp":7342599705951,"id":7500,"parentId":7195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":110639,"timestamp":7342599706254,"id":7525,"parentId":7495,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342599816900,"id":7626,"parentId":7495,"tags":{},"startTime":1776949546037,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":112447,"timestamp":7342599705657,"id":7495,"parentId":7193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":111843,"timestamp":7342599706276,"id":7531,"parentId":7501,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342599818128,"id":7627,"parentId":7501,"tags":{},"startTime":1776949546038,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":112592,"timestamp":7342599705994,"id":7501,"parentId":7195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":112611,"timestamp":7342599706284,"id":7533,"parentId":7503,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":177,"timestamp":7342599818941,"id":7628,"parentId":7503,"tags":{},"startTime":1776949546039,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":113328,"timestamp":7342599706074,"id":7503,"parentId":7195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":113166,"timestamp":7342599706250,"id":7524,"parentId":7494,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342599819423,"id":7629,"parentId":7494,"tags":{},"startTime":1776949546039,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":114102,"timestamp":7342599705624,"id":7494,"parentId":7191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"ssr"},"startTime":1776949545925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":113455,"timestamp":7342599706281,"id":7532,"parentId":7502,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342599819741,"id":7630,"parentId":7502,"tags":{},"startTime":1776949546039,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":114233,"timestamp":7342599706038,"id":7502,"parentId":7195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":131961,"timestamp":7342599706790,"id":7540,"parentId":7535,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342599838771,"id":7631,"parentId":7535,"tags":{},"startTime":1776949546058,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":132928,"timestamp":7342599706629,"id":7535,"parentId":7199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":132793,"timestamp":7342599706793,"id":7541,"parentId":7536,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":62,"timestamp":7342599839602,"id":7632,"parentId":7536,"tags":{},"startTime":1776949546059,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":133541,"timestamp":7342599706667,"id":7536,"parentId":7199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":133421,"timestamp":7342599706800,"id":7543,"parentId":7538,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":40,"timestamp":7342599840359,"id":7633,"parentId":7538,"tags":{},"startTime":1776949546060,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":133914,"timestamp":7342599706744,"id":7538,"parentId":7199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":133884,"timestamp":7342599706784,"id":7539,"parentId":7534,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342599840673,"id":7634,"parentId":7534,"tags":{},"startTime":1776949546060,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":135680,"timestamp":7342599706576,"id":7534,"parentId":7199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":135473,"timestamp":7342599706797,"id":7542,"parentId":7537,"tags":{},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342599842276,"id":7635,"parentId":7537,"tags":{},"startTime":1776949546062,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":135734,"timestamp":7342599706706,"id":7537,"parentId":7199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"ssr"},"startTime":1776949545926,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36065,"timestamp":7342599985851,"id":7648,"parentId":7636,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600021929,"id":7776,"parentId":7636,"tags":{},"startTime":1776949546242,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37748,"timestamp":7342599984982,"id":7636,"parentId":7200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36855,"timestamp":7342599985885,"id":7650,"parentId":7638,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600022745,"id":7777,"parentId":7638,"tags":{},"startTime":1776949546242,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38422,"timestamp":7342599985169,"id":7638,"parentId":7200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37722,"timestamp":7342599985874,"id":7649,"parentId":7637,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600023601,"id":7778,"parentId":7637,"tags":{},"startTime":1776949546243,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38915,"timestamp":7342599985105,"id":7637,"parentId":7200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38123,"timestamp":7342599985902,"id":7652,"parentId":7640,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600024031,"id":7779,"parentId":7640,"tags":{},"startTime":1776949546244,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39207,"timestamp":7342599985299,"id":7640,"parentId":7203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38603,"timestamp":7342599985908,"id":7653,"parentId":7641,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600024516,"id":7780,"parentId":7641,"tags":{},"startTime":1776949546244,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39372,"timestamp":7342599985355,"id":7641,"parentId":7203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38813,"timestamp":7342599985918,"id":7655,"parentId":7643,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600024735,"id":7781,"parentId":7643,"tags":{},"startTime":1776949546244,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40839,"timestamp":7342599985494,"id":7643,"parentId":7201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40430,"timestamp":7342599985913,"id":7654,"parentId":7642,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":74,"timestamp":7342600026352,"id":7782,"parentId":7642,"tags":{},"startTime":1776949546246,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41230,"timestamp":7342599985406,"id":7642,"parentId":7203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40716,"timestamp":7342599985929,"id":7657,"parentId":7645,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600026651,"id":7783,"parentId":7645,"tags":{},"startTime":1776949546246,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41326,"timestamp":7342599985597,"id":7645,"parentId":7206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41035,"timestamp":7342599985894,"id":7651,"parentId":7639,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600026934,"id":7784,"parentId":7639,"tags":{},"startTime":1776949546247,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42491,"timestamp":7342599985226,"id":7639,"parentId":7185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41790,"timestamp":7342599985933,"id":7658,"parentId":7646,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600027729,"id":7785,"parentId":7646,"tags":{},"startTime":1776949546247,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42275,"timestamp":7342599985647,"id":7646,"parentId":7206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42003,"timestamp":7342599985923,"id":7656,"parentId":7644,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600027931,"id":7786,"parentId":7644,"tags":{},"startTime":1776949546248,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42625,"timestamp":7342599985545,"id":7644,"parentId":7201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42236,"timestamp":7342599985938,"id":7659,"parentId":7647,"tags":{},"startTime":1776949546206,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600028188,"id":7787,"parentId":7647,"tags":{},"startTime":1776949546248,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43511,"timestamp":7342599985697,"id":7647,"parentId":7202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"ssr"},"startTime":1776949546205,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24663,"timestamp":7342600008539,"id":7708,"parentId":7662,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342600033214,"id":7788,"parentId":7662,"tags":{},"startTime":1776949546253,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27148,"timestamp":7342600006355,"id":7662,"parentId":7202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"ssr"},"startTime":1776949546226,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24964,"timestamp":7342600008548,"id":7709,"parentId":7663,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600033517,"id":7789,"parentId":7663,"tags":{},"startTime":1776949546253,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27865,"timestamp":7342600006502,"id":7663,"parentId":7210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"ssr"},"startTime":1776949546226,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25885,"timestamp":7342600008497,"id":7706,"parentId":7660,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342600034385,"id":7790,"parentId":7660,"tags":{},"startTime":1776949546254,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28859,"timestamp":7342600006101,"id":7660,"parentId":7202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"ssr"},"startTime":1776949546226,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26408,"timestamp":7342600008558,"id":7710,"parentId":7664,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":60,"timestamp":7342600034970,"id":7791,"parentId":7664,"tags":{},"startTime":1776949546255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28389,"timestamp":7342600006806,"id":7664,"parentId":7210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"ssr"},"startTime":1776949546226,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26671,"timestamp":7342600008528,"id":7707,"parentId":7661,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":55,"timestamp":7342600035202,"id":7792,"parentId":7661,"tags":{},"startTime":1776949546255,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30341,"timestamp":7342600006272,"id":7661,"parentId":7202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"ssr"},"startTime":1776949546226,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28056,"timestamp":7342600008565,"id":7711,"parentId":7665,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":58,"timestamp":7342600036626,"id":7793,"parentId":7665,"tags":{},"startTime":1776949546256,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30618,"timestamp":7342600006863,"id":7665,"parentId":7209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28928,"timestamp":7342600008577,"id":7713,"parentId":7667,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":73,"timestamp":7342600037517,"id":7794,"parentId":7667,"tags":{},"startTime":1776949546257,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31486,"timestamp":7342600006953,"id":7667,"parentId":7209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29864,"timestamp":7342600008583,"id":7714,"parentId":7668,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600038450,"id":7795,"parentId":7668,"tags":{},"startTime":1776949546258,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31816,"timestamp":7342600006995,"id":7668,"parentId":7209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30244,"timestamp":7342600008571,"id":7712,"parentId":7666,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600038818,"id":7796,"parentId":7666,"tags":{},"startTime":1776949546258,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32424,"timestamp":7342600006911,"id":7666,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30751,"timestamp":7342600008588,"id":7715,"parentId":7669,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600039343,"id":7797,"parentId":7669,"tags":{},"startTime":1776949546259,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33067,"timestamp":7342600007035,"id":7669,"parentId":7205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31492,"timestamp":7342600008614,"id":7720,"parentId":7674,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600040110,"id":7798,"parentId":7674,"tags":{},"startTime":1776949546260,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33322,"timestamp":7342600007232,"id":7674,"parentId":7212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31967,"timestamp":7342600008593,"id":7716,"parentId":7670,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600040563,"id":7799,"parentId":7670,"tags":{},"startTime":1776949546260,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33692,"timestamp":7342600007073,"id":7670,"parentId":7205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32171,"timestamp":7342600008599,"id":7717,"parentId":7671,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600040773,"id":7800,"parentId":7671,"tags":{},"startTime":1776949546260,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33783,"timestamp":7342600007112,"id":7671,"parentId":7205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32291,"timestamp":7342600008610,"id":7719,"parentId":7673,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600040904,"id":7801,"parentId":7673,"tags":{},"startTime":1776949546261,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34244,"timestamp":7342600007192,"id":7673,"parentId":7205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32837,"timestamp":7342600008603,"id":7718,"parentId":7672,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600041444,"id":7802,"parentId":7672,"tags":{},"startTime":1776949546261,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34493,"timestamp":7342600007152,"id":7672,"parentId":7205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33029,"timestamp":7342600008620,"id":7721,"parentId":7675,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600041652,"id":7803,"parentId":7675,"tags":{},"startTime":1776949546261,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34850,"timestamp":7342600007270,"id":7675,"parentId":7212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33486,"timestamp":7342600008642,"id":7725,"parentId":7679,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600042131,"id":7804,"parentId":7679,"tags":{},"startTime":1776949546262,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34876,"timestamp":7342600007426,"id":7679,"parentId":7208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33681,"timestamp":7342600008625,"id":7722,"parentId":7676,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600042309,"id":7805,"parentId":7676,"tags":{},"startTime":1776949546262,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35458,"timestamp":7342600007312,"id":7676,"parentId":7212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34138,"timestamp":7342600008636,"id":7724,"parentId":7678,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":86,"timestamp":7342600042778,"id":7806,"parentId":7678,"tags":{},"startTime":1776949546262,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35982,"timestamp":7342600007389,"id":7678,"parentId":7212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":34904,"timestamp":7342600008631,"id":7723,"parentId":7677,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600043541,"id":7807,"parentId":7677,"tags":{},"startTime":1776949546263,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36384,"timestamp":7342600007350,"id":7677,"parentId":7212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41888,"timestamp":7342600008647,"id":7726,"parentId":7680,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600050547,"id":7808,"parentId":7680,"tags":{},"startTime":1776949546270,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43690,"timestamp":7342600007472,"id":7680,"parentId":7208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42520,"timestamp":7342600008653,"id":7727,"parentId":7681,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600051180,"id":7809,"parentId":7681,"tags":{},"startTime":1776949546271,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44145,"timestamp":7342600007510,"id":7681,"parentId":7208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43004,"timestamp":7342600008658,"id":7728,"parentId":7682,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600051667,"id":7810,"parentId":7682,"tags":{},"startTime":1776949546271,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44334,"timestamp":7342600007547,"id":7682,"parentId":7208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43224,"timestamp":7342600008663,"id":7729,"parentId":7683,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600051891,"id":7811,"parentId":7683,"tags":{},"startTime":1776949546272,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44455,"timestamp":7342600007584,"id":7683,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43362,"timestamp":7342600008682,"id":7733,"parentId":7687,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600052048,"id":7812,"parentId":7687,"tags":{},"startTime":1776949546272,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44405,"timestamp":7342600007735,"id":7687,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43472,"timestamp":7342600008672,"id":7731,"parentId":7685,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600052148,"id":7813,"parentId":7685,"tags":{},"startTime":1776949546272,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44672,"timestamp":7342600007659,"id":7685,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43668,"timestamp":7342600008667,"id":7730,"parentId":7684,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600052339,"id":7814,"parentId":7684,"tags":{},"startTime":1776949546272,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44892,"timestamp":7342600007622,"id":7684,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43844,"timestamp":7342600008676,"id":7732,"parentId":7686,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600052524,"id":7815,"parentId":7686,"tags":{},"startTime":1776949546272,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44983,"timestamp":7342600007696,"id":7686,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43993,"timestamp":7342600008691,"id":7735,"parentId":7689,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600052688,"id":7816,"parentId":7689,"tags":{},"startTime":1776949546272,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45087,"timestamp":7342600007813,"id":7689,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44201,"timestamp":7342600008705,"id":7738,"parentId":7692,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600052910,"id":7817,"parentId":7692,"tags":{},"startTime":1776949546273,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45234,"timestamp":7342600007939,"id":7692,"parentId":7211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44480,"timestamp":7342600008700,"id":7737,"parentId":7691,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600053185,"id":7818,"parentId":7691,"tags":{},"startTime":1776949546273,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45817,"timestamp":7342600007891,"id":7691,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45020,"timestamp":7342600008695,"id":7736,"parentId":7690,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600053719,"id":7819,"parentId":7690,"tags":{},"startTime":1776949546273,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46432,"timestamp":7342600007851,"id":7690,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45570,"timestamp":7342600008718,"id":7741,"parentId":7695,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600054292,"id":7820,"parentId":7695,"tags":{},"startTime":1776949546274,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46922,"timestamp":7342600008054,"id":7695,"parentId":7207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46268,"timestamp":7342600008713,"id":7740,"parentId":7694,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600054985,"id":7821,"parentId":7694,"tags":{},"startTime":1776949546275,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47379,"timestamp":7342600008015,"id":7694,"parentId":7207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46676,"timestamp":7342600008722,"id":7742,"parentId":7696,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600055402,"id":7822,"parentId":7696,"tags":{},"startTime":1776949546275,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47544,"timestamp":7342600008093,"id":7696,"parentId":7207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46912,"timestamp":7342600008729,"id":7744,"parentId":7698,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342600055645,"id":7823,"parentId":7698,"tags":{},"startTime":1776949546275,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50040,"timestamp":7342600008169,"id":7698,"parentId":7242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49507,"timestamp":7342600008709,"id":7739,"parentId":7693,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342600058221,"id":7824,"parentId":7693,"tags":{},"startTime":1776949546278,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53263,"timestamp":7342600007977,"id":7693,"parentId":7211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":52542,"timestamp":7342600008737,"id":7746,"parentId":7700,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":74,"timestamp":7342600061294,"id":7825,"parentId":7700,"tags":{},"startTime":1776949546281,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53741,"timestamp":7342600008248,"id":7700,"parentId":7237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53317,"timestamp":7342600008687,"id":7734,"parentId":7688,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600062011,"id":7826,"parentId":7688,"tags":{},"startTime":1776949546282,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54711,"timestamp":7342600007774,"id":7688,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"ssr"},"startTime":1776949546227,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53767,"timestamp":7342600008726,"id":7743,"parentId":7697,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600062498,"id":7827,"parentId":7697,"tags":{},"startTime":1776949546282,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54535,"timestamp":7342600008131,"id":7697,"parentId":7207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53921,"timestamp":7342600008753,"id":7750,"parentId":7704,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600062677,"id":7828,"parentId":7704,"tags":{},"startTime":1776949546282,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54708,"timestamp":7342600008403,"id":7704,"parentId":7244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54381,"timestamp":7342600008741,"id":7747,"parentId":7701,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342600063129,"id":7829,"parentId":7701,"tags":{},"startTime":1776949546283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55365,"timestamp":7342600008284,"id":7701,"parentId":7237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54933,"timestamp":7342600008733,"id":7745,"parentId":7699,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600063672,"id":7830,"parentId":7699,"tags":{},"startTime":1776949546283,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56026,"timestamp":7342600008208,"id":7699,"parentId":7237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":55505,"timestamp":7342600008745,"id":7748,"parentId":7702,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342600064258,"id":7831,"parentId":7702,"tags":{},"startTime":1776949546284,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56275,"timestamp":7342600008322,"id":7702,"parentId":7238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":55857,"timestamp":7342600008749,"id":7749,"parentId":7703,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600064612,"id":7832,"parentId":7703,"tags":{},"startTime":1776949546284,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56963,"timestamp":7342600008359,"id":7703,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56576,"timestamp":7342600008756,"id":7751,"parentId":7705,"tags":{},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342600065339,"id":7833,"parentId":7705,"tags":{},"startTime":1776949546285,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57600,"timestamp":7342600008439,"id":7705,"parentId":7244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"ssr"},"startTime":1776949546228,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58918,"timestamp":7342600019896,"id":7759,"parentId":7755,"tags":{},"startTime":1776949546240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342600078829,"id":7834,"parentId":7755,"tags":{},"startTime":1776949546298,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":59874,"timestamp":7342600019716,"id":7755,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"ssr"},"startTime":1776949546239,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59842,"timestamp":7342600019846,"id":7758,"parentId":7754,"tags":{},"startTime":1776949546240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342600079702,"id":7835,"parentId":7754,"tags":{},"startTime":1776949546299,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60784,"timestamp":7342600019652,"id":7754,"parentId":7241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"ssr"},"startTime":1776949546239,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60613,"timestamp":7342600019835,"id":7757,"parentId":7753,"tags":{},"startTime":1776949546240,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600080456,"id":7836,"parentId":7753,"tags":{},"startTime":1776949546300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61263,"timestamp":7342600019432,"id":7753,"parentId":7244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"ssr"},"startTime":1776949546239,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60918,"timestamp":7342600019786,"id":7756,"parentId":7752,"tags":{},"startTime":1776949546239,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600080710,"id":7837,"parentId":7752,"tags":{},"startTime":1776949546300,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61691,"timestamp":7342600019272,"id":7752,"parentId":7244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"ssr"},"startTime":1776949546239,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":68379,"timestamp":7342600021807,"id":7768,"parentId":7760,"tags":{},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600090196,"id":7838,"parentId":7760,"tags":{},"startTime":1776949546310,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":69109,"timestamp":7342600021368,"id":7760,"parentId":7204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":68639,"timestamp":7342600021847,"id":7774,"parentId":7766,"tags":{},"startTime":1776949546242,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600090491,"id":7839,"parentId":7766,"tags":{},"startTime":1776949546310,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":69815,"timestamp":7342600021721,"id":7766,"parentId":7237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":69720,"timestamp":7342600021830,"id":7770,"parentId":7762,"tags":{},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342600091558,"id":7840,"parentId":7762,"tags":{},"startTime":1776949546311,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":71373,"timestamp":7342600021521,"id":7762,"parentId":7242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":71072,"timestamp":7342600021835,"id":7771,"parentId":7763,"tags":{},"startTime":1776949546242,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600092913,"id":7841,"parentId":7763,"tags":{},"startTime":1776949546313,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":71539,"timestamp":7342600021565,"id":7763,"parentId":7238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":71272,"timestamp":7342600021839,"id":7772,"parentId":7764,"tags":{},"startTime":1776949546242,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600093116,"id":7842,"parentId":7764,"tags":{},"startTime":1776949546313,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":71677,"timestamp":7342600021606,"id":7764,"parentId":7238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":71476,"timestamp":7342600021825,"id":7769,"parentId":7761,"tags":{},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600093306,"id":7843,"parentId":7761,"tags":{},"startTime":1776949546313,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":72254,"timestamp":7342600021471,"id":7761,"parentId":7242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":71893,"timestamp":7342600021843,"id":7773,"parentId":7765,"tags":{},"startTime":1776949546242,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342600093748,"id":7844,"parentId":7765,"tags":{},"startTime":1776949546313,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74434,"timestamp":7342600021681,"id":7765,"parentId":7238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":74336,"timestamp":7342600021850,"id":7775,"parentId":7767,"tags":{},"startTime":1776949546242,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":68,"timestamp":7342600096222,"id":7845,"parentId":7767,"tags":{},"startTime":1776949546316,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":75341,"timestamp":7342600021759,"id":7767,"parentId":7237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"ssr"},"startTime":1776949546241,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9742,"timestamp":7342600139791,"id":7863,"parentId":7848,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600149543,"id":7910,"parentId":7848,"tags":{},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11022,"timestamp":7342600139237,"id":7848,"parentId":7245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10509,"timestamp":7342600139767,"id":7861,"parentId":7846,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342600150282,"id":7911,"parentId":7846,"tags":{},"startTime":1776949546370,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12447,"timestamp":7342600139001,"id":7846,"parentId":7250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11663,"timestamp":7342600139798,"id":7864,"parentId":7849,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600151465,"id":7912,"parentId":7849,"tags":{},"startTime":1776949546371,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12383,"timestamp":7342600139280,"id":7849,"parentId":7249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11884,"timestamp":7342600139783,"id":7862,"parentId":7847,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600151671,"id":7913,"parentId":7847,"tags":{},"startTime":1776949546371,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13417,"timestamp":7342600139162,"id":7847,"parentId":7250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12783,"timestamp":7342600139818,"id":7868,"parentId":7853,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54,"timestamp":7342600152609,"id":7914,"parentId":7853,"tags":{},"startTime":1776949546372,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13450,"timestamp":7342600139429,"id":7853,"parentId":7249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13083,"timestamp":7342600139805,"id":7865,"parentId":7850,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600152893,"id":7915,"parentId":7850,"tags":{},"startTime":1776949546373,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13945,"timestamp":7342600139319,"id":7850,"parentId":7249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13464,"timestamp":7342600139810,"id":7866,"parentId":7851,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600153279,"id":7916,"parentId":7851,"tags":{},"startTime":1776949546373,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14226,"timestamp":7342600139357,"id":7851,"parentId":7249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13774,"timestamp":7342600139814,"id":7867,"parentId":7852,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342600153592,"id":7917,"parentId":7852,"tags":{},"startTime":1776949546373,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14791,"timestamp":7342600139392,"id":7852,"parentId":7249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14365,"timestamp":7342600139823,"id":7869,"parentId":7854,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600154191,"id":7918,"parentId":7854,"tags":{},"startTime":1776949546374,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14825,"timestamp":7342600139464,"id":7854,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14464,"timestamp":7342600139829,"id":7871,"parentId":7856,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600154297,"id":7919,"parentId":7856,"tags":{},"startTime":1776949546374,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15367,"timestamp":7342600139557,"id":7856,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15102,"timestamp":7342600139826,"id":7870,"parentId":7855,"tags":{},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600154936,"id":7920,"parentId":7855,"tags":{},"startTime":1776949546375,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15600,"timestamp":7342600139500,"id":7855,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15268,"timestamp":7342600139836,"id":7873,"parentId":7858,"tags":{},"startTime":1776949546360,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600155108,"id":7921,"parentId":7858,"tags":{},"startTime":1776949546375,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15681,"timestamp":7342600139638,"id":7858,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15745,"timestamp":7342600139840,"id":7874,"parentId":7859,"tags":{},"startTime":1776949546360,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600155588,"id":7922,"parentId":7859,"tags":{},"startTime":1776949546375,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16652,"timestamp":7342600139676,"id":7859,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16503,"timestamp":7342600139833,"id":7872,"parentId":7857,"tags":{},"startTime":1776949546360,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600156339,"id":7923,"parentId":7857,"tags":{},"startTime":1776949546376,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17257,"timestamp":7342600139597,"id":7857,"parentId":7238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17016,"timestamp":7342600139843,"id":7875,"parentId":7860,"tags":{},"startTime":1776949546360,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600156863,"id":7924,"parentId":7860,"tags":{},"startTime":1776949546377,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17708,"timestamp":7342600139714,"id":7860,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"ssr"},"startTime":1776949546359,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19561,"timestamp":7342600145446,"id":7888,"parentId":7876,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342600165020,"id":7925,"parentId":7876,"tags":{},"startTime":1776949546385,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20731,"timestamp":7342600144956,"id":7876,"parentId":7245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20245,"timestamp":7342600145457,"id":7889,"parentId":7877,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600165707,"id":7926,"parentId":7877,"tags":{},"startTime":1776949546385,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21085,"timestamp":7342600145030,"id":7877,"parentId":7241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22661,"timestamp":7342600145470,"id":7891,"parentId":7879,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600168141,"id":7927,"parentId":7879,"tags":{},"startTime":1776949546388,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23280,"timestamp":7342600145113,"id":7879,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22954,"timestamp":7342600145464,"id":7890,"parentId":7878,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600168423,"id":7928,"parentId":7878,"tags":{},"startTime":1776949546388,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23904,"timestamp":7342600145072,"id":7878,"parentId":7241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23503,"timestamp":7342600145480,"id":7893,"parentId":7881,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600168988,"id":7929,"parentId":7881,"tags":{},"startTime":1776949546389,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24415,"timestamp":7342600145190,"id":7881,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24138,"timestamp":7342600145485,"id":7894,"parentId":7882,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342600169632,"id":7930,"parentId":7882,"tags":{},"startTime":1776949546389,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24664,"timestamp":7342600145226,"id":7882,"parentId":7252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24422,"timestamp":7342600145476,"id":7892,"parentId":7880,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600169903,"id":7931,"parentId":7880,"tags":{},"startTime":1776949546390,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25013,"timestamp":7342600145149,"id":7880,"parentId":7240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24682,"timestamp":7342600145489,"id":7895,"parentId":7883,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600170177,"id":7932,"parentId":7883,"tags":{},"startTime":1776949546390,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25740,"timestamp":7342600145262,"id":7883,"parentId":7252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25514,"timestamp":7342600145493,"id":7896,"parentId":7884,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600171012,"id":7933,"parentId":7884,"tags":{},"startTime":1776949546391,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25952,"timestamp":7342600145298,"id":7884,"parentId":7255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25758,"timestamp":7342600145496,"id":7897,"parentId":7885,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600171261,"id":7934,"parentId":7885,"tags":{},"startTime":1776949546391,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26037,"timestamp":7342600145335,"id":7885,"parentId":7252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25876,"timestamp":7342600145500,"id":7898,"parentId":7886,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600171379,"id":7935,"parentId":7886,"tags":{},"startTime":1776949546391,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27439,"timestamp":7342600145370,"id":7886,"parentId":7255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27317,"timestamp":7342600145503,"id":7899,"parentId":7887,"tags":{},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600172826,"id":7936,"parentId":7887,"tags":{},"startTime":1776949546392,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27692,"timestamp":7342600145406,"id":7887,"parentId":7255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"ssr"},"startTime":1776949546365,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24311,"timestamp":7342600148985,"id":7901,"parentId":7900,"tags":{},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600173300,"id":7937,"parentId":7900,"tags":{},"startTime":1776949546393,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24949,"timestamp":7342600148868,"id":7900,"parentId":7246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"ssr"},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33913,"timestamp":7342600149463,"id":7906,"parentId":7902,"tags":{},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":55,"timestamp":7342600183534,"id":7938,"parentId":7902,"tags":{},"startTime":1776949546403,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35479,"timestamp":7342600149278,"id":7902,"parentId":7246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"ssr"},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35294,"timestamp":7342600149472,"id":7907,"parentId":7903,"tags":{},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600184774,"id":7939,"parentId":7903,"tags":{},"startTime":1776949546404,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35663,"timestamp":7342600149335,"id":7903,"parentId":7248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"ssr"},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35520,"timestamp":7342600149483,"id":7909,"parentId":7905,"tags":{},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600185007,"id":7940,"parentId":7905,"tags":{},"startTime":1776949546405,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35797,"timestamp":7342600149418,"id":7905,"parentId":7257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"ssr"},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35742,"timestamp":7342600149477,"id":7908,"parentId":7904,"tags":{},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342600185223,"id":7941,"parentId":7904,"tags":{},"startTime":1776949546405,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38193,"timestamp":7342600149378,"id":7904,"parentId":7248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"ssr"},"startTime":1776949546369,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18488,"timestamp":7342600216483,"id":7974,"parentId":7945,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600234980,"id":8136,"parentId":7945,"tags":{},"startTime":1776949546455,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19968,"timestamp":7342600215394,"id":7945,"parentId":7251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18900,"timestamp":7342600216473,"id":7973,"parentId":7944,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600235377,"id":8137,"parentId":7944,"tags":{},"startTime":1776949546455,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20147,"timestamp":7342600215352,"id":7944,"parentId":7257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19041,"timestamp":7342600216463,"id":7972,"parentId":7943,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600235507,"id":8138,"parentId":7943,"tags":{},"startTime":1776949546455,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20365,"timestamp":7342600215300,"id":7943,"parentId":7255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19230,"timestamp":7342600216439,"id":7971,"parentId":7942,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342600235672,"id":8139,"parentId":7942,"tags":{},"startTime":1776949546455,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21378,"timestamp":7342600215189,"id":7942,"parentId":7257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20080,"timestamp":7342600216495,"id":7976,"parentId":7947,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600236580,"id":8140,"parentId":7947,"tags":{},"startTime":1776949546456,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21391,"timestamp":7342600215474,"id":7947,"parentId":7243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20380,"timestamp":7342600216489,"id":7975,"parentId":7946,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600236873,"id":8141,"parentId":7946,"tags":{},"startTime":1776949546457,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22218,"timestamp":7342600215434,"id":7946,"parentId":7251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21151,"timestamp":7342600216507,"id":7979,"parentId":7950,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600237662,"id":8142,"parentId":7950,"tags":{},"startTime":1776949546457,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22426,"timestamp":7342600215607,"id":7950,"parentId":7243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21519,"timestamp":7342600216519,"id":7982,"parentId":7953,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600238041,"id":8143,"parentId":7953,"tags":{},"startTime":1776949546458,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22457,"timestamp":7342600215710,"id":7953,"parentId":7253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21669,"timestamp":7342600216503,"id":7978,"parentId":7949,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600238175,"id":8144,"parentId":7949,"tags":{},"startTime":1776949546458,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22763,"timestamp":7342600215569,"id":7949,"parentId":7261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23131,"timestamp":7342600216499,"id":7977,"parentId":7948,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600239634,"id":8145,"parentId":7948,"tags":{},"startTime":1776949546459,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24225,"timestamp":7342600215532,"id":7948,"parentId":7243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23238,"timestamp":7342600216522,"id":7983,"parentId":7954,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600239765,"id":8146,"parentId":7954,"tags":{},"startTime":1776949546459,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24297,"timestamp":7342600215763,"id":7954,"parentId":7245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23579,"timestamp":7342600216512,"id":7980,"parentId":7951,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":179,"timestamp":7342600240101,"id":8147,"parentId":7951,"tags":{},"startTime":1776949546460,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26869,"timestamp":7342600215642,"id":7951,"parentId":7261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25997,"timestamp":7342600216526,"id":7984,"parentId":7955,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600242528,"id":8148,"parentId":7955,"tags":{},"startTime":1776949546462,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26917,"timestamp":7342600215799,"id":7955,"parentId":7245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26206,"timestamp":7342600216515,"id":7981,"parentId":7952,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600242726,"id":8149,"parentId":7952,"tags":{},"startTime":1776949546462,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27171,"timestamp":7342600215676,"id":7952,"parentId":7261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"ssr"},"startTime":1776949546435,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26316,"timestamp":7342600216537,"id":7987,"parentId":7958,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600242857,"id":8150,"parentId":7958,"tags":{},"startTime":1776949546463,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27500,"timestamp":7342600215913,"id":7958,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26893,"timestamp":7342600216529,"id":7985,"parentId":7956,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600243429,"id":8151,"parentId":7956,"tags":{},"startTime":1776949546463,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27949,"timestamp":7342600215840,"id":7956,"parentId":7249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27261,"timestamp":7342600216533,"id":7986,"parentId":7957,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600243799,"id":8152,"parentId":7957,"tags":{},"startTime":1776949546463,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28322,"timestamp":7342600215878,"id":7957,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27670,"timestamp":7342600216541,"id":7988,"parentId":7959,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342600244216,"id":8153,"parentId":7959,"tags":{},"startTime":1776949546464,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29424,"timestamp":7342600215951,"id":7959,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28853,"timestamp":7342600216544,"id":7989,"parentId":7960,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342600245406,"id":8154,"parentId":7960,"tags":{},"startTime":1776949546465,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29723,"timestamp":7342600215988,"id":7960,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29187,"timestamp":7342600216551,"id":7991,"parentId":7962,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600245744,"id":8155,"parentId":7962,"tags":{},"startTime":1776949546465,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30211,"timestamp":7342600216061,"id":7962,"parentId":7265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29705,"timestamp":7342600216573,"id":7995,"parentId":7966,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342600246283,"id":8156,"parentId":7966,"tags":{},"startTime":1776949546466,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32306,"timestamp":7342600216200,"id":7966,"parentId":7258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31944,"timestamp":7342600216569,"id":7994,"parentId":7965,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600248518,"id":8157,"parentId":7965,"tags":{},"startTime":1776949546468,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32860,"timestamp":7342600216167,"id":7965,"parentId":7258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32485,"timestamp":7342600216547,"id":7990,"parentId":7961,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342600249037,"id":8158,"parentId":7961,"tags":{},"startTime":1776949546469,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33494,"timestamp":7342600216025,"id":7961,"parentId":7247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32973,"timestamp":7342600216555,"id":7992,"parentId":7963,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600249532,"id":8159,"parentId":7963,"tags":{},"startTime":1776949546469,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34203,"timestamp":7342600216094,"id":7963,"parentId":7253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33721,"timestamp":7342600216579,"id":7997,"parentId":7968,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600250305,"id":8160,"parentId":7968,"tags":{},"startTime":1776949546470,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34219,"timestamp":7342600216269,"id":7968,"parentId":7258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33917,"timestamp":7342600216576,"id":7996,"parentId":7967,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600250496,"id":8161,"parentId":7967,"tags":{},"startTime":1776949546470,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34355,"timestamp":7342600216236,"id":7967,"parentId":7258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34009,"timestamp":7342600216586,"id":7999,"parentId":7970,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600250597,"id":8162,"parentId":7970,"tags":{},"startTime":1776949546470,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34659,"timestamp":7342600216338,"id":7970,"parentId":7260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34596,"timestamp":7342600216558,"id":7993,"parentId":7964,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600251158,"id":8163,"parentId":7964,"tags":{},"startTime":1776949546471,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35132,"timestamp":7342600216132,"id":7964,"parentId":7265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34873,"timestamp":7342600216582,"id":7998,"parentId":7969,"tags":{},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342600251464,"id":8164,"parentId":7969,"tags":{},"startTime":1776949546471,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35400,"timestamp":7342600216305,"id":7969,"parentId":7260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"ssr"},"startTime":1776949546436,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25431,"timestamp":7342600230747,"id":8059,"parentId":8001,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600256186,"id":8165,"parentId":8001,"tags":{},"startTime":1776949546476,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27889,"timestamp":7342600228681,"id":8001,"parentId":7254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"ssr"},"startTime":1776949546448,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":25939,"timestamp":7342600230730,"id":8058,"parentId":8000,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600256674,"id":8166,"parentId":8000,"tags":{},"startTime":1776949546476,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28505,"timestamp":7342600228604,"id":8000,"parentId":7260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"ssr"},"startTime":1776949546448,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26361,"timestamp":7342600230754,"id":8060,"parentId":8002,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600257120,"id":8167,"parentId":8002,"tags":{},"startTime":1776949546477,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28549,"timestamp":7342600228723,"id":8002,"parentId":7254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"ssr"},"startTime":1776949546448,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26516,"timestamp":7342600230762,"id":8061,"parentId":8003,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600257281,"id":8168,"parentId":8003,"tags":{},"startTime":1776949546477,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28678,"timestamp":7342600228763,"id":8003,"parentId":7254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"ssr"},"startTime":1776949546448,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26665,"timestamp":7342600230780,"id":8063,"parentId":8005,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600257449,"id":8169,"parentId":8005,"tags":{},"startTime":1776949546477,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29421,"timestamp":7342600228842,"id":8005,"parentId":7254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27487,"timestamp":7342600230792,"id":8065,"parentId":8007,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342600258288,"id":8170,"parentId":8007,"tags":{},"startTime":1776949546478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30685,"timestamp":7342600228935,"id":8007,"parentId":7267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28858,"timestamp":7342600230774,"id":8062,"parentId":8004,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342600259639,"id":8171,"parentId":8004,"tags":{},"startTime":1776949546479,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31658,"timestamp":7342600228801,"id":8004,"parentId":7254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"ssr"},"startTime":1776949546448,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29684,"timestamp":7342600230787,"id":8064,"parentId":8006,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600260477,"id":8172,"parentId":8006,"tags":{},"startTime":1776949546480,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31831,"timestamp":7342600228893,"id":8006,"parentId":7267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":29911,"timestamp":7342600230827,"id":8070,"parentId":8012,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342600260746,"id":8173,"parentId":8012,"tags":{},"startTime":1776949546480,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32466,"timestamp":7342600229115,"id":8012,"parentId":7264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30767,"timestamp":7342600230822,"id":8069,"parentId":8011,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":59,"timestamp":7342600261595,"id":8174,"parentId":8011,"tags":{},"startTime":1776949546481,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33947,"timestamp":7342600229079,"id":8011,"parentId":7264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32206,"timestamp":7342600230832,"id":8071,"parentId":8013,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600263044,"id":8175,"parentId":8013,"tags":{},"startTime":1776949546483,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34112,"timestamp":7342600229151,"id":8013,"parentId":7243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32474,"timestamp":7342600230796,"id":8066,"parentId":8008,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600263274,"id":8176,"parentId":8008,"tags":{},"startTime":1776949546483,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34810,"timestamp":7342600228971,"id":8008,"parentId":7263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32988,"timestamp":7342600230800,"id":8067,"parentId":8009,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":84,"timestamp":7342600263793,"id":8177,"parentId":8009,"tags":{},"startTime":1776949546483,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36427,"timestamp":7342600229007,"id":8009,"parentId":7263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34612,"timestamp":7342600230836,"id":8072,"parentId":8014,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600265455,"id":8178,"parentId":8014,"tags":{},"startTime":1776949546485,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36592,"timestamp":7342600229189,"id":8014,"parentId":7243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34988,"timestamp":7342600230804,"id":8068,"parentId":8010,"tags":{},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600265799,"id":8179,"parentId":8010,"tags":{},"startTime":1776949546485,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37062,"timestamp":7342600229043,"id":8010,"parentId":7263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35270,"timestamp":7342600230845,"id":8074,"parentId":8016,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600266120,"id":8180,"parentId":8016,"tags":{},"startTime":1776949546486,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37125,"timestamp":7342600229259,"id":8016,"parentId":7243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35541,"timestamp":7342600230849,"id":8075,"parentId":8017,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600266394,"id":8181,"parentId":8017,"tags":{},"startTime":1776949546486,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37230,"timestamp":7342600229293,"id":8017,"parentId":7266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35674,"timestamp":7342600230856,"id":8077,"parentId":8019,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600266534,"id":8182,"parentId":8019,"tags":{},"startTime":1776949546486,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37933,"timestamp":7342600229363,"id":8019,"parentId":7363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36454,"timestamp":7342600230852,"id":8076,"parentId":8018,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600267311,"id":8183,"parentId":8018,"tags":{},"startTime":1776949546487,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38236,"timestamp":7342600229327,"id":8018,"parentId":7363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36710,"timestamp":7342600230859,"id":8078,"parentId":8020,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600267575,"id":8184,"parentId":8020,"tags":{},"startTime":1776949546487,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38345,"timestamp":7342600229397,"id":8020,"parentId":7363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36907,"timestamp":7342600230840,"id":8073,"parentId":8015,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600267755,"id":8185,"parentId":8015,"tags":{},"startTime":1776949546487,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38673,"timestamp":7342600229223,"id":8015,"parentId":7243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37038,"timestamp":7342600230863,"id":8079,"parentId":8021,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600267905,"id":8186,"parentId":8021,"tags":{},"startTime":1776949546488,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38589,"timestamp":7342600229433,"id":8021,"parentId":7360,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37159,"timestamp":7342600230867,"id":8080,"parentId":8022,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600268030,"id":8187,"parentId":8022,"tags":{},"startTime":1776949546488,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38681,"timestamp":7342600229467,"id":8022,"parentId":7365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37285,"timestamp":7342600230870,"id":8081,"parentId":8023,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600268158,"id":8188,"parentId":8023,"tags":{},"startTime":1776949546488,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38810,"timestamp":7342600229503,"id":8023,"parentId":7360,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37442,"timestamp":7342600230875,"id":8082,"parentId":8024,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600268320,"id":8189,"parentId":8024,"tags":{},"startTime":1776949546488,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39389,"timestamp":7342600229536,"id":8024,"parentId":7365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38053,"timestamp":7342600230878,"id":8083,"parentId":8025,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600268936,"id":8190,"parentId":8025,"tags":{},"startTime":1776949546489,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39507,"timestamp":7342600229570,"id":8025,"parentId":7360,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38199,"timestamp":7342600230882,"id":8084,"parentId":8026,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600269084,"id":8191,"parentId":8026,"tags":{},"startTime":1776949546489,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39585,"timestamp":7342600229603,"id":8026,"parentId":7360,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38296,"timestamp":7342600230897,"id":8088,"parentId":8030,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600269198,"id":8192,"parentId":8030,"tags":{},"startTime":1776949546489,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39886,"timestamp":7342600229740,"id":8030,"parentId":7365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38746,"timestamp":7342600230886,"id":8085,"parentId":8027,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342600269642,"id":8193,"parentId":8027,"tags":{},"startTime":1776949546489,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40900,"timestamp":7342600229636,"id":8027,"parentId":7365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39650,"timestamp":7342600230894,"id":8087,"parentId":8029,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342600270547,"id":8194,"parentId":8029,"tags":{},"startTime":1776949546490,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43927,"timestamp":7342600229706,"id":8029,"parentId":7365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42742,"timestamp":7342600230901,"id":8089,"parentId":8031,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342600273648,"id":8195,"parentId":8031,"tags":{},"startTime":1776949546493,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45210,"timestamp":7342600229773,"id":8031,"parentId":7370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44114,"timestamp":7342600230890,"id":8086,"parentId":8028,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600275009,"id":8196,"parentId":8028,"tags":{},"startTime":1776949546495,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45685,"timestamp":7342600229670,"id":8028,"parentId":7365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44459,"timestamp":7342600230905,"id":8090,"parentId":8032,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600275368,"id":8197,"parentId":8032,"tags":{},"startTime":1776949546495,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46611,"timestamp":7342600229808,"id":8032,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"ssr"},"startTime":1776949546449,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45520,"timestamp":7342600230915,"id":8093,"parentId":8035,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600276442,"id":8198,"parentId":8035,"tags":{},"startTime":1776949546496,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46828,"timestamp":7342600229911,"id":8035,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45834,"timestamp":7342600230912,"id":8092,"parentId":8034,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342600276752,"id":8199,"parentId":8034,"tags":{},"startTime":1776949546496,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":48423,"timestamp":7342600229873,"id":8034,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47387,"timestamp":7342600230921,"id":8094,"parentId":8036,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600278314,"id":8200,"parentId":8036,"tags":{},"startTime":1776949546498,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48497,"timestamp":7342600229952,"id":8036,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47548,"timestamp":7342600230908,"id":8091,"parentId":8033,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600278461,"id":8201,"parentId":8033,"tags":{},"startTime":1776949546498,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48830,"timestamp":7342600229840,"id":8033,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47751,"timestamp":7342600230925,"id":8095,"parentId":8037,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600278680,"id":8202,"parentId":8037,"tags":{},"startTime":1776949546498,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48803,"timestamp":7342600229985,"id":8037,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47847,"timestamp":7342600230946,"id":8101,"parentId":8043,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600278797,"id":8203,"parentId":8043,"tags":{},"startTime":1776949546498,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49244,"timestamp":7342600230221,"id":8043,"parentId":7396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":48544,"timestamp":7342600230928,"id":8096,"parentId":8038,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600279476,"id":8204,"parentId":8038,"tags":{},"startTime":1776949546499,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":49924,"timestamp":7342600230019,"id":8038,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49014,"timestamp":7342600230939,"id":8099,"parentId":8041,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600279957,"id":8205,"parentId":8041,"tags":{},"startTime":1776949546500,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50124,"timestamp":7342600230117,"id":8041,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49304,"timestamp":7342600230943,"id":8100,"parentId":8042,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600280250,"id":8206,"parentId":8042,"tags":{},"startTime":1776949546500,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50376,"timestamp":7342600230150,"id":8042,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49597,"timestamp":7342600230935,"id":8098,"parentId":8040,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600280536,"id":8207,"parentId":8040,"tags":{},"startTime":1776949546500,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50764,"timestamp":7342600230084,"id":8040,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":49921,"timestamp":7342600230931,"id":8097,"parentId":8039,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600280856,"id":8208,"parentId":8039,"tags":{},"startTime":1776949546501,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51340,"timestamp":7342600230052,"id":8039,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50442,"timestamp":7342600230956,"id":8104,"parentId":8046,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600281406,"id":8209,"parentId":8046,"tags":{},"startTime":1776949546501,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51738,"timestamp":7342600230320,"id":8046,"parentId":7375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51115,"timestamp":7342600230950,"id":8102,"parentId":8044,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61,"timestamp":7342600282069,"id":8210,"parentId":8044,"tags":{},"startTime":1776949546502,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53799,"timestamp":7342600230255,"id":8044,"parentId":7407,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53096,"timestamp":7342600230966,"id":8107,"parentId":8049,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600284068,"id":8211,"parentId":8049,"tags":{},"startTime":1776949546504,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53996,"timestamp":7342600230419,"id":8049,"parentId":7375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":53460,"timestamp":7342600230963,"id":8106,"parentId":8048,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600284427,"id":8212,"parentId":8048,"tags":{},"startTime":1776949546504,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":54633,"timestamp":7342600230386,"id":8048,"parentId":7375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54072,"timestamp":7342600230953,"id":8103,"parentId":8045,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600285029,"id":8213,"parentId":8045,"tags":{},"startTime":1776949546505,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55574,"timestamp":7342600230288,"id":8045,"parentId":7374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":54902,"timestamp":7342600230969,"id":8108,"parentId":8050,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600285877,"id":8214,"parentId":8050,"tags":{},"startTime":1776949546506,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":55777,"timestamp":7342600230452,"id":8050,"parentId":7375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":55280,"timestamp":7342600230976,"id":8110,"parentId":8052,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342600286259,"id":8215,"parentId":8052,"tags":{},"startTime":1776949546506,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56408,"timestamp":7342600230520,"id":8052,"parentId":7397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":55955,"timestamp":7342600230979,"id":8111,"parentId":8053,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600286939,"id":8216,"parentId":8053,"tags":{},"startTime":1776949546507,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56947,"timestamp":7342600230553,"id":8053,"parentId":7407,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56535,"timestamp":7342600230972,"id":8109,"parentId":8051,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600287511,"id":8217,"parentId":8051,"tags":{},"startTime":1776949546507,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57675,"timestamp":7342600230487,"id":8051,"parentId":7375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57187,"timestamp":7342600230982,"id":8112,"parentId":8054,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600288173,"id":8218,"parentId":8054,"tags":{},"startTime":1776949546508,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57668,"timestamp":7342600230587,"id":8054,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57305,"timestamp":7342600230960,"id":8105,"parentId":8047,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600288268,"id":8219,"parentId":8047,"tags":{},"startTime":1776949546508,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58010,"timestamp":7342600230352,"id":8047,"parentId":7375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57377,"timestamp":7342600230991,"id":8115,"parentId":8057,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600288373,"id":8220,"parentId":8057,"tags":{},"startTime":1776949546508,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57831,"timestamp":7342600230686,"id":8057,"parentId":7413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57554,"timestamp":7342600230985,"id":8113,"parentId":8055,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600288543,"id":8221,"parentId":8055,"tags":{},"startTime":1776949546508,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58631,"timestamp":7342600230620,"id":8055,"parentId":7416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58268,"timestamp":7342600230988,"id":8114,"parentId":8056,"tags":{},"startTime":1776949546451,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600289260,"id":8222,"parentId":8056,"tags":{},"startTime":1776949546509,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58710,"timestamp":7342600230654,"id":8056,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"ssr"},"startTime":1776949546450,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":69441,"timestamp":7342600233025,"id":8117,"parentId":8116,"tags":{},"startTime":1776949546453,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342600302477,"id":8223,"parentId":8116,"tags":{},"startTime":1776949546522,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":70601,"timestamp":7342600232963,"id":8116,"parentId":7408,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"ssr"},"startTime":1776949546453,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80550,"timestamp":7342600234676,"id":8127,"parentId":8118,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600315235,"id":8224,"parentId":8118,"tags":{},"startTime":1776949546535,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":81681,"timestamp":7342600234115,"id":8118,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":81116,"timestamp":7342600234690,"id":8128,"parentId":8119,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600315810,"id":8225,"parentId":8119,"tags":{},"startTime":1776949546535,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":82168,"timestamp":7342600234241,"id":8119,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":81718,"timestamp":7342600234697,"id":8129,"parentId":8120,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600316419,"id":8226,"parentId":8120,"tags":{},"startTime":1776949546536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":82463,"timestamp":7342600234316,"id":8120,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":82073,"timestamp":7342600234712,"id":8131,"parentId":8122,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600316788,"id":8227,"parentId":8122,"tags":{},"startTime":1776949546536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":83442,"timestamp":7342600234464,"id":8122,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":83207,"timestamp":7342600234717,"id":8132,"parentId":8123,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342600317935,"id":8228,"parentId":8123,"tags":{},"startTime":1776949546538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":83894,"timestamp":7342600234503,"id":8123,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":83686,"timestamp":7342600234721,"id":8133,"parentId":8124,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":100,"timestamp":7342600318414,"id":8229,"parentId":8124,"tags":{},"startTime":1776949546538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":84160,"timestamp":7342600234547,"id":8124,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":84013,"timestamp":7342600234704,"id":8130,"parentId":8121,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600318722,"id":8230,"parentId":8121,"tags":{},"startTime":1776949546538,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":85062,"timestamp":7342600234413,"id":8121,"parentId":7410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":84784,"timestamp":7342600234725,"id":8134,"parentId":8125,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600319515,"id":8231,"parentId":8125,"tags":{},"startTime":1776949546539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":85096,"timestamp":7342600234594,"id":8125,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":84968,"timestamp":7342600234728,"id":8135,"parentId":8126,"tags":{},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600319699,"id":8232,"parentId":8126,"tags":{},"startTime":1776949546539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":85201,"timestamp":7342600234633,"id":8126,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"ssr"},"startTime":1776949546454,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":10767,"timestamp":7342600357426,"id":8315,"parentId":8234,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":34,"timestamp":7342600368311,"id":8433,"parentId":8234,"tags":{},"startTime":1776949546588,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14180,"timestamp":7342600354500,"id":8234,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11257,"timestamp":7342600357434,"id":8316,"parentId":8235,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600368694,"id":8434,"parentId":8235,"tags":{},"startTime":1776949546588,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14319,"timestamp":7342600354543,"id":8235,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11462,"timestamp":7342600357404,"id":8314,"parentId":8233,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600368869,"id":8435,"parentId":8233,"tags":{},"startTime":1776949546589,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14582,"timestamp":7342600354407,"id":8233,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11551,"timestamp":7342600357442,"id":8317,"parentId":8236,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600368995,"id":8436,"parentId":8236,"tags":{},"startTime":1776949546589,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14601,"timestamp":7342600354585,"id":8236,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11733,"timestamp":7342600357459,"id":8320,"parentId":8239,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600369195,"id":8437,"parentId":8239,"tags":{},"startTime":1776949546589,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14699,"timestamp":7342600354707,"id":8239,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":11962,"timestamp":7342600357449,"id":8318,"parentId":8237,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600369414,"id":8438,"parentId":8237,"tags":{},"startTime":1776949546589,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14927,"timestamp":7342600354628,"id":8237,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12639,"timestamp":7342600357464,"id":8321,"parentId":8240,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600370107,"id":8439,"parentId":8240,"tags":{},"startTime":1776949546590,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15648,"timestamp":7342600354747,"id":8240,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12945,"timestamp":7342600357454,"id":8319,"parentId":8238,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600370403,"id":8440,"parentId":8238,"tags":{},"startTime":1776949546590,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15846,"timestamp":7342600354668,"id":8238,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13032,"timestamp":7342600357485,"id":8326,"parentId":8245,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600370521,"id":8441,"parentId":8245,"tags":{},"startTime":1776949546590,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16155,"timestamp":7342600354935,"id":8245,"parentId":7421,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13633,"timestamp":7342600357469,"id":8322,"parentId":8241,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600371106,"id":8442,"parentId":8241,"tags":{},"startTime":1776949546591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16495,"timestamp":7342600354786,"id":8241,"parentId":7372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13807,"timestamp":7342600357478,"id":8324,"parentId":8243,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600371288,"id":8443,"parentId":8243,"tags":{},"startTime":1776949546591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16577,"timestamp":7342600354862,"id":8243,"parentId":7403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13961,"timestamp":7342600357481,"id":8325,"parentId":8244,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600371445,"id":8444,"parentId":8244,"tags":{},"startTime":1776949546591,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17234,"timestamp":7342600354900,"id":8244,"parentId":7425,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14679,"timestamp":7342600357474,"id":8323,"parentId":8242,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342600372162,"id":8445,"parentId":8242,"tags":{},"startTime":1776949546592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17561,"timestamp":7342600354825,"id":8242,"parentId":7403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"ssr"},"startTime":1776949546574,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14903,"timestamp":7342600357490,"id":8327,"parentId":8246,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600372397,"id":8446,"parentId":8246,"tags":{},"startTime":1776949546592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17684,"timestamp":7342600354976,"id":8246,"parentId":7424,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15166,"timestamp":7342600357501,"id":8329,"parentId":8248,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600372671,"id":8447,"parentId":8248,"tags":{},"startTime":1776949546592,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17931,"timestamp":7342600355077,"id":8248,"parentId":7423,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15508,"timestamp":7342600357505,"id":8330,"parentId":8249,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600373017,"id":8448,"parentId":8249,"tags":{},"startTime":1776949546593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18072,"timestamp":7342600355113,"id":8249,"parentId":7426,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15679,"timestamp":7342600357509,"id":8331,"parentId":8250,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600373192,"id":8449,"parentId":8250,"tags":{},"startTime":1776949546593,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18714,"timestamp":7342600355148,"id":8250,"parentId":7411,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16350,"timestamp":7342600357517,"id":8333,"parentId":8252,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600373872,"id":8450,"parentId":8252,"tags":{},"startTime":1776949546594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18785,"timestamp":7342600355218,"id":8252,"parentId":7431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16488,"timestamp":7342600357520,"id":8334,"parentId":8253,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600374012,"id":8451,"parentId":8253,"tags":{},"startTime":1776949546594,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19745,"timestamp":7342600355252,"id":8253,"parentId":7427,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17495,"timestamp":7342600357513,"id":8332,"parentId":8251,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600375013,"id":8452,"parentId":8251,"tags":{},"startTime":1776949546595,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19936,"timestamp":7342600355184,"id":8251,"parentId":7407,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17601,"timestamp":7342600357524,"id":8335,"parentId":8254,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600375130,"id":8453,"parentId":8254,"tags":{},"startTime":1776949546595,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19978,"timestamp":7342600355285,"id":8254,"parentId":7425,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17740,"timestamp":7342600357528,"id":8336,"parentId":8255,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600375271,"id":8454,"parentId":8255,"tags":{},"startTime":1776949546595,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20941,"timestamp":7342600355322,"id":8255,"parentId":7430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18773,"timestamp":7342600357497,"id":8328,"parentId":8247,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600376274,"id":8455,"parentId":8247,"tags":{},"startTime":1776949546596,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21625,"timestamp":7342600355038,"id":8247,"parentId":7426,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19134,"timestamp":7342600357535,"id":8338,"parentId":8257,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600376673,"id":8456,"parentId":8257,"tags":{},"startTime":1776949546596,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21406,"timestamp":7342600355389,"id":8257,"parentId":7431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19270,"timestamp":7342600357532,"id":8337,"parentId":8256,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600376805,"id":8457,"parentId":8256,"tags":{},"startTime":1776949546596,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22521,"timestamp":7342600355355,"id":8256,"parentId":7430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20345,"timestamp":7342600357546,"id":8340,"parentId":8259,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":49,"timestamp":7342600377899,"id":8458,"parentId":8259,"tags":{},"startTime":1776949546598,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23057,"timestamp":7342600355462,"id":8259,"parentId":7426,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20979,"timestamp":7342600357553,"id":8342,"parentId":8261,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600378537,"id":8459,"parentId":8261,"tags":{},"startTime":1776949546598,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23433,"timestamp":7342600355532,"id":8261,"parentId":7474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21421,"timestamp":7342600357550,"id":8341,"parentId":8260,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600378975,"id":8460,"parentId":8260,"tags":{},"startTime":1776949546599,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24286,"timestamp":7342600355499,"id":8260,"parentId":7474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22266,"timestamp":7342600357541,"id":8339,"parentId":8258,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342600379812,"id":8461,"parentId":8258,"tags":{},"startTime":1776949546599,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25882,"timestamp":7342600355428,"id":8258,"parentId":7483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23762,"timestamp":7342600357557,"id":8343,"parentId":8262,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600381335,"id":8462,"parentId":8262,"tags":{},"startTime":1776949546601,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25921,"timestamp":7342600355564,"id":8262,"parentId":7474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23927,"timestamp":7342600357564,"id":8345,"parentId":8264,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600381495,"id":8463,"parentId":8264,"tags":{},"startTime":1776949546601,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26161,"timestamp":7342600355629,"id":8264,"parentId":7483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24227,"timestamp":7342600357572,"id":8347,"parentId":8266,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600381802,"id":8464,"parentId":8266,"tags":{},"startTime":1776949546601,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26229,"timestamp":7342600355712,"id":8266,"parentId":7483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24383,"timestamp":7342600357561,"id":8344,"parentId":8263,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":51,"timestamp":7342600381948,"id":8465,"parentId":8263,"tags":{},"startTime":1776949546602,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28487,"timestamp":7342600355597,"id":8263,"parentId":7484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26528,"timestamp":7342600357567,"id":8346,"parentId":8265,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600384101,"id":8466,"parentId":8265,"tags":{},"startTime":1776949546604,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28685,"timestamp":7342600355662,"id":8265,"parentId":7483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":26858,"timestamp":7342600357575,"id":8348,"parentId":8267,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600384437,"id":8467,"parentId":8267,"tags":{},"startTime":1776949546604,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28768,"timestamp":7342600355746,"id":8267,"parentId":7483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26931,"timestamp":7342600357589,"id":8352,"parentId":8271,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600384523,"id":8468,"parentId":8271,"tags":{},"startTime":1776949546604,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29290,"timestamp":7342600355879,"id":8271,"parentId":7485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27595,"timestamp":7342600357579,"id":8349,"parentId":8268,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600385177,"id":8469,"parentId":8268,"tags":{},"startTime":1776949546605,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29673,"timestamp":7342600355778,"id":8268,"parentId":7482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":27875,"timestamp":7342600357582,"id":8350,"parentId":8269,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600385460,"id":8470,"parentId":8269,"tags":{},"startTime":1776949546605,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29845,"timestamp":7342600355811,"id":8269,"parentId":7483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"ssr"},"startTime":1776949546575,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28075,"timestamp":7342600357585,"id":8351,"parentId":8270,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600385665,"id":8471,"parentId":8270,"tags":{},"startTime":1776949546605,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30298,"timestamp":7342600355844,"id":8270,"parentId":7433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28559,"timestamp":7342600357592,"id":8353,"parentId":8272,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600386157,"id":8472,"parentId":8272,"tags":{},"startTime":1776949546606,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30638,"timestamp":7342600355919,"id":8272,"parentId":7490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28969,"timestamp":7342600357596,"id":8354,"parentId":8273,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600386568,"id":8473,"parentId":8273,"tags":{},"startTime":1776949546606,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33273,"timestamp":7342600355955,"id":8273,"parentId":7500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31621,"timestamp":7342600357618,"id":8359,"parentId":8278,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342600389244,"id":8474,"parentId":8278,"tags":{},"startTime":1776949546609,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33278,"timestamp":7342600356142,"id":8278,"parentId":7536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31820,"timestamp":7342600357604,"id":8355,"parentId":8274,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600389427,"id":8475,"parentId":8274,"tags":{},"startTime":1776949546609,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33743,"timestamp":7342600355989,"id":8274,"parentId":7474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32108,"timestamp":7342600357632,"id":8363,"parentId":8282,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600389744,"id":8476,"parentId":8282,"tags":{},"startTime":1776949546609,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33860,"timestamp":7342600356279,"id":8282,"parentId":7534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32530,"timestamp":7342600357615,"id":8358,"parentId":8277,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600390147,"id":8477,"parentId":8277,"tags":{},"startTime":1776949546610,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34254,"timestamp":7342600356108,"id":8277,"parentId":7433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32759,"timestamp":7342600357608,"id":8356,"parentId":8275,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600390375,"id":8478,"parentId":8275,"tags":{},"startTime":1776949546610,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34452,"timestamp":7342600356025,"id":8275,"parentId":7485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32870,"timestamp":7342600357611,"id":8357,"parentId":8276,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600390484,"id":8479,"parentId":8276,"tags":{},"startTime":1776949546610,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35060,"timestamp":7342600356066,"id":8276,"parentId":7474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33509,"timestamp":7342600357622,"id":8360,"parentId":8279,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600391134,"id":8480,"parentId":8279,"tags":{},"startTime":1776949546611,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35434,"timestamp":7342600356176,"id":8279,"parentId":7536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33993,"timestamp":7342600357629,"id":8362,"parentId":8281,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600391626,"id":8481,"parentId":8281,"tags":{},"startTime":1776949546611,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35486,"timestamp":7342600356245,"id":8281,"parentId":7534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34097,"timestamp":7342600357639,"id":8365,"parentId":8284,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600391739,"id":8482,"parentId":8284,"tags":{},"startTime":1776949546611,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35553,"timestamp":7342600356355,"id":8284,"parentId":7643,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34291,"timestamp":7342600357626,"id":8361,"parentId":8280,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600391920,"id":8483,"parentId":8280,"tags":{},"startTime":1776949546612,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35863,"timestamp":7342600356212,"id":8280,"parentId":7534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34440,"timestamp":7342600357642,"id":8366,"parentId":8285,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600392086,"id":8484,"parentId":8285,"tags":{},"startTime":1776949546612,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36462,"timestamp":7342600356389,"id":8285,"parentId":7639,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35227,"timestamp":7342600357636,"id":8364,"parentId":8283,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342600392869,"id":8485,"parentId":8283,"tags":{},"startTime":1776949546613,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37025,"timestamp":7342600356317,"id":8283,"parentId":7645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35703,"timestamp":7342600357645,"id":8367,"parentId":8286,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600393354,"id":8486,"parentId":8286,"tags":{},"startTime":1776949546613,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37280,"timestamp":7342600356427,"id":8286,"parentId":7639,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36056,"timestamp":7342600357655,"id":8370,"parentId":8289,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600393716,"id":8487,"parentId":8289,"tags":{},"startTime":1776949546613,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37492,"timestamp":7342600356525,"id":8289,"parentId":7663,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36363,"timestamp":7342600357658,"id":8371,"parentId":8290,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600394025,"id":8488,"parentId":8290,"tags":{},"startTime":1776949546614,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37681,"timestamp":7342600356561,"id":8290,"parentId":7660,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36598,"timestamp":7342600357649,"id":8368,"parentId":8287,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600394250,"id":8489,"parentId":8287,"tags":{},"startTime":1776949546614,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38207,"timestamp":7342600356459,"id":8287,"parentId":7639,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37006,"timestamp":7342600357665,"id":8373,"parentId":8292,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600394675,"id":8490,"parentId":8292,"tags":{},"startTime":1776949546614,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38216,"timestamp":7342600356634,"id":8292,"parentId":7682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37185,"timestamp":7342600357668,"id":8374,"parentId":8293,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600394857,"id":8491,"parentId":8293,"tags":{},"startTime":1776949546615,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38693,"timestamp":7342600356669,"id":8293,"parentId":7675,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37717,"timestamp":7342600357652,"id":8369,"parentId":8288,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600395373,"id":8492,"parentId":8288,"tags":{},"startTime":1776949546615,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40008,"timestamp":7342600356492,"id":8288,"parentId":7639,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38843,"timestamp":7342600357661,"id":8372,"parentId":8291,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600396514,"id":8493,"parentId":8291,"tags":{},"startTime":1776949546616,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40180,"timestamp":7342600356596,"id":8291,"parentId":7670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39114,"timestamp":7342600357671,"id":8375,"parentId":8294,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600396790,"id":8494,"parentId":8294,"tags":{},"startTime":1776949546616,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40466,"timestamp":7342600356707,"id":8294,"parentId":7687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39500,"timestamp":7342600357678,"id":8377,"parentId":8296,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600397182,"id":8495,"parentId":8296,"tags":{},"startTime":1776949546617,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40733,"timestamp":7342600356777,"id":8296,"parentId":7691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39829,"timestamp":7342600357686,"id":8379,"parentId":8298,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600397519,"id":8496,"parentId":8298,"tags":{},"startTime":1776949546617,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41275,"timestamp":7342600356848,"id":8298,"parentId":7694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40453,"timestamp":7342600357681,"id":8378,"parentId":8297,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342600398140,"id":8497,"parentId":8297,"tags":{},"startTime":1776949546618,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41851,"timestamp":7342600356815,"id":8297,"parentId":7690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40984,"timestamp":7342600357689,"id":8380,"parentId":8299,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600398677,"id":8498,"parentId":8299,"tags":{},"startTime":1776949546618,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41938,"timestamp":7342600356882,"id":8299,"parentId":7690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41150,"timestamp":7342600357675,"id":8376,"parentId":8295,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600398828,"id":8499,"parentId":8295,"tags":{},"startTime":1776949546618,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42254,"timestamp":7342600356743,"id":8295,"parentId":7686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"ssr"},"startTime":1776949546576,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":41368,"timestamp":7342600357697,"id":8383,"parentId":8302,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":62,"timestamp":7342600399071,"id":8500,"parentId":8302,"tags":{},"startTime":1776949546619,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":43393,"timestamp":7342600356980,"id":8302,"parentId":7694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":42729,"timestamp":7342600357701,"id":8384,"parentId":8303,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342600400435,"id":8501,"parentId":8303,"tags":{},"startTime":1776949546620,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":43850,"timestamp":7342600357014,"id":8303,"parentId":7690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43182,"timestamp":7342600357692,"id":8381,"parentId":8300,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342600400879,"id":8502,"parentId":8300,"tags":{},"startTime":1776949546621,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44806,"timestamp":7342600356915,"id":8300,"parentId":7694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44024,"timestamp":7342600357704,"id":8385,"parentId":8304,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600401731,"id":8503,"parentId":8304,"tags":{},"startTime":1776949546621,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":44952,"timestamp":7342600357047,"id":8304,"parentId":7694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":44294,"timestamp":7342600357710,"id":8387,"parentId":8306,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600402007,"id":8504,"parentId":8306,"tags":{},"startTime":1776949546622,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":45954,"timestamp":7342600357115,"id":8306,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45363,"timestamp":7342600357716,"id":8389,"parentId":8308,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600403085,"id":8505,"parentId":8308,"tags":{},"startTime":1776949546623,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46060,"timestamp":7342600357186,"id":8308,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45570,"timestamp":7342600357694,"id":8382,"parentId":8301,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600403269,"id":8506,"parentId":8301,"tags":{},"startTime":1776949546623,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46547,"timestamp":7342600356948,"id":8301,"parentId":7694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45778,"timestamp":7342600357722,"id":8391,"parentId":8310,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600403504,"id":8507,"parentId":8310,"tags":{},"startTime":1776949546623,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46376,"timestamp":7342600357252,"id":8310,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45926,"timestamp":7342600357713,"id":8388,"parentId":8307,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600403643,"id":8508,"parentId":8307,"tags":{},"startTime":1776949546623,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":46772,"timestamp":7342600357149,"id":8307,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46218,"timestamp":7342600357707,"id":8386,"parentId":8305,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600403929,"id":8509,"parentId":8305,"tags":{},"startTime":1776949546624,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47448,"timestamp":7342600357082,"id":8305,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46821,"timestamp":7342600357719,"id":8390,"parentId":8309,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600404544,"id":8510,"parentId":8309,"tags":{},"startTime":1776949546624,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47492,"timestamp":7342600357219,"id":8309,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59442,"timestamp":7342600357724,"id":8392,"parentId":8311,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600417175,"id":8511,"parentId":8311,"tags":{},"startTime":1776949546637,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60186,"timestamp":7342600357286,"id":8311,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59750,"timestamp":7342600357728,"id":8393,"parentId":8312,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600417483,"id":8512,"parentId":8312,"tags":{},"startTime":1776949546637,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60279,"timestamp":7342600357319,"id":8312,"parentId":7693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":55968,"timestamp":7342600361635,"id":8407,"parentId":8396,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600417607,"id":8513,"parentId":8396,"tags":{},"startTime":1776949546637,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56816,"timestamp":7342600361189,"id":8396,"parentId":7688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56378,"timestamp":7342600361643,"id":8408,"parentId":8397,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600418036,"id":8514,"parentId":8397,"tags":{},"startTime":1776949546638,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":56985,"timestamp":7342600361238,"id":8397,"parentId":7702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60499,"timestamp":7342600357731,"id":8394,"parentId":8313,"tags":{},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600418235,"id":8515,"parentId":8313,"tags":{},"startTime":1776949546638,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61145,"timestamp":7342600357352,"id":8313,"parentId":7702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"ssr"},"startTime":1776949546577,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":56846,"timestamp":7342600361657,"id":8410,"parentId":8399,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600418508,"id":8516,"parentId":8399,"tags":{},"startTime":1776949546638,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":57796,"timestamp":7342600361334,"id":8399,"parentId":7705,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57512,"timestamp":7342600361662,"id":8411,"parentId":8400,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600419179,"id":8517,"parentId":8400,"tags":{},"startTime":1776949546639,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58462,"timestamp":7342600361371,"id":8400,"parentId":7755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58173,"timestamp":7342600361667,"id":8412,"parentId":8401,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600419844,"id":8518,"parentId":8401,"tags":{},"startTime":1776949546640,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58870,"timestamp":7342600361411,"id":8401,"parentId":7755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":58642,"timestamp":7342600361671,"id":8413,"parentId":8402,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600420316,"id":8519,"parentId":8402,"tags":{},"startTime":1776949546640,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60138,"timestamp":7342600361452,"id":8402,"parentId":7755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":59924,"timestamp":7342600361678,"id":8415,"parentId":8404,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600421608,"id":8520,"parentId":8404,"tags":{},"startTime":1776949546641,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":60534,"timestamp":7342600361534,"id":8404,"parentId":7753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60466,"timestamp":7342600361614,"id":8406,"parentId":8395,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600422085,"id":8521,"parentId":8395,"tags":{},"startTime":1776949546642,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61265,"timestamp":7342600361094,"id":8395,"parentId":7702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":60692,"timestamp":7342600361674,"id":8414,"parentId":8403,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600422370,"id":8522,"parentId":8403,"tags":{},"startTime":1776949546642,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":61300,"timestamp":7342600361495,"id":8403,"parentId":7753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":61150,"timestamp":7342600361650,"id":8409,"parentId":8398,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600422804,"id":8523,"parentId":8398,"tags":{},"startTime":1776949546642,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":62855,"timestamp":7342600361284,"id":8398,"parentId":7699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":62464,"timestamp":7342600361681,"id":8416,"parentId":8405,"tags":{},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600424150,"id":8524,"parentId":8405,"tags":{},"startTime":1776949546644,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64528,"timestamp":7342600361569,"id":8405,"parentId":7766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"ssr"},"startTime":1776949546581,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":78942,"timestamp":7342600363202,"id":8427,"parentId":8419,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342600442168,"id":8525,"parentId":8419,"tags":{},"startTime":1776949546662,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":79723,"timestamp":7342600362928,"id":8419,"parentId":7765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"ssr"},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":79486,"timestamp":7342600363182,"id":8425,"parentId":8417,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":46,"timestamp":7342600442677,"id":8526,"parentId":8417,"tags":{},"startTime":1776949546662,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":80338,"timestamp":7342600362820,"id":8417,"parentId":7765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"ssr"},"startTime":1776949546582,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":79975,"timestamp":7342600363192,"id":8426,"parentId":8418,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600443174,"id":8527,"parentId":8418,"tags":{},"startTime":1776949546663,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":80747,"timestamp":7342600362881,"id":8418,"parentId":7765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"ssr"},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80428,"timestamp":7342600363205,"id":8428,"parentId":8420,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600443639,"id":8528,"parentId":8420,"tags":{},"startTime":1776949546663,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":80973,"timestamp":7342600362977,"id":8420,"parentId":7765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"ssr"},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80746,"timestamp":7342600363212,"id":8430,"parentId":8422,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600443963,"id":8529,"parentId":8422,"tags":{},"startTime":1776949546664,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":81101,"timestamp":7342600363060,"id":8422,"parentId":7848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"ssr"},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":80951,"timestamp":7342600363216,"id":8431,"parentId":8423,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600444171,"id":8530,"parentId":8423,"tags":{},"startTime":1776949546664,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":81403,"timestamp":7342600363096,"id":8423,"parentId":7847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"ssr"},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":81303,"timestamp":7342600363209,"id":8429,"parentId":8421,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600444515,"id":8531,"parentId":8421,"tags":{},"startTime":1776949546664,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":81796,"timestamp":7342600363021,"id":8421,"parentId":7765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"ssr"},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":81609,"timestamp":7342600363219,"id":8432,"parentId":8424,"tags":{},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600444832,"id":8532,"parentId":8424,"tags":{},"startTime":1776949546665,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":81789,"timestamp":7342600363138,"id":8424,"parentId":7847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"ssr"},"startTime":1776949546583,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7543,"timestamp":7342600476969,"id":8598,"parentId":8533,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342600484521,"id":8703,"parentId":8533,"tags":{},"startTime":1776949546704,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10954,"timestamp":7342600474174,"id":8533,"parentId":7851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8106,"timestamp":7342600477035,"id":8601,"parentId":8536,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":34,"timestamp":7342600485230,"id":8704,"parentId":8536,"tags":{},"startTime":1776949546705,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11125,"timestamp":7342600474398,"id":8536,"parentId":7852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8540,"timestamp":7342600476988,"id":8599,"parentId":8534,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600485530,"id":8705,"parentId":8534,"tags":{},"startTime":1776949546705,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12645,"timestamp":7342600474292,"id":8534,"parentId":7850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9868,"timestamp":7342600477075,"id":8603,"parentId":8538,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600486947,"id":8706,"parentId":8538,"tags":{},"startTime":1776949546707,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12567,"timestamp":7342600474506,"id":8538,"parentId":7854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12075,"timestamp":7342600477064,"id":8602,"parentId":8537,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600489143,"id":8707,"parentId":8537,"tags":{},"startTime":1776949546709,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15425,"timestamp":7342600474450,"id":8537,"parentId":7852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12889,"timestamp":7342600476997,"id":8600,"parentId":8535,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":64,"timestamp":7342600489890,"id":8708,"parentId":8535,"tags":{},"startTime":1776949546710,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16756,"timestamp":7342600474346,"id":8535,"parentId":7847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14025,"timestamp":7342600477083,"id":8604,"parentId":8539,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600491111,"id":8709,"parentId":8539,"tags":{},"startTime":1776949546711,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16674,"timestamp":7342600474549,"id":8539,"parentId":7854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14137,"timestamp":7342600477090,"id":8605,"parentId":8540,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600491230,"id":8710,"parentId":8540,"tags":{},"startTime":1776949546711,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16788,"timestamp":7342600474591,"id":8540,"parentId":7856,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14278,"timestamp":7342600477107,"id":8607,"parentId":8542,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600491389,"id":8711,"parentId":8542,"tags":{},"startTime":1776949546711,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16948,"timestamp":7342600474671,"id":8542,"parentId":7857,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14498,"timestamp":7342600477125,"id":8610,"parentId":8545,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600491627,"id":8712,"parentId":8545,"tags":{},"startTime":1776949546711,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17217,"timestamp":7342600474794,"id":8545,"parentId":7881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":14900,"timestamp":7342600477114,"id":8608,"parentId":8543,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600492017,"id":8713,"parentId":8543,"tags":{},"startTime":1776949546712,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17721,"timestamp":7342600474715,"id":8543,"parentId":7878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15346,"timestamp":7342600477097,"id":8606,"parentId":8541,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600492446,"id":8714,"parentId":8541,"tags":{},"startTime":1776949546712,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18202,"timestamp":7342600474631,"id":8541,"parentId":7856,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15722,"timestamp":7342600477119,"id":8609,"parentId":8544,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600492844,"id":8715,"parentId":8544,"tags":{},"startTime":1776949546713,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18191,"timestamp":7342600474754,"id":8544,"parentId":7878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"ssr"},"startTime":1776949546694,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":15819,"timestamp":7342600477131,"id":8611,"parentId":8546,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600492952,"id":8716,"parentId":8546,"tags":{},"startTime":1776949546713,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18428,"timestamp":7342600474833,"id":8546,"parentId":7882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16125,"timestamp":7342600477143,"id":8613,"parentId":8548,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600493271,"id":8717,"parentId":8548,"tags":{},"startTime":1776949546713,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19855,"timestamp":7342600474906,"id":8548,"parentId":7883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17629,"timestamp":7342600477150,"id":8614,"parentId":8549,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":55,"timestamp":7342600494785,"id":8718,"parentId":8549,"tags":{},"startTime":1776949546714,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20181,"timestamp":7342600474949,"id":8549,"parentId":7883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":17981,"timestamp":7342600477162,"id":8616,"parentId":8551,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600495146,"id":8719,"parentId":8551,"tags":{},"startTime":1776949546715,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20558,"timestamp":7342600475037,"id":8551,"parentId":7886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18452,"timestamp":7342600477156,"id":8615,"parentId":8550,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600495611,"id":8720,"parentId":8550,"tags":{},"startTime":1776949546715,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20974,"timestamp":7342600474989,"id":8550,"parentId":7884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18832,"timestamp":7342600477137,"id":8612,"parentId":8547,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600495972,"id":8721,"parentId":8547,"tags":{},"startTime":1776949546716,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22963,"timestamp":7342600474869,"id":8547,"parentId":7174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20689,"timestamp":7342600477167,"id":8617,"parentId":8552,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":68,"timestamp":7342600497860,"id":8722,"parentId":8552,"tags":{},"startTime":1776949546718,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23876,"timestamp":7342600475073,"id":8552,"parentId":7886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21777,"timestamp":7342600477178,"id":8619,"parentId":8554,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600498959,"id":8723,"parentId":8554,"tags":{},"startTime":1776949546719,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23932,"timestamp":7342600475152,"id":8554,"parentId":7886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21916,"timestamp":7342600477172,"id":8618,"parentId":8553,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600499092,"id":8724,"parentId":8553,"tags":{},"startTime":1776949546719,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24075,"timestamp":7342600475115,"id":8553,"parentId":7886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21998,"timestamp":7342600477195,"id":8622,"parentId":8557,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600499196,"id":8725,"parentId":8557,"tags":{},"startTime":1776949546719,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24226,"timestamp":7342600475269,"id":8557,"parentId":7904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22317,"timestamp":7342600477190,"id":8621,"parentId":8556,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":65,"timestamp":7342600499513,"id":8726,"parentId":8556,"tags":{},"startTime":1776949546719,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24867,"timestamp":7342600475228,"id":8556,"parentId":7904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":22929,"timestamp":7342600477185,"id":8620,"parentId":8555,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":48,"timestamp":7342600500119,"id":8727,"parentId":8555,"tags":{},"startTime":1776949546720,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25884,"timestamp":7342600475189,"id":8555,"parentId":7904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":23874,"timestamp":7342600477207,"id":8624,"parentId":8559,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600501086,"id":8728,"parentId":8559,"tags":{},"startTime":1776949546721,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25934,"timestamp":7342600475353,"id":8559,"parentId":7904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24075,"timestamp":7342600477217,"id":8626,"parentId":8561,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600501296,"id":8729,"parentId":8561,"tags":{},"startTime":1776949546721,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26010,"timestamp":7342600475440,"id":8561,"parentId":7950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24227,"timestamp":7342600477229,"id":8628,"parentId":8563,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600501460,"id":8730,"parentId":8563,"tags":{},"startTime":1776949546721,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26078,"timestamp":7342600475515,"id":8563,"parentId":7951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24377,"timestamp":7342600477221,"id":8627,"parentId":8562,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38,"timestamp":7342600501602,"id":8731,"parentId":8562,"tags":{},"startTime":1776949546721,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27031,"timestamp":7342600475480,"id":8562,"parentId":7949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25238,"timestamp":7342600477284,"id":8629,"parentId":8564,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342600502527,"id":8732,"parentId":8564,"tags":{},"startTime":1776949546722,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27327,"timestamp":7342600475549,"id":8564,"parentId":7951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25683,"timestamp":7342600477201,"id":8623,"parentId":8558,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":117,"timestamp":7342600502888,"id":8733,"parentId":8558,"tags":{},"startTime":1776949546723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27946,"timestamp":7342600475314,"id":8558,"parentId":7904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":25975,"timestamp":7342600477295,"id":8631,"parentId":8566,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600503275,"id":8734,"parentId":8566,"tags":{},"startTime":1776949546723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28071,"timestamp":7342600475622,"id":8566,"parentId":7955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26438,"timestamp":7342600477305,"id":8633,"parentId":8568,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600503747,"id":8735,"parentId":8568,"tags":{},"startTime":1776949546723,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28162,"timestamp":7342600475697,"id":8568,"parentId":7952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26595,"timestamp":7342600477289,"id":8630,"parentId":8565,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600503890,"id":8736,"parentId":8565,"tags":{},"startTime":1776949546724,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28528,"timestamp":7342600475587,"id":8565,"parentId":7951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":26952,"timestamp":7342600477211,"id":8625,"parentId":8560,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600504168,"id":8737,"parentId":8560,"tags":{},"startTime":1776949546724,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29940,"timestamp":7342600475398,"id":8560,"parentId":7484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":28150,"timestamp":7342600477300,"id":8632,"parentId":8567,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600505454,"id":8738,"parentId":8567,"tags":{},"startTime":1776949546725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30011,"timestamp":7342600475659,"id":8567,"parentId":7952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28364,"timestamp":7342600477310,"id":8634,"parentId":8569,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600505677,"id":8739,"parentId":8569,"tags":{},"startTime":1776949546725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30123,"timestamp":7342600475760,"id":8569,"parentId":7960,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"ssr"},"startTime":1776949546695,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28573,"timestamp":7342600477315,"id":8635,"parentId":8570,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600505891,"id":8740,"parentId":8570,"tags":{},"startTime":1776949546726,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30425,"timestamp":7342600475842,"id":8570,"parentId":7951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28955,"timestamp":7342600477319,"id":8636,"parentId":8571,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600506277,"id":8741,"parentId":8571,"tags":{},"startTime":1776949546726,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31745,"timestamp":7342600475914,"id":8571,"parentId":8006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30334,"timestamp":7342600477332,"id":8639,"parentId":8574,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600507676,"id":8742,"parentId":8574,"tags":{},"startTime":1776949546727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31849,"timestamp":7342600476074,"id":8574,"parentId":8012,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30612,"timestamp":7342600477323,"id":8637,"parentId":8572,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600507939,"id":8743,"parentId":8572,"tags":{},"startTime":1776949546728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32092,"timestamp":7342600475990,"id":8572,"parentId":8011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":30750,"timestamp":7342600477337,"id":8640,"parentId":8575,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":56,"timestamp":7342600508090,"id":8744,"parentId":8575,"tags":{},"startTime":1776949546728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32713,"timestamp":7342600476114,"id":8575,"parentId":8011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31491,"timestamp":7342600477341,"id":8641,"parentId":8576,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600508839,"id":8745,"parentId":8576,"tags":{},"startTime":1776949546729,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32952,"timestamp":7342600476154,"id":8576,"parentId":8032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":31789,"timestamp":7342600477328,"id":8638,"parentId":8573,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":42,"timestamp":7342600509122,"id":8746,"parentId":8573,"tags":{},"startTime":1776949546729,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33454,"timestamp":7342600476034,"id":8573,"parentId":8012,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32147,"timestamp":7342600477350,"id":8643,"parentId":8578,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600509502,"id":8747,"parentId":8578,"tags":{},"startTime":1776949546729,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33374,"timestamp":7342600476231,"id":8578,"parentId":8010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32263,"timestamp":7342600477346,"id":8642,"parentId":8577,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600509614,"id":8748,"parentId":8577,"tags":{},"startTime":1776949546729,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33508,"timestamp":7342600476189,"id":8577,"parentId":8036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32342,"timestamp":7342600477359,"id":8645,"parentId":8580,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600509704,"id":8749,"parentId":8580,"tags":{},"startTime":1776949546729,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33548,"timestamp":7342600476303,"id":8580,"parentId":8010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32498,"timestamp":7342600477355,"id":8644,"parentId":8579,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600509856,"id":8750,"parentId":8579,"tags":{},"startTime":1776949546730,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33736,"timestamp":7342600476268,"id":8579,"parentId":8046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32645,"timestamp":7342600477363,"id":8646,"parentId":8581,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600510011,"id":8751,"parentId":8581,"tags":{},"startTime":1776949546730,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":33879,"timestamp":7342600476337,"id":8581,"parentId":8010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":32853,"timestamp":7342600477367,"id":8647,"parentId":8582,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600510228,"id":8752,"parentId":8582,"tags":{},"startTime":1776949546730,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34563,"timestamp":7342600476374,"id":8582,"parentId":8015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33570,"timestamp":7342600477372,"id":8648,"parentId":8583,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600510945,"id":8753,"parentId":8583,"tags":{},"startTime":1776949546731,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34892,"timestamp":7342600476412,"id":8583,"parentId":8046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33920,"timestamp":7342600477389,"id":8650,"parentId":8585,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600511312,"id":8754,"parentId":8585,"tags":{},"startTime":1776949546731,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35137,"timestamp":7342600476484,"id":8585,"parentId":8049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":34230,"timestamp":7342600477395,"id":8651,"parentId":8586,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600511627,"id":8755,"parentId":8586,"tags":{},"startTime":1776949546731,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":35867,"timestamp":7342600476525,"id":8586,"parentId":8044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35023,"timestamp":7342600477376,"id":8649,"parentId":8584,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":50,"timestamp":7342600512403,"id":8756,"parentId":8584,"tags":{},"startTime":1776949546732,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36385,"timestamp":7342600476447,"id":8584,"parentId":8046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35445,"timestamp":7342600477399,"id":8652,"parentId":8587,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600512848,"id":8757,"parentId":8587,"tags":{},"startTime":1776949546733,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36418,"timestamp":7342600476559,"id":8587,"parentId":8055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35577,"timestamp":7342600477403,"id":8653,"parentId":8588,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":35,"timestamp":7342600512984,"id":8758,"parentId":8588,"tags":{},"startTime":1776949546733,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":36506,"timestamp":7342600476594,"id":8588,"parentId":8052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":35698,"timestamp":7342600477407,"id":8654,"parentId":8589,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600513109,"id":8759,"parentId":8589,"tags":{},"startTime":1776949546733,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37033,"timestamp":7342600476634,"id":8589,"parentId":8234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36260,"timestamp":7342600477411,"id":8655,"parentId":8590,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600513674,"id":8760,"parentId":8590,"tags":{},"startTime":1776949546733,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37122,"timestamp":7342600476671,"id":8590,"parentId":8235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36367,"timestamp":7342600477429,"id":8659,"parentId":8594,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600513799,"id":8761,"parentId":8594,"tags":{},"startTime":1776949546733,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37117,"timestamp":7342600476808,"id":8594,"parentId":8259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36513,"timestamp":7342600477416,"id":8656,"parentId":8591,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600513931,"id":8762,"parentId":8591,"tags":{},"startTime":1776949546734,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37444,"timestamp":7342600476705,"id":8591,"parentId":8260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36732,"timestamp":7342600477421,"id":8657,"parentId":8592,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600514156,"id":8763,"parentId":8592,"tags":{},"startTime":1776949546734,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37594,"timestamp":7342600476739,"id":8592,"parentId":8236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":36927,"timestamp":7342600477425,"id":8658,"parentId":8593,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600514355,"id":8764,"parentId":8593,"tags":{},"startTime":1776949546734,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37841,"timestamp":7342600476772,"id":8593,"parentId":8244,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"ssr"},"startTime":1776949546696,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":48315,"timestamp":7342600477434,"id":8660,"parentId":8595,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":53,"timestamp":7342600525762,"id":8765,"parentId":8595,"tags":{},"startTime":1776949546745,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50645,"timestamp":7342600476844,"id":8595,"parentId":8263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"ssr"},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50084,"timestamp":7342600477438,"id":8661,"parentId":8596,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47,"timestamp":7342600527532,"id":8766,"parentId":8596,"tags":{},"startTime":1776949546747,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50982,"timestamp":7342600476881,"id":8596,"parentId":8285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"ssr"},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47600,"timestamp":7342600480274,"id":8671,"parentId":8663,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600527879,"id":8767,"parentId":8663,"tags":{},"startTime":1776949546748,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48328,"timestamp":7342600479849,"id":8663,"parentId":8260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47895,"timestamp":7342600480290,"id":8672,"parentId":8664,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600528189,"id":8768,"parentId":8664,"tags":{},"startTime":1776949546748,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48698,"timestamp":7342600479935,"id":8664,"parentId":8288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51196,"timestamp":7342600477442,"id":8662,"parentId":8597,"tags":{},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40,"timestamp":7342600528642,"id":8769,"parentId":8597,"tags":{},"startTime":1776949546748,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":53444,"timestamp":7342600476915,"id":8597,"parentId":8290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"ssr"},"startTime":1776949546697,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50056,"timestamp":7342600480316,"id":8674,"parentId":8666,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342600530381,"id":8770,"parentId":8666,"tags":{},"startTime":1776949546750,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":50652,"timestamp":7342600480045,"id":8666,"parentId":8288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50367,"timestamp":7342600480369,"id":8678,"parentId":8670,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":57,"timestamp":7342600530742,"id":8771,"parentId":8670,"tags":{},"startTime":1776949546750,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":50921,"timestamp":7342600480213,"id":8670,"parentId":8300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":50917,"timestamp":7342600480296,"id":8673,"parentId":8665,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":37,"timestamp":7342600531218,"id":8772,"parentId":8665,"tags":{},"startTime":1776949546751,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51852,"timestamp":7342600479992,"id":8665,"parentId":8288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51493,"timestamp":7342600480356,"id":8677,"parentId":8669,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600531853,"id":8773,"parentId":8669,"tags":{},"startTime":1776949546752,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":51799,"timestamp":7342600480177,"id":8669,"parentId":8405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51658,"timestamp":7342600480322,"id":8675,"parentId":8667,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600531984,"id":8774,"parentId":8667,"tags":{},"startTime":1776949546752,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52063,"timestamp":7342600480088,"id":8667,"parentId":8288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":51829,"timestamp":7342600480326,"id":8676,"parentId":8668,"tags":{},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26,"timestamp":7342600532157,"id":8775,"parentId":8668,"tags":{},"startTime":1776949546752,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":52128,"timestamp":7342600480128,"id":8668,"parentId":8405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"ssr"},"startTime":1776949546700,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":62174,"timestamp":7342600481769,"id":8688,"parentId":8679,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39,"timestamp":7342600543954,"id":8776,"parentId":8679,"tags":{},"startTime":1776949546764,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":63563,"timestamp":7342600481323,"id":8679,"parentId":8398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63117,"timestamp":7342600481786,"id":8690,"parentId":8681,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45,"timestamp":7342600544912,"id":8777,"parentId":8681,"tags":{},"startTime":1776949546765,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":63775,"timestamp":7342600481431,"id":8681,"parentId":8405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":63433,"timestamp":7342600481781,"id":8689,"parentId":8680,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33,"timestamp":7342600545218,"id":8778,"parentId":8680,"tags":{},"startTime":1776949546765,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64468,"timestamp":7342600481385,"id":8680,"parentId":8398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":64073,"timestamp":7342600481791,"id":8691,"parentId":8682,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342600545868,"id":8779,"parentId":8682,"tags":{},"startTime":1776949546766,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64564,"timestamp":7342600481476,"id":8682,"parentId":8405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":64250,"timestamp":7342600481794,"id":8692,"parentId":8683,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600546047,"id":8780,"parentId":8683,"tags":{},"startTime":1776949546766,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64615,"timestamp":7342600481542,"id":8683,"parentId":8405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":64362,"timestamp":7342600481801,"id":8694,"parentId":8685,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600546172,"id":8781,"parentId":8685,"tags":{},"startTime":1776949546766,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":64704,"timestamp":7342600481636,"id":8685,"parentId":8418,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":64537,"timestamp":7342600481809,"id":8695,"parentId":8686,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44,"timestamp":7342600546348,"id":8782,"parentId":8686,"tags":{},"startTime":1776949546766,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":66226,"timestamp":7342600481676,"id":8686,"parentId":8403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":66099,"timestamp":7342600481813,"id":8696,"parentId":8687,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34,"timestamp":7342600547916,"id":8783,"parentId":8687,"tags":{},"startTime":1776949546768,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":66306,"timestamp":7342600481720,"id":8687,"parentId":8403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":66233,"timestamp":7342600481797,"id":8693,"parentId":8684,"tags":{},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600548037,"id":8784,"parentId":8684,"tags":{},"startTime":1776949546768,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":66702,"timestamp":7342600481592,"id":8684,"parentId":8423,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"ssr"},"startTime":1776949546701,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":74282,"timestamp":7342600482962,"id":8702,"parentId":8699,"tags":{},"startTime":1776949546703,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600557258,"id":8785,"parentId":8699,"tags":{},"startTime":1776949546777,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74602,"timestamp":7342600482914,"id":8699,"parentId":8404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"ssr"},"startTime":1776949546703,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":74563,"timestamp":7342600482959,"id":8701,"parentId":8698,"tags":{},"startTime":1776949546703,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600557526,"id":8786,"parentId":8698,"tags":{},"startTime":1776949546777,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":74781,"timestamp":7342600482878,"id":8698,"parentId":8404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"ssr"},"startTime":1776949546703,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":74710,"timestamp":7342600482953,"id":8700,"parentId":8697,"tags":{},"startTime":1776949546703,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600557665,"id":8787,"parentId":8697,"tags":{},"startTime":1776949546777,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":75139,"timestamp":7342600482829,"id":8697,"parentId":8404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"ssr"},"startTime":1776949546702,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2265,"timestamp":7342600559178,"id":8790,"parentId":8788,"tags":{},"startTime":1776949546779,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41,"timestamp":7342600561451,"id":8808,"parentId":8788,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2768,"timestamp":7342600558978,"id":8788,"parentId":8545,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"ssr"},"startTime":1776949546779,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1246,"timestamp":7342600561086,"id":8798,"parentId":8794,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36,"timestamp":7342600562338,"id":8809,"parentId":8794,"tags":{},"startTime":1776949546782,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1590,"timestamp":7342600560973,"id":8794,"parentId":8582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"ssr"},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1483,"timestamp":7342600561092,"id":8799,"parentId":8795,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600562579,"id":8810,"parentId":8795,"tags":{},"startTime":1776949546782,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1838,"timestamp":7342600561015,"id":8795,"parentId":8590,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"ssr"},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2219,"timestamp":7342600561333,"id":8805,"parentId":8801,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32,"timestamp":7342600563555,"id":8811,"parentId":8801,"tags":{},"startTime":1776949546783,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2928,"timestamp":7342600561189,"id":8801,"parentId":8595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"ssr"},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3067,"timestamp":7342600561062,"id":8796,"parentId":8792,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31,"timestamp":7342600564133,"id":8812,"parentId":8792,"tags":{},"startTime":1776949546784,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3483,"timestamp":7342600560811,"id":8792,"parentId":8566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"ssr"},"startTime":1776949546780,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5104,"timestamp":7342600559204,"id":8791,"parentId":8789,"tags":{},"startTime":1776949546779,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29,"timestamp":7342600564311,"id":8813,"parentId":8789,"tags":{},"startTime":1776949546784,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5427,"timestamp":7342600559094,"id":8789,"parentId":8545,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"ssr"},"startTime":1776949546779,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5017,"timestamp":7342600561079,"id":8797,"parentId":8793,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43,"timestamp":7342600566101,"id":8814,"parentId":8793,"tags":{},"startTime":1776949546786,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5930,"timestamp":7342600560907,"id":8793,"parentId":8567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"ssr"},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5526,"timestamp":7342600561322,"id":8804,"parentId":8800,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30,"timestamp":7342600566851,"id":8815,"parentId":8800,"tags":{},"startTime":1776949546787,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5907,"timestamp":7342600561149,"id":8800,"parentId":8595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"ssr"},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5717,"timestamp":7342600561343,"id":8807,"parentId":8803,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27,"timestamp":7342600567062,"id":8816,"parentId":8803,"tags":{},"startTime":1776949546787,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5867,"timestamp":7342600561267,"id":8803,"parentId":8665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"ssr"},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":5798,"timestamp":7342600561339,"id":8806,"parentId":8802,"tags":{},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28,"timestamp":7342600567139,"id":8817,"parentId":8802,"tags":{},"startTime":1776949546787,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6082,"timestamp":7342600561226,"id":8802,"parentId":8595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"ssr"},"startTime":1776949546781,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":1162558,"timestamp":7342599408693,"id":7110,"parentId":7109,"tags":{},"startTime":1776949545628,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5967,"timestamp":7342600591885,"id":8819,"parentId":8818,"tags":{},"startTime":1776949546812,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342600597875,"id":8821,"parentId":8818,"tags":{},"startTime":1776949546818,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2549,"timestamp":7342600597893,"id":8822,"parentId":8818,"tags":{},"startTime":1776949546818,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7342600600463,"id":8823,"parentId":8818,"tags":{},"startTime":1776949546820,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342600600485,"id":8824,"parentId":8818,"tags":{},"startTime":1776949546820,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4344,"timestamp":7342600597869,"id":8820,"parentId":8818,"tags":{},"startTime":1776949546818,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":5256,"timestamp":7342600604376,"id":8825,"parentId":8818,"tags":{},"startTime":1776949546824,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":48205,"timestamp":7342600609642,"id":8826,"parentId":8818,"tags":{},"startTime":1776949546829,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":811,"timestamp":7342600659647,"id":8827,"parentId":8818,"tags":{},"startTime":1776949546879,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":70,"timestamp":7342600660457,"id":8828,"parentId":8818,"tags":{},"startTime":1776949546880,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":86,"timestamp":7342600660521,"id":8829,"parentId":8818,"tags":{},"startTime":1776949546880,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":108445,"timestamp":7342600660609,"id":8830,"parentId":8818,"tags":{},"startTime":1776949546880,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":184838,"timestamp":7342600586541,"id":8818,"parentId":7109,"tags":{},"startTime":1776949546806,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":1368376,"timestamp":7342599407782,"id":7109,"parentId":7107,"tags":{"name":"server"},"startTime":1776949545627,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":28042,"timestamp":7342600776202,"id":8831,"parentId":7107,"tags":{},"startTime":1776949546996,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":1405512,"timestamp":7342599399114,"id":7107,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949545619,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":680,"timestamp":7342600815638,"id":8845,"parentId":8843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776949547035,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3525,"timestamp":7342600813638,"id":8842,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3528,"timestamp":7342600813643,"id":8844,"parentId":8833,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4140,"timestamp":7342600813576,"id":8834,"parentId":8833,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4617,"timestamp":7342600813633,"id":8840,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":5616,"timestamp":7342600813630,"id":8839,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5628,"timestamp":7342600813624,"id":8837,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9316,"timestamp":7342600813627,"id":8838,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13655,"timestamp":7342600813616,"id":8835,"parentId":8833,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13654,"timestamp":7342600813621,"id":8836,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15958,"timestamp":7342600813635,"id":8841,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10403,"timestamp":7342600820249,"id":8848,"parentId":8847,"tags":{},"startTime":1776949547040,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10496,"timestamp":7342600820161,"id":8847,"parentId":8846,"tags":{},"startTime":1776949547040,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":15020,"timestamp":7342600819943,"id":8846,"parentId":8845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776949547040,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6,"timestamp":7342600840127,"id":8850,"parentId":8849,"tags":{},"startTime":1776949547060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4972,"timestamp":7342600840214,"id":8852,"parentId":8851,"tags":{},"startTime":1776949547060,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5052,"timestamp":7342600840139,"id":8851,"parentId":8849,"tags":{},"startTime":1776949547060,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6307,"timestamp":7342600840015,"id":8849,"parentId":8846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"app-pages-browser"},"startTime":1776949547060,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":33290,"timestamp":7342600813641,"id":8843,"parentId":8833,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949547033,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":40819,"timestamp":7342600806135,"id":8833,"parentId":8832,"tags":{},"startTime":1776949547026,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5588,"timestamp":7342600854381,"id":8854,"parentId":8853,"tags":{},"startTime":1776949547074,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7342600859989,"id":8856,"parentId":8853,"tags":{},"startTime":1776949547080,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":277,"timestamp":7342600860003,"id":8857,"parentId":8853,"tags":{},"startTime":1776949547080,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7342600860298,"id":8858,"parentId":8853,"tags":{},"startTime":1776949547080,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342600860310,"id":8859,"parentId":8853,"tags":{},"startTime":1776949547080,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2281,"timestamp":7342600859982,"id":8855,"parentId":8853,"tags":{},"startTime":1776949547080,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":408,"timestamp":7342600864971,"id":8860,"parentId":8853,"tags":{},"startTime":1776949547085,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2839,"timestamp":7342600865384,"id":8861,"parentId":8853,"tags":{},"startTime":1776949547085,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":7440,"timestamp":7342600869272,"id":8862,"parentId":8853,"tags":{},"startTime":1776949547089,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":126,"timestamp":7342600876712,"id":8863,"parentId":8853,"tags":{},"startTime":1776949547096,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":89,"timestamp":7342600876829,"id":8864,"parentId":8853,"tags":{},"startTime":1776949547096,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3829,"timestamp":7342600876920,"id":8865,"parentId":8853,"tags":{},"startTime":1776949547097,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":54,"timestamp":7342600881573,"id":8867,"parentId":8832,"tags":{},"startTime":1776949547101,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":93,"timestamp":7342600881538,"id":8866,"parentId":8832,"tags":{},"startTime":1776949547101,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":34049,"timestamp":7342600849030,"id":8853,"parentId":8832,"tags":{},"startTime":1776949547069,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":77215,"timestamp":7342600805893,"id":8832,"parentId":7138,"tags":{"name":"client"},"startTime":1776949547026,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3854,"timestamp":7342600883129,"id":8868,"parentId":7138,"tags":{},"startTime":1776949547103,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":1488216,"timestamp":7342599399202,"id":7108,"tags":{"trigger":"/sectors","isTurbopack":false},"startTime":1776949545619,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":1408444,"timestamp":7342599479253,"id":7138,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949545699,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":10,"timestamp":7342600889408,"id":8869,"parentId":3,"tags":{},"startTime":1776949547109,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":1514956,"timestamp":7342599391109,"id":7106,"tags":{"url":"/sectors?_rsc=opwvn","isTurbopack":false},"startTime":1776949545611,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342600906079,"id":8871,"parentId":7106,"tags":{"url":"/sectors?_rsc=opwvn","memory.rss":"541442048","memory.heapUsed":"404980232","memory.heapTotal":"442662912"},"startTime":1776949547126,"traceId":"d76ab653cbe90d54"},{"name":"client-full-reload","duration":2,"timestamp":7342600924870,"id":8873,"parentId":3,"tags":{"stackTrace":""},"startTime":1776949547145,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":36975,"timestamp":7342600891453,"id":8870,"tags":{"url":"/_next/static/webpack/f43141dbbc1c59e6.webpack.hot-update.json","isTurbopack":false},"startTime":1776949547111,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342600928450,"id":8874,"parentId":8870,"tags":{"url":"/_next/static/webpack/f43141dbbc1c59e6.webpack.hot-update.json","memory.rss":"542277632","memory.heapUsed":"412514704","memory.heapTotal":"442662912"},"startTime":1776949547148,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":12046,"timestamp":7342600920955,"id":8872,"tags":{"url":"/sectors?_rsc=b5e9m","isTurbopack":false},"startTime":1776949547141,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342600933013,"id":8876,"parentId":8872,"tags":{"url":"/sectors?_rsc=b5e9m","memory.rss":"542343168","memory.heapUsed":"415675952","memory.heapTotal":"442662912"},"startTime":1776949547153,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":25188,"timestamp":7342600930981,"id":8875,"tags":{"url":"/strategy","isTurbopack":false},"startTime":1776949547151,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7342600956270,"id":8877,"parentId":8875,"tags":{"url":"/strategy","memory.rss":"545390592","memory.heapUsed":"412694928","memory.heapTotal":"444596224"},"startTime":1776949547176,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":3,"timestamp":7342601369339,"id":8878,"parentId":3,"tags":{},"startTime":1776949547589,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":8486,"timestamp":7342605267385,"id":8879,"tags":{"url":"/sectors?_rsc=opwvn","isTurbopack":false},"startTime":1776949551487,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342605275912,"id":8880,"parentId":8879,"tags":{"url":"/sectors?_rsc=opwvn","memory.rss":"513966080","memory.heapUsed":"412315432","memory.heapTotal":"445808640"},"startTime":1776949551496,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":7143,"timestamp":7342605279823,"id":8881,"tags":{"url":"/sectors?_rsc=b5e9m","isTurbopack":false},"startTime":1776949551499,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7342605286988,"id":8882,"parentId":8881,"tags":{"url":"/sectors?_rsc=b5e9m","memory.rss":"514244608","memory.heapUsed":"416953184","memory.heapTotal":"445808640"},"startTime":1776949551507,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":34898,"timestamp":7342819121364,"id":8895,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":39880,"timestamp":7342819120924,"id":8887,"parentId":8886,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":50158,"timestamp":7342819121355,"id":8893,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":58206,"timestamp":7342819121338,"id":8892,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":36509,"timestamp":7342819148278,"id":8900,"parentId":8899,"tags":{},"startTime":1776949765368,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":36719,"timestamp":7342819148074,"id":8899,"parentId":8898,"tags":{},"startTime":1776949765368,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":175206,"timestamp":7342819147777,"id":8898,"parentId":8885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776949765368,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":215157,"timestamp":7342819121326,"id":8891,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":217400,"timestamp":7342819121319,"id":8889,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":158356,"timestamp":7342819181117,"id":8902,"parentId":8901,"tags":{},"startTime":1776949765401,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":226547,"timestamp":7342819121295,"id":8888,"parentId":8886,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":227506,"timestamp":7342819121367,"id":8896,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":173044,"timestamp":7342819339565,"id":8904,"parentId":8903,"tags":{},"startTime":1776949765560,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":175723,"timestamp":7342819339517,"id":8903,"parentId":8901,"tags":{},"startTime":1776949765559,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":21694,"timestamp":7342819515318,"id":8905,"parentId":8901,"tags":{"astUsed":"true"},"startTime":1776949765735,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":357647,"timestamp":7342819180624,"id":8901,"parentId":8897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776949765401,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":398290,"timestamp":7342819146984,"id":8897,"parentId":8885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776949765367,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":31,"timestamp":7342819546835,"id":8906,"parentId":8897,"tags":{},"startTime":1776949765767,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":425741,"timestamp":7342819121323,"id":8890,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":426757,"timestamp":7342819121360,"id":8894,"parentId":8886,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949765341,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":428542,"timestamp":7342819119614,"id":8886,"parentId":8885,"tags":{},"startTime":1776949765340,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":20387,"timestamp":7342819700182,"id":8908,"parentId":8907,"tags":{},"startTime":1776949765920,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":7,"timestamp":7342819720609,"id":8910,"parentId":8907,"tags":{},"startTime":1776949765941,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3411,"timestamp":7342819720636,"id":8911,"parentId":8907,"tags":{},"startTime":1776949765941,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":42,"timestamp":7342819724175,"id":8912,"parentId":8907,"tags":{},"startTime":1776949765944,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":13,"timestamp":7342819724286,"id":8913,"parentId":8907,"tags":{},"startTime":1776949765944,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":12571,"timestamp":7342819720596,"id":8909,"parentId":8907,"tags":{},"startTime":1776949765941,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1010,"timestamp":7342819745772,"id":8914,"parentId":8907,"tags":{},"startTime":1776949765966,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":28127,"timestamp":7342819746797,"id":8915,"parentId":8907,"tags":{},"startTime":1776949765967,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":8921,"timestamp":7342819777693,"id":8916,"parentId":8907,"tags":{},"startTime":1776949765998,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":237,"timestamp":7342819786612,"id":8917,"parentId":8907,"tags":{},"startTime":1776949766007,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":127,"timestamp":7342819786836,"id":8918,"parentId":8907,"tags":{},"startTime":1776949766007,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":5122,"timestamp":7342819786966,"id":8919,"parentId":8907,"tags":{},"startTime":1776949766007,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":66,"timestamp":7342819793270,"id":8921,"parentId":8885,"tags":{},"startTime":1776949766013,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":119,"timestamp":7342819793224,"id":8920,"parentId":8885,"tags":{},"startTime":1776949766013,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":138139,"timestamp":7342819665150,"id":8907,"parentId":8885,"tags":{},"startTime":1776949765885,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":684826,"timestamp":7342819118509,"id":8885,"parentId":8883,"tags":{"name":"client"},"startTime":1776949765338,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":25827,"timestamp":7342819803369,"id":8922,"parentId":8883,"tags":{},"startTime":1776949766023,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":738238,"timestamp":7342819094313,"id":8883,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776949765314,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":10,"timestamp":7342819844990,"id":8925,"parentId":3,"tags":{},"startTime":1776949766065,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":33721,"timestamp":7342819874572,"id":8927,"parentId":8924,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949766095,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":33758,"timestamp":7342819874579,"id":8928,"parentId":8924,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949766095,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":34528,"timestamp":7342819874522,"id":8926,"parentId":8924,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949766094,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":815000,"timestamp":7342819097293,"id":8933,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","[project]/node_modules/next/dist/client/components/not-found-error.js","[project]/src/app/globals.css","[project]/src/app/(auth)/sectors/page.tsx"],"page":"/sectors","isPageHidden":false},"startTime":1776949766132,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":22346,"timestamp":7342819907586,"id":8932,"parentId":8931,"tags":{},"startTime":1776949766128,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22443,"timestamp":7342819907504,"id":8931,"parentId":8930,"tags":{},"startTime":1776949766127,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":24290,"timestamp":7342819907290,"id":8930,"parentId":8923,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776949766127,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":58227,"timestamp":7342819874583,"id":8929,"parentId":8924,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949766095,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":32887,"timestamp":7342819971492,"id":8952,"parentId":8951,"tags":{},"startTime":1776949766191,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32975,"timestamp":7342819971418,"id":8951,"parentId":8950,"tags":{},"startTime":1776949766191,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":52803,"timestamp":7342819971282,"id":8950,"parentId":8923,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776949766191,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":233742,"timestamp":7342819837859,"id":8924,"parentId":8923,"tags":{},"startTime":1776949766058,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1951,"timestamp":7342820082406,"id":8954,"parentId":8953,"tags":{},"startTime":1776949766302,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7342820084372,"id":8956,"parentId":8953,"tags":{},"startTime":1776949766304,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2368,"timestamp":7342820084388,"id":8957,"parentId":8953,"tags":{},"startTime":1776949766304,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7342820086784,"id":8958,"parentId":8953,"tags":{},"startTime":1776949766307,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7342820086799,"id":8959,"parentId":8953,"tags":{},"startTime":1776949766307,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4455,"timestamp":7342820084367,"id":8955,"parentId":8953,"tags":{},"startTime":1776949766304,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":745,"timestamp":7342820090557,"id":8960,"parentId":8953,"tags":{},"startTime":1776949766311,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3813,"timestamp":7342820091313,"id":8961,"parentId":8953,"tags":{},"startTime":1776949766311,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":829,"timestamp":7342820096080,"id":8962,"parentId":8953,"tags":{},"startTime":1776949766316,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":67,"timestamp":7342820096909,"id":8963,"parentId":8953,"tags":{},"startTime":1776949766317,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":62,"timestamp":7342820096969,"id":8964,"parentId":8953,"tags":{},"startTime":1776949766317,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3067,"timestamp":7342820097033,"id":8965,"parentId":8953,"tags":{},"startTime":1776949766317,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":29724,"timestamp":7342820074966,"id":8953,"parentId":8923,"tags":{},"startTime":1776949766295,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":269662,"timestamp":7342819837560,"id":8923,"parentId":8884,"tags":{"name":"server"},"startTime":1776949766058,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3722,"timestamp":7342820107248,"id":8966,"parentId":8884,"tags":{},"startTime":1776949766327,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":1014336,"timestamp":7342819097283,"id":8884,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776949765317,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":19921,"timestamp":7342820117483,"id":8967,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776949766337,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7342820137428,"id":8968,"parentId":8967,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"425000960","memory.heapUsed":"349263112","memory.heapTotal":"402636800"},"startTime":1776949766357,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":81727,"timestamp":7342862950854,"id":8969,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776949809171,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":3,"timestamp":7342863032789,"id":8970,"parentId":8969,"tags":{"url":"/sectors","memory.rss":"148520960","memory.heapUsed":"346527512","memory.heapTotal":"370540544"},"startTime":1776949809253,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":14,"timestamp":7342863383162,"id":8971,"parentId":3,"tags":{},"startTime":1776949809603,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":151893,"timestamp":7343046137785,"id":8984,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":168062,"timestamp":7343046136767,"id":8976,"parentId":8975,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776949992357,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":168624,"timestamp":7343046137770,"id":8981,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":168819,"timestamp":7343046137773,"id":8982,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":168885,"timestamp":7343046137781,"id":8983,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":180040,"timestamp":7343046137766,"id":8980,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":181607,"timestamp":7343046137734,"id":8978,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":190533,"timestamp":7343046137712,"id":8977,"parentId":8975,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":253731,"timestamp":7343046137848,"id":8985,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":134889,"timestamp":7343046294532,"id":8988,"parentId":8987,"tags":{},"startTime":1776949992515,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":135080,"timestamp":7343046294350,"id":8987,"parentId":8986,"tags":{},"startTime":1776949992515,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":148069,"timestamp":7343046290816,"id":8986,"parentId":8974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776949992511,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":301219,"timestamp":7343046137738,"id":8979,"parentId":8975,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776949992358,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":311713,"timestamp":7343046127300,"id":8975,"parentId":8974,"tags":{},"startTime":1776949992348,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3578,"timestamp":7343046546205,"id":8990,"parentId":8989,"tags":{},"startTime":1776949992766,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7343046549811,"id":8992,"parentId":8989,"tags":{},"startTime":1776949992770,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":354,"timestamp":7343046549834,"id":8993,"parentId":8989,"tags":{},"startTime":1776949992770,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7343046550209,"id":8994,"parentId":8989,"tags":{},"startTime":1776949992770,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7343046550226,"id":8995,"parentId":8989,"tags":{},"startTime":1776949992771,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1798,"timestamp":7343046549801,"id":8991,"parentId":8989,"tags":{},"startTime":1776949992770,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":6464,"timestamp":7343046558043,"id":8996,"parentId":8989,"tags":{},"startTime":1776949992778,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":11085,"timestamp":7343046564535,"id":8997,"parentId":8989,"tags":{},"startTime":1776949992785,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":10174,"timestamp":7343046578449,"id":8998,"parentId":8989,"tags":{},"startTime":1776949992799,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":171,"timestamp":7343046588621,"id":8999,"parentId":8989,"tags":{},"startTime":1776949992809,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":87,"timestamp":7343046588782,"id":9000,"parentId":8989,"tags":{},"startTime":1776949992809,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4643,"timestamp":7343046588873,"id":9001,"parentId":8989,"tags":{},"startTime":1776949992809,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":90,"timestamp":7343046596611,"id":9003,"parentId":8974,"tags":{},"startTime":1776949992817,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":172,"timestamp":7343046596539,"id":9002,"parentId":8974,"tags":{},"startTime":1776949992817,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":77510,"timestamp":7343046521330,"id":8989,"parentId":8974,"tags":{},"startTime":1776949992742,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":472550,"timestamp":7343046126323,"id":8974,"parentId":8972,"tags":{"name":"client"},"startTime":1776949992347,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":29949,"timestamp":7343046598896,"id":9004,"parentId":8972,"tags":{},"startTime":1776949992819,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":517614,"timestamp":7343046112432,"id":8972,"parentId":3,"tags":{"trigger":"src/lib/api.ts"},"startTime":1776949992333,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":5,"timestamp":7343046636901,"id":9007,"parentId":3,"tags":{},"startTime":1776949992857,"traceId":"d76ab653cbe90d54"},{"name":"client-full-reload","duration":4,"timestamp":7343046661910,"id":9012,"parentId":3,"tags":{"stackTrace":"Error: Aborted because (app-pages-browser)/./src/lib/api.ts is not accepted\nUpdate propagation: (app-pages-browser)/./src/lib/api.ts -> (app-pages-browser)/./src/hooks/use-auth.tsx -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/client.js -> (app-pages-browser)/./node_modules/next/dist/client/app-index.js -> (app-pages-browser)/./node_modules/next/dist/client/app-next-dev.js\n at applyHandler (http://localhost:3001/_next/static/chunks/webpack.js?v=1776949809199:1059:31)\n at http://localhost:3001/_next/static/chunks/webpack.js?v=1776949809199:618:21\n at Array.map ()"},"startTime":1776949992882,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":35517,"timestamp":7343046654114,"id":9009,"parentId":9006,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949992874,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":35546,"timestamp":7343046654121,"id":9010,"parentId":9006,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949992874,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":35546,"timestamp":7343046654129,"id":9011,"parentId":9006,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949992874,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36472,"timestamp":7343046654068,"id":9008,"parentId":9006,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949992874,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":24569,"timestamp":7343046757154,"id":9032,"parentId":9031,"tags":{},"startTime":1776949992977,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25105,"timestamp":7343046756625,"id":9031,"parentId":9030,"tags":{},"startTime":1776949992977,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":34911,"timestamp":7343046752934,"id":9030,"parentId":9005,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776949992973,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":179010,"timestamp":7343046632673,"id":9006,"parentId":9005,"tags":{},"startTime":1776949992853,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3050,"timestamp":7343046824788,"id":9034,"parentId":9033,"tags":{},"startTime":1776949993045,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7343046827859,"id":9036,"parentId":9033,"tags":{},"startTime":1776949993048,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":5144,"timestamp":7343046827875,"id":9037,"parentId":9033,"tags":{},"startTime":1776949993048,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":11,"timestamp":7343046833063,"id":9038,"parentId":9033,"tags":{},"startTime":1776949993053,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7343046833087,"id":9039,"parentId":9033,"tags":{},"startTime":1776949993053,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":7273,"timestamp":7343046827852,"id":9035,"parentId":9033,"tags":{},"startTime":1776949993048,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":766,"timestamp":7343046836588,"id":9040,"parentId":9033,"tags":{},"startTime":1776949993057,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2476,"timestamp":7343046837364,"id":9041,"parentId":9033,"tags":{},"startTime":1776949993058,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":844,"timestamp":7343046840741,"id":9042,"parentId":9033,"tags":{},"startTime":1776949993061,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":57,"timestamp":7343046841585,"id":9043,"parentId":9033,"tags":{},"startTime":1776949993062,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":70,"timestamp":7343046841637,"id":9044,"parentId":9033,"tags":{},"startTime":1776949993062,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2028,"timestamp":7343046841709,"id":9045,"parentId":9033,"tags":{},"startTime":1776949993062,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":28681,"timestamp":7343046817684,"id":9033,"parentId":9005,"tags":{},"startTime":1776949993038,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":216597,"timestamp":7343046632425,"id":9005,"parentId":8973,"tags":{"name":"server"},"startTime":1776949992853,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7735,"timestamp":7343046849045,"id":9046,"parentId":8973,"tags":{},"startTime":1776949993069,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":350,"timestamp":7343046857048,"id":9047,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776949993077,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":6776,"timestamp":7343046866791,"id":9051,"parentId":9049,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949993087,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6780,"timestamp":7343046866794,"id":9052,"parentId":9049,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949993087,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6779,"timestamp":7343046866797,"id":9053,"parentId":9049,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949993087,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7482,"timestamp":7343046866758,"id":9050,"parentId":9049,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776949993087,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":44738,"timestamp":7343046859467,"id":9049,"parentId":9048,"tags":{},"startTime":1776949993080,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":1748,"timestamp":7343046913082,"id":9071,"parentId":9070,"tags":{},"startTime":1776949993133,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7343046914848,"id":9073,"parentId":9070,"tags":{},"startTime":1776949993135,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1890,"timestamp":7343046914861,"id":9074,"parentId":9070,"tags":{},"startTime":1776949993135,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7343046916772,"id":9075,"parentId":9070,"tags":{},"startTime":1776949993137,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":1,"timestamp":7343046916784,"id":9076,"parentId":9070,"tags":{},"startTime":1776949993137,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2969,"timestamp":7343046914841,"id":9072,"parentId":9070,"tags":{},"startTime":1776949993135,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":532,"timestamp":7343046919188,"id":9077,"parentId":9070,"tags":{},"startTime":1776949993139,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2615,"timestamp":7343046919731,"id":9078,"parentId":9070,"tags":{},"startTime":1776949993140,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1169,"timestamp":7343046923167,"id":9079,"parentId":9070,"tags":{},"startTime":1776949993143,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":85,"timestamp":7343046924335,"id":9080,"parentId":9070,"tags":{},"startTime":1776949993145,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":109,"timestamp":7343046924411,"id":9081,"parentId":9070,"tags":{},"startTime":1776949993145,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":129,"timestamp":7343046924523,"id":9082,"parentId":9070,"tags":{},"startTime":1776949993145,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":25756,"timestamp":7343046906516,"id":9070,"parentId":9048,"tags":{},"startTime":1776949993127,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":76507,"timestamp":7343046859275,"id":9048,"parentId":3,"tags":{"name":"server"},"startTime":1776949993080,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":2130,"timestamp":7343046935813,"id":9083,"parentId":3,"tags":{},"startTime":1776949993156,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":303642,"timestamp":7343046686665,"id":9013,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776949992907,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7343046990334,"id":9084,"parentId":9013,"tags":{"url":"/sectors","memory.rss":"430243840","memory.heapUsed":"375625960","memory.heapTotal":"408895488"},"startTime":1776949993211,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":3,"timestamp":7343047328123,"id":9085,"parentId":3,"tags":{},"startTime":1776949993548,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":170023,"timestamp":7343064321717,"id":9098,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":171577,"timestamp":7343064321346,"id":9090,"parentId":9089,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":174155,"timestamp":7343064321703,"id":9096,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":198992,"timestamp":7343064321695,"id":9095,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":242056,"timestamp":7343064321686,"id":9094,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":242464,"timestamp":7343064321665,"id":9092,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":244294,"timestamp":7343064321646,"id":9091,"parentId":9089,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":33796,"timestamp":7343064532167,"id":9105,"parentId":9104,"tags":{},"startTime":1776950010752,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":105693,"timestamp":7343064474186,"id":9103,"parentId":9102,"tags":{},"startTime":1776950010694,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":105929,"timestamp":7343064473956,"id":9102,"parentId":9101,"tags":{},"startTime":1776950010694,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":139770,"timestamp":7343064473611,"id":9101,"parentId":9088,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776950010694,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":180672,"timestamp":7343064566167,"id":9107,"parentId":9106,"tags":{},"startTime":1776950010786,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":181681,"timestamp":7343064566033,"id":9106,"parentId":9104,"tags":{},"startTime":1776950010786,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":17251,"timestamp":7343064747769,"id":9108,"parentId":9104,"tags":{"astUsed":"true"},"startTime":1776950010968,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":236907,"timestamp":7343064529410,"id":9104,"parentId":9100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776950010750,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":299145,"timestamp":7343064472126,"id":9100,"parentId":9088,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776950010692,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":25,"timestamp":7343064771816,"id":9109,"parentId":9100,"tags":{},"startTime":1776950010992,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":450207,"timestamp":7343064321668,"id":9093,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":451555,"timestamp":7343064321709,"id":9097,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":456471,"timestamp":7343064321726,"id":9099,"parentId":9089,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950010542,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":459829,"timestamp":7343064318429,"id":9089,"parentId":9088,"tags":{},"startTime":1776950010539,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4323,"timestamp":7343064797000,"id":9111,"parentId":9110,"tags":{},"startTime":1776950011017,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7343064801345,"id":9113,"parentId":9110,"tags":{},"startTime":1776950011022,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":287,"timestamp":7343064801371,"id":9114,"parentId":9110,"tags":{},"startTime":1776950011022,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7343064801690,"id":9115,"parentId":9110,"tags":{},"startTime":1776950011022,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7343064801712,"id":9116,"parentId":9110,"tags":{},"startTime":1776950011022,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1851,"timestamp":7343064801337,"id":9112,"parentId":9110,"tags":{},"startTime":1776950011022,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":614,"timestamp":7343064807222,"id":9117,"parentId":9110,"tags":{},"startTime":1776950011028,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4863,"timestamp":7343064807847,"id":9118,"parentId":9110,"tags":{},"startTime":1776950011028,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":10829,"timestamp":7343064813855,"id":9119,"parentId":9110,"tags":{},"startTime":1776950011034,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":484,"timestamp":7343064824682,"id":9120,"parentId":9110,"tags":{},"startTime":1776950011045,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":545,"timestamp":7343064825112,"id":9121,"parentId":9110,"tags":{},"startTime":1776950011045,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7035,"timestamp":7343064825665,"id":9122,"parentId":9110,"tags":{},"startTime":1776950011046,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":61,"timestamp":7343064833839,"id":9124,"parentId":9088,"tags":{},"startTime":1776950011054,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":122,"timestamp":7343064833788,"id":9123,"parentId":9088,"tags":{},"startTime":1776950011054,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":52280,"timestamp":7343064783275,"id":9110,"parentId":9088,"tags":{},"startTime":1776950011004,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":519933,"timestamp":7343064315658,"id":9088,"parentId":9086,"tags":{"name":"client"},"startTime":1776950010536,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4939,"timestamp":7343064835607,"id":9125,"parentId":9086,"tags":{},"startTime":1776950011056,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":565709,"timestamp":7343064275315,"id":9086,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776950010496,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":40,"timestamp":7343064846059,"id":9128,"parentId":3,"tags":{},"startTime":1776950011066,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9304,"timestamp":7343064849824,"id":9130,"parentId":9127,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011070,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9315,"timestamp":7343064849828,"id":9131,"parentId":9127,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011070,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":579000,"timestamp":7343064280018,"id":9136,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/sectors","isPageHidden":false},"startTime":1776950011080,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10931,"timestamp":7343064849792,"id":9129,"parentId":9127,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4870,"timestamp":7343064858189,"id":9135,"parentId":9134,"tags":{},"startTime":1776950011078,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4946,"timestamp":7343064858118,"id":9134,"parentId":9133,"tags":{},"startTime":1776950011078,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":5618,"timestamp":7343064857901,"id":9133,"parentId":9126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776950011078,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14609,"timestamp":7343064849831,"id":9132,"parentId":9127,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011070,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15677,"timestamp":7343064876603,"id":9158,"parentId":9157,"tags":{},"startTime":1776950011097,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15736,"timestamp":7343064876550,"id":9157,"parentId":9156,"tags":{},"startTime":1776950011097,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":20929,"timestamp":7343064876265,"id":9156,"parentId":9126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776950011097,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":77542,"timestamp":7343064844058,"id":9127,"parentId":9126,"tags":{},"startTime":1776950011064,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5431,"timestamp":7343064933304,"id":9160,"parentId":9159,"tags":{},"startTime":1776950011154,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7343064938754,"id":9162,"parentId":9159,"tags":{},"startTime":1776950011159,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2296,"timestamp":7343064938765,"id":9163,"parentId":9159,"tags":{},"startTime":1776950011159,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7343064941082,"id":9164,"parentId":9159,"tags":{},"startTime":1776950011161,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7343064941098,"id":9165,"parentId":9159,"tags":{},"startTime":1776950011161,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":5492,"timestamp":7343064938747,"id":9161,"parentId":9159,"tags":{},"startTime":1776950011159,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":762,"timestamp":7343064945985,"id":9166,"parentId":9159,"tags":{},"startTime":1776950011166,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3670,"timestamp":7343064946770,"id":9167,"parentId":9159,"tags":{},"startTime":1776950011167,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":792,"timestamp":7343064951219,"id":9168,"parentId":9159,"tags":{},"startTime":1776950011172,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":64,"timestamp":7343064952010,"id":9169,"parentId":9159,"tags":{},"startTime":1776950011172,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":76,"timestamp":7343064952067,"id":9170,"parentId":9159,"tags":{},"startTime":1776950011172,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2344,"timestamp":7343064952145,"id":9171,"parentId":9159,"tags":{},"startTime":1776950011172,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":31753,"timestamp":7343064924964,"id":9159,"parentId":9126,"tags":{},"startTime":1776950011145,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":117471,"timestamp":7343064843614,"id":9126,"parentId":9087,"tags":{"name":"server"},"startTime":1776950011064,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4805,"timestamp":7343064961129,"id":9172,"parentId":9087,"tags":{},"startTime":1776950011181,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":5,"timestamp":7343064966175,"id":9173,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776950011186,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":2814,"timestamp":7343064976398,"id":9184,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":2888,"timestamp":7343064976407,"id":9186,"parentId":9175,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3170,"timestamp":7343064976345,"id":9176,"parentId":9175,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3557,"timestamp":7343064976390,"id":9181,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3580,"timestamp":7343064976393,"id":9182,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":3590,"timestamp":7343064976396,"id":9183,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4482,"timestamp":7343064976384,"id":9179,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12316,"timestamp":7343064976387,"id":9180,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12567,"timestamp":7343064976376,"id":9177,"parentId":9175,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12564,"timestamp":7343064976381,"id":9178,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":12853,"timestamp":7343064976404,"id":9185,"parentId":9175,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950011197,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":20942,"timestamp":7343064968341,"id":9175,"parentId":9174,"tags":{},"startTime":1776950011189,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6993,"timestamp":7343064996657,"id":9188,"parentId":9187,"tags":{},"startTime":1776950011217,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7343065003671,"id":9190,"parentId":9187,"tags":{},"startTime":1776950011224,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":241,"timestamp":7343065003688,"id":9191,"parentId":9187,"tags":{},"startTime":1776950011224,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7343065003949,"id":9192,"parentId":9187,"tags":{},"startTime":1776950011224,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7343065003962,"id":9193,"parentId":9187,"tags":{},"startTime":1776950011224,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1438,"timestamp":7343065003663,"id":9189,"parentId":9187,"tags":{},"startTime":1776950011224,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":297,"timestamp":7343065007009,"id":9194,"parentId":9187,"tags":{},"startTime":1776950011227,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":2124,"timestamp":7343065007312,"id":9195,"parentId":9187,"tags":{},"startTime":1776950011228,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":6502,"timestamp":7343065011235,"id":9196,"parentId":9187,"tags":{},"startTime":1776950011232,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":155,"timestamp":7343065017736,"id":9197,"parentId":9187,"tags":{},"startTime":1776950011238,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":74,"timestamp":7343065017882,"id":9198,"parentId":9187,"tags":{},"startTime":1776950011238,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":759,"timestamp":7343065017959,"id":9199,"parentId":9187,"tags":{},"startTime":1776950011238,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":41,"timestamp":7343065019374,"id":9201,"parentId":9174,"tags":{},"startTime":1776950011240,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":77,"timestamp":7343065019343,"id":9200,"parentId":9174,"tags":{},"startTime":1776950011240,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":29980,"timestamp":7343064991211,"id":9187,"parentId":9174,"tags":{},"startTime":1776950011212,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":53038,"timestamp":7343064968178,"id":9174,"parentId":9139,"tags":{"name":"client"},"startTime":1776950011188,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4588,"timestamp":7343065021234,"id":9202,"parentId":9139,"tags":{},"startTime":1776950011242,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":162258,"timestamp":7343064864052,"id":9139,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776950011084,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7343065029536,"id":9205,"parentId":3,"tags":{},"startTime":1776950011250,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7009,"timestamp":7343065031060,"id":9208,"parentId":9204,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011251,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7012,"timestamp":7343065031062,"id":9209,"parentId":9204,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011251,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7012,"timestamp":7343065031065,"id":9210,"parentId":9204,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011251,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7616,"timestamp":7343065031056,"id":9207,"parentId":9204,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011251,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":4753,"timestamp":7343065036975,"id":9211,"parentId":9206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776950011257,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13687,"timestamp":7343065031028,"id":9206,"parentId":9204,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950011251,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":54086,"timestamp":7343065028230,"id":9204,"parentId":9203,"tags":{},"startTime":1776950011249,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3575,"timestamp":7343065091753,"id":9231,"parentId":9230,"tags":{},"startTime":1776950011312,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":2,"timestamp":7343065095352,"id":9233,"parentId":9230,"tags":{},"startTime":1776950011316,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":6857,"timestamp":7343065095368,"id":9234,"parentId":9230,"tags":{},"startTime":1776950011316,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":8,"timestamp":7343065102279,"id":9235,"parentId":9230,"tags":{},"startTime":1776950011323,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7343065102299,"id":9236,"parentId":9230,"tags":{},"startTime":1776950011323,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":8476,"timestamp":7343065095344,"id":9232,"parentId":9230,"tags":{},"startTime":1776950011316,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":624,"timestamp":7343065105695,"id":9237,"parentId":9230,"tags":{},"startTime":1776950011326,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":6224,"timestamp":7343065106328,"id":9238,"parentId":9230,"tags":{},"startTime":1776950011327,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1695,"timestamp":7343065113891,"id":9239,"parentId":9230,"tags":{},"startTime":1776950011334,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":79,"timestamp":7343065115584,"id":9240,"parentId":9230,"tags":{},"startTime":1776950011336,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":85,"timestamp":7343065115655,"id":9241,"parentId":9230,"tags":{},"startTime":1776950011336,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":764,"timestamp":7343065115743,"id":9242,"parentId":9230,"tags":{},"startTime":1776950011336,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":33769,"timestamp":7343065085877,"id":9230,"parentId":9203,"tags":{},"startTime":1776950011306,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":95028,"timestamp":7343065028062,"id":9203,"parentId":3,"tags":{"name":"server"},"startTime":1776950011248,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":8081,"timestamp":7343065123126,"id":9243,"parentId":3,"tags":{},"startTime":1776950011343,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":267961,"timestamp":7343064864011,"id":9138,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776950011084,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-full-reload","duration":3,"timestamp":7343065173598,"id":9245,"parentId":3,"tags":{"stackTrace":""},"startTime":1776950011394,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":342408,"timestamp":7343064862034,"id":9137,"tags":{"url":"/_next/static/webpack/ab6b2a91c1d9c1a7.webpack.hot-update.json","isTurbopack":false},"startTime":1776950011082,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":30,"timestamp":7343065204575,"id":9247,"parentId":9137,"tags":{"url":"/_next/static/webpack/ab6b2a91c1d9c1a7.webpack.hot-update.json","memory.rss":"452378624","memory.heapUsed":"426604096","memory.heapTotal":"463388672"},"startTime":1776950011425,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":76815,"timestamp":7343065144808,"id":9244,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776950011365,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7343065221645,"id":9248,"parentId":9244,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"460341248","memory.heapUsed":"431817592","memory.heapTotal":"464519168"},"startTime":1776950011442,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":67687,"timestamp":7343065202712,"id":9246,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776950011423,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7343065270423,"id":9249,"parentId":9246,"tags":{"url":"/sectors","memory.rss":"461766656","memory.heapUsed":"352434888","memory.heapTotal":"466092032"},"startTime":1776950011491,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":55,"timestamp":7343065760031,"id":9250,"parentId":3,"tags":{},"startTime":1776950011980,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":66608,"timestamp":7343155483506,"id":9251,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776950101704,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7343155550202,"id":9252,"parentId":9251,"tags":{"url":"/sectors","memory.rss":"132907008","memory.heapUsed":"352836432","memory.heapTotal":"433586176"},"startTime":1776950101771,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":51,"timestamp":7343155865357,"id":9253,"parentId":3,"tags":{},"startTime":1776950102086,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":68211,"timestamp":7343530406532,"id":9259,"parentId":9257,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950476627,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":68667,"timestamp":7343530406539,"id":9260,"parentId":9257,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950476627,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":68687,"timestamp":7343530406543,"id":9261,"parentId":9257,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950476627,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":208195,"timestamp":7343530462584,"id":9264,"parentId":9263,"tags":{},"startTime":1776950476684,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":208597,"timestamp":7343530462193,"id":9263,"parentId":9262,"tags":{},"startTime":1776950476683,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":213570,"timestamp":7343530459466,"id":9262,"parentId":9256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776950476680,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":267932,"timestamp":7343530406261,"id":9258,"parentId":9257,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776950476627,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16280,"timestamp":7343530695020,"id":9283,"parentId":9282,"tags":{},"startTime":1776950476916,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16413,"timestamp":7343530694896,"id":9282,"parentId":9281,"tags":{},"startTime":1776950476916,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":32985,"timestamp":7343530694554,"id":9281,"parentId":9256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776950476916,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":375291,"timestamp":7343530388105,"id":9257,"parentId":9256,"tags":{},"startTime":1776950476609,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":9997,"timestamp":7343530784404,"id":9285,"parentId":9284,"tags":{},"startTime":1776950477005,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7343530794436,"id":9287,"parentId":9284,"tags":{},"startTime":1776950477015,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2939,"timestamp":7343530794454,"id":9288,"parentId":9284,"tags":{},"startTime":1776950477015,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":10,"timestamp":7343530797432,"id":9289,"parentId":9284,"tags":{},"startTime":1776950477018,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7343530797454,"id":9290,"parentId":9284,"tags":{},"startTime":1776950477018,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":6835,"timestamp":7343530794427,"id":9286,"parentId":9284,"tags":{},"startTime":1776950477015,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1089,"timestamp":7343530805174,"id":9291,"parentId":9284,"tags":{},"startTime":1776950477026,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":7479,"timestamp":7343530806281,"id":9292,"parentId":9284,"tags":{},"startTime":1776950477027,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":3659,"timestamp":7343530818119,"id":9293,"parentId":9284,"tags":{},"startTime":1776950477039,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":124,"timestamp":7343530821776,"id":9294,"parentId":9284,"tags":{},"startTime":1776950477043,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":101,"timestamp":7343530821881,"id":9295,"parentId":9284,"tags":{},"startTime":1776950477043,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6503,"timestamp":7343530821985,"id":9296,"parentId":9284,"tags":{},"startTime":1776950477043,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":69286,"timestamp":7343530771362,"id":9284,"parentId":9256,"tags":{},"startTime":1776950476992,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":461600,"timestamp":7343530386925,"id":9256,"parentId":9254,"tags":{"name":"server"},"startTime":1776950476608,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":6940,"timestamp":7343530848696,"id":9297,"parentId":9254,"tags":{},"startTime":1776950477070,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":499960,"timestamp":7343530356090,"id":9254,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776950476577,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5529,"timestamp":7343530872100,"id":9308,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6193,"timestamp":7343530872018,"id":9300,"parentId":9299,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":6991,"timestamp":7343530872082,"id":9306,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":7914,"timestamp":7343530872079,"id":9305,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16447,"timestamp":7343530872075,"id":9304,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26761,"timestamp":7343530872062,"id":9301,"parentId":9299,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26763,"timestamp":7343530872068,"id":9302,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":18695,"timestamp":7343530880254,"id":9315,"parentId":9314,"tags":{},"startTime":1776950477101,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":44705,"timestamp":7343530875549,"id":9313,"parentId":9312,"tags":{},"startTime":1776950477096,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":44788,"timestamp":7343530875471,"id":9312,"parentId":9311,"tags":{},"startTime":1776950477096,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":115459,"timestamp":7343530875323,"id":9311,"parentId":9298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776950477096,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":123434,"timestamp":7343530872087,"id":9307,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":187975,"timestamp":7343530899023,"id":9317,"parentId":9316,"tags":{},"startTime":1776950477120,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":188824,"timestamp":7343530898981,"id":9316,"parentId":9314,"tags":{},"startTime":1776950477120,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":21825,"timestamp":7343531087849,"id":9318,"parentId":9314,"tags":{"astUsed":"true"},"startTime":1776950477309,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":230839,"timestamp":7343530880171,"id":9314,"parentId":9310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776950477101,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":239010,"timestamp":7343530872104,"id":9309,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":238361,"timestamp":7343530874995,"id":9310,"parentId":9298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776950477096,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":18,"timestamp":7343531113456,"id":9319,"parentId":9310,"tags":{},"startTime":1776950477334,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":241414,"timestamp":7343530872071,"id":9303,"parentId":9299,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776950477093,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":255409,"timestamp":7343530858094,"id":9299,"parentId":9298,"tags":{},"startTime":1776950477079,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4451,"timestamp":7343531142103,"id":9321,"parentId":9320,"tags":{},"startTime":1776950477363,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":74,"timestamp":7343531146580,"id":9323,"parentId":9320,"tags":{},"startTime":1776950477368,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":348,"timestamp":7343531146670,"id":9324,"parentId":9320,"tags":{},"startTime":1776950477368,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7343531147043,"id":9325,"parentId":9320,"tags":{},"startTime":1776950477368,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7343531147064,"id":9326,"parentId":9320,"tags":{},"startTime":1776950477368,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2609,"timestamp":7343531146570,"id":9322,"parentId":9320,"tags":{},"startTime":1776950477368,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":867,"timestamp":7343531153010,"id":9327,"parentId":9320,"tags":{},"startTime":1776950477374,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":7862,"timestamp":7343531153893,"id":9328,"parentId":9320,"tags":{},"startTime":1776950477375,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":6439,"timestamp":7343531163211,"id":9329,"parentId":9320,"tags":{},"startTime":1776950477384,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":144,"timestamp":7343531169648,"id":9330,"parentId":9320,"tags":{},"startTime":1776950477391,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":77,"timestamp":7343531169784,"id":9331,"parentId":9320,"tags":{},"startTime":1776950477391,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":5270,"timestamp":7343531169866,"id":9332,"parentId":9320,"tags":{},"startTime":1776950477391,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":61,"timestamp":7343531176334,"id":9334,"parentId":9298,"tags":{},"startTime":1776950477397,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":112,"timestamp":7343531176287,"id":9333,"parentId":9298,"tags":{},"startTime":1776950477397,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":47476,"timestamp":7343531134418,"id":9320,"parentId":9298,"tags":{},"startTime":1776950477355,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":324112,"timestamp":7343530857809,"id":9298,"parentId":9255,"tags":{"name":"client"},"startTime":1776950477079,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":14706,"timestamp":7343531181976,"id":9335,"parentId":9255,"tags":{},"startTime":1776950477403,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":841659,"timestamp":7343530357121,"id":9255,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776950476578,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":5,"timestamp":7343531204142,"id":9336,"parentId":3,"tags":{},"startTime":1776950477425,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":58077,"timestamp":7343531215706,"id":9337,"tags":{"url":"/sectors?_rsc=ers3e","isTurbopack":false},"startTime":1776950477437,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7343531274076,"id":9338,"parentId":9337,"tags":{"url":"/sectors?_rsc=ers3e","memory.rss":"410009600","memory.heapUsed":"346666352","memory.heapTotal":"389529600"},"startTime":1776950477495,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":922000,"timestamp":7343530361799,"id":9339,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","[project]/node_modules/next/dist/client/components/not-found-error.js","[project]/src/app/globals.css","[project]/src/app/(auth)/sectors/page.tsx"],"page":"/sectors","isPageHidden":false},"startTime":1776950477506,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":38985,"timestamp":7343595989395,"id":9340,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776950542210,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7343596028427,"id":9341,"parentId":9340,"tags":{"url":"/sectors","memory.rss":"229654528","memory.heapUsed":"350708376","memory.heapTotal":"388366336"},"startTime":1776950542249,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":5,"timestamp":7343596385186,"id":9342,"parentId":3,"tags":{},"startTime":1776950542606,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":50799,"timestamp":7343597340053,"id":9343,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776950543561,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7343597390926,"id":9344,"parentId":9343,"tags":{"url":"/sectors","memory.rss":"175620096","memory.heapUsed":"359102080","memory.heapTotal":"388366336"},"startTime":1776950543612,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":4,"timestamp":7343597703286,"id":9345,"parentId":3,"tags":{},"startTime":1776950543924,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":55516,"timestamp":7343605501764,"id":9346,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776950551723,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7343605557761,"id":9347,"parentId":9346,"tags":{"url":"/sectors","memory.rss":"232046592","memory.heapUsed":"355208992","memory.heapTotal":"388366336"},"startTime":1776950551779,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":16,"timestamp":7343605897969,"id":9348,"parentId":3,"tags":{},"startTime":1776950552119,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":107952,"timestamp":7343635125675,"id":9349,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776950581347,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7343635233857,"id":9350,"parentId":9349,"tags":{"url":"/sectors","memory.rss":"152272896","memory.heapUsed":"339324072","memory.heapTotal":"362627072"},"startTime":1776950581455,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":4,"timestamp":7343635555011,"id":9351,"parentId":3,"tags":{},"startTime":1776950581776,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":68688,"timestamp":7343895895593,"id":9352,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1776950842117,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7343895964380,"id":9353,"parentId":9352,"tags":{"url":"/sectors","memory.rss":"105463808","memory.heapUsed":"340408408","memory.heapTotal":"362627072"},"startTime":1776950842186,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":3,"timestamp":7343896341603,"id":9354,"parentId":3,"tags":{},"startTime":1776950842563,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":32933,"timestamp":7344058124503,"id":9355,"tags":{"url":"/dashboard?_rsc=3e40m","isTurbopack":false},"startTime":1776951004346,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7344058157516,"id":9356,"parentId":9355,"tags":{"url":"/dashboard?_rsc=3e40m","memory.rss":"100384768","memory.heapUsed":"342842640","memory.heapTotal":"364888064"},"startTime":1776951004379,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":11049,"timestamp":7344058165120,"id":9357,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776951004387,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7344058176186,"id":9358,"parentId":9357,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"103825408","memory.heapUsed":"342877760","memory.heapTotal":"364888064"},"startTime":1776951004398,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":29306,"timestamp":7344083988497,"id":9359,"tags":{"url":"/strategy?_rsc=fd642","isTurbopack":false},"startTime":1776951030210,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7344084017883,"id":9360,"parentId":9359,"tags":{"url":"/strategy?_rsc=fd642","memory.rss":"101318656","memory.heapUsed":"345070088","memory.heapTotal":"364642304"},"startTime":1776951030240,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":8894,"timestamp":7344084020480,"id":9361,"tags":{"url":"/strategy?_rsc=g4vg8","isTurbopack":false},"startTime":1776951030242,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7344084029393,"id":9362,"parentId":9361,"tags":{"url":"/strategy?_rsc=g4vg8","memory.rss":"106233856","memory.heapUsed":"345173600","memory.heapTotal":"365690880"},"startTime":1776951030251,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":78597,"timestamp":7344181657339,"id":9363,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776951127879,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7344181735994,"id":9364,"parentId":9363,"tags":{"url":"/recommendations","memory.rss":"119291904","memory.heapUsed":"350029544","memory.heapTotal":"365953024"},"startTime":1776951127958,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":15,"timestamp":7344182305330,"id":9365,"parentId":3,"tags":{},"startTime":1776951128527,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":38857,"timestamp":7344332976057,"id":9366,"tags":{"url":"/dashboard?_rsc=1oe23","isTurbopack":false},"startTime":1776951279198,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7344333015397,"id":9367,"parentId":9366,"tags":{"url":"/dashboard?_rsc=1oe23","memory.rss":"85000192","memory.heapUsed":"351038752","memory.heapTotal":"365953024"},"startTime":1776951279237,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":15635,"timestamp":7344333025387,"id":9368,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776951279247,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7344333041368,"id":9369,"parentId":9368,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"90800128","memory.heapUsed":"351071112","memory.heapTotal":"367001600"},"startTime":1776951279263,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":129336,"timestamp":7346352903234,"id":9370,"tags":{"url":"/dashboard?_rsc=fd642","isTurbopack":false},"startTime":1776953299112,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7346353034511,"id":9371,"parentId":9370,"tags":{"url":"/dashboard?_rsc=fd642","memory.rss":"82640896","memory.heapUsed":"353555304","memory.heapTotal":"365953024"},"startTime":1776953299243,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":178142,"timestamp":7346353448148,"id":9372,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776953299657,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7346353626321,"id":9373,"parentId":9372,"tags":{"url":"/dashboard","memory.rss":"112918528","memory.heapUsed":"354049360","memory.heapTotal":"369098752"},"startTime":1776953299835,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":544,"timestamp":7346354997802,"id":9374,"parentId":3,"tags":{},"startTime":1776953301207,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":89287,"timestamp":7346431726595,"id":9375,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776953377935,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7346431816439,"id":9376,"parentId":9375,"tags":{"url":"/recommendations","memory.rss":"111886336","memory.heapUsed":"356067200","memory.heapTotal":"367263744"},"startTime":1776953378025,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":25,"timestamp":7346432403165,"id":9377,"parentId":3,"tags":{},"startTime":1776953378612,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":100949,"timestamp":7346445274151,"id":9384,"parentId":9382,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953391483,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":101398,"timestamp":7346445274161,"id":9385,"parentId":9382,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953391483,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":101401,"timestamp":7346445274175,"id":9387,"parentId":9382,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953391483,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":194208,"timestamp":7346445273573,"id":9383,"parentId":9382,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953391482,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":246126,"timestamp":7346445357970,"id":9388,"parentId":9386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776953391567,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":186664,"timestamp":7346445619242,"id":9391,"parentId":9390,"tags":{},"startTime":1776953391828,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":186797,"timestamp":7346445619117,"id":9390,"parentId":9389,"tags":{},"startTime":1776953391828,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":187824,"timestamp":7346445618554,"id":9389,"parentId":9388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"rsc"},"startTime":1776953391827,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":534242,"timestamp":7346445274171,"id":9386,"parentId":9382,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953391483,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":613,"timestamp":7346445834949,"id":9412,"parentId":9381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776953392044,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":33470,"timestamp":7346445843489,"id":9415,"parentId":9414,"tags":{},"startTime":1776953392052,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33556,"timestamp":7346445843409,"id":9414,"parentId":9413,"tags":{},"startTime":1776953392052,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":44189,"timestamp":7346445843184,"id":9413,"parentId":9412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"ssr"},"startTime":1776953392052,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8331,"timestamp":7346445913163,"id":9419,"parentId":9418,"tags":{},"startTime":1776953392122,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8911,"timestamp":7346445912589,"id":9418,"parentId":9416,"tags":{},"startTime":1776953392121,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":13394,"timestamp":7346445911866,"id":9416,"parentId":9413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"ssr"},"startTime":1776953392121,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25830,"timestamp":7346445913559,"id":9421,"parentId":9420,"tags":{},"startTime":1776953392122,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25887,"timestamp":7346445913507,"id":9420,"parentId":9417,"tags":{},"startTime":1776953392122,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":30992,"timestamp":7346445912019,"id":9417,"parentId":9413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"ssr"},"startTime":1776953392121,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":707931,"timestamp":7346445244634,"id":9382,"parentId":9381,"tags":{},"startTime":1776953391453,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":30742,"timestamp":7346445979877,"id":9423,"parentId":9422,"tags":{},"startTime":1776953392189,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":6,"timestamp":7346446010655,"id":9425,"parentId":9422,"tags":{},"startTime":1776953392219,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":15994,"timestamp":7346446011139,"id":9426,"parentId":9422,"tags":{},"startTime":1776953392220,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":8,"timestamp":7346446027158,"id":9427,"parentId":9422,"tags":{},"startTime":1776953392236,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7346446027190,"id":9428,"parentId":9422,"tags":{},"startTime":1776953392236,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":18401,"timestamp":7346446010641,"id":9424,"parentId":9422,"tags":{},"startTime":1776953392219,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1133,"timestamp":7346446030558,"id":9429,"parentId":9422,"tags":{},"startTime":1776953392239,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3376,"timestamp":7346446031697,"id":9430,"parentId":9422,"tags":{},"startTime":1776953392241,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":793,"timestamp":7346446035942,"id":9431,"parentId":9422,"tags":{},"startTime":1776953392245,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":57,"timestamp":7346446036735,"id":9432,"parentId":9422,"tags":{},"startTime":1776953392246,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":59,"timestamp":7346446036787,"id":9433,"parentId":9422,"tags":{},"startTime":1776953392246,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":8478,"timestamp":7346446036848,"id":9434,"parentId":9422,"tags":{},"startTime":1776953392246,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":101241,"timestamp":7346445956666,"id":9422,"parentId":9381,"tags":{},"startTime":1776953392165,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":830371,"timestamp":7346445233820,"id":9381,"parentId":9379,"tags":{"name":"server"},"startTime":1776953391443,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":13196,"timestamp":7346446064218,"id":9435,"parentId":9379,"tags":{},"startTime":1776953392273,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":1127331,"timestamp":7346444951047,"id":9380,"tags":{"trigger":"/stock/[code]","isTurbopack":false},"startTime":1776953391160,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":1127830,"timestamp":7346444950660,"id":9379,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776953391159,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":1242908,"timestamp":7346444903323,"id":9378,"tags":{"url":"/stock/300077.SZ","isTurbopack":false},"startTime":1776953391112,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7346446146250,"id":9436,"parentId":9378,"tags":{"url":"/stock/300077.SZ","memory.rss":"410648576","memory.heapUsed":"353965400","memory.heapTotal":"394854400"},"startTime":1776953392355,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":4,"timestamp":7346446766973,"id":9437,"parentId":3,"tags":{},"startTime":1776953392976,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":89983,"timestamp":7346459640654,"id":9438,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776953405849,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7346459730712,"id":9439,"parentId":9438,"tags":{"url":"/recommendations","memory.rss":"139345920","memory.heapUsed":"359946640","memory.heapTotal":"395116544"},"startTime":1776953405940,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":31,"timestamp":7346460243080,"id":9440,"parentId":3,"tags":{},"startTime":1776953406452,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19467,"timestamp":7346467245874,"id":9447,"parentId":9445,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953413455,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19494,"timestamp":7346467245887,"id":9448,"parentId":9445,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953413455,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19508,"timestamp":7346467245890,"id":9449,"parentId":9445,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953413455,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19518,"timestamp":7346467245896,"id":9450,"parentId":9445,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953413455,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":28982,"timestamp":7346467245682,"id":9446,"parentId":9445,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953413454,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":23220,"timestamp":7346467262669,"id":9452,"parentId":9451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776953413471,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11579,"timestamp":7346467288583,"id":9455,"parentId":9454,"tags":{},"startTime":1776953413497,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11682,"timestamp":7346467288483,"id":9454,"parentId":9453,"tags":{},"startTime":1776953413497,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":12232,"timestamp":7346467288280,"id":9453,"parentId":9452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"rsc"},"startTime":1776953413497,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":55732,"timestamp":7346467245899,"id":9451,"parentId":9445,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776953413455,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":454,"timestamp":7346467318721,"id":9481,"parentId":9444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776953413528,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":43681,"timestamp":7346467326136,"id":9484,"parentId":9483,"tags":{},"startTime":1776953413535,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":43819,"timestamp":7346467326013,"id":9483,"parentId":9482,"tags":{},"startTime":1776953413535,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":50806,"timestamp":7346467324882,"id":9482,"parentId":9481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"ssr"},"startTime":1776953413534,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":145505,"timestamp":7346467240353,"id":9445,"parentId":9444,"tags":{},"startTime":1776953413449,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3225,"timestamp":7346467394855,"id":9486,"parentId":9485,"tags":{},"startTime":1776953413604,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":8,"timestamp":7346467398101,"id":9488,"parentId":9485,"tags":{},"startTime":1776953413607,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3921,"timestamp":7346467398119,"id":9489,"parentId":9485,"tags":{},"startTime":1776953413607,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7346467402060,"id":9490,"parentId":9485,"tags":{},"startTime":1776953413611,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7346467402074,"id":9491,"parentId":9485,"tags":{},"startTime":1776953413611,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":9719,"timestamp":7346467398093,"id":9487,"parentId":9485,"tags":{},"startTime":1776953413607,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":556,"timestamp":7346467411412,"id":9492,"parentId":9485,"tags":{},"startTime":1776953413620,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4318,"timestamp":7346467411977,"id":9493,"parentId":9485,"tags":{},"startTime":1776953413621,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":979,"timestamp":7346467417422,"id":9494,"parentId":9485,"tags":{},"startTime":1776953413626,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":82,"timestamp":7346467418401,"id":9495,"parentId":9485,"tags":{},"startTime":1776953413627,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":75,"timestamp":7346467418472,"id":9496,"parentId":9485,"tags":{},"startTime":1776953413627,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3070,"timestamp":7346467418550,"id":9497,"parentId":9485,"tags":{},"startTime":1776953413627,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":37081,"timestamp":7346467389121,"id":9485,"parentId":9444,"tags":{},"startTime":1776953413598,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":191964,"timestamp":7346467239659,"id":9444,"parentId":9442,"tags":{"name":"server"},"startTime":1776953413448,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":5695,"timestamp":7346467431655,"id":9498,"parentId":9442,"tags":{},"startTime":1776953413640,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":207212,"timestamp":7346467230402,"id":9442,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776953413439,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10283,"timestamp":7346467448120,"id":9509,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776953413657,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12120,"timestamp":7346467446816,"id":9501,"parentId":9500,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776953413656,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14997,"timestamp":7346467446868,"id":9506,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776953413656,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15118,"timestamp":7346467446871,"id":9507,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776953413656,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13903,"timestamp":7346467448109,"id":9508,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776953413657,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17652,"timestamp":7346467446858,"id":9504,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776953413656,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":49562,"timestamp":7346467446861,"id":9505,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776953413656,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":50224,"timestamp":7346467446850,"id":9502,"parentId":9500,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776953413656,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":50222,"timestamp":7346467446855,"id":9503,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776953413656,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":50453,"timestamp":7346467448124,"id":9510,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776953413657,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":814,"timestamp":7346467510691,"id":9512,"parentId":9511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776953413719,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":60444,"timestamp":7346467512654,"id":9515,"parentId":9514,"tags":{},"startTime":1776953413721,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":60537,"timestamp":7346467512568,"id":9514,"parentId":9513,"tags":{},"startTime":1776953413721,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":66419,"timestamp":7346467512415,"id":9513,"parentId":9512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"app-pages-browser"},"startTime":1776953413721,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":133820,"timestamp":7346467448127,"id":9511,"parentId":9500,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776953413657,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":142758,"timestamp":7346467439213,"id":9500,"parentId":9499,"tags":{},"startTime":1776953413648,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2949,"timestamp":7346467591261,"id":9517,"parentId":9516,"tags":{},"startTime":1776953413800,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7346467594225,"id":9519,"parentId":9516,"tags":{},"startTime":1776953413803,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":304,"timestamp":7346467594238,"id":9520,"parentId":9516,"tags":{},"startTime":1776953413803,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7346467594559,"id":9521,"parentId":9516,"tags":{},"startTime":1776953413803,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7346467594579,"id":9522,"parentId":9516,"tags":{},"startTime":1776953413803,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3502,"timestamp":7346467594220,"id":9518,"parentId":9516,"tags":{},"startTime":1776953413803,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":340,"timestamp":7346467600327,"id":9523,"parentId":9516,"tags":{},"startTime":1776953413809,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3289,"timestamp":7346467600673,"id":9524,"parentId":9516,"tags":{},"startTime":1776953413809,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":7392,"timestamp":7346467605140,"id":9525,"parentId":9516,"tags":{},"startTime":1776953413814,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":104,"timestamp":7346467612531,"id":9526,"parentId":9516,"tags":{},"startTime":1776953413821,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":62,"timestamp":7346467612627,"id":9527,"parentId":9516,"tags":{},"startTime":1776953413821,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3567,"timestamp":7346467612692,"id":9528,"parentId":9516,"tags":{},"startTime":1776953413821,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":46,"timestamp":7346467617021,"id":9530,"parentId":9499,"tags":{},"startTime":1776953413826,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":80,"timestamp":7346467616990,"id":9529,"parentId":9499,"tags":{},"startTime":1776953413826,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":34249,"timestamp":7346467584264,"id":9516,"parentId":9499,"tags":{},"startTime":1776953413793,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":179516,"timestamp":7346467439017,"id":9499,"parentId":9480,"tags":{"name":"client"},"startTime":1776953413648,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":10195,"timestamp":7346467618555,"id":9531,"parentId":9480,"tags":{},"startTime":1776953413827,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":398650,"timestamp":7346467230470,"id":9443,"tags":{"trigger":"/settings","isTurbopack":false},"startTime":1776953413439,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":326100,"timestamp":7346467303251,"id":9480,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776953413512,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":21,"timestamp":7346467631654,"id":9532,"parentId":3,"tags":{},"startTime":1776953413840,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":423615,"timestamp":7346467223271,"id":9441,"tags":{"url":"/settings?_rsc=1oe23","isTurbopack":false},"startTime":1776953413432,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7346467646905,"id":9533,"parentId":9441,"tags":{"url":"/settings?_rsc=1oe23","memory.rss":"438845440","memory.heapUsed":"359103248","memory.heapTotal":"422969344"},"startTime":1776953413856,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":348000,"timestamp":7346467303511,"id":9535,"parentId":3,"tags":{"updatedModules":[],"page":"/recommendations","isPageHidden":false},"startTime":1776953413860,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":8533,"timestamp":7346467651099,"id":9534,"tags":{"url":"/settings?_rsc=ll4b7","isTurbopack":false},"startTime":1776953413860,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7346467659644,"id":9536,"parentId":9534,"tags":{"url":"/settings?_rsc=ll4b7","memory.rss":"438845440","memory.heapUsed":"367922672","memory.heapTotal":"422969344"},"startTime":1776953413868,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":60597,"timestamp":7346472886981,"id":9537,"tags":{"url":"/dashboard?_rsc=dkqzu","isTurbopack":false},"startTime":1776953419096,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7346472947681,"id":9538,"parentId":9537,"tags":{"url":"/dashboard?_rsc=dkqzu","memory.rss":"239009792","memory.heapUsed":"362537128","memory.heapTotal":"423886848"},"startTime":1776953419156,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":41655,"timestamp":7346472952819,"id":9539,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776953419162,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7346472994509,"id":9540,"parentId":9539,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"168247296","memory.heapUsed":"370807920","memory.heapTotal":"423886848"},"startTime":1776953419203,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":53843,"timestamp":7346476356669,"id":9541,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776953422565,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7346476410577,"id":9542,"parentId":9541,"tags":{"url":"/dashboard","memory.rss":"179175424","memory.heapUsed":"368026632","memory.heapTotal":"423231488"},"startTime":1776953422619,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":15,"timestamp":7346476740237,"id":9543,"parentId":3,"tags":{},"startTime":1776953422949,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":134962,"timestamp":7346708597189,"id":9544,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776953654806,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7346708732324,"id":9545,"parentId":9544,"tags":{"url":"/recommendations","memory.rss":"131923968","memory.heapUsed":"348132568","memory.heapTotal":"359432192"},"startTime":1776953654941,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":11,"timestamp":7346709041814,"id":9546,"parentId":3,"tags":{},"startTime":1776953655250,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":32283,"timestamp":7346877790398,"id":9547,"tags":{"url":"/dashboard?_rsc=1oe23","isTurbopack":false},"startTime":1776953823999,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7346877822770,"id":9548,"parentId":9547,"tags":{"url":"/dashboard?_rsc=1oe23","memory.rss":"107003904","memory.heapUsed":"349979160","memory.heapTotal":"357597184"},"startTime":1776953824031,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":9121,"timestamp":7346877827951,"id":9549,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776953824036,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":7,"timestamp":7346877837145,"id":9550,"parentId":9549,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"112492544","memory.heapUsed":"351033656","memory.heapTotal":"361267200"},"startTime":1776953824046,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":86907,"timestamp":7347008038391,"id":9551,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776953954247,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7347008125389,"id":9552,"parentId":9551,"tags":{"url":"/recommendations","memory.rss":"108232704","memory.heapUsed":"353620448","memory.heapTotal":"363888640"},"startTime":1776953954334,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":8,"timestamp":7347008481721,"id":9553,"parentId":3,"tags":{},"startTime":1776953954690,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":25219,"timestamp":7347407301817,"id":9554,"tags":{"url":"/dashboard?_rsc=1oe23","isTurbopack":false},"startTime":1776954353510,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7347407328078,"id":9555,"parentId":9554,"tags":{"url":"/dashboard?_rsc=1oe23","memory.rss":"80871424","memory.heapUsed":"355405888","memory.heapTotal":"361791488"},"startTime":1776954353536,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":12118,"timestamp":7347407335761,"id":9556,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776954353544,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7347407347905,"id":9557,"parentId":9556,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"88997888","memory.heapUsed":"355473632","memory.heapTotal":"365199360"},"startTime":1776954353556,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":167860,"timestamp":7348093771924,"id":9570,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":180859,"timestamp":7348093773765,"id":9572,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955039981,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":204915,"timestamp":7348093767797,"id":9562,"parentId":9561,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955039975,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":210641,"timestamp":7348093771899,"id":9567,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":211270,"timestamp":7348093771908,"id":9568,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":212245,"timestamp":7348093771915,"id":9569,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":233066,"timestamp":7348093771888,"id":9566,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":256975,"timestamp":7348093771872,"id":9564,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":291951,"timestamp":7348093771816,"id":9563,"parentId":9561,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":338372,"timestamp":7348093773740,"id":9571,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955039981,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":155633,"timestamp":7348093963844,"id":9575,"parentId":9574,"tags":{},"startTime":1776955040171,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":157822,"timestamp":7348093961662,"id":9574,"parentId":9573,"tags":{},"startTime":1776955040169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":183186,"timestamp":7348093957559,"id":9573,"parentId":9560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776955040165,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":369944,"timestamp":7348093771884,"id":9565,"parentId":9561,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776955039979,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":387976,"timestamp":7348093753925,"id":9561,"parentId":9560,"tags":{},"startTime":1776955039961,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":9906,"timestamp":7348094250108,"id":9577,"parentId":9576,"tags":{},"startTime":1776955040458,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":9,"timestamp":7348094260058,"id":9579,"parentId":9576,"tags":{},"startTime":1776955040468,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2185,"timestamp":7348094260080,"id":9580,"parentId":9576,"tags":{},"startTime":1776955040468,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7348094262290,"id":9581,"parentId":9576,"tags":{},"startTime":1776955040470,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7348094262334,"id":9582,"parentId":9576,"tags":{},"startTime":1776955040470,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":6347,"timestamp":7348094260048,"id":9578,"parentId":9576,"tags":{},"startTime":1776955040468,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":6599,"timestamp":7348094280771,"id":9583,"parentId":9576,"tags":{},"startTime":1776955040488,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":13710,"timestamp":7348094287381,"id":9584,"parentId":9576,"tags":{},"startTime":1776955040495,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":8765,"timestamp":7348094302766,"id":9585,"parentId":9576,"tags":{},"startTime":1776955040510,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":161,"timestamp":7348094311530,"id":9586,"parentId":9576,"tags":{},"startTime":1776955040519,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":72,"timestamp":7348094311682,"id":9587,"parentId":9576,"tags":{},"startTime":1776955040519,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6016,"timestamp":7348094311757,"id":9588,"parentId":9576,"tags":{},"startTime":1776955040519,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":97,"timestamp":7348094319047,"id":9590,"parentId":9560,"tags":{},"startTime":1776955040527,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":153,"timestamp":7348094318996,"id":9589,"parentId":9560,"tags":{},"startTime":1776955040526,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":95439,"timestamp":7348094226646,"id":9576,"parentId":9560,"tags":{},"startTime":1776955040434,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":589666,"timestamp":7348093732612,"id":9560,"parentId":9558,"tags":{"name":"client"},"startTime":1776955039940,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":102057,"timestamp":7348094322311,"id":9591,"parentId":9558,"tags":{},"startTime":1776955040530,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":1134691,"timestamp":7348093294162,"id":9558,"parentId":3,"tags":{"trigger":"src/lib/api.ts"},"startTime":1776955039502,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":2,"timestamp":7348094442083,"id":9594,"parentId":3,"tags":{},"startTime":1776955040650,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15053,"timestamp":7348094459680,"id":9596,"parentId":9593,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040667,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15060,"timestamp":7348094459686,"id":9597,"parentId":9593,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040667,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15072,"timestamp":7348094459690,"id":9598,"parentId":9593,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040667,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15072,"timestamp":7348094459694,"id":9599,"parentId":9593,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040667,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16359,"timestamp":7348094459623,"id":9595,"parentId":9593,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040667,"traceId":"d76ab653cbe90d54"},{"name":"client-full-reload","duration":3,"timestamp":7348094506191,"id":9620,"parentId":3,"tags":{"stackTrace":"Error: Aborted because (app-pages-browser)/./src/lib/api.ts is not accepted\nUpdate propagation: (app-pages-browser)/./src/lib/api.ts -> (app-pages-browser)/./src/hooks/use-auth.tsx -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/client.js -> (app-pages-browser)/./node_modules/next/dist/client/app-index.js -> (app-pages-browser)/./node_modules/next/dist/client/app-next-dev.js\n at applyHandler (http://localhost:3001/_next/static/chunks/webpack.js?v=1776953954307:1059:31)\n at http://localhost:3001/_next/static/chunks/webpack.js?v=1776953954307:618:21\n at Array.map ()"},"startTime":1776955040714,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":52449,"timestamp":7348094507506,"id":9623,"parentId":9622,"tags":{},"startTime":1776955040715,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":52569,"timestamp":7348094507397,"id":9622,"parentId":9621,"tags":{},"startTime":1776955040715,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":60007,"timestamp":7348094507095,"id":9621,"parentId":9592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776955040715,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":139769,"timestamp":7348094435713,"id":9593,"parentId":9592,"tags":{},"startTime":1776955040643,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5478,"timestamp":7348094618503,"id":9626,"parentId":9625,"tags":{},"startTime":1776955040826,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":8,"timestamp":7348094624005,"id":9628,"parentId":9625,"tags":{},"startTime":1776955040831,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3260,"timestamp":7348094624027,"id":9629,"parentId":9625,"tags":{},"startTime":1776955040832,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7348094627315,"id":9630,"parentId":9625,"tags":{},"startTime":1776955040835,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7348094627329,"id":9631,"parentId":9625,"tags":{},"startTime":1776955040835,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":5436,"timestamp":7348094623995,"id":9627,"parentId":9625,"tags":{},"startTime":1776955040831,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":6199,"timestamp":7348094631293,"id":9632,"parentId":9625,"tags":{},"startTime":1776955040839,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3167,"timestamp":7348094637507,"id":9633,"parentId":9625,"tags":{},"startTime":1776955040845,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":809,"timestamp":7348094641756,"id":9634,"parentId":9625,"tags":{},"startTime":1776955040849,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":88,"timestamp":7348094642564,"id":9635,"parentId":9625,"tags":{},"startTime":1776955040850,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":82,"timestamp":7348094642643,"id":9636,"parentId":9625,"tags":{},"startTime":1776955040850,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3217,"timestamp":7348094642728,"id":9637,"parentId":9625,"tags":{},"startTime":1776955040850,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":50594,"timestamp":7348094599289,"id":9625,"parentId":9592,"tags":{},"startTime":1776955040807,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":219742,"timestamp":7348094435071,"id":9592,"parentId":9559,"tags":{"name":"server"},"startTime":1776955040643,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":82986,"timestamp":7348094654845,"id":9638,"parentId":9559,"tags":{},"startTime":1776955040862,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":623,"timestamp":7348094738035,"id":9639,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776955040946,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":10280,"timestamp":7348094766712,"id":9643,"parentId":9641,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040974,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10283,"timestamp":7348094766717,"id":9644,"parentId":9641,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040974,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10282,"timestamp":7348094766720,"id":9645,"parentId":9641,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040974,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10282,"timestamp":7348094766724,"id":9646,"parentId":9641,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040974,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13043,"timestamp":7348094766673,"id":9642,"parentId":9641,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955040974,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":77310,"timestamp":7348094741983,"id":9641,"parentId":9640,"tags":{},"startTime":1776955040949,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6464,"timestamp":7348094829914,"id":9668,"parentId":9667,"tags":{},"startTime":1776955041037,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7348094836402,"id":9670,"parentId":9667,"tags":{},"startTime":1776955041044,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2960,"timestamp":7348094836415,"id":9671,"parentId":9667,"tags":{},"startTime":1776955041044,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7348094839406,"id":9672,"parentId":9667,"tags":{},"startTime":1776955041047,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7348094839423,"id":9673,"parentId":9667,"tags":{},"startTime":1776955041047,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4172,"timestamp":7348094836395,"id":9669,"parentId":9667,"tags":{},"startTime":1776955041044,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":675,"timestamp":7348094844528,"id":9674,"parentId":9667,"tags":{},"startTime":1776955041052,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3615,"timestamp":7348094845224,"id":9675,"parentId":9667,"tags":{},"startTime":1776955041053,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":746,"timestamp":7348094849698,"id":9676,"parentId":9667,"tags":{},"startTime":1776955041057,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":50,"timestamp":7348094850444,"id":9677,"parentId":9667,"tags":{},"startTime":1776955041058,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":59,"timestamp":7348094850489,"id":9678,"parentId":9667,"tags":{},"startTime":1776955041058,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":123,"timestamp":7348094850551,"id":9679,"parentId":9667,"tags":{},"startTime":1776955041058,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":29864,"timestamp":7348094823894,"id":9667,"parentId":9640,"tags":{},"startTime":1776955041031,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":119041,"timestamp":7348094741790,"id":9640,"parentId":3,"tags":{"name":"server"},"startTime":1776955040949,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":12466,"timestamp":7348094860887,"id":9680,"parentId":3,"tags":{},"startTime":1776955041068,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":489592,"timestamp":7348094540268,"id":9624,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776955040748,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348095030117,"id":9681,"parentId":9624,"tags":{"url":"/dashboard","memory.rss":"430637056","memory.heapUsed":"385728048","memory.heapTotal":"415514624"},"startTime":1776955041238,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":19,"timestamp":7348096248268,"id":9682,"parentId":3,"tags":{},"startTime":1776955042456,"traceId":"d76ab653cbe90d54"},{"name":"next-client-pages-loader","duration":2723,"timestamp":7348126347325,"id":9714,"parentId":9713,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1776955072555,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":31740,"timestamp":7348126329547,"id":9713,"parentId":9698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":null},"startTime":1776955072537,"traceId":"d76ab653cbe90d54"},{"name":"next-client-pages-loader","duration":117,"timestamp":7348126361520,"id":9716,"parentId":9715,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1776955072569,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":950,"timestamp":7348126361455,"id":9715,"parentId":9700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":null},"startTime":1776955072569,"traceId":"d76ab653cbe90d54"},{"name":"next-client-pages-loader","duration":30,"timestamp":7348126362474,"id":9718,"parentId":9717,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js"},"startTime":1776955072570,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":405,"timestamp":7348126362425,"id":9717,"parentId":9710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!","layer":null},"startTime":1776955072570,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":53377,"timestamp":7348126312788,"id":9707,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":53762,"timestamp":7348126312802,"id":9709,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":66112,"timestamp":7348126312611,"id":9696,"parentId":9693,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":79938,"timestamp":7348126312706,"id":9704,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":79978,"timestamp":7348126312776,"id":9705,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":80035,"timestamp":7348126312780,"id":9706,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":76035,"timestamp":7348126329204,"id":9712,"parentId":9711,"tags":{},"startTime":1776955072537,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":86088,"timestamp":7348126323466,"id":9711,"parentId":9694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":null},"startTime":1776955072531,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":99891,"timestamp":7348126312673,"id":9702,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":100124,"timestamp":7348126312677,"id":9703,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":103217,"timestamp":7348126312667,"id":9701,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":116157,"timestamp":7348126312630,"id":9697,"parentId":9693,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11834,"timestamp":7348126432975,"id":9723,"parentId":9722,"tags":{},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11940,"timestamp":7348126432876,"id":9722,"parentId":9719,"tags":{},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15653,"timestamp":7348126432612,"id":9719,"parentId":9695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/next-dev.js","layer":null},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16729,"timestamp":7348126433006,"id":9725,"parentId":9724,"tags":{},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16749,"timestamp":7348126432991,"id":9724,"parentId":9720,"tags":{},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20434,"timestamp":7348126432784,"id":9720,"parentId":9699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js","layer":null},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20242,"timestamp":7348126433032,"id":9727,"parentId":9726,"tags":{},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20256,"timestamp":7348126433020,"id":9726,"parentId":9721,"tags":{},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22429,"timestamp":7348126432828,"id":9721,"parentId":9717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1776955072640,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20197,"timestamp":7348126436139,"id":9730,"parentId":9729,"tags":{},"startTime":1776955072644,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20224,"timestamp":7348126436114,"id":9729,"parentId":9728,"tags":{},"startTime":1776955072644,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22996,"timestamp":7348126436009,"id":9728,"parentId":9713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1776955072643,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":149515,"timestamp":7348126312791,"id":9708,"parentId":9693,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3115,"timestamp":7348126461216,"id":9739,"parentId":9738,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3164,"timestamp":7348126461169,"id":9738,"parentId":9733,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5621,"timestamp":7348126460928,"id":9733,"parentId":9719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/webpack.js","layer":null},"startTime":1776955072668,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5611,"timestamp":7348126461242,"id":9741,"parentId":9740,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5630,"timestamp":7348126461230,"id":9740,"parentId":9734,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7079,"timestamp":7348126461005,"id":9734,"parentId":9719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/setup-hydration-warning.js","layer":null},"startTime":1776955072668,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7026,"timestamp":7348126461275,"id":9743,"parentId":9742,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7039,"timestamp":7348126461264,"id":9742,"parentId":9735,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9263,"timestamp":7348126461046,"id":9735,"parentId":9719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-bootstrap.js","layer":null},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9899,"timestamp":7348126461327,"id":9747,"parentId":9746,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9916,"timestamp":7348126461312,"id":9746,"parentId":9737,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10863,"timestamp":7348126461114,"id":9737,"parentId":9720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/with-router.js","layer":null},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":12440,"timestamp":7348126460642,"id":9732,"parentId":9731,"tags":{},"startTime":1776955072668,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13582,"timestamp":7348126460598,"id":9731,"parentId":9711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":null},"startTime":1776955072668,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11873,"timestamp":7348126462358,"id":9750,"parentId":9749,"tags":{},"startTime":1776955072670,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11902,"timestamp":7348126462331,"id":9749,"parentId":9748,"tags":{},"startTime":1776955072670,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13260,"timestamp":7348126462241,"id":9748,"parentId":9719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/hot-middleware-client.js","layer":null},"startTime":1776955072670,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":16508,"timestamp":7348126462440,"id":9752,"parentId":9751,"tags":{},"startTime":1776955072670,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17034,"timestamp":7348126462424,"id":9751,"parentId":9720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1776955072670,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3499,"timestamp":7348126477545,"id":9758,"parentId":9757,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3546,"timestamp":7348126477501,"id":9757,"parentId":9753,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4714,"timestamp":7348126477299,"id":9753,"parentId":9720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":null},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6142,"timestamp":7348126477581,"id":9760,"parentId":9759,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6163,"timestamp":7348126477565,"id":9759,"parentId":9754,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8516,"timestamp":7348126477397,"id":9754,"parentId":9728,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6829,"timestamp":7348126479799,"id":9768,"parentId":9767,"tags":{},"startTime":1776955072687,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6854,"timestamp":7348126479777,"id":9767,"parentId":9765,"tags":{},"startTime":1776955072687,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7992,"timestamp":7348126479685,"id":9765,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/on-demand-entries-client.js","layer":null},"startTime":1776955072687,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10136,"timestamp":7348126477606,"id":9762,"parentId":9761,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10149,"timestamp":7348126477595,"id":9761,"parentId":9755,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13268,"timestamp":7348126477433,"id":9755,"parentId":9721,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13274,"timestamp":7348126479830,"id":9770,"parentId":9769,"tags":{},"startTime":1776955072687,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13288,"timestamp":7348126479818,"id":9769,"parentId":9766,"tags":{},"startTime":1776955072687,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14814,"timestamp":7348126479735,"id":9766,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/dev-build-watcher.js","layer":null},"startTime":1776955072687,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":34498,"timestamp":7348126461300,"id":9745,"parentId":9744,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":34512,"timestamp":7348126461289,"id":9744,"parentId":9736,"tags":{},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":42326,"timestamp":7348126461083,"id":9736,"parentId":9719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/index.js","layer":null},"startTime":1776955072669,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3217,"timestamp":7348126505373,"id":9775,"parentId":9774,"tags":{},"startTime":1776955072713,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3286,"timestamp":7348126505306,"id":9774,"parentId":9771,"tags":{},"startTime":1776955072713,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4701,"timestamp":7348126504900,"id":9771,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/fouc.js","layer":null},"startTime":1776955072712,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3560,"timestamp":7348126509807,"id":9780,"parentId":9779,"tags":{},"startTime":1776955072717,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3593,"timestamp":7348126509778,"id":9779,"parentId":9778,"tags":{},"startTime":1776955072717,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5676,"timestamp":7348126509712,"id":9778,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":null},"startTime":1776955072717,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6442,"timestamp":7348126511797,"id":9783,"parentId":9782,"tags":{},"startTime":1776955072719,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6467,"timestamp":7348126511774,"id":9782,"parentId":9781,"tags":{},"startTime":1776955072719,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7082,"timestamp":7348126511663,"id":9781,"parentId":9751,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1776955072719,"traceId":"d76ab653cbe90d54"}]
-[{"name":"read-resource","duration":14047,"timestamp":7348126505008,"id":9773,"parentId":9772,"tags":{},"startTime":1776955072712,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14252,"timestamp":7348126504993,"id":9772,"parentId":9733,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":null},"startTime":1776955072712,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3834,"timestamp":7348126517326,"id":9795,"parentId":9794,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3873,"timestamp":7348126517292,"id":9794,"parentId":9786,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5459,"timestamp":7348126516656,"id":9786,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4793,"timestamp":7348126517353,"id":9797,"parentId":9796,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4807,"timestamp":7348126517341,"id":9796,"parentId":9787,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6156,"timestamp":7348126516722,"id":9787,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/websocket.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5494,"timestamp":7348126517399,"id":9801,"parentId":9800,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5505,"timestamp":7348126517389,"id":9800,"parentId":9789,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7062,"timestamp":7348126516802,"id":9789,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8258,"timestamp":7348126517421,"id":9803,"parentId":9802,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8272,"timestamp":7348126517411,"id":9802,"parentId":9790,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10026,"timestamp":7348126516835,"id":9790,"parentId":9755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9442,"timestamp":7348126517441,"id":9805,"parentId":9804,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9452,"timestamp":7348126517432,"id":9804,"parentId":9791,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10583,"timestamp":7348126516867,"id":9791,"parentId":9755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10004,"timestamp":7348126517466,"id":9807,"parentId":9806,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10018,"timestamp":7348126517454,"id":9806,"parentId":9792,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11083,"timestamp":7348126516893,"id":9792,"parentId":9755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10981,"timestamp":7348126517489,"id":9809,"parentId":9808,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10993,"timestamp":7348126517479,"id":9808,"parentId":9793,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11921,"timestamp":7348126516920,"id":9793,"parentId":9755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":19693,"timestamp":7348126509698,"id":9777,"parentId":9776,"tags":{},"startTime":1776955072717,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19842,"timestamp":7348126509672,"id":9776,"parentId":9711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":null},"startTime":1776955072717,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10185,"timestamp":7348126519927,"id":9830,"parentId":9829,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10202,"timestamp":7348126519913,"id":9829,"parentId":9811,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13489,"timestamp":7348126519361,"id":9811,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/performance-relayer.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15540,"timestamp":7348126517377,"id":9799,"parentId":9798,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15552,"timestamp":7348126517367,"id":9798,"parentId":9788,"tags":{},"startTime":1776955072725,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18275,"timestamp":7348126516764,"id":9788,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/hot-reloader-client.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15117,"timestamp":7348126519954,"id":9832,"parentId":9831,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15133,"timestamp":7348126519940,"id":9831,"parentId":9812,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16314,"timestamp":7348126519393,"id":9812,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-announcer.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15945,"timestamp":7348126519898,"id":9828,"parentId":9827,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15981,"timestamp":7348126519866,"id":9827,"parentId":9810,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19487,"timestamp":7348126519311,"id":9810,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/head-manager.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18863,"timestamp":7348126519981,"id":9834,"parentId":9833,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18876,"timestamp":7348126519971,"id":9833,"parentId":9813,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20640,"timestamp":7348126519421,"id":9813,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20093,"timestamp":7348126520004,"id":9836,"parentId":9835,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20106,"timestamp":7348126519994,"id":9835,"parentId":9814,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21178,"timestamp":7348126519447,"id":9814,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":20616,"timestamp":7348126520027,"id":9838,"parentId":9837,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":20627,"timestamp":7348126520017,"id":9837,"parentId":9815,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21974,"timestamp":7348126519474,"id":9815,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":23981,"timestamp":7348126520094,"id":9844,"parentId":9843,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":23993,"timestamp":7348126520085,"id":9843,"parentId":9818,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25253,"timestamp":7348126519575,"id":9818,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/mitt.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":24794,"timestamp":7348126520071,"id":9842,"parentId":9841,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":24806,"timestamp":7348126520062,"id":9841,"parentId":9817,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26442,"timestamp":7348126519536,"id":9817,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-loader.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25874,"timestamp":7348126520117,"id":9846,"parentId":9845,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25886,"timestamp":7348126520107,"id":9845,"parentId":9819,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27171,"timestamp":7348126519601,"id":9819,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26648,"timestamp":7348126520139,"id":9848,"parentId":9847,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26660,"timestamp":7348126520130,"id":9847,"parentId":9820,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28071,"timestamp":7348126519624,"id":9820,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27553,"timestamp":7348126520162,"id":9850,"parentId":9849,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27564,"timestamp":7348126520153,"id":9849,"parentId":9821,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29185,"timestamp":7348126519655,"id":9821,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":28677,"timestamp":7348126520184,"id":9852,"parentId":9851,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":28689,"timestamp":7348126520175,"id":9851,"parentId":9822,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29564,"timestamp":7348126519683,"id":9822,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29071,"timestamp":7348126520207,"id":9854,"parentId":9853,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29083,"timestamp":7348126520197,"id":9853,"parentId":9823,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32315,"timestamp":7348126519707,"id":9823,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/adapters.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":31820,"timestamp":7348126520229,"id":9856,"parentId":9855,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":31832,"timestamp":7348126520220,"id":9855,"parentId":9824,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32681,"timestamp":7348126519733,"id":9824,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":32393,"timestamp":7348126520049,"id":9840,"parentId":9839,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":32405,"timestamp":7348126520040,"id":9839,"parentId":9816,"tags":{},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34391,"timestamp":7348126519505,"id":9816,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/script.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":33664,"timestamp":7348126520252,"id":9858,"parentId":9857,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33677,"timestamp":7348126520242,"id":9857,"parentId":9825,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":34947,"timestamp":7348126519758,"id":9825,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29415,"timestamp":7348126525388,"id":9863,"parentId":9862,"tags":{},"startTime":1776955072733,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29465,"timestamp":7348126525339,"id":9862,"parentId":9861,"tags":{},"startTime":1776955072733,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30402,"timestamp":7348126525129,"id":9861,"parentId":9755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1776955072733,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":78691,"timestamp":7348126477630,"id":9764,"parentId":9763,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":78703,"timestamp":7348126477620,"id":9763,"parentId":9756,"tags":{},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":88629,"timestamp":7348126477463,"id":9756,"parentId":9720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/router.js","layer":null},"startTime":1776955072685,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":45885,"timestamp":7348126520274,"id":9860,"parentId":9859,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":45897,"timestamp":7348126520265,"id":9859,"parentId":9826,"tags":{},"startTime":1776955072728,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47183,"timestamp":7348126519785,"id":9826,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/client.js","layer":null},"startTime":1776955072727,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25055,"timestamp":7348126542624,"id":9873,"parentId":9872,"tags":{},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25069,"timestamp":7348126542612,"id":9872,"parentId":9869,"tags":{},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25574,"timestamp":7348126542441,"id":9869,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/report-to-socket.js","layer":null},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30220,"timestamp":7348126542598,"id":9871,"parentId":9870,"tags":{},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30256,"timestamp":7348126542563,"id":9870,"parentId":9868,"tags":{},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31412,"timestamp":7348126542389,"id":9868,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/tracer.js","layer":null},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":57743,"timestamp":7348126516640,"id":9785,"parentId":9784,"tags":{},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":58056,"timestamp":7348126516603,"id":9784,"parentId":9735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":null},"startTime":1776955072724,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37434,"timestamp":7348126542335,"id":9865,"parentId":9864,"tags":{},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":37589,"timestamp":7348126542299,"id":9864,"parentId":9721,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/jsx-runtime.js","layer":null},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":37638,"timestamp":7348126542380,"id":9867,"parentId":9866,"tags":{},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":38028,"timestamp":7348126542371,"id":9866,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":null},"startTime":1776955072750,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7759,"timestamp":7348126584195,"id":9882,"parentId":9881,"tags":{},"startTime":1776955072792,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7779,"timestamp":7348126584180,"id":9881,"parentId":9875,"tags":{},"startTime":1776955072792,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8669,"timestamp":7348126583791,"id":9875,"parentId":9814,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":null},"startTime":1776955072791,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8322,"timestamp":7348126584154,"id":9880,"parentId":9879,"tags":{},"startTime":1776955072792,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":8757,"timestamp":7348126584107,"id":9879,"parentId":9874,"tags":{},"startTime":1776955072792,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9962,"timestamp":7348126583684,"id":9874,"parentId":9787,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":null},"startTime":1776955072791,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10056,"timestamp":7348126584233,"id":9884,"parentId":9883,"tags":{},"startTime":1776955072792,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10072,"timestamp":7348126584219,"id":9883,"parentId":9878,"tags":{},"startTime":1776955072792,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12803,"timestamp":7348126583875,"id":9878,"parentId":9788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":null},"startTime":1776955072791,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7572,"timestamp":7348126589138,"id":9912,"parentId":9911,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7624,"timestamp":7348126589088,"id":9911,"parentId":9887,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9044,"timestamp":7348126588213,"id":9887,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8087,"timestamp":7348126589185,"id":9914,"parentId":9913,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8118,"timestamp":7348126589155,"id":9913,"parentId":9888,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10009,"timestamp":7348126588281,"id":9888,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9060,"timestamp":7348126589251,"id":9918,"parentId":9917,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9077,"timestamp":7348126589236,"id":9917,"parentId":9890,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11018,"timestamp":7348126588347,"id":9890,"parentId":9816,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12422,"timestamp":7348126589307,"id":9922,"parentId":9921,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12440,"timestamp":7348126589291,"id":9921,"parentId":9892,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14707,"timestamp":7348126588418,"id":9892,"parentId":9820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13851,"timestamp":7348126589336,"id":9924,"parentId":9923,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13869,"timestamp":7348126589321,"id":9923,"parentId":9893,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15857,"timestamp":7348126588472,"id":9893,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/detect-domain-locale.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15002,"timestamp":7348126589360,"id":9926,"parentId":9925,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15016,"timestamp":7348126589349,"id":9925,"parentId":9894,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16981,"timestamp":7348126588506,"id":9894,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-locale.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":16238,"timestamp":7348126589277,"id":9920,"parentId":9919,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":16251,"timestamp":7348126589266,"id":9919,"parentId":9891,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18708,"timestamp":7348126588379,"id":9891,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17705,"timestamp":7348126589409,"id":9930,"parentId":9929,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17716,"timestamp":7348126589399,"id":9929,"parentId":9898,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19477,"timestamp":7348126588599,"id":9898,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":18717,"timestamp":7348126589384,"id":9928,"parentId":9927,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":18729,"timestamp":7348126589373,"id":9927,"parentId":9895,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20323,"timestamp":7348126588542,"id":9895,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19399,"timestamp":7348126589478,"id":9934,"parentId":9933,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19433,"timestamp":7348126589446,"id":9933,"parentId":9900,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20477,"timestamp":7348126588662,"id":9900,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":19718,"timestamp":7348126589433,"id":9932,"parentId":9931,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":19730,"timestamp":7348126589422,"id":9931,"parentId":9899,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22410,"timestamp":7348126588627,"id":9899,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":21527,"timestamp":7348126589525,"id":9938,"parentId":9937,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":21538,"timestamp":7348126589515,"id":9937,"parentId":9902,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22690,"timestamp":7348126588724,"id":9902,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":22243,"timestamp":7348126589222,"id":9916,"parentId":9915,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":22263,"timestamp":7348126589203,"id":9915,"parentId":9889,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24477,"timestamp":7348126588316,"id":9889,"parentId":9817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-loader.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":23268,"timestamp":7348126589548,"id":9940,"parentId":9939,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":23279,"timestamp":7348126589537,"id":9939,"parentId":9903,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":24738,"timestamp":7348126588751,"id":9903,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":23939,"timestamp":7348126589570,"id":9942,"parentId":9941,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":23950,"timestamp":7348126589560,"id":9941,"parentId":9904,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":25680,"timestamp":7348126588787,"id":9904,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":24858,"timestamp":7348126589641,"id":9946,"parentId":9945,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":24871,"timestamp":7348126589631,"id":9945,"parentId":9906,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26685,"timestamp":7348126588840,"id":9906,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26055,"timestamp":7348126589502,"id":9936,"parentId":9935,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26067,"timestamp":7348126589491,"id":9935,"parentId":9901,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28386,"timestamp":7348126588697,"id":9901,"parentId":9823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27440,"timestamp":7348126589671,"id":9948,"parentId":9947,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27458,"timestamp":7348126589654,"id":9947,"parentId":9907,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":28579,"timestamp":7348126588872,"id":9907,"parentId":9823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27853,"timestamp":7348126589617,"id":9944,"parentId":9943,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27879,"timestamp":7348126589592,"id":9943,"parentId":9905,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29272,"timestamp":7348126588814,"id":9905,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29483,"timestamp":7348126589765,"id":9952,"parentId":9951,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29500,"timestamp":7348126589751,"id":9951,"parentId":9909,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30920,"timestamp":7348126588923,"id":9909,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30072,"timestamp":7348126589792,"id":9954,"parentId":9953,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30085,"timestamp":7348126589780,"id":9953,"parentId":9910,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":31567,"timestamp":7348126588951,"id":9910,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30806,"timestamp":7348126589733,"id":9950,"parentId":9949,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30850,"timestamp":7348126589692,"id":9949,"parentId":9908,"tags":{},"startTime":1776955072797,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":32557,"timestamp":7348126588897,"id":9908,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":21226,"timestamp":7348126600260,"id":9971,"parentId":9970,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":21239,"timestamp":7348126600249,"id":9970,"parentId":9960,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22116,"timestamp":7348126599883,"id":9960,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":21778,"timestamp":7348126600233,"id":9969,"parentId":9968,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":21791,"timestamp":7348126600221,"id":9968,"parentId":9959,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22429,"timestamp":7348126599852,"id":9959,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":26921,"timestamp":7348126600175,"id":9965,"parentId":9964,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":26959,"timestamp":7348126600138,"id":9964,"parentId":9957,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27814,"timestamp":7348126599755,"id":9957,"parentId":9815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27296,"timestamp":7348126600285,"id":9973,"parentId":9972,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27308,"timestamp":7348126600275,"id":9972,"parentId":9961,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":27922,"timestamp":7348126599912,"id":9961,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27726,"timestamp":7348126600205,"id":9967,"parentId":9966,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27742,"timestamp":7348126600191,"id":9966,"parentId":9958,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":29931,"timestamp":7348126599819,"id":9958,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/bloom-filter.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29444,"timestamp":7348126600334,"id":9977,"parentId":9976,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29456,"timestamp":7348126600324,"id":9976,"parentId":9963,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30350,"timestamp":7348126599967,"id":9963,"parentId":9826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":30028,"timestamp":7348126600310,"id":9975,"parentId":9974,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":30040,"timestamp":7348126600299,"id":9974,"parentId":9962,"tags":{},"startTime":1776955072808,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":30987,"timestamp":7348126599940,"id":9962,"parentId":9826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/bus.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":47932,"timestamp":7348126583856,"id":9877,"parentId":9876,"tags":{},"startTime":1776955072791,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":48201,"timestamp":7348126583839,"id":9876,"parentId":9788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":null},"startTime":1776955072791,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8301,"timestamp":7348126624026,"id":9983,"parentId":9982,"tags":{},"startTime":1776955072831,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8334,"timestamp":7348126623995,"id":9982,"parentId":9980,"tags":{},"startTime":1776955072831,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9024,"timestamp":7348126623606,"id":9980,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":null},"startTime":1776955072831,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8670,"timestamp":7348126624052,"id":9985,"parentId":9984,"tags":{},"startTime":1776955072832,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8684,"timestamp":7348126624040,"id":9984,"parentId":9981,"tags":{},"startTime":1776955072831,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9299,"timestamp":7348126623705,"id":9981,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1776955072831,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":45696,"timestamp":7348126588586,"id":9897,"parentId":9896,"tags":{},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module-js","duration":45944,"timestamp":7348126588573,"id":9896,"parentId":9756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-api-route.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":46334,"timestamp":7348126588193,"id":9886,"parentId":9885,"tags":{},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":47867,"timestamp":7348126588130,"id":9885,"parentId":9776,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":null},"startTime":1776955072796,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":324110,"timestamp":7348126312134,"id":9694,"parentId":9693,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3053,"timestamp":7348126633566,"id":9998,"parentId":9997,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3065,"timestamp":7348126633557,"id":9997,"parentId":9989,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3922,"timestamp":7348126633351,"id":9989,"parentId":9826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":null},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3757,"timestamp":7348126633545,"id":9996,"parentId":9995,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3768,"timestamp":7348126633535,"id":9995,"parentId":9988,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4489,"timestamp":7348126633323,"id":9988,"parentId":9826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":null},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5152,"timestamp":7348126633495,"id":9992,"parentId":9991,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5182,"timestamp":7348126633467,"id":9991,"parentId":9986,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6441,"timestamp":7348126633208,"id":9986,"parentId":9826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":null},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6147,"timestamp":7348126633521,"id":9994,"parentId":9993,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6160,"timestamp":7348126633509,"id":9993,"parentId":9987,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6951,"timestamp":7348126633291,"id":9987,"parentId":9826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ReactDevOverlay.js","layer":null},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":40942,"timestamp":7348126599735,"id":9956,"parentId":9955,"tags":{},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":41152,"timestamp":7348126599696,"id":9955,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/client.js","layer":null},"startTime":1776955072807,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7278,"timestamp":7348126633589,"id":10000,"parentId":9999,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7288,"timestamp":7348126633579,"id":9999,"parentId":9990,"tags":{},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8295,"timestamp":7348126633377,"id":9990,"parentId":9826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/nodeStackFrames.js","layer":null},"startTime":1776955072841,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7264,"timestamp":7348126636519,"id":10007,"parentId":10006,"tags":{},"startTime":1776955072844,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7314,"timestamp":7348126636475,"id":10006,"parentId":10001,"tags":{},"startTime":1776955072844,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8411,"timestamp":7348126636260,"id":10001,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/portal/index.js","layer":null},"startTime":1776955072844,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21237,"timestamp":7348126623587,"id":9979,"parentId":9978,"tags":{},"startTime":1776955072831,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":21360,"timestamp":7348126623551,"id":9978,"parentId":9720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/index.js","layer":null},"startTime":1776955072831,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1974,"timestamp":7348126647427,"id":10024,"parentId":10023,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1990,"timestamp":7348126647414,"id":10023,"parentId":10009,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3199,"timestamp":7348126646999,"id":10009,"parentId":9887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":null},"startTime":1776955072854,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2784,"timestamp":7348126647451,"id":10026,"parentId":10025,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2796,"timestamp":7348126647441,"id":10025,"parentId":10010,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3674,"timestamp":7348126647035,"id":10010,"parentId":9874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":null},"startTime":1776955072854,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3859,"timestamp":7348126647400,"id":10022,"parentId":10021,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3889,"timestamp":7348126647372,"id":10021,"parentId":10008,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5595,"timestamp":7348126646931,"id":10008,"parentId":9887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":null},"startTime":1776955072854,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5105,"timestamp":7348126647475,"id":10028,"parentId":10027,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5118,"timestamp":7348126647464,"id":10027,"parentId":10011,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6048,"timestamp":7348126647067,"id":10011,"parentId":9889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/trusted-types.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5632,"timestamp":7348126647497,"id":10030,"parentId":10029,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5643,"timestamp":7348126647487,"id":10029,"parentId":10012,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6291,"timestamp":7348126647099,"id":10012,"parentId":9891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5864,"timestamp":7348126647544,"id":10034,"parentId":10033,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5874,"timestamp":7348126647535,"id":10033,"parentId":10016,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6964,"timestamp":7348126647178,"id":10016,"parentId":9903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-match.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6639,"timestamp":7348126647522,"id":10032,"parentId":10031,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6653,"timestamp":7348126647511,"id":10031,"parentId":10015,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7360,"timestamp":7348126647150,"id":10015,"parentId":9901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6928,"timestamp":7348126647593,"id":10038,"parentId":10037,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6940,"timestamp":7348126647583,"id":10037,"parentId":10018,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7696,"timestamp":7348126647237,"id":10018,"parentId":9909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20156,"timestamp":7348126636415,"id":10003,"parentId":10002,"tags":{},"startTime":1776955072844,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":20784,"timestamp":7348126636394,"id":10002,"parentId":9825,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1776955072844,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":20732,"timestamp":7348126636455,"id":10005,"parentId":10004,"tags":{},"startTime":1776955072844,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":23847,"timestamp":7348126636435,"id":10004,"parentId":9864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react-jsx-runtime.development.js","layer":null},"startTime":1776955072844,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12698,"timestamp":7348126647638,"id":10042,"parentId":10041,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12710,"timestamp":7348126647628,"id":10041,"parentId":10020,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13349,"timestamp":7348126647289,"id":10020,"parentId":9908,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13918,"timestamp":7348126647616,"id":10040,"parentId":10039,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13930,"timestamp":7348126647606,"id":10039,"parentId":10019,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14659,"timestamp":7348126647263,"id":10019,"parentId":9909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10808,"timestamp":7348126651132,"id":10046,"parentId":10045,"tags":{},"startTime":1776955072859,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10846,"timestamp":7348126651095,"id":10045,"parentId":10043,"tags":{},"startTime":1776955072859,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11334,"timestamp":7348126650869,"id":10043,"parentId":9981,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1776955072858,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11049,"timestamp":7348126651164,"id":10048,"parentId":10047,"tags":{},"startTime":1776955072859,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11065,"timestamp":7348126651149,"id":10047,"parentId":10044,"tags":{},"startTime":1776955072859,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11865,"timestamp":7348126650974,"id":10044,"parentId":9823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1776955072858,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":17565,"timestamp":7348126647571,"id":10036,"parentId":10035,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":17581,"timestamp":7348126647557,"id":10035,"parentId":10017,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":19139,"timestamp":7348126647208,"id":10017,"parentId":9903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":21602,"timestamp":7348126647137,"id":10014,"parentId":10013,"tags":{},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":22407,"timestamp":7348126647126,"id":10013,"parentId":9901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":null},"startTime":1776955072855,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5829,"timestamp":7348126667470,"id":10053,"parentId":10052,"tags":{},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5887,"timestamp":7348126667415,"id":10052,"parentId":10049,"tags":{},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6584,"timestamp":7348126667138,"id":10049,"parentId":9989,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":null},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6232,"timestamp":7348126667510,"id":10055,"parentId":10054,"tags":{},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6251,"timestamp":7348126667493,"id":10054,"parentId":10050,"tags":{},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7026,"timestamp":7348126667237,"id":10050,"parentId":9987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ErrorBoundary.js","layer":null},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7022,"timestamp":7348126667538,"id":10057,"parentId":10056,"tags":{},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7035,"timestamp":7348126667527,"id":10056,"parentId":10051,"tags":{},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8643,"timestamp":7348126667293,"id":10051,"parentId":9989,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":null},"startTime":1776955072875,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3505,"timestamp":7348126686125,"id":10071,"parentId":10070,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3535,"timestamp":7348126686100,"id":10070,"parentId":10061,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5503,"timestamp":7348126685203,"id":10061,"parentId":9987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":null},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4653,"timestamp":7348126686074,"id":10069,"parentId":10068,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4720,"timestamp":7348126686008,"id":10068,"parentId":10060,"tags":{},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6315,"timestamp":7348126685033,"id":10060,"parentId":9987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":null},"startTime":1776955072892,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5158,"timestamp":7348126686214,"id":10075,"parentId":10074,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5180,"timestamp":7348126686194,"id":10074,"parentId":10063,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7019,"timestamp":7348126685317,"id":10063,"parentId":9987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":null},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12532,"timestamp":7348126686255,"id":10077,"parentId":10076,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12555,"timestamp":7348126686237,"id":10076,"parentId":10064,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14188,"timestamp":7348126685377,"id":10064,"parentId":9987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":null},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11114,"timestamp":7348126688475,"id":10085,"parentId":10084,"tags":{},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11164,"timestamp":7348126688427,"id":10084,"parentId":10082,"tags":{},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11942,"timestamp":7348126688219,"id":10082,"parentId":10002,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13882,"timestamp":7348126686294,"id":10079,"parentId":10078,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13902,"timestamp":7348126686277,"id":10078,"parentId":10065,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":15321,"timestamp":7348126685432,"id":10065,"parentId":9987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":null},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14683,"timestamp":7348126686171,"id":10073,"parentId":10072,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14705,"timestamp":7348126686151,"id":10072,"parentId":10062,"tags":{},"startTime":1776955072894,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17285,"timestamp":7348126685262,"id":10062,"parentId":9987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":null},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-transform","duration":15436,"timestamp":7348126688520,"id":10087,"parentId":10086,"tags":{},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15462,"timestamp":7348126688499,"id":10086,"parentId":10083,"tags":{},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":18044,"timestamp":7348126688326,"id":10083,"parentId":10044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12188,"timestamp":7348126694562,"id":10091,"parentId":10090,"tags":{},"startTime":1776955072902,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12234,"timestamp":7348126694519,"id":10090,"parentId":10088,"tags":{},"startTime":1776955072902,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13298,"timestamp":7348126694064,"id":10088,"parentId":10017,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":null},"startTime":1776955072902,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12774,"timestamp":7348126694608,"id":10093,"parentId":10092,"tags":{},"startTime":1776955072902,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12795,"timestamp":7348126694590,"id":10092,"parentId":10089,"tags":{},"startTime":1776955072902,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13634,"timestamp":7348126694161,"id":10089,"parentId":10017,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-url.js","layer":null},"startTime":1776955072902,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":48090,"timestamp":7348126672048,"id":10059,"parentId":10058,"tags":{},"startTime":1776955072880,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":63621,"timestamp":7348126672007,"id":10058,"parentId":9978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react.development.js","layer":null},"startTime":1776955072879,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":65004,"timestamp":7348126685856,"id":10067,"parentId":10066,"tags":{},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":65975,"timestamp":7348126685479,"id":10066,"parentId":9719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":null},"startTime":1776955072893,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":440118,"timestamp":7348126312649,"id":9698,"parentId":9693,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":64723,"timestamp":7348126688191,"id":10081,"parentId":10080,"tags":{},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":65355,"timestamp":7348126688123,"id":10080,"parentId":9755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":null},"startTime":1776955072896,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":441464,"timestamp":7348126312805,"id":9710,"parentId":9693,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":441613,"timestamp":7348126312663,"id":9700,"parentId":9693,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":38920,"timestamp":7348126717309,"id":10097,"parentId":10096,"tags":{},"startTime":1776955072925,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39158,"timestamp":7348126717289,"id":10096,"parentId":9736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/index.js","layer":null},"startTime":1776955072925,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":39199,"timestamp":7348126717254,"id":10095,"parentId":10094,"tags":{},"startTime":1776955072925,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":39461,"timestamp":7348126717201,"id":10094,"parentId":9955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/index.js","layer":null},"startTime":1776955072925,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3381,"timestamp":7348126754529,"id":10102,"parentId":10101,"tags":{},"startTime":1776955072962,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3432,"timestamp":7348126754480,"id":10101,"parentId":10100,"tags":{},"startTime":1776955072962,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4192,"timestamp":7348126754338,"id":10100,"parentId":10061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":null},"startTime":1776955072962,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":9199,"timestamp":7348126750793,"id":10099,"parentId":10098,"tags":{},"startTime":1776955072958,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":9521,"timestamp":7348126750709,"id":10098,"parentId":10017,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":null},"startTime":1776955072958,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3265,"timestamp":7348126757277,"id":10106,"parentId":10105,"tags":{},"startTime":1776955072965,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3302,"timestamp":7348126757242,"id":10105,"parentId":10103,"tags":{},"startTime":1776955072965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4572,"timestamp":7348126756969,"id":10103,"parentId":10082,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1776955072964,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4272,"timestamp":7348126757318,"id":10108,"parentId":10107,"tags":{},"startTime":1776955072965,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4291,"timestamp":7348126757302,"id":10107,"parentId":10104,"tags":{},"startTime":1776955072965,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5074,"timestamp":7348126757090,"id":10104,"parentId":10082,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1776955072965,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3307,"timestamp":7348126759636,"id":10119,"parentId":10118,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3329,"timestamp":7348126759617,"id":10118,"parentId":10112,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6440,"timestamp":7348126759156,"id":10112,"parentId":10063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":null},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5969,"timestamp":7348126759676,"id":10121,"parentId":10120,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5987,"timestamp":7348126759660,"id":10120,"parentId":10113,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7487,"timestamp":7348126759206,"id":10113,"parentId":10063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":null},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8145,"timestamp":7348126759591,"id":10117,"parentId":10116,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":8201,"timestamp":7348126759540,"id":10116,"parentId":10111,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10527,"timestamp":7348126759088,"id":10111,"parentId":9788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":null},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11943,"timestamp":7348126759716,"id":10123,"parentId":10122,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11964,"timestamp":7348126759701,"id":10122,"parentId":10114,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13186,"timestamp":7348126759250,"id":10114,"parentId":10063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":null},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12752,"timestamp":7348126759754,"id":10125,"parentId":10124,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12769,"timestamp":7348126759739,"id":10124,"parentId":10115,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13758,"timestamp":7348126759290,"id":10115,"parentId":10063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":null},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10475,"timestamp":7348126762671,"id":10131,"parentId":10130,"tags":{},"startTime":1776955072970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10495,"timestamp":7348126762652,"id":10130,"parentId":10127,"tags":{},"startTime":1776955072970,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11844,"timestamp":7348126762439,"id":10127,"parentId":10062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":null},"startTime":1776955072970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":13006,"timestamp":7348126762629,"id":10129,"parentId":10128,"tags":{},"startTime":1776955072970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":13105,"timestamp":7348126762535,"id":10128,"parentId":10126,"tags":{},"startTime":1776955072970,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14439,"timestamp":7348126762354,"id":10126,"parentId":10062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":null},"startTime":1776955072970,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":24348,"timestamp":7348126759069,"id":10110,"parentId":10109,"tags":{},"startTime":1776955072967,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26717,"timestamp":7348126759034,"id":10109,"parentId":9811,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/web-vitals/web-vitals.js","layer":null},"startTime":1776955072966,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2741,"timestamp":7348126790388,"id":10140,"parentId":10139,"tags":{},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2797,"timestamp":7348126790335,"id":10139,"parentId":10136,"tags":{},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4104,"timestamp":7348126790035,"id":10136,"parentId":10061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":null},"startTime":1776955072997,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3738,"timestamp":7348126790435,"id":10142,"parentId":10141,"tags":{},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3762,"timestamp":7348126790412,"id":10141,"parentId":10137,"tags":{},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4688,"timestamp":7348126790120,"id":10137,"parentId":10061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":null},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":13354,"timestamp":7348126788011,"id":10133,"parentId":10132,"tags":{},"startTime":1776955072995,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14434,"timestamp":7348126787928,"id":10132,"parentId":10096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","layer":null},"startTime":1776955072995,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12549,"timestamp":7348126790480,"id":10144,"parentId":10143,"tags":{},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12576,"timestamp":7348126790457,"id":10143,"parentId":10138,"tags":{},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14063,"timestamp":7348126790171,"id":10138,"parentId":10063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":null},"startTime":1776955072998,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11884,"timestamp":7348126792373,"id":10150,"parentId":10149,"tags":{},"startTime":1776955073000,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11904,"timestamp":7348126792354,"id":10149,"parentId":10146,"tags":{},"startTime":1776955073000,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12756,"timestamp":7348126792083,"id":10146,"parentId":10126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":null},"startTime":1776955073000,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12530,"timestamp":7348126792327,"id":10148,"parentId":10147,"tags":{},"startTime":1776955073000,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12587,"timestamp":7348126792273,"id":10147,"parentId":10145,"tags":{},"startTime":1776955073000,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13311,"timestamp":7348126792011,"id":10145,"parentId":10062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":null},"startTime":1776955072999,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14579,"timestamp":7348126796447,"id":10155,"parentId":10154,"tags":{},"startTime":1776955073004,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14774,"timestamp":7348126796256,"id":10154,"parentId":10151,"tags":{},"startTime":1776955073004,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16397,"timestamp":7348126795230,"id":10151,"parentId":10061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":null},"startTime":1776955073003,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14826,"timestamp":7348126796822,"id":10157,"parentId":10156,"tags":{},"startTime":1776955073004,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14885,"timestamp":7348126796765,"id":10156,"parentId":10152,"tags":{},"startTime":1776955073004,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":16760,"timestamp":7348126795350,"id":10152,"parentId":10063,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":null},"startTime":1776955073003,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":15286,"timestamp":7348126796924,"id":10159,"parentId":10158,"tags":{},"startTime":1776955073004,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":15361,"timestamp":7348126796850,"id":10158,"parentId":10153,"tags":{},"startTime":1776955073004,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":17192,"timestamp":7348126795458,"id":10153,"parentId":10061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":null},"startTime":1776955073003,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3930,"timestamp":7348126808931,"id":10164,"parentId":10163,"tags":{},"startTime":1776955073016,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3975,"timestamp":7348126808888,"id":10163,"parentId":10162,"tags":{},"startTime":1776955073016,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4956,"timestamp":7348126808674,"id":10162,"parentId":10062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":null},"startTime":1776955073016,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":28703,"timestamp":7348126789515,"id":10135,"parentId":10134,"tags":{},"startTime":1776955072997,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":164601,"timestamp":7348126789476,"id":10134,"parentId":10094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/cjs/react-dom.development.js","layer":null},"startTime":1776955072997,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":148499,"timestamp":7348126808628,"id":10161,"parentId":10160,"tags":{},"startTime":1776955073016,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":149269,"timestamp":7348126808571,"id":10160,"parentId":9963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":null},"startTime":1776955073016,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":145613,"timestamp":7348126814384,"id":10166,"parentId":10165,"tags":{},"startTime":1776955073022,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":147006,"timestamp":7348126814281,"id":10165,"parentId":10016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":null},"startTime":1776955073022,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2840,"timestamp":7348126959494,"id":10177,"parentId":10176,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2855,"timestamp":7348126959482,"id":10176,"parentId":10169,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3673,"timestamp":7348126959205,"id":10169,"parentId":10138,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":null},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4229,"timestamp":7348126959468,"id":10175,"parentId":10174,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4247,"timestamp":7348126959453,"id":10174,"parentId":10168,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6423,"timestamp":7348126959164,"id":10168,"parentId":10137,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":null},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":6331,"timestamp":7348126959518,"id":10179,"parentId":10178,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":6345,"timestamp":7348126959507,"id":10178,"parentId":10170,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":7121,"timestamp":7348126959238,"id":10170,"parentId":10138,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":null},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":8923,"timestamp":7348126959435,"id":10173,"parentId":10172,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"}]
-[{"name":"next-swc-loader","duration":9097,"timestamp":7348126959385,"id":10172,"parentId":10167,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10095,"timestamp":7348126959043,"id":10167,"parentId":10136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":null},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":7334,"timestamp":7348126961820,"id":10195,"parentId":10194,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":7350,"timestamp":7348126961806,"id":10194,"parentId":10183,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8471,"timestamp":7348126961463,"id":10183,"parentId":10151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10457,"timestamp":7348126959541,"id":10181,"parentId":10180,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10470,"timestamp":7348126959531,"id":10180,"parentId":10171,"tags":{},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11624,"timestamp":7348126959275,"id":10171,"parentId":10145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":null},"startTime":1776955073167,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":9135,"timestamp":7348126961791,"id":10193,"parentId":10192,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":9168,"timestamp":7348126961760,"id":10192,"parentId":10182,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10499,"timestamp":7348126961387,"id":10182,"parentId":10162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10033,"timestamp":7348126961870,"id":10199,"parentId":10198,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10046,"timestamp":7348126961859,"id":10198,"parentId":10185,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":10737,"timestamp":7348126961530,"id":10185,"parentId":10152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10438,"timestamp":7348126961845,"id":10197,"parentId":10196,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10451,"timestamp":7348126961834,"id":10196,"parentId":10184,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":11274,"timestamp":7348126961499,"id":10184,"parentId":10151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":10838,"timestamp":7348126961946,"id":10203,"parentId":10202,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":10853,"timestamp":7348126961933,"id":10202,"parentId":10187,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12217,"timestamp":7348126961599,"id":10187,"parentId":10152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":11838,"timestamp":7348126961994,"id":10207,"parentId":10206,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":11850,"timestamp":7348126961984,"id":10206,"parentId":10189,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12516,"timestamp":7348126961653,"id":10189,"parentId":10153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12210,"timestamp":7348126961971,"id":10205,"parentId":10204,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12222,"timestamp":7348126961960,"id":10204,"parentId":10188,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":12784,"timestamp":7348126961627,"id":10188,"parentId":10153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":12451,"timestamp":7348126962018,"id":10209,"parentId":10208,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":12462,"timestamp":7348126962008,"id":10208,"parentId":10190,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":13007,"timestamp":7348126961681,"id":10190,"parentId":10153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14044,"timestamp":7348126961894,"id":10201,"parentId":10200,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14055,"timestamp":7348126961883,"id":10200,"parentId":10186,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14741,"timestamp":7348126961559,"id":10186,"parentId":10153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14267,"timestamp":7348126962041,"id":10211,"parentId":10210,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14278,"timestamp":7348126962032,"id":10210,"parentId":10191,"tags":{},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":14829,"timestamp":7348126961708,"id":10191,"parentId":10153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":null},"startTime":1776955073169,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1941,"timestamp":7348126989725,"id":10223,"parentId":10222,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1956,"timestamp":7348126989714,"id":10222,"parentId":10216,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2601,"timestamp":7348126989562,"id":10216,"parentId":10168,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":null},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2477,"timestamp":7348126989748,"id":10225,"parentId":10224,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2489,"timestamp":7348126989738,"id":10224,"parentId":10217,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3055,"timestamp":7348126989591,"id":10217,"parentId":10170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":null},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3019,"timestamp":7348126989673,"id":10219,"parentId":10218,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3057,"timestamp":7348126989636,"id":10218,"parentId":10214,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4525,"timestamp":7348126989447,"id":10214,"parentId":10170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":null},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5265,"timestamp":7348126990161,"id":10228,"parentId":10227,"tags":{},"startTime":1776955073198,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5284,"timestamp":7348126990147,"id":10227,"parentId":10226,"tags":{},"startTime":1776955073198,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6005,"timestamp":7348126990102,"id":10226,"parentId":10167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":null},"startTime":1776955073198,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5822,"timestamp":7348126990361,"id":10231,"parentId":10230,"tags":{},"startTime":1776955073198,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5847,"timestamp":7348126990338,"id":10230,"parentId":10229,"tags":{},"startTime":1776955073198,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6300,"timestamp":7348126990236,"id":10229,"parentId":10138,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":null},"startTime":1776955073198,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":8127,"timestamp":7348126988663,"id":10213,"parentId":10212,"tags":{},"startTime":1776955073196,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":8416,"timestamp":7348126988623,"id":10212,"parentId":10061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":null},"startTime":1776955073196,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1833,"timestamp":7348126999646,"id":10234,"parentId":10233,"tags":{},"startTime":1776955073207,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1888,"timestamp":7348126999594,"id":10233,"parentId":10232,"tags":{},"startTime":1776955073207,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2994,"timestamp":7348126999426,"id":10232,"parentId":10186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":null},"startTime":1776955073207,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2257,"timestamp":7348127001308,"id":10237,"parentId":10236,"tags":{},"startTime":1776955073209,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2282,"timestamp":7348127001285,"id":10236,"parentId":10235,"tags":{},"startTime":1776955073209,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2829,"timestamp":7348127001216,"id":10235,"parentId":10217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":null},"startTime":1776955073209,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2517,"timestamp":7348127002600,"id":10239,"parentId":10238,"tags":{},"startTime":1776955073210,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3014,"timestamp":7348127002550,"id":10238,"parentId":10098,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/cookie/index.js","layer":null},"startTime":1776955073210,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":692944,"timestamp":7348126312655,"id":9699,"parentId":9693,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2827,"timestamp":7348127002806,"id":10242,"parentId":10241,"tags":{},"startTime":1776955073210,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2870,"timestamp":7348127002765,"id":10241,"parentId":10240,"tags":{},"startTime":1776955073210,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3574,"timestamp":7348127002624,"id":10240,"parentId":10229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":null},"startTime":1776955073210,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":308,"timestamp":7348127010473,"id":10244,"parentId":10243,"tags":{},"startTime":1776955073218,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":529,"timestamp":7348127010429,"id":10243,"parentId":10134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/index.js","layer":null},"startTime":1776955073218,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":561,"timestamp":7348127010549,"id":10246,"parentId":10245,"tags":{},"startTime":1776955073218,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2226,"timestamp":7348127010536,"id":10245,"parentId":10167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":null},"startTime":1776955073218,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":655,"timestamp":7348127013165,"id":10248,"parentId":10247,"tags":{},"startTime":1776955073221,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2529,"timestamp":7348127013137,"id":10247,"parentId":10243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/cjs/scheduler.development.js","layer":null},"startTime":1776955073221,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":61614,"timestamp":7348126989701,"id":10221,"parentId":10220,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":61636,"timestamp":7348126989688,"id":10220,"parentId":10215,"tags":{},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":67327,"timestamp":7348126989525,"id":10215,"parentId":10168,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":null},"startTime":1776955073197,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":411,"timestamp":7348127059882,"id":10250,"parentId":10249,"tags":{},"startTime":1776955073267,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":956,"timestamp":7348127059826,"id":10249,"parentId":10215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":null},"startTime":1776955073267,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":867,"timestamp":7348127059955,"id":10252,"parentId":10251,"tags":{},"startTime":1776955073267,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3293,"timestamp":7348127059937,"id":10251,"parentId":10215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":null},"startTime":1776955073267,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":750689,"timestamp":7348126312595,"id":9695,"parentId":9693,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776955072520,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":763686,"timestamp":7348126299617,"id":9693,"parentId":9692,"tags":{},"startTime":1776955072507,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3254,"timestamp":7348127074753,"id":10254,"parentId":10253,"tags":{},"startTime":1776955073282,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":9,"timestamp":7348127078026,"id":10256,"parentId":10253,"tags":{},"startTime":1776955073285,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":1491,"timestamp":7348127078044,"id":10257,"parentId":10253,"tags":{},"startTime":1776955073286,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7348127079559,"id":10258,"parentId":10253,"tags":{},"startTime":1776955073287,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7348127079580,"id":10259,"parentId":10253,"tags":{},"startTime":1776955073287,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4259,"timestamp":7348127078019,"id":10255,"parentId":10253,"tags":{},"startTime":1776955073285,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2400,"timestamp":7348127085843,"id":10260,"parentId":10253,"tags":{},"startTime":1776955073293,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":10489,"timestamp":7348127088257,"id":10261,"parentId":10253,"tags":{},"startTime":1776955073296,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":8199,"timestamp":7348127101373,"id":10262,"parentId":10253,"tags":{},"startTime":1776955073309,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":103,"timestamp":7348127109570,"id":10263,"parentId":10253,"tags":{},"startTime":1776955073317,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":84,"timestamp":7348127109666,"id":10264,"parentId":10253,"tags":{},"startTime":1776955073317,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":73892,"timestamp":7348127109752,"id":10265,"parentId":10253,"tags":{},"startTime":1776955073317,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":257,"timestamp":7348127184756,"id":10267,"parentId":9692,"tags":{},"startTime":1776955073392,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":430,"timestamp":7348127184593,"id":10266,"parentId":9692,"tags":{},"startTime":1776955073392,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":118159,"timestamp":7348127068885,"id":10253,"parentId":9692,"tags":{},"startTime":1776955073276,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":888305,"timestamp":7348126298765,"id":9692,"parentId":9689,"tags":{"name":"client"},"startTime":1776955072506,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":50854,"timestamp":7348127187098,"id":10268,"parentId":9689,"tags":{},"startTime":1776955073395,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":947961,"timestamp":7348126290755,"id":9689,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776955072498,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":22,"timestamp":7348127244557,"id":10271,"parentId":3,"tags":{},"startTime":1776955073452,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1756,"timestamp":7348127253205,"id":10283,"parentId":10282,"tags":{},"startTime":1776955073461,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1827,"timestamp":7348127253138,"id":10282,"parentId":10281,"tags":{},"startTime":1776955073461,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3265,"timestamp":7348127252690,"id":10281,"parentId":10272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1776955073460,"traceId":"d76ab653cbe90d54"}]
-[{"name":"build-module","duration":891,"timestamp":7348127261502,"id":10284,"parentId":10281,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1776955073469,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":8,"timestamp":7348127262413,"id":10285,"parentId":10281,"tags":{"name":"react","layer":null},"startTime":1776955073470,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14671,"timestamp":7348127248565,"id":10277,"parentId":10270,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14676,"timestamp":7348127248569,"id":10278,"parentId":10270,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14675,"timestamp":7348127248573,"id":10279,"parentId":10270,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14673,"timestamp":7348127248578,"id":10280,"parentId":10270,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2598,"timestamp":7348127262600,"id":10288,"parentId":10287,"tags":{},"startTime":1776955073470,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2639,"timestamp":7348127262562,"id":10287,"parentId":10286,"tags":{},"startTime":1776955073470,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3816,"timestamp":7348127262424,"id":10286,"parentId":10281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1776955073470,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":18582,"timestamp":7348127248559,"id":10276,"parentId":10270,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1618,"timestamp":7348127267468,"id":10290,"parentId":10289,"tags":{},"startTime":1776955073475,"traceId":"d76ab653cbe90d54"},{"name":"build-module-cjs","duration":2520,"timestamp":7348127267211,"id":10289,"parentId":10281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":null},"startTime":1776955073475,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21336,"timestamp":7348127248504,"id":10272,"parentId":10270,"tags":{"request":"next/dist/pages/_app"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":3559,"timestamp":7348127268131,"id":10294,"parentId":10273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1776955073476,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":3214,"timestamp":7348127268840,"id":10295,"parentId":10275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1776955073476,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1897,"timestamp":7348127274044,"id":10298,"parentId":10297,"tags":{},"startTime":1776955073482,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1940,"timestamp":7348127274003,"id":10297,"parentId":10296,"tags":{},"startTime":1776955073481,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2603,"timestamp":7348127273923,"id":10296,"parentId":10294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1776955073481,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2133,"timestamp":7348127275341,"id":10300,"parentId":10299,"tags":{},"startTime":1776955073483,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2285,"timestamp":7348127275322,"id":10299,"parentId":10294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":null},"startTime":1776955073483,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1298,"timestamp":7348127276658,"id":10302,"parentId":10301,"tags":{},"startTime":1776955073484,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1578,"timestamp":7348127276643,"id":10301,"parentId":10294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/module.compiled.js","layer":null},"startTime":1776955073484,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":26,"timestamp":7348127278419,"id":10308,"parentId":10301,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.dev.js","layer":null},"startTime":1776955073486,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1704,"timestamp":7348127277079,"id":10304,"parentId":10303,"tags":{},"startTime":1776955073485,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1901,"timestamp":7348127277067,"id":10303,"parentId":10294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/templates/helpers.js","layer":null},"startTime":1776955073485,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":5624,"timestamp":7348127277170,"id":10307,"parentId":10306,"tags":{},"startTime":1776955073485,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":5653,"timestamp":7348127277147,"id":10306,"parentId":10305,"tags":{},"startTime":1776955073485,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6689,"timestamp":7348127277107,"id":10305,"parentId":10296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1776955073485,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1279,"timestamp":7348127287814,"id":10315,"parentId":10314,"tags":{},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1296,"timestamp":7348127287800,"id":10314,"parentId":10310,"tags":{},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1862,"timestamp":7348127287636,"id":10310,"parentId":10305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1857,"timestamp":7348127287781,"id":10313,"parentId":10312,"tags":{},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1909,"timestamp":7348127287730,"id":10312,"parentId":10309,"tags":{},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2496,"timestamp":7348127287517,"id":10309,"parentId":10305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2263,"timestamp":7348127287841,"id":10317,"parentId":10316,"tags":{},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2276,"timestamp":7348127287830,"id":10316,"parentId":10311,"tags":{},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2542,"timestamp":7348127287678,"id":10311,"parentId":10305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1776955073495,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2691,"timestamp":7348127288074,"id":10319,"parentId":10318,"tags":{},"startTime":1776955073496,"traceId":"d76ab653cbe90d54"},{"name":"build-module-cjs","duration":3065,"timestamp":7348127288058,"id":10318,"parentId":10305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":null},"startTime":1776955073496,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":435,"timestamp":7348127291788,"id":10321,"parentId":10320,"tags":{},"startTime":1776955073499,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":543,"timestamp":7348127291767,"id":10320,"parentId":10305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/head-manager-context.js","layer":null},"startTime":1776955073499,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1324,"timestamp":7348127291809,"id":10323,"parentId":10322,"tags":{},"startTime":1776955073499,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1397,"timestamp":7348127291800,"id":10322,"parentId":10305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/amp-context.js","layer":null},"startTime":1776955073499,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":33377,"timestamp":7348127267604,"id":10293,"parentId":10292,"tags":{},"startTime":1776955073475,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":33427,"timestamp":7348127267557,"id":10292,"parentId":10291,"tags":{},"startTime":1776955073475,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":40754,"timestamp":7348127267488,"id":10291,"parentId":10274,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_document.js","layer":null},"startTime":1776955073475,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":67,"timestamp":7348127310036,"id":10325,"parentId":10324,"tags":{},"startTime":1776955073517,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":437,"timestamp":7348127309998,"id":10324,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1776955073517,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2938,"timestamp":7348127310492,"id":10328,"parentId":10327,"tags":{},"startTime":1776955073518,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2984,"timestamp":7348127310451,"id":10327,"parentId":10326,"tags":{},"startTime":1776955073518,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":6150,"timestamp":7348127310045,"id":10326,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1776955073518,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1431,"timestamp":7348127316592,"id":10333,"parentId":10332,"tags":{},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1846,"timestamp":7348127316580,"id":10332,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/get-page-files.js","layer":null},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":1949,"timestamp":7348127316505,"id":10330,"parentId":10329,"tags":{},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2312,"timestamp":7348127316467,"id":10329,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/pretty-bytes.js","layer":null},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1980,"timestamp":7348127316820,"id":10339,"parentId":10338,"tags":{},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2016,"timestamp":7348127316785,"id":10338,"parentId":10331,"tags":{},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2362,"timestamp":7348127316529,"id":10331,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":null},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":2820,"timestamp":7348127316609,"id":10335,"parentId":10334,"tags":{},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3270,"timestamp":7348127316602,"id":10334,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/utils.js","layer":null},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":3253,"timestamp":7348127316625,"id":10337,"parentId":10336,"tags":{},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":4373,"timestamp":7348127316618,"id":10336,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/htmlescape.js","layer":null},"startTime":1776955073524,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3701,"timestamp":7348127317352,"id":10342,"parentId":10341,"tags":{},"startTime":1776955073525,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3725,"timestamp":7348127317330,"id":10341,"parentId":10340,"tags":{},"startTime":1776955073525,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3960,"timestamp":7348127317274,"id":10340,"parentId":10324,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1776955073525,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3736,"timestamp":7348127317509,"id":10345,"parentId":10344,"tags":{},"startTime":1776955073525,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3752,"timestamp":7348127317495,"id":10344,"parentId":10343,"tags":{},"startTime":1776955073525,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3857,"timestamp":7348127317461,"id":10343,"parentId":10326,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1776955073525,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":275,"timestamp":7348127322835,"id":10353,"parentId":10352,"tags":{},"startTime":1776955073530,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":432,"timestamp":7348127322810,"id":10352,"parentId":10291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/html-context.js","layer":null},"startTime":1776955073530,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1499,"timestamp":7348127321983,"id":10348,"parentId":10347,"tags":{},"startTime":1776955073529,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1528,"timestamp":7348127321956,"id":10347,"parentId":10346,"tags":{},"startTime":1776955073529,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1783,"timestamp":7348127321899,"id":10346,"parentId":10332,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1776955073529,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1771,"timestamp":7348127322500,"id":10351,"parentId":10350,"tags":{},"startTime":1776955073530,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1796,"timestamp":7348127322477,"id":10350,"parentId":10349,"tags":{},"startTime":1776955073530,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2098,"timestamp":7348127322424,"id":10349,"parentId":10332,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":null},"startTime":1776955073530,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":21,"timestamp":7348127325894,"id":10360,"parentId":10349,"tags":{"name":"path","layer":null},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1263,"timestamp":7348127325986,"id":10363,"parentId":10362,"tags":{},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1279,"timestamp":7348127325973,"id":10362,"parentId":10361,"tags":{},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1536,"timestamp":7348127325922,"id":10361,"parentId":10349,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1905,"timestamp":7348127325769,"id":10357,"parentId":10356,"tags":{},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1973,"timestamp":7348127325702,"id":10356,"parentId":10354,"tags":{},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2187,"timestamp":7348127325611,"id":10354,"parentId":10346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":2060,"timestamp":7348127325798,"id":10359,"parentId":10358,"tags":{},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":2076,"timestamp":7348127325784,"id":10358,"parentId":10355,"tags":{},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2355,"timestamp":7348127325656,"id":10355,"parentId":10346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1776955073533,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":758,"timestamp":7348127328945,"id":10369,"parentId":10368,"tags":{},"startTime":1776955073536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":776,"timestamp":7348127328929,"id":10368,"parentId":10365,"tags":{},"startTime":1776955073536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1127,"timestamp":7348127328836,"id":10365,"parentId":10355,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1776955073536,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7,"timestamp":7348127331512,"id":10371,"parentId":10370,"tags":{},"startTime":1776955073539,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":429,"timestamp":7348127331487,"id":10370,"parentId":10365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1776955073539,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3038,"timestamp":7348127328913,"id":10367,"parentId":10366,"tags":{},"startTime":1776955073536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3075,"timestamp":7348127328877,"id":10366,"parentId":10364,"tags":{},"startTime":1776955073536,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":3812,"timestamp":7348127328745,"id":10364,"parentId":10355,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1776955073536,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":1515,"timestamp":7348127334927,"id":10374,"parentId":10373,"tags":{},"startTime":1776955073542,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":1576,"timestamp":7348127334871,"id":10373,"parentId":10372,"tags":{},"startTime":1776955073542,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":2401,"timestamp":7348127334587,"id":10372,"parentId":10370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1776955073542,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":928,"timestamp":7348127338176,"id":10377,"parentId":10376,"tags":{},"startTime":1776955073546,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":964,"timestamp":7348127338143,"id":10376,"parentId":10375,"tags":{},"startTime":1776955073546,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":1401,"timestamp":7348127338061,"id":10375,"parentId":10372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1776955073546,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":90996,"timestamp":7348127248551,"id":10274,"parentId":10270,"tags":{"request":"next/dist/pages/_document"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"}]
-[{"name":"add-entry","duration":91150,"timestamp":7348127248544,"id":10273,"parentId":10270,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":91140,"timestamp":7348127248555,"id":10275,"parentId":10270,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955073456,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":128876,"timestamp":7348127240482,"id":10270,"parentId":10269,"tags":{},"startTime":1776955073448,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":5154,"timestamp":7348127377478,"id":10399,"parentId":10398,"tags":{},"startTime":1776955073585,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7348127382651,"id":10401,"parentId":10398,"tags":{},"startTime":1776955073590,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2391,"timestamp":7348127382666,"id":10402,"parentId":10398,"tags":{},"startTime":1776955073590,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7348127385078,"id":10403,"parentId":10398,"tags":{},"startTime":1776955073593,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":1,"timestamp":7348127385091,"id":10404,"parentId":10398,"tags":{},"startTime":1776955073593,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4339,"timestamp":7348127382644,"id":10400,"parentId":10398,"tags":{},"startTime":1776955073590,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1197,"timestamp":7348127388407,"id":10405,"parentId":10398,"tags":{},"startTime":1776955073596,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4444,"timestamp":7348127389612,"id":10406,"parentId":10398,"tags":{},"startTime":1776955073597,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":14185,"timestamp":7348127395320,"id":10407,"parentId":10398,"tags":{},"startTime":1776955073603,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":104,"timestamp":7348127409502,"id":10408,"parentId":10398,"tags":{},"startTime":1776955073617,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":98,"timestamp":7348127409597,"id":10409,"parentId":10398,"tags":{},"startTime":1776955073617,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7094,"timestamp":7348127409698,"id":10410,"parentId":10398,"tags":{},"startTime":1776955073617,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":47465,"timestamp":7348127372653,"id":10398,"parentId":10269,"tags":{},"startTime":1776955073580,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":187075,"timestamp":7348127240253,"id":10269,"parentId":9691,"tags":{"name":"server"},"startTime":1776955073448,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":40961,"timestamp":7348127427358,"id":10411,"parentId":9691,"tags":{},"startTime":1776955073635,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":1177901,"timestamp":7348126290872,"id":9690,"tags":{"trigger":"/_error","isTurbopack":false},"startTime":1776955072498,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":1177655,"timestamp":7348126291250,"id":9691,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776955072499,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":1258230,"timestamp":7348126268107,"id":9683,"tags":{"url":"/api/market/ops-status","isTurbopack":false},"startTime":1776955072476,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":1252238,"timestamp":7348126274104,"id":9684,"tags":{"url":"/api/market/strategy-board","isTurbopack":false},"startTime":1776955072482,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":1250861,"timestamp":7348126275482,"id":9685,"tags":{"url":"/api/market/overview","isTurbopack":false},"startTime":1776955072483,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":1250166,"timestamp":7348126276177,"id":9686,"tags":{"url":"/api/recommendations/status","isTurbopack":false},"startTime":1776955072484,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":1248933,"timestamp":7348126277411,"id":9687,"tags":{"url":"/api/sectors/hot?limit=8","isTurbopack":false},"startTime":1776955072485,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":1246445,"timestamp":7348126279898,"id":9688,"tags":{"url":"/api/recommendations/latest","isTurbopack":false},"startTime":1776955072487,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7348127526369,"id":10412,"parentId":9683,"tags":{"url":"/api/market/ops-status","memory.rss":"549437440","memory.heapUsed":"451678040","memory.heapTotal":"480624640"},"startTime":1776955073734,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348127526376,"id":10413,"parentId":9684,"tags":{"url":"/api/market/strategy-board","memory.rss":"549437440","memory.heapUsed":"451679296","memory.heapTotal":"480624640"},"startTime":1776955073734,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348127526379,"id":10414,"parentId":9685,"tags":{"url":"/api/market/overview","memory.rss":"549437440","memory.heapUsed":"451680528","memory.heapTotal":"480624640"},"startTime":1776955073734,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348127526382,"id":10415,"parentId":9686,"tags":{"url":"/api/recommendations/status","memory.rss":"549437440","memory.heapUsed":"451681760","memory.heapTotal":"480624640"},"startTime":1776955073734,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348127526384,"id":10416,"parentId":9687,"tags":{"url":"/api/sectors/hot?limit=8","memory.rss":"549437440","memory.heapUsed":"451682992","memory.heapTotal":"480624640"},"startTime":1776955073734,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348127526386,"id":10417,"parentId":9688,"tags":{"url":"/api/recommendations/latest","memory.rss":"549437440","memory.heapUsed":"451684224","memory.heapTotal":"480624640"},"startTime":1776955073734,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12732,"timestamp":7348137843273,"id":10435,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12830,"timestamp":7348137843281,"id":10437,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15804,"timestamp":7348137843143,"id":10422,"parentId":10421,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15732,"timestamp":7348137843225,"id":10424,"parentId":10421,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16467,"timestamp":7348137843265,"id":10433,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16984,"timestamp":7348137843234,"id":10426,"parentId":10421,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17807,"timestamp":7348137843261,"id":10432,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19283,"timestamp":7348137843243,"id":10428,"parentId":10421,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19248,"timestamp":7348137843284,"id":10438,"parentId":10421,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":23912,"timestamp":7348137843239,"id":10427,"parentId":10421,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24013,"timestamp":7348137843257,"id":10431,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24362,"timestamp":7348137843247,"id":10429,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6073,"timestamp":7348137861866,"id":10444,"parentId":10443,"tags":{},"startTime":1776955084069,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":33665,"timestamp":7348137843230,"id":10425,"parentId":10421,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":24383,"timestamp":7348137853087,"id":10442,"parentId":10441,"tags":{},"startTime":1776955084061,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":24507,"timestamp":7348137852970,"id":10441,"parentId":10440,"tags":{},"startTime":1776955084060,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":124737,"timestamp":7348137852806,"id":10440,"parentId":10420,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776955084060,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":310987,"timestamp":7348137868026,"id":10446,"parentId":10445,"tags":{},"startTime":1776955084075,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":312704,"timestamp":7348137867977,"id":10445,"parentId":10443,"tags":{},"startTime":1776955084075,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":22841,"timestamp":7348138180740,"id":10447,"parentId":10443,"tags":{"astUsed":"true"},"startTime":1776955084388,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":346303,"timestamp":7348137861767,"id":10443,"parentId":10439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776955084069,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":394694,"timestamp":7348137843217,"id":10423,"parentId":10421,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":389854,"timestamp":7348137851545,"id":10439,"parentId":10420,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776955084059,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":34,"timestamp":7348138242455,"id":10448,"parentId":10439,"tags":{},"startTime":1776955084450,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":399549,"timestamp":7348137843253,"id":10430,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":400123,"timestamp":7348137843269,"id":10434,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":401311,"timestamp":7348137843277,"id":10436,"parentId":10421,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955084051,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":404017,"timestamp":7348137840592,"id":10421,"parentId":10420,"tags":{},"startTime":1776955084048,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":9512,"timestamp":7348138259417,"id":10450,"parentId":10449,"tags":{},"startTime":1776955084467,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":6,"timestamp":7348138268970,"id":10452,"parentId":10449,"tags":{},"startTime":1776955084476,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":307,"timestamp":7348138268985,"id":10453,"parentId":10449,"tags":{},"startTime":1776955084476,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":9,"timestamp":7348138269318,"id":10454,"parentId":10449,"tags":{},"startTime":1776955084477,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7348138269345,"id":10455,"parentId":10449,"tags":{},"startTime":1776955084477,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2925,"timestamp":7348138268961,"id":10451,"parentId":10449,"tags":{},"startTime":1776955084476,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":762,"timestamp":7348138275303,"id":10456,"parentId":10449,"tags":{},"startTime":1776955084483,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":7287,"timestamp":7348138276077,"id":10457,"parentId":10449,"tags":{},"startTime":1776955084484,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":9412,"timestamp":7348138285442,"id":10458,"parentId":10449,"tags":{},"startTime":1776955084493,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":163,"timestamp":7348138294851,"id":10459,"parentId":10449,"tags":{},"startTime":1776955084502,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":106,"timestamp":7348138294999,"id":10460,"parentId":10449,"tags":{},"startTime":1776955084502,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":8417,"timestamp":7348138295108,"id":10461,"parentId":10449,"tags":{},"startTime":1776955084503,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":83,"timestamp":7348138305149,"id":10463,"parentId":10420,"tags":{},"startTime":1776955084513,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":154,"timestamp":7348138305086,"id":10462,"parentId":10420,"tags":{},"startTime":1776955084513,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":58296,"timestamp":7348138248982,"id":10449,"parentId":10420,"tags":{},"startTime":1776955084456,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":466965,"timestamp":7348137840342,"id":10420,"parentId":10418,"tags":{"name":"client"},"startTime":1776955084048,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":17395,"timestamp":7348138307331,"id":10464,"parentId":10418,"tags":{},"startTime":1776955084515,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":497127,"timestamp":7348137828414,"id":10418,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776955084036,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":51,"timestamp":7348138335222,"id":10467,"parentId":3,"tags":{},"startTime":1776955084543,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":40509,"timestamp":7348138343742,"id":10468,"parentId":10466,"tags":{"request":"next/dist/pages/_app"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":45712,"timestamp":7348138343829,"id":10473,"parentId":10466,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":45718,"timestamp":7348138343834,"id":10474,"parentId":10466,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":45718,"timestamp":7348138343840,"id":10475,"parentId":10466,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":45716,"timestamp":7348138343845,"id":10476,"parentId":10466,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":46667,"timestamp":7348138343802,"id":10470,"parentId":10466,"tags":{"request":"next/dist/pages/_document"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47176,"timestamp":7348138343794,"id":10469,"parentId":10466,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":47165,"timestamp":7348138343809,"id":10471,"parentId":10466,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14376,"timestamp":7348138387781,"id":10479,"parentId":10478,"tags":{},"startTime":1776955084595,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14542,"timestamp":7348138387629,"id":10478,"parentId":10477,"tags":{},"startTime":1776955084595,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":17408,"timestamp":7348138386422,"id":10477,"parentId":10465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776955084594,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":83147,"timestamp":7348138343815,"id":10472,"parentId":10466,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955084551,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":88819,"timestamp":7348138491014,"id":10502,"parentId":10501,"tags":{},"startTime":1776955084698,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":88942,"timestamp":7348138490908,"id":10501,"parentId":10500,"tags":{},"startTime":1776955084698,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":151633,"timestamp":7348138487576,"id":10500,"parentId":10465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776955084695,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":344346,"timestamp":7348138327974,"id":10466,"parentId":10465,"tags":{},"startTime":1776955084535,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4951,"timestamp":7348138702149,"id":10504,"parentId":10503,"tags":{},"startTime":1776955084910,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":151,"timestamp":7348138707127,"id":10506,"parentId":10503,"tags":{},"startTime":1776955084915,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3265,"timestamp":7348138707295,"id":10507,"parentId":10503,"tags":{},"startTime":1776955084915,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":10,"timestamp":7348138710644,"id":10508,"parentId":10503,"tags":{},"startTime":1776955084918,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7348138710677,"id":10509,"parentId":10503,"tags":{},"startTime":1776955084918,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":6376,"timestamp":7348138707118,"id":10505,"parentId":10503,"tags":{},"startTime":1776955084915,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":712,"timestamp":7348138717968,"id":10510,"parentId":10503,"tags":{},"startTime":1776955084925,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3938,"timestamp":7348138718693,"id":10511,"parentId":10503,"tags":{},"startTime":1776955084926,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1075,"timestamp":7348138725707,"id":10512,"parentId":10503,"tags":{},"startTime":1776955084933,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":76,"timestamp":7348138726782,"id":10513,"parentId":10503,"tags":{},"startTime":1776955084934,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":73,"timestamp":7348138726851,"id":10514,"parentId":10503,"tags":{},"startTime":1776955084934,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":5597,"timestamp":7348138726928,"id":10515,"parentId":10503,"tags":{},"startTime":1776955084934,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":59388,"timestamp":7348138677867,"id":10503,"parentId":10465,"tags":{},"startTime":1776955084885,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":415956,"timestamp":7348138327682,"id":10465,"parentId":10419,"tags":{"name":"server"},"startTime":1776955084535,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":12151,"timestamp":7348138743703,"id":10516,"parentId":10419,"tags":{},"startTime":1776955084951,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":927788,"timestamp":7348137828629,"id":10419,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776955084036,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":30303,"timestamp":7348156317754,"id":10517,"tags":{"url":"/api/market/overview","isTurbopack":false},"startTime":1776955102525,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":26343,"timestamp":7348156321766,"id":10518,"tags":{"url":"/api/recommendations/status","isTurbopack":false},"startTime":1776955102529,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":25038,"timestamp":7348156323072,"id":10519,"tags":{"url":"/api/sectors/hot?limit=8","isTurbopack":false},"startTime":1776955102531,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":23757,"timestamp":7348156324354,"id":10520,"tags":{"url":"/api/recommendations/latest","isTurbopack":false},"startTime":1776955102532,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":19678,"timestamp":7348156328434,"id":10521,"tags":{"url":"/api/market/ops-status","isTurbopack":false},"startTime":1776955102536,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":19024,"timestamp":7348156329089,"id":10522,"tags":{"url":"/api/market/strategy-board","isTurbopack":false},"startTime":1776955102537,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7348156348168,"id":10524,"parentId":10517,"tags":{"url":"/api/market/overview","memory.rss":"115408896","memory.heapUsed":"402371112","memory.heapTotal":"441335808"},"startTime":1776955102556,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348156348178,"id":10525,"parentId":10518,"tags":{"url":"/api/recommendations/status","memory.rss":"115474432","memory.heapUsed":"402372432","memory.heapTotal":"441335808"},"startTime":1776955102556,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348156348188,"id":10526,"parentId":10519,"tags":{"url":"/api/sectors/hot?limit=8","memory.rss":"115490816","memory.heapUsed":"402373664","memory.heapTotal":"441335808"},"startTime":1776955102556,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348156348191,"id":10527,"parentId":10520,"tags":{"url":"/api/recommendations/latest","memory.rss":"115507200","memory.heapUsed":"402374896","memory.heapTotal":"441335808"},"startTime":1776955102556,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348156348200,"id":10528,"parentId":10521,"tags":{"url":"/api/market/ops-status","memory.rss":"115507200","memory.heapUsed":"402376128","memory.heapTotal":"441335808"},"startTime":1776955102556,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348156348202,"id":10529,"parentId":10522,"tags":{"url":"/api/market/strategy-board","memory.rss":"115523584","memory.heapUsed":"402377360","memory.heapTotal":"441335808"},"startTime":1776955102556,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":18534000,"timestamp":7348137828789,"id":10530,"parentId":3,"tags":{"updatedModules":[],"page":"/dashboard","isPageHidden":false},"startTime":1776955102613,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":78433,"timestamp":7348156329637,"id":10523,"tags":{"url":"/dashboard?_rsc=14m3d","isTurbopack":false},"startTime":1776955102537,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348156408092,"id":10531,"parentId":10523,"tags":{"url":"/dashboard?_rsc=14m3d","memory.rss":"168525824","memory.heapUsed":"396731312","memory.heapTotal":"412893184"},"startTime":1776955102616,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":18585000,"timestamp":7348137828390,"id":10533,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/dashboard","isPageHidden":false},"startTime":1776955102622,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":13496,"timestamp":7348156410413,"id":10532,"tags":{"url":"/dashboard?_rsc=14m3d","isTurbopack":false},"startTime":1776955102618,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348156423932,"id":10534,"parentId":10532,"tags":{"url":"/dashboard?_rsc=14m3d","memory.rss":"171196416","memory.heapUsed":"398884920","memory.heapTotal":"417087488"},"startTime":1776955102631,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":11292,"timestamp":7348156425140,"id":10535,"tags":{"url":"/dashboard?_rsc=14m3d","isTurbopack":false},"startTime":1776955102633,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7348156436455,"id":10536,"parentId":10535,"tags":{"url":"/dashboard?_rsc=14m3d","memory.rss":"171950080","memory.heapUsed":"397427208","memory.heapTotal":"417087488"},"startTime":1776955102644,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19322,"timestamp":7348159935151,"id":10554,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19601,"timestamp":7348159935160,"id":10556,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21537,"timestamp":7348159934808,"id":10541,"parentId":10540,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955106142,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21380,"timestamp":7348159935059,"id":10543,"parentId":10540,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955106142,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":23049,"timestamp":7348159935143,"id":10552,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24858,"timestamp":7348159935114,"id":10545,"parentId":10540,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":29407,"timestamp":7348159935139,"id":10551,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36938,"timestamp":7348159935124,"id":10547,"parentId":10540,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36906,"timestamp":7348159935164,"id":10557,"parentId":10540,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":39220,"timestamp":7348159935136,"id":10550,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":39941,"timestamp":7348159935120,"id":10546,"parentId":10540,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":41300,"timestamp":7348159935128,"id":10548,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":44050,"timestamp":7348159935076,"id":10544,"parentId":10540,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":6632,"timestamp":7348159972537,"id":10563,"parentId":10562,"tags":{},"startTime":1776955106180,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":39090,"timestamp":7348159951010,"id":10561,"parentId":10560,"tags":{},"startTime":1776955106158,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":39312,"timestamp":7348159950798,"id":10560,"parentId":10559,"tags":{},"startTime":1776955106158,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":81509,"timestamp":7348159950522,"id":10559,"parentId":10539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776955106158,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":290803,"timestamp":7348159979267,"id":10565,"parentId":10564,"tags":{},"startTime":1776955106187,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":291315,"timestamp":7348159979209,"id":10564,"parentId":10562,"tags":{},"startTime":1776955106187,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":23509,"timestamp":7348160270618,"id":10566,"parentId":10562,"tags":{"astUsed":"true"},"startTime":1776955106478,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":323147,"timestamp":7348159972381,"id":10562,"parentId":10558,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776955106180,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":366513,"timestamp":7348159935156,"id":10555,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":370879,"timestamp":7348159935022,"id":10542,"parentId":10540,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776955106142,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":361737,"timestamp":7348159949614,"id":10558,"parentId":10539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776955106157,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":32,"timestamp":7348160312228,"id":10567,"parentId":10558,"tags":{},"startTime":1776955106520,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":377265,"timestamp":7348159935132,"id":10549,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":377527,"timestamp":7348159935147,"id":10553,"parentId":10540,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955106143,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":384545,"timestamp":7348159928173,"id":10540,"parentId":10539,"tags":{},"startTime":1776955106136,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":19049,"timestamp":7348160375389,"id":10569,"parentId":10568,"tags":{},"startTime":1776955106583,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":7,"timestamp":7348160394482,"id":10571,"parentId":10568,"tags":{},"startTime":1776955106602,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":916,"timestamp":7348160394502,"id":10572,"parentId":10568,"tags":{},"startTime":1776955106602,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7348160395450,"id":10573,"parentId":10568,"tags":{},"startTime":1776955106603,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7348160395468,"id":10574,"parentId":10568,"tags":{},"startTime":1776955106603,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":6408,"timestamp":7348160394462,"id":10570,"parentId":10568,"tags":{},"startTime":1776955106602,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":55694,"timestamp":7348160565891,"id":10575,"parentId":10568,"tags":{},"startTime":1776955106773,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":12516,"timestamp":7348160621616,"id":10576,"parentId":10568,"tags":{},"startTime":1776955106829,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":9344,"timestamp":7348160637451,"id":10577,"parentId":10568,"tags":{},"startTime":1776955106845,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":1155,"timestamp":7348160646793,"id":10578,"parentId":10568,"tags":{},"startTime":1776955106854,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":116,"timestamp":7348160647929,"id":10579,"parentId":10568,"tags":{},"startTime":1776955106855,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":10009,"timestamp":7348160648049,"id":10580,"parentId":10568,"tags":{},"startTime":1776955106855,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":88,"timestamp":7348160659404,"id":10582,"parentId":10539,"tags":{},"startTime":1776955106867,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":159,"timestamp":7348160659339,"id":10581,"parentId":10539,"tags":{},"startTime":1776955106867,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":298376,"timestamp":7348160363164,"id":10568,"parentId":10539,"tags":{},"startTime":1776955106571,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":734061,"timestamp":7348159927506,"id":10539,"parentId":10537,"tags":{"name":"client"},"startTime":1776955106135,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":33573,"timestamp":7348160661589,"id":10583,"parentId":10537,"tags":{},"startTime":1776955106869,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":780503,"timestamp":7348159915454,"id":10537,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776955106123,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":196,"timestamp":7348160710170,"id":10586,"parentId":3,"tags":{},"startTime":1776955106918,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8265,"timestamp":7348160723878,"id":10587,"parentId":10585,"tags":{"request":"next/dist/pages/_app"},"startTime":1776955106931,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":819000,"timestamp":7348159915667,"id":10596,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/dashboard","isPageHidden":false},"startTime":1776955106947,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17447,"timestamp":7348160724364,"id":10593,"parentId":10585,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17454,"timestamp":7348160724368,"id":10594,"parentId":10585,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17453,"timestamp":7348160724371,"id":10595,"parentId":10585,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17606,"timestamp":7348160724346,"id":10589,"parentId":10585,"tags":{"request":"next/dist/pages/_document"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":18083,"timestamp":7348160724356,"id":10591,"parentId":10585,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":18290,"timestamp":7348160724336,"id":10588,"parentId":10585,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":18277,"timestamp":7348160724351,"id":10590,"parentId":10585,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":3766,"timestamp":7348160741203,"id":10599,"parentId":10598,"tags":{},"startTime":1776955106949,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":3887,"timestamp":7348160741085,"id":10598,"parentId":10597,"tags":{},"startTime":1776955106949,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":5221,"timestamp":7348160740269,"id":10597,"parentId":10584,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1776955106948,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21415,"timestamp":7348160724360,"id":10592,"parentId":10585,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955106932,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":27072,"timestamp":7348160762628,"id":10622,"parentId":10621,"tags":{},"startTime":1776955106970,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":27149,"timestamp":7348160762558,"id":10621,"parentId":10620,"tags":{},"startTime":1776955106970,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":32824,"timestamp":7348160762430,"id":10620,"parentId":10584,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1776955106970,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":105894,"timestamp":7348160701135,"id":10585,"parentId":10584,"tags":{},"startTime":1776955106909,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2985,"timestamp":7348160818183,"id":10624,"parentId":10623,"tags":{},"startTime":1776955107026,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":5,"timestamp":7348160821196,"id":10626,"parentId":10623,"tags":{},"startTime":1776955107029,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3452,"timestamp":7348160821212,"id":10627,"parentId":10623,"tags":{},"startTime":1776955107029,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7348160824693,"id":10628,"parentId":10623,"tags":{},"startTime":1776955107032,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7348160824709,"id":10629,"parentId":10623,"tags":{},"startTime":1776955107032,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":5324,"timestamp":7348160821188,"id":10625,"parentId":10623,"tags":{},"startTime":1776955107029,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":647,"timestamp":7348160828073,"id":10630,"parentId":10623,"tags":{},"startTime":1776955107036,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5681,"timestamp":7348160828726,"id":10631,"parentId":10623,"tags":{},"startTime":1776955107036,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1065,"timestamp":7348160835583,"id":10632,"parentId":10623,"tags":{},"startTime":1776955107043,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":69,"timestamp":7348160836649,"id":10633,"parentId":10623,"tags":{},"startTime":1776955107044,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":280,"timestamp":7348160836711,"id":10634,"parentId":10623,"tags":{},"startTime":1776955107044,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2520,"timestamp":7348160836996,"id":10635,"parentId":10623,"tags":{},"startTime":1776955107044,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":30338,"timestamp":7348160812588,"id":10623,"parentId":10584,"tags":{},"startTime":1776955107020,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":149935,"timestamp":7348160700616,"id":10584,"parentId":10538,"tags":{"name":"server"},"startTime":1776955106908,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4610,"timestamp":7348160850617,"id":10636,"parentId":10538,"tags":{},"startTime":1776955107058,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":939696,"timestamp":7348159916151,"id":10538,"parentId":3,"tags":{"trigger":"src/app/(auth)/sectors/page.tsx"},"startTime":1776955106124,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":29466,"timestamp":7348160863224,"id":10637,"tags":{"url":"/dashboard?_rsc=14m3d","isTurbopack":false},"startTime":1776955107071,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7348160892711,"id":10638,"parentId":10637,"tags":{"url":"/dashboard?_rsc=14m3d","memory.rss":"459440128","memory.heapUsed":"407415568","memory.heapTotal":"460111872"},"startTime":1776955107100,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":116762,"timestamp":7348313737525,"id":10639,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776955259945,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7348313854514,"id":10640,"parentId":10639,"tags":{"url":"/dashboard","memory.rss":"146800640","memory.heapUsed":"416841592","memory.heapTotal":"431013888"},"startTime":1776955260062,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":25,"timestamp":7348314287619,"id":10641,"parentId":3,"tags":{},"startTime":1776955260495,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":48119,"timestamp":7348378340244,"id":10642,"tags":{"url":"/dashboard","isTurbopack":false},"startTime":1776955324547,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348378388478,"id":10643,"parentId":10642,"tags":{"url":"/dashboard","memory.rss":"114229248","memory.heapUsed":"420191384","memory.heapTotal":"431013888"},"startTime":1776955324596,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":5,"timestamp":7348378778624,"id":10644,"parentId":3,"tags":{},"startTime":1776955324986,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":58892,"timestamp":7348577155070,"id":10645,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776955523362,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7348577214039,"id":10646,"parentId":10645,"tags":{"url":"/recommendations","memory.rss":"116129792","memory.heapUsed":"424681464","memory.heapTotal":"435044352"},"startTime":1776955523421,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":969,"timestamp":7348577779443,"id":10647,"parentId":3,"tags":{},"startTime":1776955523987,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":156777,"timestamp":7349029440750,"id":10665,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":159109,"timestamp":7349029441310,"id":10667,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955975652,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":183816,"timestamp":7349029438941,"id":10652,"parentId":10651,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955975649,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":182154,"timestamp":7349029440620,"id":10654,"parentId":10651,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":191066,"timestamp":7349029440681,"id":10662,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":191939,"timestamp":7349029440744,"id":10664,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":197006,"timestamp":7349029440641,"id":10656,"parentId":10651,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":212778,"timestamp":7349029440656,"id":10658,"parentId":10651,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":225776,"timestamp":7349029440673,"id":10661,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":228951,"timestamp":7349029440649,"id":10657,"parentId":10651,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":235279,"timestamp":7349029440661,"id":10659,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":258385,"timestamp":7349029440635,"id":10655,"parentId":10651,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":43240,"timestamp":7349029655910,"id":10673,"parentId":10672,"tags":{},"startTime":1776955975866,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":149092,"timestamp":7349029615859,"id":10671,"parentId":10670,"tags":{},"startTime":1776955975826,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":150785,"timestamp":7349029614216,"id":10670,"parentId":10669,"tags":{},"startTime":1776955975825,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":215585,"timestamp":7349029611463,"id":10669,"parentId":10650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776955975822,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":528747,"timestamp":7349029699303,"id":10675,"parentId":10674,"tags":{},"startTime":1776955975910,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":529357,"timestamp":7349029699218,"id":10674,"parentId":10672,"tags":{},"startTime":1776955975910,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":26668,"timestamp":7349030228620,"id":10676,"parentId":10672,"tags":{"astUsed":"true"},"startTime":1776955976439,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":602248,"timestamp":7349029654743,"id":10672,"parentId":10668,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776955975865,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":819941,"timestamp":7349029440604,"id":10653,"parentId":10651,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":700689,"timestamp":7349029566814,"id":10668,"parentId":10650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776955975777,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":32,"timestamp":7349030272520,"id":10677,"parentId":10668,"tags":{},"startTime":1776955976483,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":832129,"timestamp":7349029440669,"id":10660,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":833805,"timestamp":7349029441291,"id":10666,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955975652,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":842995,"timestamp":7349029440717,"id":10663,"parentId":10651,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955975651,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":857181,"timestamp":7349029426552,"id":10651,"parentId":10650,"tags":{},"startTime":1776955975637,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6617,"timestamp":7349030293958,"id":10679,"parentId":10678,"tags":{},"startTime":1776955976504,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":6,"timestamp":7349030300639,"id":10681,"parentId":10678,"tags":{},"startTime":1776955976511,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":375,"timestamp":7349030300655,"id":10682,"parentId":10678,"tags":{},"startTime":1776955976511,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7349030301053,"id":10683,"parentId":10678,"tags":{},"startTime":1776955976512,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7349030301068,"id":10684,"parentId":10678,"tags":{},"startTime":1776955976512,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2485,"timestamp":7349030300596,"id":10680,"parentId":10678,"tags":{},"startTime":1776955976511,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":470,"timestamp":7349030306072,"id":10685,"parentId":10678,"tags":{},"startTime":1776955976517,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4072,"timestamp":7349030306552,"id":10686,"parentId":10678,"tags":{},"startTime":1776955976517,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":9255,"timestamp":7349030312551,"id":10687,"parentId":10678,"tags":{},"startTime":1776955976523,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":115,"timestamp":7349030321804,"id":10688,"parentId":10678,"tags":{},"startTime":1776955976532,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":81,"timestamp":7349030321910,"id":10689,"parentId":10678,"tags":{},"startTime":1776955976532,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4834,"timestamp":7349030321993,"id":10690,"parentId":10678,"tags":{},"startTime":1776955976533,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":69,"timestamp":7349030331705,"id":10692,"parentId":10650,"tags":{},"startTime":1776955976542,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":130,"timestamp":7349030331650,"id":10691,"parentId":10650,"tags":{},"startTime":1776955976542,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":46573,"timestamp":7349030287159,"id":10678,"parentId":10650,"tags":{},"startTime":1776955976498,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":913725,"timestamp":7349029420029,"id":10650,"parentId":10648,"tags":{"name":"client"},"startTime":1776955975631,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":12229,"timestamp":7349030333774,"id":10693,"parentId":10648,"tags":{},"startTime":1776955976544,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":1137868,"timestamp":7349029208606,"id":10648,"parentId":3,"tags":{"trigger":"src/components/stock-card.tsx"},"startTime":1776955975419,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":3,"timestamp":7349030354346,"id":10696,"parentId":3,"tags":{},"startTime":1776955976565,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10204,"timestamp":7349030357868,"id":10701,"parentId":10695,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10208,"timestamp":7349030357872,"id":10702,"parentId":10695,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10208,"timestamp":7349030357876,"id":10703,"parentId":10695,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10207,"timestamp":7349030357880,"id":10704,"parentId":10695,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10281,"timestamp":7349030357814,"id":10697,"parentId":10695,"tags":{"request":"next/dist/pages/_app"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10801,"timestamp":7349030357864,"id":10700,"parentId":10695,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11098,"timestamp":7349030357853,"id":10698,"parentId":10695,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11164,"timestamp":7349030357858,"id":10699,"parentId":10695,"tags":{"request":"next/dist/pages/_document"},"startTime":1776955976568,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":28923,"timestamp":7349030404100,"id":10727,"parentId":10726,"tags":{},"startTime":1776955976615,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29283,"timestamp":7349030403747,"id":10726,"parentId":10725,"tags":{},"startTime":1776955976614,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":33280,"timestamp":7349030403429,"id":10725,"parentId":10694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776955976614,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":106932,"timestamp":7349030348936,"id":10695,"parentId":10694,"tags":{},"startTime":1776955976559,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3459,"timestamp":7349030476028,"id":10729,"parentId":10728,"tags":{},"startTime":1776955976687,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":8,"timestamp":7349030479514,"id":10731,"parentId":10728,"tags":{},"startTime":1776955976690,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":4661,"timestamp":7349030482612,"id":10732,"parentId":10728,"tags":{},"startTime":1776955976693,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7349030487300,"id":10733,"parentId":10728,"tags":{},"startTime":1776955976698,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7349030487318,"id":10734,"parentId":10728,"tags":{},"startTime":1776955976698,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":9697,"timestamp":7349030479505,"id":10730,"parentId":10728,"tags":{},"startTime":1776955976690,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1028,"timestamp":7349030492750,"id":10735,"parentId":10728,"tags":{},"startTime":1776955976703,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5892,"timestamp":7349030493791,"id":10736,"parentId":10728,"tags":{},"startTime":1776955976704,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1215,"timestamp":7349030502084,"id":10737,"parentId":10728,"tags":{},"startTime":1776955976713,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":86,"timestamp":7349030503298,"id":10738,"parentId":10728,"tags":{},"startTime":1776955976714,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":100,"timestamp":7349030503375,"id":10739,"parentId":10728,"tags":{},"startTime":1776955976714,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":6123,"timestamp":7349030503483,"id":10740,"parentId":10728,"tags":{},"startTime":1776955976714,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":59039,"timestamp":7349030460144,"id":10728,"parentId":10694,"tags":{},"startTime":1776955976671,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":180182,"timestamp":7349030348694,"id":10694,"parentId":10649,"tags":{"name":"server"},"startTime":1776955976559,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":1241000,"timestamp":7349029230087,"id":10742,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!","[project]/src/app/globals.css","[project]/src/components/stock-card.tsx"],"page":"/recommendations","isPageHidden":false},"startTime":1776955976750,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":32634,"timestamp":7349030528951,"id":10741,"parentId":10649,"tags":{},"startTime":1776955976739,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":1328581,"timestamp":7349029234813,"id":10649,"parentId":3,"tags":{"trigger":"src/components/stock-card.tsx"},"startTime":1776955975445,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":64810,"timestamp":7349030581847,"id":10743,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1776955976792,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":28,"timestamp":7349030647235,"id":10744,"parentId":10743,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"464076800","memory.heapUsed":"420865888","memory.heapTotal":"479641600"},"startTime":1776955976858,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24350,"timestamp":7349049592364,"id":10753,"parentId":10748,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24363,"timestamp":7349049592369,"id":10754,"parentId":10748,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24362,"timestamp":7349049592375,"id":10755,"parentId":10748,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24362,"timestamp":7349049592379,"id":10756,"parentId":10748,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":25192,"timestamp":7349049592352,"id":10751,"parentId":10748,"tags":{"request":"next/dist/pages/_document"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26199,"timestamp":7349049592238,"id":10749,"parentId":10748,"tags":{"request":"next/dist/pages/_app"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26106,"timestamp":7349049592344,"id":10750,"parentId":10748,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":29499,"timestamp":7349049615363,"id":10759,"parentId":10758,"tags":{},"startTime":1776955995826,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":29731,"timestamp":7349049615159,"id":10758,"parentId":10757,"tags":{},"startTime":1776955995826,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":32984,"timestamp":7349049614552,"id":10757,"parentId":10747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776955995825,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":58521,"timestamp":7349049592357,"id":10752,"parentId":10748,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776955995803,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":25269,"timestamp":7349049681543,"id":10782,"parentId":10781,"tags":{},"startTime":1776955995892,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":25401,"timestamp":7349049681424,"id":10781,"parentId":10780,"tags":{},"startTime":1776955995892,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":46727,"timestamp":7349049680887,"id":10780,"parentId":10747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776955995891,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":166397,"timestamp":7349049581927,"id":10748,"parentId":10747,"tags":{},"startTime":1776955995792,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":8353,"timestamp":7349049772395,"id":10784,"parentId":10783,"tags":{},"startTime":1776955995983,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":12,"timestamp":7349049780777,"id":10786,"parentId":10783,"tags":{},"startTime":1776955995991,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3944,"timestamp":7349049780800,"id":10787,"parentId":10783,"tags":{},"startTime":1776955995991,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7349049784773,"id":10788,"parentId":10783,"tags":{},"startTime":1776955995995,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7349049784797,"id":10789,"parentId":10783,"tags":{},"startTime":1776955995995,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":19898,"timestamp":7349049780768,"id":10785,"parentId":10783,"tags":{},"startTime":1776955995991,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1078,"timestamp":7349049807429,"id":10790,"parentId":10783,"tags":{},"startTime":1776955996018,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":8094,"timestamp":7349049808529,"id":10791,"parentId":10783,"tags":{},"startTime":1776955996019,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1228,"timestamp":7349049818357,"id":10792,"parentId":10783,"tags":{},"startTime":1776955996029,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":81,"timestamp":7349049819584,"id":10793,"parentId":10783,"tags":{},"startTime":1776955996030,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":147,"timestamp":7349049819653,"id":10794,"parentId":10783,"tags":{},"startTime":1776955996030,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3371,"timestamp":7349049819816,"id":10795,"parentId":10783,"tags":{},"startTime":1776955996030,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":66805,"timestamp":7349049762574,"id":10783,"parentId":10747,"tags":{},"startTime":1776955995973,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":262056,"timestamp":7349049581634,"id":10747,"parentId":10745,"tags":{"name":"server"},"startTime":1776955995792,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":23224,"timestamp":7349049843849,"id":10796,"parentId":10745,"tags":{},"startTime":1776955996054,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":300201,"timestamp":7349049567992,"id":10745,"parentId":3,"tags":{"trigger":"src/app/(auth)/recommendations/page.tsx"},"startTime":1776955995779,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":80178,"timestamp":7349049913382,"id":10812,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":80583,"timestamp":7349049913612,"id":10814,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":94229,"timestamp":7349049912717,"id":10799,"parentId":10798,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955996123,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":93880,"timestamp":7349049913122,"id":10801,"parentId":10798,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":104692,"timestamp":7349049913266,"id":10809,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":104734,"timestamp":7349049913292,"id":10811,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":105902,"timestamp":7349049913178,"id":10803,"parentId":10798,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":73364,"timestamp":7349049959380,"id":10818,"parentId":10817,"tags":{},"startTime":1776955996170,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":74615,"timestamp":7349049958195,"id":10817,"parentId":10816,"tags":{},"startTime":1776955996169,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":204247,"timestamp":7349049957246,"id":10816,"parentId":10797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776955996168,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":249898,"timestamp":7349049913213,"id":10805,"parentId":10798,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":386038,"timestamp":7349049913201,"id":10804,"parentId":10798,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":454317,"timestamp":7349049913251,"id":10808,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":455608,"timestamp":7349049913160,"id":10802,"parentId":10798,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":455546,"timestamp":7349049913227,"id":10806,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":455683,"timestamp":7349049913511,"id":10813,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":338691,"timestamp":7349050032027,"id":10820,"parentId":10819,"tags":{},"startTime":1776955996243,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":470357,"timestamp":7349049912964,"id":10800,"parentId":10798,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776955996123,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":130605,"timestamp":7349050371166,"id":10822,"parentId":10821,"tags":{},"startTime":1776955996582,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":132339,"timestamp":7349050370878,"id":10821,"parentId":10819,"tags":{},"startTime":1776955996581,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":31835,"timestamp":7349050503270,"id":10823,"parentId":10819,"tags":{"astUsed":"true"},"startTime":1776955996714,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":511814,"timestamp":7349050031670,"id":10819,"parentId":10815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776955996242,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":600247,"timestamp":7349049956440,"id":10815,"parentId":10797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776955996167,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":25,"timestamp":7349050557054,"id":10824,"parentId":10815,"tags":{},"startTime":1776955996768,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":643855,"timestamp":7349049913240,"id":10807,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":671820,"timestamp":7349049913278,"id":10810,"parentId":10798,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776955996124,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":711926,"timestamp":7349049873222,"id":10798,"parentId":10797,"tags":{},"startTime":1776955996084,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4896,"timestamp":7349050618131,"id":10826,"parentId":10825,"tags":{},"startTime":1776955996829,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":5,"timestamp":7349050623053,"id":10828,"parentId":10825,"tags":{},"startTime":1776955996834,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":525,"timestamp":7349050623070,"id":10829,"parentId":10825,"tags":{},"startTime":1776955996834,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":7,"timestamp":7349050623660,"id":10830,"parentId":10825,"tags":{},"startTime":1776955996834,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7349050623686,"id":10831,"parentId":10825,"tags":{},"startTime":1776955996834,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4337,"timestamp":7349050623044,"id":10827,"parentId":10825,"tags":{},"startTime":1776955996834,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1141,"timestamp":7349050633437,"id":10832,"parentId":10825,"tags":{},"startTime":1776955996844,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":11232,"timestamp":7349050634598,"id":10833,"parentId":10825,"tags":{},"startTime":1776955996845,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":5875,"timestamp":7349050647990,"id":10834,"parentId":10825,"tags":{},"startTime":1776955996859,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":305,"timestamp":7349050653863,"id":10835,"parentId":10825,"tags":{},"startTime":1776955996864,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":123,"timestamp":7349050654155,"id":10836,"parentId":10825,"tags":{},"startTime":1776955996865,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":7035,"timestamp":7349050654281,"id":10837,"parentId":10825,"tags":{},"startTime":1776955996865,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":89,"timestamp":7349050662384,"id":10839,"parentId":10797,"tags":{},"startTime":1776955996873,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":140,"timestamp":7349050662338,"id":10838,"parentId":10797,"tags":{},"startTime":1776955996873,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":66646,"timestamp":7349050599839,"id":10825,"parentId":10797,"tags":{},"startTime":1776955996810,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":793634,"timestamp":7349049872883,"id":10797,"parentId":10746,"tags":{"name":"client"},"startTime":1776955996083,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":6000,"timestamp":7349050666541,"id":10840,"parentId":10746,"tags":{},"startTime":1776955996877,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":1105152,"timestamp":7349049568292,"id":10746,"parentId":3,"tags":{"trigger":"src/app/(auth)/recommendations/page.tsx"},"startTime":1776955995779,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":14,"timestamp":7349050676872,"id":10841,"parentId":3,"tags":{},"startTime":1776955996887,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":44098,"timestamp":7349050678096,"id":10842,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1776955996889,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7349050722286,"id":10843,"parentId":10842,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"448954368","memory.heapUsed":"401255040","memory.heapTotal":"450740224"},"startTime":1776955996933,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":1181000,"timestamp":7349049573796,"id":10844,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css","[project]/src/app/(auth)/recommendations/page.tsx"],"page":"/recommendations","isPageHidden":false},"startTime":1776955996976,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19189,"timestamp":7349061787039,"id":10862,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20070,"timestamp":7349061787061,"id":10864,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24431,"timestamp":7349061786492,"id":10849,"parentId":10848,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776956007997,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":23995,"timestamp":7349061786943,"id":10851,"parentId":10848,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776956007997,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26312,"timestamp":7349061787004,"id":10859,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":26437,"timestamp":7349061787034,"id":10861,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27442,"timestamp":7349061786968,"id":10853,"parentId":10848,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776956007997,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":31543,"timestamp":7349061786980,"id":10855,"parentId":10848,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776956007997,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":35584,"timestamp":7349061787000,"id":10858,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":37165,"timestamp":7349061786976,"id":10854,"parentId":10848,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776956007997,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":37680,"timestamp":7349061786987,"id":10856,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"read-resource","duration":7257,"timestamp":7349061817428,"id":10870,"parentId":10869,"tags":{},"startTime":1776956008028,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":54748,"timestamp":7349061786958,"id":10852,"parentId":10848,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776956007997,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":39956,"timestamp":7349061802207,"id":10868,"parentId":10867,"tags":{},"startTime":1776956008013,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":40272,"timestamp":7349061801906,"id":10867,"parentId":10866,"tags":{},"startTime":1776956008012,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":87295,"timestamp":7349061801377,"id":10866,"parentId":10847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776956008012,"traceId":"d76ab653cbe90d54"},{"name":"postcss-process","duration":167974,"timestamp":7349061824879,"id":10872,"parentId":10871,"tags":{},"startTime":1776956008035,"traceId":"d76ab653cbe90d54"},{"name":"postcss-loader","duration":168404,"timestamp":7349061824753,"id":10871,"parentId":10869,"tags":{},"startTime":1776956008035,"traceId":"d76ab653cbe90d54"},{"name":"css-loader","duration":14733,"timestamp":7349061993201,"id":10873,"parentId":10869,"tags":{"astUsed":"true"},"startTime":1776956008204,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":192078,"timestamp":7349061817172,"id":10869,"parentId":10865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776956008028,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":222444,"timestamp":7349061787017,"id":10860,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":225943,"timestamp":7349061786931,"id":10850,"parentId":10848,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776956007997,"traceId":"d76ab653cbe90d54"},{"name":"build-module-css","duration":214807,"timestamp":7349061800421,"id":10865,"parentId":10847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776956008011,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":26,"timestamp":7349062015992,"id":10874,"parentId":10865,"tags":{},"startTime":1776956008227,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":229109,"timestamp":7349061786991,"id":10857,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":229703,"timestamp":7349061787050,"id":10863,"parentId":10848,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776956007998,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":231846,"timestamp":7349061784943,"id":10848,"parentId":10847,"tags":{},"startTime":1776956007995,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3165,"timestamp":7349062030635,"id":10876,"parentId":10875,"tags":{},"startTime":1776956008241,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":5,"timestamp":7349062033821,"id":10878,"parentId":10875,"tags":{},"startTime":1776956008244,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":533,"timestamp":7349062033838,"id":10879,"parentId":10875,"tags":{},"startTime":1776956008244,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":6,"timestamp":7349062034397,"id":10880,"parentId":10875,"tags":{},"startTime":1776956008245,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7349062034418,"id":10881,"parentId":10875,"tags":{},"startTime":1776956008245,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2367,"timestamp":7349062033812,"id":10877,"parentId":10875,"tags":{},"startTime":1776956008244,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":557,"timestamp":7349062039593,"id":10882,"parentId":10875,"tags":{},"startTime":1776956008250,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4509,"timestamp":7349062040159,"id":10883,"parentId":10875,"tags":{},"startTime":1776956008251,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":7543,"timestamp":7349062046014,"id":10884,"parentId":10875,"tags":{},"startTime":1776956008257,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":154,"timestamp":7349062053555,"id":10885,"parentId":10875,"tags":{},"startTime":1776956008264,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":87,"timestamp":7349062053701,"id":10886,"parentId":10875,"tags":{},"startTime":1776956008264,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3516,"timestamp":7349062053790,"id":10887,"parentId":10875,"tags":{},"startTime":1776956008264,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":91,"timestamp":7349062058452,"id":10889,"parentId":10847,"tags":{},"startTime":1776956008269,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":168,"timestamp":7349062058386,"id":10888,"parentId":10847,"tags":{},"startTime":1776956008269,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":39498,"timestamp":7349062021352,"id":10875,"parentId":10847,"tags":{},"startTime":1776956008232,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":277239,"timestamp":7349061783655,"id":10847,"parentId":10845,"tags":{"name":"client"},"startTime":1776956007994,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":9977,"timestamp":7349062060915,"id":10890,"parentId":10845,"tags":{},"startTime":1776956008271,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":307944,"timestamp":7349061763520,"id":10845,"parentId":3,"tags":{"trigger":"src/app/(auth)/recommendations/page.tsx"},"startTime":1776956007974,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":3,"timestamp":7349062078321,"id":10893,"parentId":3,"tags":{},"startTime":1776956008289,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9893,"timestamp":7349062084225,"id":10894,"parentId":10892,"tags":{"request":"next/dist/pages/_app"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24618,"timestamp":7349062084273,"id":10896,"parentId":10892,"tags":{"request":"next/dist/pages/_document"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":31605,"timestamp":7349062084286,"id":10899,"parentId":10892,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":31624,"timestamp":7349062084290,"id":10900,"parentId":10892,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":31624,"timestamp":7349062084293,"id":10901,"parentId":10892,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36207,"timestamp":7349062084267,"id":10895,"parentId":10892,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36477,"timestamp":7349062084277,"id":10897,"parentId":10892,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":14271,"timestamp":7349062110378,"id":10904,"parentId":10903,"tags":{},"startTime":1776956008321,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":14354,"timestamp":7349062110299,"id":10903,"parentId":10902,"tags":{},"startTime":1776956008321,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":15143,"timestamp":7349062110032,"id":10902,"parentId":10891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1776956008321,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":41628,"timestamp":7349062084282,"id":10898,"parentId":10892,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776956008295,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":362000,"timestamp":7349061764992,"id":10925,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css","[project]/src/app/(auth)/recommendations/page.tsx"],"page":"/recommendations","isPageHidden":false},"startTime":1776956008341,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":38350,"timestamp":7349062186854,"id":10928,"parentId":10927,"tags":{},"startTime":1776956008397,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":38585,"timestamp":7349062186626,"id":10927,"parentId":10926,"tags":{},"startTime":1776956008397,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":49329,"timestamp":7349062186154,"id":10926,"parentId":10891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1776956008397,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":170287,"timestamp":7349062075686,"id":10892,"parentId":10891,"tags":{},"startTime":1776956008286,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3475,"timestamp":7349062271255,"id":10930,"parentId":10929,"tags":{},"startTime":1776956008482,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":6,"timestamp":7349062274758,"id":10932,"parentId":10929,"tags":{},"startTime":1776956008485,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2894,"timestamp":7349062274776,"id":10933,"parentId":10929,"tags":{},"startTime":1776956008485,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7349062277703,"id":10934,"parentId":10929,"tags":{},"startTime":1776956008488,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7349062277720,"id":10935,"parentId":10929,"tags":{},"startTime":1776956008488,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4948,"timestamp":7349062274748,"id":10931,"parentId":10929,"tags":{},"startTime":1776956008485,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":627,"timestamp":7349062281841,"id":10936,"parentId":10929,"tags":{},"startTime":1776956008492,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5941,"timestamp":7349062282477,"id":10937,"parentId":10929,"tags":{},"startTime":1776956008493,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":2832,"timestamp":7349062290229,"id":10938,"parentId":10929,"tags":{},"startTime":1776956008501,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":100,"timestamp":7349062293061,"id":10939,"parentId":10929,"tags":{},"startTime":1776956008504,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":147,"timestamp":7349062293121,"id":10940,"parentId":10929,"tags":{},"startTime":1776956008504,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":1828,"timestamp":7349062293275,"id":10941,"parentId":10929,"tags":{},"startTime":1776956008504,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":42810,"timestamp":7349062257332,"id":10929,"parentId":10891,"tags":{},"startTime":1776956008468,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":230417,"timestamp":7349062075473,"id":10891,"parentId":10846,"tags":{"name":"server"},"startTime":1776956008286,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":9693,"timestamp":7349062305917,"id":10942,"parentId":10846,"tags":{},"startTime":1776956008516,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":552974,"timestamp":7349061765237,"id":10846,"parentId":3,"tags":{"trigger":"src/app/(auth)/recommendations/page.tsx"},"startTime":1776956007976,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":21062,"timestamp":7349062332520,"id":10943,"tags":{"url":"/recommendations?_rsc=ksdvm","isTurbopack":false},"startTime":1776956008543,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7349062353610,"id":10944,"parentId":10943,"tags":{"url":"/recommendations?_rsc=ksdvm","memory.rss":"366673920","memory.heapUsed":"442899632","memory.heapTotal":"475316224"},"startTime":1776956008564,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":84279,"timestamp":7349165539933,"id":10945,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776956111750,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7349165624284,"id":10946,"parentId":10945,"tags":{"url":"/recommendations","memory.rss":"148226048","memory.heapUsed":"446165040","memory.heapTotal":"453705728"},"startTime":1776956111835,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":67,"timestamp":7349167236797,"id":10947,"parentId":3,"tags":{},"startTime":1776956113447,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":76589,"timestamp":7349167881537,"id":10948,"tags":{"url":"/dashboard?_rsc=1oe23","isTurbopack":false},"startTime":1776956114092,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7349167958172,"id":10949,"parentId":10948,"tags":{"url":"/dashboard?_rsc=1oe23","memory.rss":"126320640","memory.heapUsed":"448194232","memory.heapTotal":"461307904"},"startTime":1776956114169,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":12512,"timestamp":7349167962054,"id":10950,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776956114173,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7349167974592,"id":10951,"parentId":10950,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"129515520","memory.heapUsed":"450492320","memory.heapTotal":"461832192"},"startTime":1776956114185,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":20212,"timestamp":7349455789213,"id":10952,"tags":{"url":"/recommendations?_rsc=sr7ck","isTurbopack":false},"startTime":1776956402000,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7349455809861,"id":10953,"parentId":10952,"tags":{"url":"/recommendations?_rsc=sr7ck","memory.rss":"102989824","memory.heapUsed":"451293104","memory.heapTotal":"458948608"},"startTime":1776956402020,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":43803,"timestamp":7349693246599,"id":10954,"tags":{"url":"/dashboard?_rsc=1oe23","isTurbopack":false},"startTime":1776956639457,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7349693290482,"id":10955,"parentId":10954,"tags":{"url":"/dashboard?_rsc=1oe23","memory.rss":"84459520","memory.heapUsed":"452702920","memory.heapTotal":"458948608"},"startTime":1776956639501,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":26111,"timestamp":7349862534463,"id":10956,"tags":{"url":"/recommendations?_rsc=fd642","isTurbopack":false},"startTime":1776956808745,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7349862561038,"id":10957,"parentId":10956,"tags":{"url":"/recommendations?_rsc=fd642","memory.rss":"82427904","memory.heapUsed":"455930112","memory.heapTotal":"465764352"},"startTime":1776956808771,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":58164,"timestamp":7350023041049,"id":10958,"tags":{"url":"/dashboard?_rsc=1oe23","isTurbopack":false},"startTime":1776956969251,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350023099772,"id":10959,"parentId":10958,"tags":{"url":"/dashboard?_rsc=1oe23","memory.rss":"78725120","memory.heapUsed":"457053400","memory.heapTotal":"463405056"},"startTime":1776956969310,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":27671,"timestamp":7350117721327,"id":10960,"tags":{"url":"/recommendations?_rsc=sr7ck","isTurbopack":false},"startTime":1776957063931,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350117749497,"id":10961,"parentId":10960,"tags":{"url":"/recommendations?_rsc=sr7ck","memory.rss":"88129536","memory.heapUsed":"458944704","memory.heapTotal":"464977920"},"startTime":1776957063960,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":68104,"timestamp":7350151662846,"id":10962,"tags":{"url":"/sectors?_rsc=1oe23","isTurbopack":false},"startTime":1776957097873,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7350151731837,"id":10963,"parentId":10962,"tags":{"url":"/sectors?_rsc=1oe23","memory.rss":"96321536","memory.heapUsed":"461498608","memory.heapTotal":"467697664"},"startTime":1776957097942,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":13393,"timestamp":7350151734702,"id":10964,"tags":{"url":"/sectors?_rsc=b5e9m","isTurbopack":false},"startTime":1776957097945,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350151748461,"id":10965,"parentId":10964,"tags":{"url":"/sectors?_rsc=b5e9m","memory.rss":"101466112","memory.heapUsed":"461617040","memory.heapTotal":"471367680"},"startTime":1776957097959,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":172119,"timestamp":7350193299182,"id":10975,"parentId":10970,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":172501,"timestamp":7350193299185,"id":10976,"parentId":10970,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":172829,"timestamp":7350193299189,"id":10977,"parentId":10970,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":172832,"timestamp":7350193299193,"id":10978,"parentId":10970,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":190860,"timestamp":7350193299173,"id":10973,"parentId":10970,"tags":{"request":"next/dist/pages/_document"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":197139,"timestamp":7350193295778,"id":10971,"parentId":10970,"tags":{"request":"next/dist/pages/_app"},"startTime":1776957139506,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":193744,"timestamp":7350193299178,"id":10974,"parentId":10970,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":193757,"timestamp":7350193299167,"id":10972,"parentId":10970,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":98749,"timestamp":7350193446391,"id":10980,"parentId":10979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fwatchlists%2Fpage&page=%2F(auth)%2Fwatchlists%2Fpage&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776957139657,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":98241,"timestamp":7350193561479,"id":10983,"parentId":10982,"tags":{},"startTime":1776957139772,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":99904,"timestamp":7350193559824,"id":10982,"parentId":10981,"tags":{},"startTime":1776957139770,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":102597,"timestamp":7350193558670,"id":10981,"parentId":10980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"rsc"},"startTime":1776957139769,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":364562,"timestamp":7350193299196,"id":10979,"parentId":10970,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fwatchlists%2Fpage&page=%2F(auth)%2Fwatchlists%2Fpage&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957139509,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":672,"timestamp":7350194071876,"id":11009,"parentId":10969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776957140282,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":54126,"timestamp":7350194076662,"id":11012,"parentId":11011,"tags":{},"startTime":1776957140287,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":54242,"timestamp":7350194076597,"id":11011,"parentId":11010,"tags":{},"startTime":1776957140287,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":68619,"timestamp":7350194076363,"id":11010,"parentId":11009,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"ssr"},"startTime":1776957140286,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":889604,"timestamp":7350193277583,"id":10970,"parentId":10969,"tags":{},"startTime":1776957139488,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4877,"timestamp":7350194179042,"id":11014,"parentId":11013,"tags":{},"startTime":1776957140389,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":5,"timestamp":7350194183949,"id":11016,"parentId":11013,"tags":{},"startTime":1776957140394,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":4520,"timestamp":7350194183965,"id":11017,"parentId":11013,"tags":{},"startTime":1776957140394,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":11,"timestamp":7350194188509,"id":11018,"parentId":11013,"tags":{},"startTime":1776957140399,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7350194188537,"id":11019,"parentId":11013,"tags":{},"startTime":1776957140399,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":6505,"timestamp":7350194183940,"id":11015,"parentId":11013,"tags":{},"startTime":1776957140394,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1592,"timestamp":7350194192720,"id":11020,"parentId":11013,"tags":{},"startTime":1776957140403,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":7658,"timestamp":7350194194324,"id":11021,"parentId":11013,"tags":{},"startTime":1776957140404,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1443,"timestamp":7350194203158,"id":11022,"parentId":11013,"tags":{},"startTime":1776957140413,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":72,"timestamp":7350194204601,"id":11023,"parentId":11013,"tags":{},"startTime":1776957140415,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":69,"timestamp":7350194204666,"id":11024,"parentId":11013,"tags":{},"startTime":1776957140415,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4038,"timestamp":7350194204738,"id":11025,"parentId":11013,"tags":{},"startTime":1776957140415,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":41317,"timestamp":7350194171015,"id":11013,"parentId":10969,"tags":{},"startTime":1776957140381,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":950227,"timestamp":7350193269079,"id":10969,"parentId":10967,"tags":{"name":"server"},"startTime":1776957139479,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":14169,"timestamp":7350194219333,"id":11026,"parentId":10967,"tags":{},"startTime":1776957140429,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":1203972,"timestamp":7350193030405,"id":10967,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776957139241,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10332,"timestamp":7350194251851,"id":11042,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10501,"timestamp":7350194251858,"id":11044,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12284,"timestamp":7350194251752,"id":11029,"parentId":11028,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12243,"timestamp":7350194251802,"id":11031,"parentId":11028,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13489,"timestamp":7350194251840,"id":11039,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13541,"timestamp":7350194251844,"id":11040,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13558,"timestamp":7350194251847,"id":11041,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":14886,"timestamp":7350194251812,"id":11033,"parentId":11028,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16173,"timestamp":7350194251831,"id":11037,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24007,"timestamp":7350194251821,"id":11035,"parentId":11028,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":31833,"timestamp":7350194251817,"id":11034,"parentId":11028,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":34603,"timestamp":7350194251835,"id":11038,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":35451,"timestamp":7350194251807,"id":11032,"parentId":11028,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":35438,"timestamp":7350194251827,"id":11036,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":36964,"timestamp":7350194251855,"id":11043,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":39757,"timestamp":7350194251796,"id":11030,"parentId":11028,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":723,"timestamp":7350194304305,"id":11046,"parentId":11045,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776957140514,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":47440,"timestamp":7350194306081,"id":11049,"parentId":11048,"tags":{},"startTime":1776957140516,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":47522,"timestamp":7350194306007,"id":11048,"parentId":11047,"tags":{},"startTime":1776957140516,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":52713,"timestamp":7350194305852,"id":11047,"parentId":11046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"app-pages-browser"},"startTime":1776957140516,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":110335,"timestamp":7350194251862,"id":11045,"parentId":11028,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140462,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":122619,"timestamp":7350194239617,"id":11028,"parentId":11027,"tags":{},"startTime":1776957140450,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3108,"timestamp":7350194372393,"id":11051,"parentId":11050,"tags":{},"startTime":1776957140583,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":4,"timestamp":7350194375516,"id":11053,"parentId":11050,"tags":{},"startTime":1776957140586,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":207,"timestamp":7350194375535,"id":11054,"parentId":11050,"tags":{},"startTime":1776957140586,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7350194375757,"id":11055,"parentId":11050,"tags":{},"startTime":1776957140586,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7350194375776,"id":11056,"parentId":11050,"tags":{},"startTime":1776957140586,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2533,"timestamp":7350194375511,"id":11052,"parentId":11050,"tags":{},"startTime":1776957140586,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":395,"timestamp":7350194381385,"id":11057,"parentId":11050,"tags":{},"startTime":1776957140592,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5224,"timestamp":7350194381786,"id":11058,"parentId":11050,"tags":{},"startTime":1776957140592,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":8475,"timestamp":7350194390544,"id":11059,"parentId":11050,"tags":{},"startTime":1776957140601,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":158,"timestamp":7350194399017,"id":11060,"parentId":11050,"tags":{},"startTime":1776957140609,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":107,"timestamp":7350194399167,"id":11061,"parentId":11050,"tags":{},"startTime":1776957140609,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3621,"timestamp":7350194399279,"id":11062,"parentId":11050,"tags":{},"startTime":1776957140609,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":80,"timestamp":7350194404035,"id":11064,"parentId":11027,"tags":{},"startTime":1776957140614,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":335,"timestamp":7350194403786,"id":11063,"parentId":11027,"tags":{},"startTime":1776957140614,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":41246,"timestamp":7350194365598,"id":11050,"parentId":11027,"tags":{},"startTime":1776957140576,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":168298,"timestamp":7350194238572,"id":11027,"parentId":11008,"tags":{"name":"client"},"startTime":1776957140449,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":11810,"timestamp":7350194406898,"id":11065,"parentId":11008,"tags":{},"startTime":1776957140617,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":1388563,"timestamp":7350193030496,"id":10968,"tags":{"trigger":"/watchlists","isTurbopack":false},"startTime":1776957139241,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":743426,"timestamp":7350193675884,"id":11008,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776957139886,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":3,"timestamp":7350194421949,"id":11066,"parentId":3,"tags":{},"startTime":1776957140632,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":1436838,"timestamp":7350193014634,"id":10966,"tags":{"url":"/watchlists?_rsc=3e40m","isTurbopack":false},"startTime":1776957139225,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7350194451492,"id":11073,"parentId":10966,"tags":{"url":"/watchlists?_rsc=3e40m","memory.rss":"471859200","memory.heapUsed":"405163720","memory.heapTotal":"453640192"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"next-client-pages-loader","duration":502,"timestamp":7350194455450,"id":11093,"parentId":11092,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1776957140666,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":1089,"timestamp":7350194455366,"id":11092,"parentId":11091,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1776957140665,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5254,"timestamp":7350194452361,"id":11087,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5375,"timestamp":7350194452369,"id":11089,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":5420,"timestamp":7350194452372,"id":11090,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140663,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8472,"timestamp":7350194452269,"id":11074,"parentId":11072,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":8436,"timestamp":7350194452316,"id":11076,"parentId":11072,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9118,"timestamp":7350194452349,"id":11084,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9137,"timestamp":7350194452353,"id":11085,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9144,"timestamp":7350194452357,"id":11086,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":9583,"timestamp":7350194452326,"id":11078,"parentId":11072,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11669,"timestamp":7350194452335,"id":11080,"parentId":11072,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12702,"timestamp":7350194452331,"id":11079,"parentId":11072,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12702,"timestamp":7350194452342,"id":11082,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12786,"timestamp":7350194452346,"id":11083,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13523,"timestamp":7350194452338,"id":11081,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15244,"timestamp":7350194452321,"id":11077,"parentId":11072,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21563,"timestamp":7350194452310,"id":11075,"parentId":11072,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":22716,"timestamp":7350194452365,"id":11088,"parentId":11072,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957140662,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":4790,"timestamp":7350194475551,"id":11097,"parentId":11096,"tags":{},"startTime":1776957140686,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":4849,"timestamp":7350194475494,"id":11096,"parentId":11095,"tags":{},"startTime":1776957140686,"traceId":"d76ab653cbe90d54"},{"name":"build-module-js","duration":5914,"timestamp":7350194475413,"id":11095,"parentId":11092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1776957140686,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":23569,"timestamp":7350194458702,"id":11094,"tags":{"url":"/watchlists?_rsc=dd0m3","isTurbopack":false},"startTime":1776957140669,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7350194482290,"id":11098,"parentId":11094,"tags":{"url":"/watchlists?_rsc=dd0m3","memory.rss":"471662592","memory.heapUsed":"412173128","memory.heapTotal":"452476928"},"startTime":1776957140692,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":34525,"timestamp":7350194452376,"id":11091,"parentId":11072,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776957140663,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":36787,"timestamp":7350194450134,"id":11072,"parentId":11071,"tags":{},"startTime":1776957140660,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2360,"timestamp":7350194494032,"id":11100,"parentId":11099,"tags":{},"startTime":1776957140704,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":29,"timestamp":7350194496405,"id":11102,"parentId":11099,"tags":{},"startTime":1776957140707,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":203,"timestamp":7350194496443,"id":11103,"parentId":11099,"tags":{},"startTime":1776957140707,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":3,"timestamp":7350194496660,"id":11104,"parentId":11099,"tags":{},"startTime":1776957140707,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7350194496672,"id":11105,"parentId":11099,"tags":{},"startTime":1776957140707,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":1467,"timestamp":7350194496400,"id":11101,"parentId":11099,"tags":{},"startTime":1776957140707,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1974,"timestamp":7350194500211,"id":11106,"parentId":11099,"tags":{},"startTime":1776957140710,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3129,"timestamp":7350194502198,"id":11107,"parentId":11099,"tags":{},"startTime":1776957140712,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":4129,"timestamp":7350194506808,"id":11108,"parentId":11099,"tags":{},"startTime":1776957140717,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":89,"timestamp":7350194510937,"id":11109,"parentId":11099,"tags":{},"startTime":1776957140721,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":73,"timestamp":7350194511020,"id":11110,"parentId":11099,"tags":{},"startTime":1776957140721,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2060,"timestamp":7350194511095,"id":11111,"parentId":11099,"tags":{},"startTime":1776957140721,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":79,"timestamp":7350194513814,"id":11113,"parentId":11071,"tags":{},"startTime":1776957140724,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":123,"timestamp":7350194513774,"id":11112,"parentId":11071,"tags":{},"startTime":1776957140724,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":26548,"timestamp":7350194489626,"id":11099,"parentId":11071,"tags":{},"startTime":1776957140700,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":66326,"timestamp":7350194449866,"id":11071,"parentId":11068,"tags":{"name":"client"},"startTime":1776957140660,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":4944,"timestamp":7350194516210,"id":11114,"parentId":11068,"tags":{},"startTime":1776957140726,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":72835,"timestamp":7350194448596,"id":11068,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776957140659,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":1,"timestamp":7350194525723,"id":11117,"parentId":3,"tags":{},"startTime":1776957140736,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13021,"timestamp":7350194528757,"id":11123,"parentId":11116,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsectors%2Fpage&page=%2F(auth)%2Fsectors%2Fpage&appPaths=%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13026,"timestamp":7350194528761,"id":11124,"parentId":11116,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13026,"timestamp":7350194528764,"id":11125,"parentId":11116,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13025,"timestamp":7350194528768,"id":11126,"parentId":11116,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fwatchlists%2Fpage&page=%2F(auth)%2Fwatchlists%2Fpage&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":13024,"timestamp":7350194528771,"id":11127,"parentId":11116,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":16159,"timestamp":7350194528709,"id":11118,"parentId":11116,"tags":{"request":"next/dist/pages/_app"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17211,"timestamp":7350194528753,"id":11122,"parentId":11116,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17604,"timestamp":7350194528739,"id":11119,"parentId":11116,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19471,"timestamp":7350194528744,"id":11120,"parentId":11116,"tags":{"request":"next/dist/pages/_document"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":12735,"timestamp":7350194540644,"id":11128,"parentId":11121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776957140751,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":25555,"timestamp":7350194528749,"id":11121,"parentId":11116,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957140739,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":91169,"timestamp":7350194523740,"id":11116,"parentId":11115,"tags":{},"startTime":1776957140734,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":39920,"timestamp":7350194669695,"id":11156,"parentId":11155,"tags":{},"startTime":1776957140880,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":18,"timestamp":7350194714779,"id":11158,"parentId":11155,"tags":{},"startTime":1776957140925,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":10637,"timestamp":7350194714827,"id":11159,"parentId":11155,"tags":{},"startTime":1776957140925,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":94,"timestamp":7350194725594,"id":11160,"parentId":11155,"tags":{},"startTime":1776957140936,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":12,"timestamp":7350194725727,"id":11161,"parentId":11155,"tags":{},"startTime":1776957140936,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":17356,"timestamp":7350194714744,"id":11157,"parentId":11155,"tags":{},"startTime":1776957140925,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1616,"timestamp":7350194738825,"id":11162,"parentId":11155,"tags":{},"startTime":1776957140949,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5681,"timestamp":7350194740509,"id":11163,"parentId":11155,"tags":{},"startTime":1776957140951,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1564,"timestamp":7350194748404,"id":11164,"parentId":11155,"tags":{},"startTime":1776957140959,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":85,"timestamp":7350194749967,"id":11165,"parentId":11155,"tags":{},"startTime":1776957140960,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":84,"timestamp":7350194750045,"id":11166,"parentId":11155,"tags":{},"startTime":1776957140960,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":640,"timestamp":7350194750131,"id":11167,"parentId":11155,"tags":{},"startTime":1776957140960,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":129017,"timestamp":7350194625312,"id":11155,"parentId":11115,"tags":{},"startTime":1776957140835,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":239658,"timestamp":7350194523569,"id":11115,"parentId":11070,"tags":{"name":"server"},"startTime":1776957140734,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":3981,"timestamp":7350194763267,"id":11168,"parentId":11070,"tags":{},"startTime":1776957140973,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":320074,"timestamp":7350194448607,"id":11069,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776957140659,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":320121,"timestamp":7350194448682,"id":11070,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776957140659,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-full-reload","duration":3,"timestamp":7350194811762,"id":11169,"parentId":3,"tags":{"stackTrace":""},"startTime":1776957141022,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":387218,"timestamp":7350194425937,"id":11067,"tags":{"url":"/_next/static/webpack/293cb92ad668b84c.webpack.hot-update.json","isTurbopack":false},"startTime":1776957140636,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7350194813173,"id":11170,"parentId":11067,"tags":{"url":"/_next/static/webpack/293cb92ad668b84c.webpack.hot-update.json","memory.rss":"471072768","memory.heapUsed":"431589896","memory.heapTotal":"462127104"},"startTime":1776957141023,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":35393,"timestamp":7350194824792,"id":11171,"tags":{"url":"/watchlists","isTurbopack":false},"startTime":1776957141035,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7350194860223,"id":11172,"parentId":11171,"tags":{"url":"/watchlists","memory.rss":"473808896","memory.heapUsed":"437891832","memory.heapTotal":"466272256"},"startTime":1776957141070,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":43,"timestamp":7350195821771,"id":11173,"parentId":3,"tags":{},"startTime":1776957142032,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":27045,"timestamp":7350211900840,"id":11174,"tags":{"url":"/dashboard?_rsc=e4dr7","isTurbopack":false},"startTime":1776957158111,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350211927986,"id":11175,"parentId":11174,"tags":{"url":"/dashboard?_rsc=e4dr7","memory.rss":"130416640","memory.heapUsed":"436915368","memory.heapTotal":"466976768"},"startTime":1776957158138,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":13469,"timestamp":7350211932404,"id":11176,"tags":{"url":"/dashboard?_rsc=10zpk","isTurbopack":false},"startTime":1776957158143,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350211945901,"id":11177,"parentId":11176,"tags":{"url":"/dashboard?_rsc=10zpk","memory.rss":"140132352","memory.heapUsed":"431402328","memory.heapTotal":"466321408"},"startTime":1776957158156,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21446,"timestamp":7350580263016,"id":11187,"parentId":11182,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21673,"timestamp":7350580263021,"id":11188,"parentId":11182,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21673,"timestamp":7350580263030,"id":11190,"parentId":11182,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21679,"timestamp":7350580263035,"id":11191,"parentId":11182,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fwatchlists%2Fpage&page=%2F(auth)%2Fwatchlists%2Fpage&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":34759,"timestamp":7350580263005,"id":11185,"parentId":11182,"tags":{"request":"next/dist/pages/_document"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":37772,"timestamp":7350580262687,"id":11183,"parentId":11182,"tags":{"request":"next/dist/pages/_app"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":37457,"timestamp":7350580263011,"id":11186,"parentId":11182,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":37476,"timestamp":7350580262997,"id":11184,"parentId":11182,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":39018,"timestamp":7350580282220,"id":11192,"parentId":11189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776957526492,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":82969,"timestamp":7350580324399,"id":11195,"parentId":11194,"tags":{},"startTime":1776957526534,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":83139,"timestamp":7350580324239,"id":11194,"parentId":11193,"tags":{},"startTime":1776957526534,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":84164,"timestamp":7350580324026,"id":11193,"parentId":11192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"rsc"},"startTime":1776957526534,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":147066,"timestamp":7350580263026,"id":11189,"parentId":11182,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstrategy%2Fpage&page=%2F(auth)%2Fstrategy%2Fpage&appPaths=%2F(auth)%2Fstrategy%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstrategy%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957526473,"traceId":"d76ab653cbe90d54"},{"name":"build-module","duration":728,"timestamp":7350580437249,"id":11220,"parentId":11181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776957526647,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":70204,"timestamp":7350580441603,"id":11223,"parentId":11222,"tags":{},"startTime":1776957526652,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":70312,"timestamp":7350580441502,"id":11222,"parentId":11221,"tags":{},"startTime":1776957526651,"traceId":"d76ab653cbe90d54"},{"name":"build-module-tsx","duration":112902,"timestamp":7350580441112,"id":11221,"parentId":11220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/strategy/page.tsx","layer":"ssr"},"startTime":1776957526651,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":325933,"timestamp":7350580254431,"id":11182,"parentId":11181,"tags":{},"startTime":1776957526464,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6014,"timestamp":7350580592965,"id":11225,"parentId":11224,"tags":{},"startTime":1776957526803,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":12,"timestamp":7350580599013,"id":11227,"parentId":11224,"tags":{},"startTime":1776957526809,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":4305,"timestamp":7350580599062,"id":11228,"parentId":11224,"tags":{},"startTime":1776957526809,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":12,"timestamp":7350580603403,"id":11229,"parentId":11224,"tags":{},"startTime":1776957526813,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":7,"timestamp":7350580603533,"id":11230,"parentId":11224,"tags":{},"startTime":1776957526814,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":8174,"timestamp":7350580599003,"id":11226,"parentId":11224,"tags":{},"startTime":1776957526809,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":1019,"timestamp":7350580617874,"id":11231,"parentId":11224,"tags":{},"startTime":1776957526828,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4638,"timestamp":7350580618909,"id":11232,"parentId":11224,"tags":{},"startTime":1776957526829,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1157,"timestamp":7350580624919,"id":11233,"parentId":11224,"tags":{},"startTime":1776957526835,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":87,"timestamp":7350580626075,"id":11234,"parentId":11224,"tags":{},"startTime":1776957526836,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":68,"timestamp":7350580626152,"id":11235,"parentId":11224,"tags":{},"startTime":1776957526836,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":4766,"timestamp":7350580626223,"id":11236,"parentId":11224,"tags":{},"startTime":1776957526836,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":51173,"timestamp":7350580584324,"id":11224,"parentId":11181,"tags":{},"startTime":1776957526794,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":388755,"timestamp":7350580253611,"id":11181,"parentId":11179,"tags":{"name":"server"},"startTime":1776957526464,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":7232,"timestamp":7350580642397,"id":11237,"parentId":11179,"tags":{},"startTime":1776957526852,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":409037,"timestamp":7350580241567,"id":11180,"tags":{"trigger":"/strategy","isTurbopack":false},"startTime":1776957526452,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":409335,"timestamp":7350580241467,"id":11179,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776957526451,"traceId":"d76ab653cbe90d54"}]
-[{"name":"handle-request","duration":490191,"timestamp":7350580224013,"id":11178,"tags":{"url":"/strategy?_rsc=fd642","isTurbopack":false},"startTime":1776957526434,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":2,"timestamp":7350580714635,"id":11238,"parentId":11178,"tags":{"url":"/strategy?_rsc=fd642","memory.rss":"357236736","memory.heapUsed":"403885936","memory.heapTotal":"438616064"},"startTime":1776957526925,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":25609,"timestamp":7350580723712,"id":11239,"tags":{"url":"/strategy?_rsc=g4vg8","isTurbopack":false},"startTime":1776957526934,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350580749354,"id":11240,"parentId":11239,"tags":{"url":"/strategy?_rsc=g4vg8","memory.rss":"384385024","memory.heapUsed":"400371776","memory.heapTotal":"439025664"},"startTime":1776957526959,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":15363,"timestamp":7350581463714,"id":11241,"tags":{"url":"/recommendations?_rsc=opwvn","isTurbopack":false},"startTime":1776957527674,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7350581479107,"id":11242,"parentId":11241,"tags":{"url":"/recommendations?_rsc=opwvn","memory.rss":"411729920","memory.heapUsed":"394621120","memory.heapTotal":"441942016"},"startTime":1776957527689,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":8752,"timestamp":7350581481902,"id":11243,"tags":{"url":"/recommendations?_rsc=h601u","isTurbopack":false},"startTime":1776957527692,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350581490670,"id":11244,"parentId":11243,"tags":{"url":"/recommendations?_rsc=h601u","memory.rss":"411058176","memory.heapUsed":"389114192","memory.heapTotal":"441057280"},"startTime":1776957527701,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":92353,"timestamp":7350598044389,"id":11245,"tags":{"url":"/stock/300133.SZ","isTurbopack":false},"startTime":1776957544254,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7350598136803,"id":11246,"parentId":11245,"tags":{"url":"/stock/300133.SZ","memory.rss":"162742272","memory.heapUsed":"388853944","memory.heapTotal":"414990336"},"startTime":1776957544347,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":6,"timestamp":7350598714476,"id":11247,"parentId":3,"tags":{},"startTime":1776957544924,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":54070,"timestamp":7350602143851,"id":11248,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776957548354,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":1,"timestamp":7350602197959,"id":11249,"parentId":11248,"tags":{"url":"/recommendations","memory.rss":"175194112","memory.heapUsed":"388493848","memory.heapTotal":"421281792"},"startTime":1776957548408,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":18,"timestamp":7350602818240,"id":11250,"parentId":3,"tags":{},"startTime":1776957549028,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":54331,"timestamp":7350832478906,"id":11259,"parentId":11254,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957778689,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":54415,"timestamp":7350832478912,"id":11260,"parentId":11254,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957778689,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":54420,"timestamp":7350832478919,"id":11261,"parentId":11254,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fwatchlists%2Fpage&page=%2F(auth)%2Fwatchlists%2Fpage&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957778689,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":54425,"timestamp":7350832478923,"id":11262,"parentId":11254,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957778689,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":54638,"timestamp":7350832478890,"id":11257,"parentId":11254,"tags":{"request":"next/dist/pages/_document"},"startTime":1776957778689,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":57279,"timestamp":7350832477833,"id":11255,"parentId":11254,"tags":{"request":"next/dist/pages/_app"},"startTime":1776957778688,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":56262,"timestamp":7350832478874,"id":11256,"parentId":11254,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776957778689,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":56507,"timestamp":7350832478898,"id":11258,"parentId":11254,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957778689,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":100802,"timestamp":7350832573256,"id":11285,"parentId":11284,"tags":{},"startTime":1776957778783,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":101449,"timestamp":7350832572616,"id":11284,"parentId":11283,"tags":{},"startTime":1776957778783,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":114998,"timestamp":7350832567290,"id":11283,"parentId":11253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776957778777,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":232195,"timestamp":7350832453318,"id":11254,"parentId":11253,"tags":{},"startTime":1776957778663,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":6920,"timestamp":7350832702779,"id":11287,"parentId":11286,"tags":{},"startTime":1776957778913,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":9,"timestamp":7350832709723,"id":11289,"parentId":11286,"tags":{},"startTime":1776957778920,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":3201,"timestamp":7350832709741,"id":11290,"parentId":11286,"tags":{},"startTime":1776957778920,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":24,"timestamp":7350832713039,"id":11291,"parentId":11286,"tags":{},"startTime":1776957778923,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7350832713126,"id":11292,"parentId":11286,"tags":{},"startTime":1776957778923,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":6059,"timestamp":7350832709715,"id":11288,"parentId":11286,"tags":{},"startTime":1776957778920,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2081,"timestamp":7350832718989,"id":11293,"parentId":11286,"tags":{},"startTime":1776957778929,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":4017,"timestamp":7350832721085,"id":11294,"parentId":11286,"tags":{},"startTime":1776957778931,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":1050,"timestamp":7350832726412,"id":11295,"parentId":11286,"tags":{},"startTime":1776957778936,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":94,"timestamp":7350832727462,"id":11296,"parentId":11286,"tags":{},"startTime":1776957778937,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":95,"timestamp":7350832727534,"id":11297,"parentId":11286,"tags":{},"startTime":1776957778937,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":3370,"timestamp":7350832727632,"id":11298,"parentId":11286,"tags":{},"startTime":1776957778938,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":41966,"timestamp":7350832694002,"id":11286,"parentId":11253,"tags":{},"startTime":1776957778904,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":289490,"timestamp":7350832452100,"id":11253,"parentId":11251,"tags":{"name":"server"},"startTime":1776957778662,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":19089,"timestamp":7350832741622,"id":11299,"parentId":11251,"tags":{},"startTime":1776957778952,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":336321,"timestamp":7350832424797,"id":11251,"parentId":3,"tags":{"trigger":"src/lib/api.ts"},"startTime":1776957778635,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19489,"timestamp":7350832775945,"id":11315,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":19906,"timestamp":7350832775960,"id":11317,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":17773,"timestamp":7350832778303,"id":11318,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778988,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":23386,"timestamp":7350832775732,"id":11302,"parentId":11301,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":23322,"timestamp":7350832775808,"id":11304,"parentId":11301,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24540,"timestamp":7350832775899,"id":11312,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24593,"timestamp":7350832775904,"id":11313,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":24615,"timestamp":7350832775931,"id":11314,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":25896,"timestamp":7350832775846,"id":11306,"parentId":11301,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":34704,"timestamp":7350832775875,"id":11308,"parentId":11301,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":56168,"timestamp":7350832775866,"id":11307,"parentId":11301,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":56347,"timestamp":7350832775892,"id":11311,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":58434,"timestamp":7350832775818,"id":11305,"parentId":11301,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":58377,"timestamp":7350832775879,"id":11309,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":58901,"timestamp":7350832775955,"id":11316,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":60513,"timestamp":7350832775793,"id":11303,"parentId":11301,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-transform","duration":41554,"timestamp":7350832798610,"id":11321,"parentId":11320,"tags":{},"startTime":1776957779009,"traceId":"d76ab653cbe90d54"},{"name":"next-swc-loader","duration":41718,"timestamp":7350832798451,"id":11320,"parentId":11319,"tags":{},"startTime":1776957779008,"traceId":"d76ab653cbe90d54"},{"name":"build-module-ts","duration":45689,"timestamp":7350832797861,"id":11319,"parentId":11300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776957779008,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":67709,"timestamp":7350832775888,"id":11310,"parentId":11301,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776957778986,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":79709,"timestamp":7350832763910,"id":11301,"parentId":11300,"tags":{},"startTime":1776957778974,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":3757,"timestamp":7350832885290,"id":11323,"parentId":11322,"tags":{},"startTime":1776957779095,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":6,"timestamp":7350832889075,"id":11325,"parentId":11322,"tags":{},"startTime":1776957779099,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":309,"timestamp":7350832889100,"id":11326,"parentId":11322,"tags":{},"startTime":1776957779099,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7350832889437,"id":11327,"parentId":11322,"tags":{},"startTime":1776957779099,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7350832889452,"id":11328,"parentId":11322,"tags":{},"startTime":1776957779099,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":3693,"timestamp":7350832889066,"id":11324,"parentId":11322,"tags":{},"startTime":1776957779099,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":2057,"timestamp":7350832899920,"id":11329,"parentId":11322,"tags":{},"startTime":1776957779110,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":6870,"timestamp":7350832901992,"id":11330,"parentId":11322,"tags":{},"startTime":1776957779112,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":9642,"timestamp":7350832910786,"id":11331,"parentId":11322,"tags":{},"startTime":1776957779121,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":291,"timestamp":7350832920426,"id":11332,"parentId":11322,"tags":{},"startTime":1776957779130,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":107,"timestamp":7350832920700,"id":11333,"parentId":11322,"tags":{},"startTime":1776957779131,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":21483,"timestamp":7350832920811,"id":11334,"parentId":11322,"tags":{},"startTime":1776957779131,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":77,"timestamp":7350832946908,"id":11336,"parentId":11300,"tags":{},"startTime":1776957779157,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":150,"timestamp":7350832946841,"id":11335,"parentId":11300,"tags":{},"startTime":1776957779157,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":72851,"timestamp":7350832877281,"id":11322,"parentId":11300,"tags":{},"startTime":1776957779087,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":186544,"timestamp":7350832763614,"id":11300,"parentId":11252,"tags":{"name":"client"},"startTime":1776957778974,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":38084,"timestamp":7350832950182,"id":11337,"parentId":11252,"tags":{},"startTime":1776957779160,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":563305,"timestamp":7350832425656,"id":11252,"parentId":3,"tags":{"trigger":"src/lib/api.ts"},"startTime":1776957778636,"traceId":"d76ab653cbe90d54"}]
-[{"name":"client-success","duration":3,"timestamp":7350832992184,"id":11338,"parentId":3,"tags":{},"startTime":1776957779202,"traceId":"d76ab653cbe90d54"},{"name":"client-full-reload","duration":4,"timestamp":7350833012613,"id":11339,"parentId":3,"tags":{"stackTrace":"Error: Aborted because (app-pages-browser)/./src/lib/api.ts is not accepted\nUpdate propagation: (app-pages-browser)/./src/lib/api.ts -> (app-pages-browser)/./src/hooks/use-auth.tsx -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js -> (app-pages-browser)/./node_modules/next/dist/compiled/react-server-dom-webpack/client.js -> (app-pages-browser)/./node_modules/next/dist/client/app-index.js -> (app-pages-browser)/./node_modules/next/dist/client/app-next-dev.js\n at applyHandler (http://localhost:3001/_next/static/chunks/webpack.js?v=1776957548366:1059:31)\n at http://localhost:3001/_next/static/chunks/webpack.js?v=1776957548366:618:21\n at Array.map ()"},"startTime":1776957779223,"traceId":"d76ab653cbe90d54"},{"name":"handle-request","duration":91153,"timestamp":7350833020248,"id":11340,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776957779230,"traceId":"d76ab653cbe90d54"},{"name":"memory-usage","duration":0,"timestamp":7350833111423,"id":11341,"parentId":11340,"tags":{"url":"/recommendations","memory.rss":"454131712","memory.heapUsed":"407313008","memory.heapTotal":"460898304"},"startTime":1776957779321,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":16,"timestamp":7350833564282,"id":11342,"parentId":3,"tags":{},"startTime":1776957779774,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":12594,"timestamp":7350887833179,"id":11366,"parentId":11348,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15326,"timestamp":7350887833164,"id":11362,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstrategy%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15718,"timestamp":7350887833171,"id":11364,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":15883,"timestamp":7350887833174,"id":11365,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":18404,"timestamp":7350887832768,"id":11349,"parentId":11348,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":18063,"timestamp":7350887833118,"id":11351,"parentId":11348,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20751,"timestamp":7350887833153,"id":11359,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20783,"timestamp":7350887833157,"id":11360,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":20823,"timestamp":7350887833161,"id":11361,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":21567,"timestamp":7350887833130,"id":11353,"parentId":11348,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":25186,"timestamp":7350887833138,"id":11355,"parentId":11348,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27380,"timestamp":7350887833146,"id":11357,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27529,"timestamp":7350887833149,"id":11358,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":27800,"timestamp":7350887833135,"id":11354,"parentId":11348,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":29445,"timestamp":7350887833142,"id":11356,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":34238,"timestamp":7350887833126,"id":11352,"parentId":11348,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":43214,"timestamp":7350887833111,"id":11350,"parentId":11348,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":43812,"timestamp":7350887833168,"id":11363,"parentId":11348,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776957834043,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":48440,"timestamp":7350887828619,"id":11348,"parentId":11347,"tags":{},"startTime":1776957834038,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":4473,"timestamp":7350887889966,"id":11368,"parentId":11367,"tags":{},"startTime":1776957834100,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":8,"timestamp":7350887894458,"id":11370,"parentId":11367,"tags":{},"startTime":1776957834104,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":295,"timestamp":7350887894488,"id":11371,"parentId":11367,"tags":{},"startTime":1776957834104,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":5,"timestamp":7350887894801,"id":11372,"parentId":11367,"tags":{},"startTime":1776957834105,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7350887894814,"id":11373,"parentId":11367,"tags":{},"startTime":1776957834105,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":2332,"timestamp":7350887894451,"id":11369,"parentId":11367,"tags":{},"startTime":1776957834104,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":849,"timestamp":7350887900523,"id":11374,"parentId":11367,"tags":{},"startTime":1776957834110,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":5160,"timestamp":7350887901383,"id":11375,"parentId":11367,"tags":{},"startTime":1776957834111,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":9479,"timestamp":7350887908605,"id":11376,"parentId":11367,"tags":{},"startTime":1776957834118,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":491,"timestamp":7350887918084,"id":11377,"parentId":11367,"tags":{},"startTime":1776957834128,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":77,"timestamp":7350887918568,"id":11378,"parentId":11367,"tags":{},"startTime":1776957834128,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":2081,"timestamp":7350887918648,"id":11379,"parentId":11367,"tags":{},"startTime":1776957834129,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-generateClientManifest","duration":108,"timestamp":7350887922320,"id":11381,"parentId":11347,"tags":{},"startTime":1776957834132,"traceId":"d76ab653cbe90d54"},{"name":"NextJsBuildManifest-createassets","duration":189,"timestamp":7350887922249,"id":11380,"parentId":11347,"tags":{},"startTime":1776957834132,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":41819,"timestamp":7350887882693,"id":11367,"parentId":11347,"tags":{},"startTime":1776957834093,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":96611,"timestamp":7350887827940,"id":11347,"parentId":11344,"tags":{"name":"client"},"startTime":1776957834038,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":6268,"timestamp":7350887924565,"id":11382,"parentId":11344,"tags":{},"startTime":1776957834134,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-client","duration":112874,"timestamp":7350887818390,"id":11344,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776957834028,"traceId":"d76ab653cbe90d54"},{"name":"client-success","duration":1,"timestamp":7350887936104,"id":11385,"parentId":3,"tags":{},"startTime":1776957834146,"traceId":"d76ab653cbe90d54"},{"name":"client-hmr-latency","duration":124000,"timestamp":7350887819074,"id":11395,"parentId":3,"tags":{"updatedModules":[],"page":"/recommendations","isPageHidden":false},"startTime":1776957834154,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":4784,"timestamp":7350887940231,"id":11386,"parentId":11384,"tags":{"request":"next/dist/pages/_app"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10953,"timestamp":7350887940285,"id":11391,"parentId":11384,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Frecommendations%2Fpage&page=%2F(auth)%2Frecommendations%2Fpage&appPaths=%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10954,"timestamp":7350887940289,"id":11392,"parentId":11384,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10959,"timestamp":7350887940292,"id":11393,"parentId":11384,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":10957,"timestamp":7350887940296,"id":11394,"parentId":11384,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fwatchlists%2Fpage&page=%2F(auth)%2Fwatchlists%2Fpage&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11040,"timestamp":7350887940271,"id":11388,"parentId":11384,"tags":{"request":"next/dist/pages/_document"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11172,"timestamp":7350887940276,"id":11389,"parentId":11384,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11463,"timestamp":7350887940281,"id":11390,"parentId":11384,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"add-entry","duration":11629,"timestamp":7350887940266,"id":11387,"parentId":11384,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776957834150,"traceId":"d76ab653cbe90d54"},{"name":"make","duration":53020,"timestamp":7350887934229,"id":11384,"parentId":11383,"tags":{},"startTime":1776957834144,"traceId":"d76ab653cbe90d54"},{"name":"chunk-graph","duration":2289,"timestamp":7350887996356,"id":11419,"parentId":11418,"tags":{},"startTime":1776957834206,"traceId":"d76ab653cbe90d54"},{"name":"optimize-modules","duration":3,"timestamp":7350887998659,"id":11421,"parentId":11418,"tags":{},"startTime":1776957834209,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunks","duration":2631,"timestamp":7350887998677,"id":11422,"parentId":11418,"tags":{},"startTime":1776957834209,"traceId":"d76ab653cbe90d54"},{"name":"optimize-tree","duration":4,"timestamp":7350888001324,"id":11423,"parentId":11418,"tags":{},"startTime":1776957834211,"traceId":"d76ab653cbe90d54"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7350888001347,"id":11424,"parentId":11418,"tags":{},"startTime":1776957834211,"traceId":"d76ab653cbe90d54"},{"name":"optimize","duration":4936,"timestamp":7350887998654,"id":11420,"parentId":11418,"tags":{},"startTime":1776957834209,"traceId":"d76ab653cbe90d54"},{"name":"module-hash","duration":485,"timestamp":7350888005250,"id":11425,"parentId":11418,"tags":{},"startTime":1776957834215,"traceId":"d76ab653cbe90d54"},{"name":"code-generation","duration":3365,"timestamp":7350888005740,"id":11426,"parentId":11418,"tags":{},"startTime":1776957834216,"traceId":"d76ab653cbe90d54"},{"name":"hash","duration":858,"timestamp":7350888013402,"id":11427,"parentId":11418,"tags":{},"startTime":1776957834223,"traceId":"d76ab653cbe90d54"},{"name":"code-generation-jobs","duration":78,"timestamp":7350888014259,"id":11428,"parentId":11418,"tags":{},"startTime":1776957834224,"traceId":"d76ab653cbe90d54"},{"name":"module-assets","duration":70,"timestamp":7350888014329,"id":11429,"parentId":11418,"tags":{},"startTime":1776957834224,"traceId":"d76ab653cbe90d54"},{"name":"create-chunk-assets","duration":442,"timestamp":7350888014401,"id":11430,"parentId":11418,"tags":{},"startTime":1776957834224,"traceId":"d76ab653cbe90d54"},{"name":"seal","duration":28164,"timestamp":7350887990179,"id":11418,"parentId":11383,"tags":{},"startTime":1776957834200,"traceId":"d76ab653cbe90d54"},{"name":"webpack-compilation","duration":89450,"timestamp":7350887934063,"id":11383,"parentId":11346,"tags":{"name":"server"},"startTime":1776957834144,"traceId":"d76ab653cbe90d54"},{"name":"emit","duration":8242,"timestamp":7350888023547,"id":11431,"parentId":11346,"tags":{},"startTime":1776957834233,"traceId":"d76ab653cbe90d54"},{"name":"compile-path","duration":213734,"timestamp":7350887818453,"id":11345,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776957834028,"traceId":"d76ab653cbe90d54"},{"name":"webpack-invalidated-server","duration":213470,"timestamp":7350887818853,"id":11346,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776957834029,"traceId":"d76ab653cbe90d54"}]
+[{"name":"hot-reloader","duration":29,"timestamp":7385098102305,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776992044290,"traceId":"27fab7e1c891f919"},{"name":"start","duration":1,"timestamp":7385098102875,"id":4,"parentId":3,"tags":{},"startTime":1776992044291,"traceId":"27fab7e1c891f919"},{"name":"get-version-info","duration":622870,"timestamp":7385098102977,"id":5,"parentId":4,"tags":{},"startTime":1776992044291,"traceId":"27fab7e1c891f919"},{"name":"clean","duration":3968,"timestamp":7385098725894,"id":6,"parentId":4,"tags":{},"startTime":1776992044914,"traceId":"27fab7e1c891f919"},{"name":"create-pages-mapping","duration":160,"timestamp":7385098730728,"id":8,"parentId":7,"tags":{},"startTime":1776992044919,"traceId":"27fab7e1c891f919"},{"name":"create-entrypoints","duration":284498,"timestamp":7385098730899,"id":9,"parentId":7,"tags":{},"startTime":1776992044919,"traceId":"27fab7e1c891f919"},{"name":"generate-webpack-config","duration":83874,"timestamp":7385099015433,"id":10,"parentId":7,"tags":{},"startTime":1776992045203,"traceId":"27fab7e1c891f919"},{"name":"get-webpack-config","duration":368661,"timestamp":7385098730662,"id":7,"parentId":4,"tags":{},"startTime":1776992044919,"traceId":"27fab7e1c891f919"},{"name":"make","duration":783,"timestamp":7385099143966,"id":12,"parentId":11,"tags":{},"startTime":1776992045332,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":362,"timestamp":7385099145927,"id":14,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":11,"timestamp":7385099146341,"id":16,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":60,"timestamp":7385099146433,"id":17,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":10,"timestamp":7385099146521,"id":18,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":10,"timestamp":7385099146607,"id":19,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":343,"timestamp":7385099146321,"id":15,"parentId":13,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":41,"timestamp":7385099146948,"id":20,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":81,"timestamp":7385099146999,"id":21,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":258,"timestamp":7385099147199,"id":22,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":30,"timestamp":7385099147456,"id":23,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":59,"timestamp":7385099147473,"id":24,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":147,"timestamp":7385099147541,"id":25,"parentId":13,"tags":{},"startTime":1776992045335,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":715,"timestamp":7385099223980,"id":27,"parentId":11,"tags":{},"startTime":1776992045412,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":1897,"timestamp":7385099222810,"id":26,"parentId":11,"tags":{},"startTime":1776992045411,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":79632,"timestamp":7385099145833,"id":13,"parentId":11,"tags":{},"startTime":1776992045334,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":83498,"timestamp":7385099142109,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776992045330,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":4075,"timestamp":7385099225810,"id":28,"parentId":3,"tags":{},"startTime":1776992045414,"traceId":"27fab7e1c891f919"},{"name":"make","duration":1079,"timestamp":7385099234635,"id":30,"parentId":29,"tags":{},"startTime":1776992045423,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":13,"timestamp":7385099235946,"id":32,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385099235970,"id":34,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":280,"timestamp":7385099236002,"id":35,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":7,"timestamp":7385099236312,"id":36,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":21,"timestamp":7385099236424,"id":37,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":603,"timestamp":7385099235967,"id":33,"parentId":31,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":5,"timestamp":7385099236646,"id":38,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":4,"timestamp":7385099236656,"id":39,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":33,"timestamp":7385099236681,"id":40,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":79,"timestamp":7385099236714,"id":41,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":66,"timestamp":7385099236730,"id":42,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":8,"timestamp":7385099236801,"id":43,"parentId":31,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":1316,"timestamp":7385099235924,"id":31,"parentId":29,"tags":{},"startTime":1776992045424,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":3300,"timestamp":7385099234011,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776992045422,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":1268,"timestamp":7385099237346,"id":44,"parentId":3,"tags":{},"startTime":1776992045425,"traceId":"27fab7e1c891f919"},{"name":"make","duration":87,"timestamp":7385099241202,"id":46,"parentId":45,"tags":{},"startTime":1776992045429,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":12,"timestamp":7385099241561,"id":48,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385099241583,"id":50,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":5,"timestamp":7385099241612,"id":51,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385099241624,"id":52,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385099241634,"id":53,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":64,"timestamp":7385099241580,"id":49,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099241692,"id":54,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":3,"timestamp":7385099241700,"id":55,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":34,"timestamp":7385099241726,"id":56,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":9,"timestamp":7385099241760,"id":57,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":4,"timestamp":7385099241766,"id":58,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7,"timestamp":7385099241772,"id":59,"parentId":47,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":508,"timestamp":7385099241545,"id":47,"parentId":45,"tags":{},"startTime":1776992045429,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1669,"timestamp":7385099240402,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776992045428,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":1085,"timestamp":7385099242089,"id":60,"parentId":3,"tags":{},"startTime":1776992045430,"traceId":"27fab7e1c891f919"}]
+[{"name":"make","duration":171,"timestamp":7385099471572,"id":65,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":13,"timestamp":7385099471832,"id":67,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385099471853,"id":69,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":4,"timestamp":7385099471864,"id":70,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385099471874,"id":71,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385099471885,"id":72,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":52,"timestamp":7385099471851,"id":68,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099471950,"id":73,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":3,"timestamp":7385099471957,"id":74,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":25,"timestamp":7385099471976,"id":75,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":8,"timestamp":7385099472001,"id":76,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":3,"timestamp":7385099472007,"id":77,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7,"timestamp":7385099472012,"id":78,"parentId":66,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":193,"timestamp":7385099472223,"id":80,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":228,"timestamp":7385099472191,"id":79,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":676,"timestamp":7385099471815,"id":66,"parentId":64,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1289,"timestamp":7385099471216,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776992045659,"traceId":"27fab7e1c891f919"},{"name":"setup-dev-bundler","duration":1525312,"timestamp":7385097972674,"id":2,"parentId":1,"tags":{},"startTime":1776992044161,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":27429,"timestamp":7385099472518,"id":81,"parentId":61,"tags":{},"startTime":1776992045660,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":32256,"timestamp":7385099468220,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045656,"traceId":"27fab7e1c891f919"},{"name":"make","duration":188,"timestamp":7385099501716,"id":83,"parentId":82,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":14,"timestamp":7385099501979,"id":85,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385099502000,"id":87,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":68,"timestamp":7385099502032,"id":88,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":3,"timestamp":7385099502107,"id":89,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385099502118,"id":90,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":133,"timestamp":7385099501998,"id":86,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099502255,"id":91,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":3,"timestamp":7385099502263,"id":92,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":31,"timestamp":7385099502280,"id":93,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":8,"timestamp":7385099502311,"id":94,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":3,"timestamp":7385099502317,"id":95,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7,"timestamp":7385099502323,"id":96,"parentId":84,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":532,"timestamp":7385099501965,"id":84,"parentId":82,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1376,"timestamp":7385099501140,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776992045689,"traceId":"27fab7e1c891f919"},{"name":"run-instrumentation-hook","duration":22,"timestamp":7385099530424,"id":98,"parentId":1,"tags":{},"startTime":1776992045718,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":37882,"timestamp":7385099502525,"id":97,"parentId":62,"tags":{},"startTime":1776992045690,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":72608,"timestamp":7385099468318,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045656,"traceId":"27fab7e1c891f919"},{"name":"make","duration":125,"timestamp":7385099547136,"id":100,"parentId":99,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":16,"timestamp":7385099547468,"id":102,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":11,"timestamp":7385099547496,"id":104,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":6,"timestamp":7385099547516,"id":105,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":58,"timestamp":7385099547529,"id":106,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385099547597,"id":107,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":121,"timestamp":7385099547490,"id":103,"parentId":101,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":4,"timestamp":7385099547661,"id":108,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":4,"timestamp":7385099547669,"id":109,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":32,"timestamp":7385099547690,"id":110,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":9,"timestamp":7385099547722,"id":111,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":4,"timestamp":7385099547728,"id":112,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":8,"timestamp":7385099547734,"id":113,"parentId":101,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":505,"timestamp":7385099547439,"id":101,"parentId":99,"tags":{},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1304,"timestamp":7385099546657,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776992045735,"traceId":"27fab7e1c891f919"},{"name":"start-dev-server","duration":2054591,"timestamp":7385097496098,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"112017408","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"211599360","memory.heapTotal":"105168896","memory.heapUsed":"78185096"},"startTime":1776992043684,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":31542,"timestamp":7385099547970,"id":114,"parentId":63,"tags":{},"startTime":1776992045736,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-edge-server","duration":111882,"timestamp":7385099468336,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045656,"traceId":"27fab7e1c891f919"}]
+[{"name":"build-module","duration":76233,"timestamp":7385099624299,"id":121,"parentId":120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776992045812,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":94118,"timestamp":7385099724533,"id":126,"parentId":125,"tags":{},"startTime":1776992045912,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":94606,"timestamp":7385099724061,"id":125,"parentId":122,"tags":{},"startTime":1776992045912,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":117237,"timestamp":7385099720916,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776992045909,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":108343,"timestamp":7385099729896,"id":140,"parentId":139,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":108421,"timestamp":7385099729821,"id":139,"parentId":134,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":115393,"timestamp":7385099728769,"id":134,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776992045917,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":119350,"timestamp":7385099724873,"id":130,"parentId":129,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":119563,"timestamp":7385099724664,"id":129,"parentId":124,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":122160,"timestamp":7385099723648,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/layout.tsx","layer":"rsc"},"startTime":1776992045912,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":121532,"timestamp":7385099724662,"id":128,"parentId":127,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":121637,"timestamp":7385099724560,"id":127,"parentId":123,"tags":{},"startTime":1776992045913,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":123465,"timestamp":7385099723422,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"rsc"},"startTime":1776992045911,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":119010,"timestamp":7385099729940,"id":142,"parentId":141,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":119054,"timestamp":7385099729900,"id":141,"parentId":135,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":122175,"timestamp":7385099728936,"id":135,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776992045917,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":122649,"timestamp":7385099729745,"id":136,"parentId":131,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":95,"timestamp":7385099852426,"id":143,"parentId":131,"tags":{},"startTime":1776992046040,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":127577,"timestamp":7385099726094,"id":131,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776992045914,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":123919,"timestamp":7385099729816,"id":138,"parentId":133,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71,"timestamp":7385099853746,"id":144,"parentId":133,"tags":{},"startTime":1776992046042,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":126512,"timestamp":7385099728565,"id":133,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776992045917,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":125301,"timestamp":7385099729808,"id":137,"parentId":132,"tags":{},"startTime":1776992045918,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385099855118,"id":145,"parentId":132,"tags":{},"startTime":1776992046043,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":129969,"timestamp":7385099728212,"id":132,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776992045916,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":266,"timestamp":7385099863251,"id":146,"parentId":133,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776992046051,"traceId":"27fab7e1c891f919"},{"name":"build-module-external","duration":12,"timestamp":7385099867627,"id":150,"parentId":132,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-external","duration":4,"timestamp":7385099867647,"id":151,"parentId":132,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-external","duration":3,"timestamp":7385099867654,"id":152,"parentId":132,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2193,"timestamp":7385099868001,"id":162,"parentId":161,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2229,"timestamp":7385099867969,"id":161,"parentId":153,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2976,"timestamp":7385099867660,"id":153,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2414,"timestamp":7385099868239,"id":166,"parentId":165,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2561,"timestamp":7385099868093,"id":165,"parentId":155,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3251,"timestamp":7385099867733,"id":155,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3402,"timestamp":7385099868033,"id":164,"parentId":163,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3434,"timestamp":7385099868003,"id":163,"parentId":154,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3967,"timestamp":7385099867700,"id":154,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3830,"timestamp":7385099867903,"id":160,"parentId":159,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3893,"timestamp":7385099867842,"id":159,"parentId":149,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4405,"timestamp":7385099867553,"id":149,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5516,"timestamp":7385099868311,"id":170,"parentId":169,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5541,"timestamp":7385099868290,"id":169,"parentId":157,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7350,"timestamp":7385099867788,"id":157,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6889,"timestamp":7385099868286,"id":168,"parentId":167,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6934,"timestamp":7385099868242,"id":167,"parentId":156,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8444,"timestamp":7385099867762,"id":156,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7893,"timestamp":7385099868325,"id":172,"parentId":171,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7905,"timestamp":7385099868314,"id":171,"parentId":158,"tags":{},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8559,"timestamp":7385099867817,"id":158,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776992046056,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11355,"timestamp":7385099866993,"id":148,"parentId":147,"tags":{},"startTime":1776992046055,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":12409,"timestamp":7385099866291,"id":147,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776992046054,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8516,"timestamp":7385099871399,"id":177,"parentId":173,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385099879934,"id":181,"parentId":173,"tags":{},"startTime":1776992046068,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9673,"timestamp":7385099871083,"id":173,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9358,"timestamp":7385099871413,"id":178,"parentId":174,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385099880779,"id":182,"parentId":174,"tags":{},"startTime":1776992046069,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9850,"timestamp":7385099871184,"id":174,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9622,"timestamp":7385099871420,"id":180,"parentId":176,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385099881050,"id":183,"parentId":176,"tags":{},"startTime":1776992046069,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20672,"timestamp":7385099871299,"id":176,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20652,"timestamp":7385099871417,"id":179,"parentId":175,"tags":{},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40,"timestamp":7385099892078,"id":184,"parentId":175,"tags":{},"startTime":1776992046080,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21765,"timestamp":7385099871246,"id":175,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776992046059,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":4151,"timestamp":7385099897276,"id":186,"parentId":185,"tags":{},"startTime":1776992046085,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":106,"timestamp":7385099901437,"id":193,"parentId":185,"tags":{},"startTime":1776992046089,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6381,"timestamp":7385099896960,"id":185,"parentId":157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776992046085,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5985,"timestamp":7385099899462,"id":188,"parentId":187,"tags":{},"startTime":1776992046087,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099905455,"id":202,"parentId":187,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6395,"timestamp":7385099899354,"id":187,"parentId":134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1776992046087,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6997,"timestamp":7385099900555,"id":191,"parentId":189,"tags":{},"startTime":1776992046089,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385099907560,"id":209,"parentId":189,"tags":{},"startTime":1776992046096,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8097,"timestamp":7385099900425,"id":189,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776992046088,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7964,"timestamp":7385099900566,"id":192,"parentId":190,"tags":{},"startTime":1776992046089,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099908536,"id":210,"parentId":190,"tags":{},"startTime":1776992046096,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8287,"timestamp":7385099900499,"id":190,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776992046088,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6545,"timestamp":7385099904790,"id":198,"parentId":194,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385099911343,"id":218,"parentId":194,"tags":{},"startTime":1776992046099,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8177,"timestamp":7385099904557,"id":194,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":7960,"timestamp":7385099904802,"id":199,"parentId":195,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":71,"timestamp":7385099912774,"id":219,"parentId":195,"tags":{},"startTime":1776992046101,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9301,"timestamp":7385099904640,"id":195,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9153,"timestamp":7385099904808,"id":200,"parentId":196,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41,"timestamp":7385099913971,"id":220,"parentId":196,"tags":{},"startTime":1776992046102,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11570,"timestamp":7385099904693,"id":196,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11455,"timestamp":7385099904817,"id":201,"parentId":197,"tags":{},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":74,"timestamp":7385099916278,"id":221,"parentId":197,"tags":{},"startTime":1776992046104,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12324,"timestamp":7385099904738,"id":197,"parentId":176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776992046093,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7659,"timestamp":7385099909590,"id":215,"parentId":214,"tags":{},"startTime":1776992046098,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7691,"timestamp":7385099909560,"id":214,"parentId":212,"tags":{},"startTime":1776992046098,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8272,"timestamp":7385099909417,"id":212,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776992046097,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11780,"timestamp":7385099905918,"id":204,"parentId":203,"tags":{},"startTime":1776992046094,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385099917704,"id":222,"parentId":203,"tags":{},"startTime":1776992046106,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12329,"timestamp":7385099905854,"id":203,"parentId":157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776992046094,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14699,"timestamp":7385099907293,"id":207,"parentId":205,"tags":{},"startTime":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099922004,"id":230,"parentId":205,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15137,"timestamp":7385099907162,"id":205,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":15142,"timestamp":7385099907301,"id":208,"parentId":206,"tags":{},"startTime":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385099922450,"id":231,"parentId":206,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15415,"timestamp":7385099907235,"id":206,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server-edge.js","layer":"rsc"},"startTime":1776992046095,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13213,"timestamp":7385099909458,"id":213,"parentId":211,"tags":{},"startTime":1776992046097,"traceId":"27fab7e1c891f919"}]
+[{"name":"next-swc-loader","duration":28,"timestamp":7385099922769,"id":232,"parentId":211,"tags":{},"startTime":1776992046111,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14335,"timestamp":7385099909350,"id":211,"parentId":185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776992046097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3065,"timestamp":7385099921940,"id":229,"parentId":228,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3124,"timestamp":7385099921884,"id":228,"parentId":227,"tags":{},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":3670,"timestamp":7385099921760,"id":227,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776992046110,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":14232,"timestamp":7385099911206,"id":217,"parentId":216,"tags":{},"startTime":1776992046099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099925443,"id":233,"parentId":216,"tags":{},"startTime":1776992046113,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14450,"timestamp":7385099911123,"id":216,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1776992046099,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":5872,"timestamp":7385099920646,"id":226,"parentId":224,"tags":{},"startTime":1776992046109,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385099926525,"id":234,"parentId":224,"tags":{},"startTime":1776992046114,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6135,"timestamp":7385099920531,"id":224,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js","layer":"rsc"},"startTime":1776992046108,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":6058,"timestamp":7385099920633,"id":225,"parentId":223,"tags":{},"startTime":1776992046109,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1693,"timestamp":7385099926982,"id":238,"parentId":237,"tags":{},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":83,"timestamp":7385099928693,"id":239,"parentId":237,"tags":{},"startTime":1776992046117,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3119,"timestamp":7385099926870,"id":237,"parentId":197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3602,"timestamp":7385099926747,"id":236,"parentId":235,"tags":{},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3655,"timestamp":7385099926696,"id":235,"parentId":223,"tags":{},"startTime":1776992046115,"traceId":"27fab7e1c891f919"},{"name":"build-module-mjs","duration":10725,"timestamp":7385099920130,"id":223,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776992046108,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3758,"timestamp":7385099943540,"id":241,"parentId":240,"tags":{},"startTime":1776992046131,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385099947315,"id":244,"parentId":240,"tags":{},"startTime":1776992046135,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4215,"timestamp":7385099943394,"id":240,"parentId":173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1776992046131,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2763,"timestamp":7385099946337,"id":243,"parentId":242,"tags":{},"startTime":1776992046134,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385099949115,"id":247,"parentId":242,"tags":{},"startTime":1776992046137,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3359,"timestamp":7385099946205,"id":242,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776992046134,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1891,"timestamp":7385099948096,"id":246,"parentId":245,"tags":{},"startTime":1776992046136,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54,"timestamp":7385099949994,"id":248,"parentId":245,"tags":{},"startTime":1776992046138,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15275,"timestamp":7385099947879,"id":245,"parentId":196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776992046136,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":366107,"timestamp":7385099599003,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992045787,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":1716,"timestamp":7385099982757,"id":254,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992046171,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":104,"timestamp":7385099984496,"id":255,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=true!","layer":"ssr"},"startTime":1776992046172,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":895,"timestamp":7385099984607,"id":256,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776992046173,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":3224,"timestamp":7385099985516,"id":257,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992046173,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2457,"timestamp":7385099995228,"id":260,"parentId":259,"tags":{},"startTime":1776992046183,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2596,"timestamp":7385099995096,"id":259,"parentId":258,"tags":{},"startTime":1776992046183,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5255,"timestamp":7385099993399,"id":258,"parentId":254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"ssr"},"startTime":1776992046181,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7895,"timestamp":7385099997365,"id":273,"parentId":272,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7923,"timestamp":7385099997357,"id":272,"parentId":264,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9158,"timestamp":7385099997213,"id":264,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9090,"timestamp":7385099997322,"id":267,"parentId":266,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9143,"timestamp":7385099997271,"id":266,"parentId":261,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":10875,"timestamp":7385099996882,"id":261,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10589,"timestamp":7385099997345,"id":269,"parentId":268,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10612,"timestamp":7385099997324,"id":268,"parentId":262,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12181,"timestamp":7385099996964,"id":262,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11831,"timestamp":7385099997356,"id":271,"parentId":270,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11841,"timestamp":7385099997347,"id":270,"parentId":263,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15902,"timestamp":7385099997172,"id":263,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12815,"timestamp":7385100000330,"id":279,"parentId":278,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12861,"timestamp":7385100000286,"id":278,"parentId":276,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14202,"timestamp":7385099999753,"id":276,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16603,"timestamp":7385099997373,"id":275,"parentId":274,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16611,"timestamp":7385099997366,"id":274,"parentId":265,"tags":{},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18008,"timestamp":7385099997235,"id":265,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776992046185,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19499,"timestamp":7385100000349,"id":281,"parentId":280,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19517,"timestamp":7385100000337,"id":280,"parentId":277,"tags":{},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23294,"timestamp":7385099999804,"id":277,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776992046188,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":207,"timestamp":7385100028488,"id":283,"parentId":282,"tags":{},"startTime":1776992046216,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":72,"timestamp":7385100030687,"id":288,"parentId":286,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385100030770,"id":291,"parentId":286,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":701,"timestamp":7385100030509,"id":286,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776992046218,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4628,"timestamp":7385100028772,"id":285,"parentId":284,"tags":{},"startTime":1776992046217,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4695,"timestamp":7385100028710,"id":284,"parentId":282,"tags":{},"startTime":1776992046217,"traceId":"27fab7e1c891f919"},{"name":"build-module-mjs","duration":10902,"timestamp":7385100028077,"id":282,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776992046216,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8573,"timestamp":7385100030721,"id":290,"parentId":289,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8606,"timestamp":7385100030690,"id":289,"parentId":287,"tags":{},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9150,"timestamp":7385100030640,"id":287,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776992046219,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9065,"timestamp":7385100042392,"id":303,"parentId":302,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9080,"timestamp":7385100042384,"id":302,"parentId":294,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10181,"timestamp":7385100042166,"id":294,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9991,"timestamp":7385100042383,"id":301,"parentId":300,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10003,"timestamp":7385100042372,"id":300,"parentId":293,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10877,"timestamp":7385100042138,"id":293,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11404,"timestamp":7385100042401,"id":305,"parentId":304,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11423,"timestamp":7385100042393,"id":304,"parentId":295,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13481,"timestamp":7385100042192,"id":295,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14096,"timestamp":7385100042369,"id":299,"parentId":298,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14158,"timestamp":7385100042337,"id":298,"parentId":292,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16115,"timestamp":7385100042060,"id":292,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15798,"timestamp":7385100042409,"id":307,"parentId":306,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15807,"timestamp":7385100042402,"id":306,"parentId":296,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16493,"timestamp":7385100042212,"id":296,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16327,"timestamp":7385100042417,"id":309,"parentId":308,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16336,"timestamp":7385100042410,"id":308,"parentId":297,"tags":{},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17608,"timestamp":7385100042232,"id":297,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776992046230,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1649,"timestamp":7385100065658,"id":338,"parentId":328,"tags":{},"startTime":1776992046254,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1692,"timestamp":7385100065677,"id":339,"parentId":329,"tags":{},"startTime":1776992046254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":230,"timestamp":7385100067324,"id":356,"parentId":328,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":183,"timestamp":7385100067374,"id":357,"parentId":329,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4758,"timestamp":7385100063869,"id":328,"parentId":287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4838,"timestamp":7385100064022,"id":329,"parentId":287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17589,"timestamp":7385100051314,"id":323,"parentId":322,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17599,"timestamp":7385100051306,"id":322,"parentId":313,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19954,"timestamp":7385100050409,"id":313,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19082,"timestamp":7385100051304,"id":321,"parentId":320,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19093,"timestamp":7385100051295,"id":320,"parentId":312,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20437,"timestamp":7385100050300,"id":312,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19482,"timestamp":7385100051269,"id":317,"parentId":316,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19569,"timestamp":7385100051184,"id":316,"parentId":310,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21073,"timestamp":7385100049949,"id":310,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19740,"timestamp":7385100051293,"id":319,"parentId":318,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19757,"timestamp":7385100051277,"id":318,"parentId":311,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"}]
+[{"name":"build-module-js","duration":21168,"timestamp":7385100050208,"id":311,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21323,"timestamp":7385100051333,"id":327,"parentId":326,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21334,"timestamp":7385100051325,"id":326,"parentId":315,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22568,"timestamp":7385100050534,"id":315,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21821,"timestamp":7385100051323,"id":325,"parentId":324,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21830,"timestamp":7385100051316,"id":324,"parentId":314,"tags":{},"startTime":1776992046239,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23205,"timestamp":7385100050499,"id":314,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776992046238,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9307,"timestamp":7385100066595,"id":343,"parentId":342,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9321,"timestamp":7385100066583,"id":342,"parentId":331,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12008,"timestamp":7385100064111,"id":331,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9557,"timestamp":7385100066579,"id":341,"parentId":340,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9599,"timestamp":7385100066538,"id":340,"parentId":330,"tags":{},"startTime":1776992046254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13021,"timestamp":7385100064080,"id":330,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10520,"timestamp":7385100066616,"id":347,"parentId":346,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10531,"timestamp":7385100066608,"id":346,"parentId":333,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13131,"timestamp":7385100064215,"id":333,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10752,"timestamp":7385100066606,"id":345,"parentId":344,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10761,"timestamp":7385100066597,"id":344,"parentId":332,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13527,"timestamp":7385100064134,"id":332,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11026,"timestamp":7385100066645,"id":353,"parentId":352,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11035,"timestamp":7385100066637,"id":352,"parentId":336,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13558,"timestamp":7385100064276,"id":336,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12102,"timestamp":7385100066655,"id":355,"parentId":354,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12112,"timestamp":7385100066647,"id":354,"parentId":337,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14609,"timestamp":7385100064397,"id":337,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12601,"timestamp":7385100066635,"id":351,"parentId":350,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12611,"timestamp":7385100066627,"id":350,"parentId":335,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15194,"timestamp":7385100064257,"id":335,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12885,"timestamp":7385100066626,"id":349,"parentId":348,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12894,"timestamp":7385100066618,"id":348,"parentId":334,"tags":{},"startTime":1776992046255,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15623,"timestamp":7385100064237,"id":334,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"ssr"},"startTime":1776992046252,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2133,"timestamp":7385100080964,"id":367,"parentId":366,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2143,"timestamp":7385100080956,"id":366,"parentId":360,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2471,"timestamp":7385100080805,"id":360,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2366,"timestamp":7385100080943,"id":363,"parentId":362,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2394,"timestamp":7385100080916,"id":362,"parentId":358,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2742,"timestamp":7385100080708,"id":358,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2528,"timestamp":7385100080972,"id":369,"parentId":368,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2536,"timestamp":7385100080965,"id":368,"parentId":361,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3130,"timestamp":7385100080832,"id":361,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3092,"timestamp":7385100080955,"id":365,"parentId":364,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3103,"timestamp":7385100080945,"id":364,"parentId":359,"tags":{},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3408,"timestamp":7385100080777,"id":359,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776992046269,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":680,"timestamp":7385100086827,"id":374,"parentId":370,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":92,"timestamp":7385100087553,"id":381,"parentId":370,"tags":{},"startTime":1776992046276,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2556,"timestamp":7385100086473,"id":370,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776992046274,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14727,"timestamp":7385100086873,"id":378,"parentId":377,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14747,"timestamp":7385100086863,"id":377,"parentId":372,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16262,"timestamp":7385100086770,"id":372,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16264,"timestamp":7385100086860,"id":376,"parentId":375,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16297,"timestamp":7385100086831,"id":375,"parentId":371,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16865,"timestamp":7385100086724,"id":371,"parentId":328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17592,"timestamp":7385100086883,"id":380,"parentId":379,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17603,"timestamp":7385100086874,"id":379,"parentId":373,"tags":{},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22075,"timestamp":7385100086796,"id":373,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"ssr"},"startTime":1776992046275,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4390,"timestamp":7385100113877,"id":394,"parentId":393,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4442,"timestamp":7385100113833,"id":393,"parentId":383,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5591,"timestamp":7385100113263,"id":383,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4976,"timestamp":7385100113902,"id":398,"parentId":397,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4986,"timestamp":7385100113893,"id":397,"parentId":385,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5800,"timestamp":7385100113380,"id":385,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5312,"timestamp":7385100113892,"id":396,"parentId":395,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5324,"timestamp":7385100113880,"id":395,"parentId":384,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7089,"timestamp":7385100113315,"id":384,"parentId":293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6509,"timestamp":7385100113912,"id":400,"parentId":399,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6518,"timestamp":7385100113903,"id":399,"parentId":387,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7106,"timestamp":7385100113461,"id":387,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6812,"timestamp":7385100113923,"id":402,"parentId":401,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6824,"timestamp":7385100113914,"id":401,"parentId":388,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7399,"timestamp":7385100113483,"id":388,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10960,"timestamp":7385100113943,"id":406,"parentId":405,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10972,"timestamp":7385100113935,"id":405,"parentId":390,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12390,"timestamp":7385100113526,"id":390,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12081,"timestamp":7385100113934,"id":404,"parentId":403,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12095,"timestamp":7385100113924,"id":403,"parentId":389,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14027,"timestamp":7385100113504,"id":389,"parentId":314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8848,"timestamp":7385100122929,"id":419,"parentId":418,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8867,"timestamp":7385100122918,"id":418,"parentId":409,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9872,"timestamp":7385100122510,"id":409,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9475,"timestamp":7385100122939,"id":421,"parentId":420,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9485,"timestamp":7385100122930,"id":420,"parentId":410,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10569,"timestamp":7385100122534,"id":410,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10202,"timestamp":7385100122915,"id":417,"parentId":416,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10238,"timestamp":7385100122880,"id":416,"parentId":408,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10883,"timestamp":7385100122477,"id":408,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10429,"timestamp":7385100122948,"id":423,"parentId":422,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10438,"timestamp":7385100122940,"id":422,"parentId":411,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11364,"timestamp":7385100122564,"id":411,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11380,"timestamp":7385100122973,"id":429,"parentId":428,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11389,"timestamp":7385100122966,"id":428,"parentId":414,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12033,"timestamp":7385100122627,"id":414,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11719,"timestamp":7385100122965,"id":427,"parentId":426,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11728,"timestamp":7385100122958,"id":426,"parentId":413,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12483,"timestamp":7385100122604,"id":413,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12185,"timestamp":7385100122956,"id":425,"parentId":424,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12194,"timestamp":7385100122949,"id":424,"parentId":412,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13827,"timestamp":7385100122584,"id":412,"parentId":334,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27780,"timestamp":7385100113646,"id":392,"parentId":386,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385100141437,"id":436,"parentId":386,"tags":{},"startTime":1776992046329,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29519,"timestamp":7385100113409,"id":386,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29322,"timestamp":7385100113620,"id":391,"parentId":382,"tags":{},"startTime":1776992046302,"traceId":"27fab7e1c891f919"}]
+[{"name":"next-swc-loader","duration":134,"timestamp":7385100143220,"id":437,"parentId":382,"tags":{},"startTime":1776992046331,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32575,"timestamp":7385100113106,"id":382,"parentId":295,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776992046301,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":33283,"timestamp":7385100122673,"id":415,"parentId":407,"tags":{},"startTime":1776992046311,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385100155984,"id":444,"parentId":407,"tags":{},"startTime":1776992046344,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34138,"timestamp":7385100122365,"id":407,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js","layer":"ssr"},"startTime":1776992046310,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11602,"timestamp":7385100147258,"id":441,"parentId":440,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11642,"timestamp":7385100147224,"id":440,"parentId":438,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12905,"timestamp":7385100146769,"id":438,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12450,"timestamp":7385100147271,"id":443,"parentId":442,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12462,"timestamp":7385100147261,"id":442,"parentId":439,"tags":{},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13436,"timestamp":7385100147013,"id":439,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776992046335,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":478,"timestamp":7385100162885,"id":452,"parentId":445,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":468,"timestamp":7385100163372,"id":463,"parentId":445,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1754,"timestamp":7385100162520,"id":445,"parentId":386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776992046350,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28613,"timestamp":7385100137952,"id":435,"parentId":432,"tags":{},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385100166575,"id":464,"parentId":432,"tags":{},"startTime":1776992046355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29480,"timestamp":7385100137857,"id":432,"parentId":335,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29427,"timestamp":7385100137923,"id":433,"parentId":430,"tags":{},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385100167357,"id":465,"parentId":430,"tags":{},"startTime":1776992046355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29826,"timestamp":7385100137681,"id":430,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":29603,"timestamp":7385100137943,"id":434,"parentId":431,"tags":{},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385100167551,"id":466,"parentId":431,"tags":{},"startTime":1776992046356,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29844,"timestamp":7385100137804,"id":431,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1776992046326,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5654,"timestamp":7385100163256,"id":458,"parentId":457,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5668,"timestamp":7385100163245,"id":457,"parentId":447,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6487,"timestamp":7385100162673,"id":447,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5909,"timestamp":7385100163266,"id":460,"parentId":459,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5919,"timestamp":7385100163258,"id":459,"parentId":450,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7356,"timestamp":7385100162792,"id":450,"parentId":389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7925,"timestamp":7385100163278,"id":462,"parentId":461,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7938,"timestamp":7385100163268,"id":461,"parentId":451,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8703,"timestamp":7385100162813,"id":451,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8681,"timestamp":7385100163242,"id":456,"parentId":455,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8717,"timestamp":7385100163208,"id":455,"parentId":446,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9487,"timestamp":7385100162635,"id":446,"parentId":384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5792,"timestamp":7385100168767,"id":472,"parentId":471,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5818,"timestamp":7385100168756,"id":471,"parentId":468,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8139,"timestamp":7385100167997,"id":468,"parentId":412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776992046356,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8242,"timestamp":7385100168752,"id":470,"parentId":469,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8274,"timestamp":7385100168724,"id":469,"parentId":467,"tags":{},"startTime":1776992046357,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10365,"timestamp":7385100167936,"id":467,"parentId":413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776992046356,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6563,"timestamp":7385100172969,"id":485,"parentId":484,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6576,"timestamp":7385100172960,"id":484,"parentId":475,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8638,"timestamp":7385100172582,"id":475,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"ssr"},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8287,"timestamp":7385100172959,"id":483,"parentId":482,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8298,"timestamp":7385100172949,"id":482,"parentId":474,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9823,"timestamp":7385100172550,"id":474,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"ssr"},"startTime":1776992046360,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9445,"timestamp":7385100172947,"id":481,"parentId":480,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9471,"timestamp":7385100172922,"id":480,"parentId":473,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10137,"timestamp":7385100172475,"id":473,"parentId":385,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776992046360,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9632,"timestamp":7385100172990,"id":489,"parentId":488,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9640,"timestamp":7385100172982,"id":488,"parentId":477,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10135,"timestamp":7385100172645,"id":477,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"ssr"},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10790,"timestamp":7385100172981,"id":487,"parentId":486,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10803,"timestamp":7385100172970,"id":486,"parentId":476,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11586,"timestamp":7385100172624,"id":476,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"ssr"},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11243,"timestamp":7385100173006,"id":493,"parentId":492,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11251,"timestamp":7385100172999,"id":492,"parentId":479,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11866,"timestamp":7385100172682,"id":479,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"ssr"},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":21888,"timestamp":7385100162888,"id":453,"parentId":448,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385100184783,"id":496,"parentId":448,"tags":{},"startTime":1776992046373,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22244,"timestamp":7385100162698,"id":448,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22044,"timestamp":7385100162904,"id":454,"parentId":449,"tags":{},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27,"timestamp":7385100184952,"id":497,"parentId":449,"tags":{},"startTime":1776992046373,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22762,"timestamp":7385100162746,"id":449,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776992046351,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12524,"timestamp":7385100172998,"id":491,"parentId":490,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12533,"timestamp":7385100172991,"id":490,"parentId":478,"tags":{},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15229,"timestamp":7385100172664,"id":478,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"ssr"},"startTime":1776992046361,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":25457,"timestamp":7385100178783,"id":495,"parentId":494,"tags":{},"startTime":1776992046367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385100204255,"id":512,"parentId":494,"tags":{},"startTime":1776992046392,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25842,"timestamp":7385100178664,"id":494,"parentId":330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client-edge.js","layer":"ssr"},"startTime":1776992046367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2894,"timestamp":7385100203085,"id":509,"parentId":508,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2934,"timestamp":7385100203047,"id":508,"parentId":504,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4487,"timestamp":7385100202503,"id":504,"parentId":432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776992046390,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5422,"timestamp":7385100203122,"id":511,"parentId":510,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5473,"timestamp":7385100203088,"id":510,"parentId":506,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":9830,"timestamp":7385100202628,"id":506,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7096,"timestamp":7385100205435,"id":535,"parentId":534,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7110,"timestamp":7385100205428,"id":534,"parentId":515,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8086,"timestamp":7385100204919,"id":515,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7596,"timestamp":7385100205427,"id":533,"parentId":532,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7607,"timestamp":7385100205417,"id":532,"parentId":514,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8520,"timestamp":7385100204886,"id":514,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10452,"timestamp":7385100205444,"id":537,"parentId":536,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10464,"timestamp":7385100205436,"id":536,"parentId":516,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11726,"timestamp":7385100204951,"id":516,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11249,"timestamp":7385100205452,"id":539,"parentId":538,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11257,"timestamp":7385100205445,"id":538,"parentId":517,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12498,"timestamp":7385100204971,"id":517,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12089,"timestamp":7385100205415,"id":531,"parentId":530,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12113,"timestamp":7385100205391,"id":530,"parentId":513,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13993,"timestamp":7385100204839,"id":513,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13397,"timestamp":7385100205460,"id":541,"parentId":540,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13406,"timestamp":7385100205453,"id":540,"parentId":518,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15898,"timestamp":7385100204994,"id":518,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15448,"timestamp":7385100205469,"id":543,"parentId":542,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15457,"timestamp":7385100205461,"id":542,"parentId":519,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16292,"timestamp":7385100205018,"id":519,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15824,"timestamp":7385100205501,"id":551,"parentId":550,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15832,"timestamp":7385100205494,"id":550,"parentId":523,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18151,"timestamp":7385100205090,"id":523,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"}]
+[{"name":"next-swc-transform","duration":17890,"timestamp":7385100205485,"id":547,"parentId":546,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17899,"timestamp":7385100205478,"id":546,"parentId":521,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18975,"timestamp":7385100205054,"id":521,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18552,"timestamp":7385100205493,"id":549,"parentId":548,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18561,"timestamp":7385100205486,"id":548,"parentId":522,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19258,"timestamp":7385100205073,"id":522,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18894,"timestamp":7385100205477,"id":545,"parentId":544,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18902,"timestamp":7385100205470,"id":544,"parentId":520,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20794,"timestamp":7385100205036,"id":520,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20330,"timestamp":7385100205518,"id":555,"parentId":554,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20340,"timestamp":7385100205510,"id":554,"parentId":525,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21069,"timestamp":7385100205124,"id":525,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20709,"timestamp":7385100205509,"id":553,"parentId":552,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20717,"timestamp":7385100205502,"id":552,"parentId":524,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21363,"timestamp":7385100205107,"id":524,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32018,"timestamp":7385100205586,"id":559,"parentId":558,"tags":{},"startTime":1776992046394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32045,"timestamp":7385100205566,"id":558,"parentId":528,"tags":{},"startTime":1776992046394,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32997,"timestamp":7385100205257,"id":528,"parentId":468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32711,"timestamp":7385100205565,"id":557,"parentId":556,"tags":{},"startTime":1776992046394,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32759,"timestamp":7385100205519,"id":556,"parentId":527,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51687,"timestamp":7385100205208,"id":527,"parentId":467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":51194,"timestamp":7385100207395,"id":564,"parentId":563,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51222,"timestamp":7385100207373,"id":563,"parentId":560,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":53920,"timestamp":7385100207250,"id":560,"parentId":479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":53793,"timestamp":7385100207407,"id":566,"parentId":565,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":54053,"timestamp":7385100207396,"id":565,"parentId":561,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":55564,"timestamp":7385100207301,"id":561,"parentId":476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"ssr"},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":55856,"timestamp":7385100207416,"id":568,"parentId":567,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":55868,"timestamp":7385100207407,"id":567,"parentId":562,"tags":{},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56995,"timestamp":7385100207331,"id":562,"parentId":479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"ssr"},"startTime":1776992046395,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":67342,"timestamp":7385100198798,"id":502,"parentId":499,"tags":{},"startTime":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":121,"timestamp":7385100266192,"id":569,"parentId":499,"tags":{},"startTime":1776992046454,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":74379,"timestamp":7385100198531,"id":499,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1776992046386,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":74140,"timestamp":7385100198806,"id":503,"parentId":500,"tags":{},"startTime":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52,"timestamp":7385100272960,"id":570,"parentId":500,"tags":{},"startTime":1776992046461,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":83976,"timestamp":7385100198630,"id":500,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":90143,"timestamp":7385100198771,"id":501,"parentId":498,"tags":{},"startTime":1776992046387,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":104,"timestamp":7385100288962,"id":571,"parentId":498,"tags":{},"startTime":1776992046477,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":97313,"timestamp":7385100198392,"id":498,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1776992046386,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":93235,"timestamp":7385100202854,"id":507,"parentId":505,"tags":{},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385100296106,"id":572,"parentId":505,"tags":{},"startTime":1776992046484,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":94068,"timestamp":7385100202575,"id":505,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776992046391,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":100546,"timestamp":7385100205282,"id":529,"parentId":526,"tags":{},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30,"timestamp":7385100305844,"id":573,"parentId":526,"tags":{},"startTime":1776992046494,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":101009,"timestamp":7385100205142,"id":526,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776992046393,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2711,"timestamp":7385100324020,"id":588,"parentId":587,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2727,"timestamp":7385100324011,"id":587,"parentId":576,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3524,"timestamp":7385100323768,"id":576,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3291,"timestamp":7385100324030,"id":590,"parentId":589,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3300,"timestamp":7385100324021,"id":589,"parentId":577,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4687,"timestamp":7385100323793,"id":577,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4515,"timestamp":7385100324010,"id":586,"parentId":585,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4528,"timestamp":7385100323999,"id":585,"parentId":575,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5360,"timestamp":7385100323735,"id":575,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5081,"timestamp":7385100324038,"id":592,"parentId":591,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5089,"timestamp":7385100324031,"id":591,"parentId":578,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5531,"timestamp":7385100323814,"id":578,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8076,"timestamp":7385100324047,"id":594,"parentId":593,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8087,"timestamp":7385100324039,"id":593,"parentId":579,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8673,"timestamp":7385100323835,"id":579,"parentId":513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8496,"timestamp":7385100324063,"id":598,"parentId":597,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8505,"timestamp":7385100324056,"id":597,"parentId":581,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9008,"timestamp":7385100323877,"id":581,"parentId":513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9730,"timestamp":7385100324055,"id":596,"parentId":595,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9741,"timestamp":7385100324048,"id":595,"parentId":580,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10196,"timestamp":7385100323856,"id":580,"parentId":513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10109,"timestamp":7385100323996,"id":584,"parentId":583,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10150,"timestamp":7385100323956,"id":583,"parentId":574,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11742,"timestamp":7385100323641,"id":574,"parentId":515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8796,"timestamp":7385100326604,"id":608,"parentId":607,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8823,"timestamp":7385100326579,"id":607,"parentId":602,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9157,"timestamp":7385100326418,"id":602,"parentId":527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8969,"timestamp":7385100326616,"id":610,"parentId":609,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8980,"timestamp":7385100326606,"id":609,"parentId":603,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9319,"timestamp":7385100326450,"id":603,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9153,"timestamp":7385100326625,"id":612,"parentId":611,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9162,"timestamp":7385100326617,"id":611,"parentId":604,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9556,"timestamp":7385100326483,"id":604,"parentId":561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11979,"timestamp":7385100324071,"id":600,"parentId":599,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11987,"timestamp":7385100324064,"id":599,"parentId":582,"tags":{},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12318,"timestamp":7385100323896,"id":582,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"ssr"},"startTime":1776992046512,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9591,"timestamp":7385100326634,"id":614,"parentId":613,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9600,"timestamp":7385100326626,"id":613,"parentId":605,"tags":{},"startTime":1776992046515,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10306,"timestamp":7385100326504,"id":605,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6123,"timestamp":7385100331918,"id":622,"parentId":621,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6150,"timestamp":7385100331892,"id":621,"parentId":615,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6913,"timestamp":7385100331257,"id":615,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6249,"timestamp":7385100331931,"id":624,"parentId":623,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6260,"timestamp":7385100331920,"id":623,"parentId":616,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6989,"timestamp":7385100331355,"id":616,"parentId":523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"ssr"},"startTime":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6411,"timestamp":7385100331941,"id":626,"parentId":625,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6420,"timestamp":7385100331933,"id":625,"parentId":617,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7064,"timestamp":7385100331430,"id":617,"parentId":523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"ssr"},"startTime":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6782,"timestamp":7385100331950,"id":628,"parentId":627,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6791,"timestamp":7385100331942,"id":627,"parentId":618,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7416,"timestamp":7385100331484,"id":618,"parentId":523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"ssr"},"startTime":1776992046519,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8055,"timestamp":7385100331958,"id":630,"parentId":629,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8220,"timestamp":7385100331951,"id":629,"parentId":619,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8962,"timestamp":7385100331567,"id":619,"parentId":523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"ssr"},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8635,"timestamp":7385100331966,"id":632,"parentId":631,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8643,"timestamp":7385100331959,"id":631,"parentId":620,"tags":{},"startTime":1776992046520,"traceId":"27fab7e1c891f919"}]
+[{"name":"build-module-js","duration":10687,"timestamp":7385100331588,"id":620,"parentId":526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776992046520,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4784,"timestamp":7385100343293,"id":638,"parentId":637,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4798,"timestamp":7385100343283,"id":637,"parentId":634,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5378,"timestamp":7385100343056,"id":634,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"ssr"},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5190,"timestamp":7385100343280,"id":636,"parentId":635,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5224,"timestamp":7385100343247,"id":635,"parentId":633,"tags":{},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6232,"timestamp":7385100342966,"id":633,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"ssr"},"startTime":1776992046531,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":27332,"timestamp":7385100326530,"id":606,"parentId":601,"tags":{},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35,"timestamp":7385100353876,"id":639,"parentId":601,"tags":{},"startTime":1776992046542,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27944,"timestamp":7385100326324,"id":601,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776992046514,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2421,"timestamp":7385100354768,"id":642,"parentId":641,"tags":{},"startTime":1776992046543,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2454,"timestamp":7385100354738,"id":641,"parentId":640,"tags":{},"startTime":1776992046543,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2937,"timestamp":7385100354642,"id":640,"parentId":373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776992046543,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2527,"timestamp":7385100356701,"id":645,"parentId":644,"tags":{},"startTime":1776992046545,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2557,"timestamp":7385100356673,"id":644,"parentId":643,"tags":{},"startTime":1776992046545,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3876,"timestamp":7385100356550,"id":643,"parentId":605,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"ssr"},"startTime":1776992046544,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2616,"timestamp":7385100358036,"id":656,"parentId":655,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2626,"timestamp":7385100358027,"id":655,"parentId":647,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3125,"timestamp":7385100357875,"id":647,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2994,"timestamp":7385100358026,"id":654,"parentId":653,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3014,"timestamp":7385100358007,"id":653,"parentId":646,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4215,"timestamp":7385100357830,"id":646,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4132,"timestamp":7385100358056,"id":660,"parentId":659,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4223,"timestamp":7385100358048,"id":659,"parentId":649,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4808,"timestamp":7385100357924,"id":649,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5690,"timestamp":7385100358080,"id":666,"parentId":665,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5700,"timestamp":7385100358074,"id":665,"parentId":652,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6227,"timestamp":7385100357980,"id":652,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6434,"timestamp":7385100358073,"id":664,"parentId":663,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6442,"timestamp":7385100358066,"id":663,"parentId":651,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6671,"timestamp":7385100357962,"id":651,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6704,"timestamp":7385100358047,"id":658,"parentId":657,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6715,"timestamp":7385100358037,"id":657,"parentId":648,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7217,"timestamp":7385100357900,"id":648,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7474,"timestamp":7385100358065,"id":662,"parentId":661,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7483,"timestamp":7385100358057,"id":661,"parentId":650,"tags":{},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8104,"timestamp":7385100357943,"id":650,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776992046546,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5464,"timestamp":7385100360593,"id":676,"parentId":675,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5475,"timestamp":7385100360583,"id":675,"parentId":671,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5686,"timestamp":7385100360517,"id":671,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"ssr"},"startTime":1776992046548,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7033,"timestamp":7385100359181,"id":669,"parentId":668,"tags":{},"startTime":1776992046547,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7052,"timestamp":7385100359162,"id":668,"parentId":667,"tags":{},"startTime":1776992046547,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7315,"timestamp":7385100359101,"id":667,"parentId":633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"ssr"},"startTime":1776992046547,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5842,"timestamp":7385100360582,"id":674,"parentId":673,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5861,"timestamp":7385100360563,"id":673,"parentId":670,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6069,"timestamp":7385100360472,"id":670,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"ssr"},"startTime":1776992046548,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5960,"timestamp":7385100360602,"id":678,"parentId":677,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5969,"timestamp":7385100360594,"id":677,"parentId":672,"tags":{},"startTime":1776992046549,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6407,"timestamp":7385100360540,"id":672,"parentId":523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"ssr"},"startTime":1776992046548,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3457,"timestamp":7385100372754,"id":683,"parentId":682,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3494,"timestamp":7385100372723,"id":682,"parentId":679,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4029,"timestamp":7385100372558,"id":679,"parentId":601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2929,"timestamp":7385100373673,"id":695,"parentId":694,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2939,"timestamp":7385100373664,"id":694,"parentId":689,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3248,"timestamp":7385100373574,"id":689,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"ssr"},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3169,"timestamp":7385100373663,"id":693,"parentId":692,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3186,"timestamp":7385100373647,"id":692,"parentId":688,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3464,"timestamp":7385100373540,"id":688,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"ssr"},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4235,"timestamp":7385100372777,"id":687,"parentId":686,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4244,"timestamp":7385100372768,"id":686,"parentId":681,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4480,"timestamp":7385100372662,"id":681,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"ssr"},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4674,"timestamp":7385100372767,"id":685,"parentId":684,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4686,"timestamp":7385100372757,"id":684,"parentId":680,"tags":{},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4926,"timestamp":7385100372634,"id":680,"parentId":476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776992046561,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5238,"timestamp":7385100373682,"id":697,"parentId":696,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5248,"timestamp":7385100373674,"id":696,"parentId":690,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5586,"timestamp":7385100373596,"id":690,"parentId":523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"ssr"},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3417,"timestamp":7385100376090,"id":703,"parentId":702,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3460,"timestamp":7385100376048,"id":702,"parentId":700,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3905,"timestamp":7385100375731,"id":700,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5961,"timestamp":7385100373690,"id":699,"parentId":698,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5969,"timestamp":7385100373683,"id":698,"parentId":691,"tags":{},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6856,"timestamp":7385100373615,"id":691,"parentId":521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"ssr"},"startTime":1776992046562,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4382,"timestamp":7385100376106,"id":705,"parentId":704,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4395,"timestamp":7385100376094,"id":704,"parentId":701,"tags":{},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5241,"timestamp":7385100375918,"id":701,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776992046564,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4390,"timestamp":7385100378235,"id":713,"parentId":712,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4417,"timestamp":7385100378210,"id":712,"parentId":706,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5124,"timestamp":7385100377831,"id":706,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4717,"timestamp":7385100378249,"id":715,"parentId":714,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4730,"timestamp":7385100378237,"id":714,"parentId":707,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5191,"timestamp":7385100377997,"id":707,"parentId":648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4940,"timestamp":7385100378260,"id":717,"parentId":716,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4950,"timestamp":7385100378251,"id":716,"parentId":708,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5285,"timestamp":7385100378061,"id":708,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5332,"timestamp":7385100378269,"id":719,"parentId":718,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5341,"timestamp":7385100378261,"id":718,"parentId":709,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5915,"timestamp":7385100378102,"id":709,"parentId":671,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5958,"timestamp":7385100378277,"id":721,"parentId":720,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5966,"timestamp":7385100378270,"id":720,"parentId":710,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6329,"timestamp":7385100378126,"id":710,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6183,"timestamp":7385100378286,"id":723,"parentId":722,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6191,"timestamp":7385100378278,"id":722,"parentId":711,"tags":{},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6537,"timestamp":7385100378147,"id":711,"parentId":670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"ssr"},"startTime":1776992046566,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11386,"timestamp":7385100388066,"id":725,"parentId":724,"tags":{},"startTime":1776992046576,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33,"timestamp":7385100399471,"id":761,"parentId":724,"tags":{},"startTime":1776992046587,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12467,"timestamp":7385100387830,"id":724,"parentId":474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776992046576,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3102,"timestamp":7385100397758,"id":740,"parentId":739,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3144,"timestamp":7385100397718,"id":739,"parentId":726,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4675,"timestamp":7385100397196,"id":726,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4174,"timestamp":7385100397786,"id":744,"parentId":743,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"}]
+[{"name":"next-swc-loader","duration":4417,"timestamp":7385100397777,"id":743,"parentId":728,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6961,"timestamp":7385100397345,"id":728,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15128,"timestamp":7385100397775,"id":742,"parentId":741,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15148,"timestamp":7385100397763,"id":741,"parentId":727,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16307,"timestamp":7385100397311,"id":727,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15848,"timestamp":7385100397796,"id":746,"parentId":745,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15857,"timestamp":7385100397787,"id":745,"parentId":729,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16491,"timestamp":7385100397370,"id":729,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16067,"timestamp":7385100397806,"id":748,"parentId":747,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16076,"timestamp":7385100397797,"id":747,"parentId":730,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16642,"timestamp":7385100397393,"id":730,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16231,"timestamp":7385100397814,"id":750,"parentId":749,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16240,"timestamp":7385100397807,"id":749,"parentId":731,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16759,"timestamp":7385100397420,"id":731,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16362,"timestamp":7385100397825,"id":752,"parentId":751,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16372,"timestamp":7385100397816,"id":751,"parentId":732,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16895,"timestamp":7385100397440,"id":732,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16495,"timestamp":7385100397857,"id":756,"parentId":755,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16505,"timestamp":7385100397850,"id":755,"parentId":735,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17144,"timestamp":7385100397545,"id":735,"parentId":691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17058,"timestamp":7385100397866,"id":758,"parentId":757,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17067,"timestamp":7385100397858,"id":757,"parentId":736,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17522,"timestamp":7385100397566,"id":736,"parentId":690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"ssr"},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17584,"timestamp":7385100397848,"id":754,"parentId":753,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17607,"timestamp":7385100397827,"id":753,"parentId":733,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19795,"timestamp":7385100397460,"id":733,"parentId":681,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19427,"timestamp":7385100397875,"id":760,"parentId":759,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19437,"timestamp":7385100397867,"id":759,"parentId":737,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20089,"timestamp":7385100397584,"id":737,"parentId":690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"ssr"},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16940,"timestamp":7385100400754,"id":769,"parentId":768,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16966,"timestamp":7385100400729,"id":768,"parentId":763,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17444,"timestamp":7385100400471,"id":763,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17192,"timestamp":7385100400776,"id":773,"parentId":772,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17201,"timestamp":7385100400767,"id":772,"parentId":765,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17761,"timestamp":7385100400549,"id":765,"parentId":710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"ssr"},"startTime":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17578,"timestamp":7385100400765,"id":771,"parentId":770,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17589,"timestamp":7385100400756,"id":770,"parentId":764,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18513,"timestamp":7385100400505,"id":764,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18252,"timestamp":7385100400784,"id":775,"parentId":774,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18261,"timestamp":7385100400777,"id":774,"parentId":766,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20462,"timestamp":7385100400636,"id":766,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"ssr"},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24143,"timestamp":7385100407176,"id":788,"parentId":787,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24162,"timestamp":7385100407165,"id":787,"parentId":778,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26676,"timestamp":7385100405653,"id":778,"parentId":710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"ssr"},"startTime":1776992046594,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25258,"timestamp":7385100407120,"id":784,"parentId":783,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25344,"timestamp":7385100407036,"id":783,"parentId":776,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27822,"timestamp":7385100404979,"id":776,"parentId":711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"ssr"},"startTime":1776992046593,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27592,"timestamp":7385100407163,"id":786,"parentId":785,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27633,"timestamp":7385100407126,"id":785,"parentId":777,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40439,"timestamp":7385100405141,"id":777,"parentId":711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"ssr"},"startTime":1776992046593,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":48220,"timestamp":7385100397614,"id":738,"parentId":734,"tags":{},"startTime":1776992046586,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42,"timestamp":7385100445844,"id":792,"parentId":734,"tags":{},"startTime":1776992046634,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48560,"timestamp":7385100397485,"id":734,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1776992046585,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":204,"timestamp":7385100446821,"id":795,"parentId":793,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":163,"timestamp":7385100447031,"id":798,"parentId":793,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1411,"timestamp":7385100446467,"id":793,"parentId":764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776992046634,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13990,"timestamp":7385100433940,"id":791,"parentId":790,"tags":{},"startTime":1776992046622,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14024,"timestamp":7385100433907,"id":790,"parentId":789,"tags":{},"startTime":1776992046622,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14692,"timestamp":7385100433712,"id":789,"parentId":646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776992046622,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":48452,"timestamp":7385100400695,"id":767,"parentId":762,"tags":{},"startTime":1776992046589,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32,"timestamp":7385100449157,"id":799,"parentId":762,"tags":{},"startTime":1776992046637,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48993,"timestamp":7385100400377,"id":762,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776992046588,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42631,"timestamp":7385100406754,"id":781,"parentId":779,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385100449390,"id":800,"parentId":779,"tags":{},"startTime":1776992046637,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43512,"timestamp":7385100406003,"id":779,"parentId":528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776992046594,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":42742,"timestamp":7385100406779,"id":782,"parentId":780,"tags":{},"startTime":1776992046595,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25,"timestamp":7385100449525,"id":801,"parentId":780,"tags":{},"startTime":1776992046637,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43599,"timestamp":7385100406088,"id":780,"parentId":528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776992046594,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3261,"timestamp":7385100446963,"id":797,"parentId":796,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3295,"timestamp":7385100446931,"id":796,"parentId":794,"tags":{},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3848,"timestamp":7385100446570,"id":794,"parentId":672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776992046635,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1799,"timestamp":7385100450817,"id":805,"parentId":804,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1829,"timestamp":7385100450794,"id":804,"parentId":802,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2251,"timestamp":7385100450699,"id":802,"parentId":764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2488,"timestamp":7385100450829,"id":807,"parentId":806,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2499,"timestamp":7385100450819,"id":806,"parentId":803,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2875,"timestamp":7385100450754,"id":803,"parentId":766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"ssr"},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2283,"timestamp":7385100451362,"id":810,"parentId":809,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2302,"timestamp":7385100451343,"id":809,"parentId":808,"tags":{},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2684,"timestamp":7385100451284,"id":808,"parentId":728,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"ssr"},"startTime":1776992046639,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2100,"timestamp":7385100453204,"id":816,"parentId":815,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2115,"timestamp":7385100453194,"id":815,"parentId":812,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2568,"timestamp":7385100453135,"id":812,"parentId":789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3617,"timestamp":7385100453192,"id":814,"parentId":813,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3641,"timestamp":7385100453171,"id":813,"parentId":811,"tags":{},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5852,"timestamp":7385100453085,"id":811,"parentId":789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776992046641,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8249,"timestamp":7385100454377,"id":819,"parentId":818,"tags":{},"startTime":1776992046642,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8270,"timestamp":7385100454358,"id":818,"parentId":817,"tags":{},"startTime":1776992046642,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11719,"timestamp":7385100454180,"id":817,"parentId":794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"ssr"},"startTime":1776992046642,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1103,"timestamp":7385100475509,"id":821,"parentId":820,"tags":{},"startTime":1776992046663,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385100476629,"id":822,"parentId":820,"tags":{},"startTime":1776992046665,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3365,"timestamp":7385100475397,"id":820,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776992046663,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":17731,"timestamp":7385100479042,"id":824,"parentId":823,"tags":{},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":73,"timestamp":7385100496793,"id":827,"parentId":823,"tags":{},"startTime":1776992046685,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21078,"timestamp":7385100478911,"id":823,"parentId":777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":20960,"timestamp":7385100479448,"id":826,"parentId":825,"tags":{},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385100500417,"id":828,"parentId":825,"tags":{},"startTime":1776992046688,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21442,"timestamp":7385100479382,"id":825,"parentId":777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776992046667,"traceId":"27fab7e1c891f919"},{"name":"make","duration":911151,"timestamp":7385099590185,"id":119,"parentId":118,"tags":{},"startTime":1776992045778,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":3059,"timestamp":7385100507851,"id":830,"parentId":829,"tags":{},"startTime":1776992046696,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385100510932,"id":832,"parentId":829,"tags":{},"startTime":1776992046699,"traceId":"27fab7e1c891f919"}]
+[{"name":"optimize-chunks","duration":2594,"timestamp":7385100511058,"id":833,"parentId":829,"tags":{},"startTime":1776992046699,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":4,"timestamp":7385100513675,"id":834,"parentId":829,"tags":{},"startTime":1776992046702,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385100513692,"id":835,"parentId":829,"tags":{},"startTime":1776992046702,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":3452,"timestamp":7385100510924,"id":831,"parentId":829,"tags":{},"startTime":1776992046699,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":9334,"timestamp":7385100524070,"id":836,"parentId":829,"tags":{},"startTime":1776992046712,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":12398,"timestamp":7385100533431,"id":837,"parentId":829,"tags":{},"startTime":1776992046721,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":3537,"timestamp":7385100547982,"id":838,"parentId":829,"tags":{},"startTime":1776992046736,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":345,"timestamp":7385100551519,"id":839,"parentId":829,"tags":{},"startTime":1776992046739,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":98,"timestamp":7385100551854,"id":840,"parentId":829,"tags":{},"startTime":1776992046740,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":46229,"timestamp":7385100551956,"id":841,"parentId":829,"tags":{},"startTime":1776992046740,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":93573,"timestamp":7385100506959,"id":829,"parentId":118,"tags":{},"startTime":1776992046695,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1011699,"timestamp":7385099589858,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776992045778,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":46677,"timestamp":7385100601655,"id":842,"parentId":116,"tags":{},"startTime":1776992046790,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":1068949,"timestamp":7385099589068,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992045777,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":7759,"timestamp":7385100695069,"id":851,"parentId":847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992046883,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":110,"timestamp":7385100702904,"id":852,"parentId":848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=false!","layer":"app-pages-browser"},"startTime":1776992046891,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":11402,"timestamp":7385100703023,"id":853,"parentId":849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992046891,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":55319,"timestamp":7385100714471,"id":854,"parentId":850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992046902,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":98655,"timestamp":7385100672543,"id":848,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8,"timestamp":7385100851480,"id":856,"parentId":855,"tags":{},"startTime":1776992047039,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19688,"timestamp":7385100856944,"id":871,"parentId":870,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19741,"timestamp":7385100856904,"id":870,"parentId":860,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":25409,"timestamp":7385100856073,"id":860,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776992047044,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24661,"timestamp":7385100856902,"id":869,"parentId":868,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24711,"timestamp":7385100856854,"id":868,"parentId":859,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28887,"timestamp":7385100853840,"id":859,"parentId":846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776992047042,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25802,"timestamp":7385100856977,"id":873,"parentId":872,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25835,"timestamp":7385100856946,"id":872,"parentId":861,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":27296,"timestamp":7385100856591,"id":861,"parentId":851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":36579,"timestamp":7385100851662,"id":858,"parentId":857,"tags":{},"startTime":1776992047040,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36741,"timestamp":7385100851506,"id":857,"parentId":855,"tags":{},"startTime":1776992047039,"traceId":"27fab7e1c891f919"},{"name":"build-module-mjs","duration":38720,"timestamp":7385100850815,"id":855,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776992047039,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32569,"timestamp":7385100856998,"id":877,"parentId":876,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32579,"timestamp":7385100856989,"id":876,"parentId":863,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33423,"timestamp":7385100856719,"id":863,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33171,"timestamp":7385100857006,"id":879,"parentId":878,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33180,"timestamp":7385100856999,"id":878,"parentId":864,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34266,"timestamp":7385100856752,"id":864,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34016,"timestamp":7385100857022,"id":883,"parentId":882,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34024,"timestamp":7385100857015,"id":882,"parentId":866,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35063,"timestamp":7385100856801,"id":866,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35334,"timestamp":7385100857030,"id":885,"parentId":884,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35343,"timestamp":7385100857023,"id":884,"parentId":867,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35918,"timestamp":7385100856823,"id":867,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35761,"timestamp":7385100857014,"id":881,"parentId":880,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35769,"timestamp":7385100857007,"id":880,"parentId":865,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37447,"timestamp":7385100856777,"id":865,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37473,"timestamp":7385100856988,"id":875,"parentId":874,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37496,"timestamp":7385100856978,"id":874,"parentId":862,"tags":{},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40804,"timestamp":7385100856664,"id":862,"parentId":854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776992047045,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":123,"timestamp":7385100909511,"id":888,"parentId":886,"tags":{},"startTime":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28,"timestamp":7385100909646,"id":890,"parentId":886,"tags":{},"startTime":1776992047098,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":816,"timestamp":7385100909270,"id":886,"parentId":861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18477,"timestamp":7385100912291,"id":926,"parentId":925,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18490,"timestamp":7385100912283,"id":925,"parentId":893,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19914,"timestamp":7385100911521,"id":893,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19171,"timestamp":7385100912282,"id":924,"parentId":923,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":19182,"timestamp":7385100912272,"id":923,"parentId":892,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":20743,"timestamp":7385100911492,"id":892,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":19989,"timestamp":7385100912269,"id":922,"parentId":921,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20027,"timestamp":7385100912232,"id":921,"parentId":891,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21936,"timestamp":7385100911421,"id":891,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":28410,"timestamp":7385100912299,"id":928,"parentId":927,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28429,"timestamp":7385100912292,"id":927,"parentId":894,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31867,"timestamp":7385100911552,"id":894,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776992047099,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31286,"timestamp":7385100912315,"id":932,"parentId":931,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31297,"timestamp":7385100912308,"id":931,"parentId":896,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32531,"timestamp":7385100911599,"id":896,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31826,"timestamp":7385100912326,"id":934,"parentId":933,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31838,"timestamp":7385100912316,"id":933,"parentId":897,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33079,"timestamp":7385100911634,"id":897,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":32504,"timestamp":7385100912349,"id":936,"parentId":935,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":32535,"timestamp":7385100912327,"id":935,"parentId":898,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33992,"timestamp":7385100911660,"id":898,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33320,"timestamp":7385100912365,"id":940,"parentId":939,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33329,"timestamp":7385100912358,"id":939,"parentId":900,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":34351,"timestamp":7385100911711,"id":900,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33783,"timestamp":7385100912307,"id":930,"parentId":929,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33791,"timestamp":7385100912300,"id":929,"parentId":895,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35156,"timestamp":7385100911574,"id":895,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34373,"timestamp":7385100912373,"id":942,"parentId":941,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34381,"timestamp":7385100912366,"id":941,"parentId":901,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35317,"timestamp":7385100911742,"id":901,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34713,"timestamp":7385100912358,"id":938,"parentId":937,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34721,"timestamp":7385100912351,"id":937,"parentId":899,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":35630,"timestamp":7385100911690,"id":899,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":34942,"timestamp":7385100912395,"id":948,"parentId":947,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34949,"timestamp":7385100912388,"id":947,"parentId":904,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36069,"timestamp":7385100911800,"id":904,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35503,"timestamp":7385100912380,"id":944,"parentId":943,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35511,"timestamp":7385100912373,"id":943,"parentId":902,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36547,"timestamp":7385100911761,"id":902,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":35930,"timestamp":7385100912388,"id":946,"parentId":945,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":35938,"timestamp":7385100912381,"id":945,"parentId":903,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36765,"timestamp":7385100911780,"id":903,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":36144,"timestamp":7385100912409,"id":952,"parentId":951,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36152,"timestamp":7385100912403,"id":951,"parentId":906,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":36945,"timestamp":7385100911861,"id":906,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":36391,"timestamp":7385100912423,"id":954,"parentId":953,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36405,"timestamp":7385100912410,"id":953,"parentId":907,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37130,"timestamp":7385100911880,"id":907,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"}]
+[{"name":"next-swc-transform","duration":36732,"timestamp":7385100912402,"id":950,"parentId":949,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36740,"timestamp":7385100912395,"id":949,"parentId":905,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37776,"timestamp":7385100911839,"id":905,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37193,"timestamp":7385100912431,"id":956,"parentId":955,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37202,"timestamp":7385100912424,"id":955,"parentId":908,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":37940,"timestamp":7385100911905,"id":908,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37408,"timestamp":7385100912447,"id":960,"parentId":959,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37416,"timestamp":7385100912440,"id":959,"parentId":910,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38151,"timestamp":7385100911943,"id":910,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37641,"timestamp":7385100912461,"id":964,"parentId":963,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37648,"timestamp":7385100912455,"id":963,"parentId":912,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":38356,"timestamp":7385100911979,"id":912,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37912,"timestamp":7385100912440,"id":958,"parentId":957,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37920,"timestamp":7385100912433,"id":957,"parentId":909,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46917,"timestamp":7385100911925,"id":909,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":46467,"timestamp":7385100912454,"id":962,"parentId":961,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46478,"timestamp":7385100912448,"id":961,"parentId":911,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48425,"timestamp":7385100911962,"id":911,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":48010,"timestamp":7385100912476,"id":968,"parentId":967,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48021,"timestamp":7385100912469,"id":967,"parentId":914,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":49878,"timestamp":7385100912015,"id":914,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":49486,"timestamp":7385100912469,"id":966,"parentId":965,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":49494,"timestamp":7385100912462,"id":965,"parentId":913,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":50626,"timestamp":7385100911997,"id":913,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":50162,"timestamp":7385100912484,"id":970,"parentId":969,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50171,"timestamp":7385100912477,"id":969,"parentId":915,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":50892,"timestamp":7385100912033,"id":915,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":50446,"timestamp":7385100912492,"id":972,"parentId":971,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50454,"timestamp":7385100912485,"id":971,"parentId":916,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51211,"timestamp":7385100912051,"id":916,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":50777,"timestamp":7385100912499,"id":974,"parentId":973,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":50785,"timestamp":7385100912493,"id":973,"parentId":917,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":51481,"timestamp":7385100912068,"id":917,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":51698,"timestamp":7385100912513,"id":976,"parentId":975,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":51713,"timestamp":7385100912500,"id":975,"parentId":918,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":52693,"timestamp":7385100912086,"id":918,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":52320,"timestamp":7385100912549,"id":980,"parentId":979,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":52348,"timestamp":7385100912522,"id":979,"parentId":920,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":54207,"timestamp":7385100912128,"id":920,"parentId":860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":53871,"timestamp":7385100912521,"id":978,"parentId":977,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":53880,"timestamp":7385100912514,"id":977,"parentId":919,"tags":{},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":56150,"timestamp":7385100912106,"id":919,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"app-pages-browser"},"startTime":1776992047100,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":326,"timestamp":7385100971340,"id":994,"parentId":991,"tags":{},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":362,"timestamp":7385100971345,"id":995,"parentId":992,"tags":{},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5612,"timestamp":7385100971677,"id":1000,"parentId":991,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5585,"timestamp":7385100971710,"id":1001,"parentId":992,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6487,"timestamp":7385100971175,"id":991,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6791,"timestamp":7385100971235,"id":992,"parentId":866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":39197,"timestamp":7385100938879,"id":985,"parentId":984,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39232,"timestamp":7385100938846,"id":984,"parentId":981,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":39997,"timestamp":7385100938545,"id":981,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776992047126,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":39666,"timestamp":7385100938892,"id":987,"parentId":986,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39677,"timestamp":7385100938882,"id":986,"parentId":982,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":40265,"timestamp":7385100938707,"id":982,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":40099,"timestamp":7385100938901,"id":989,"parentId":988,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":40108,"timestamp":7385100938893,"id":988,"parentId":983,"tags":{},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42214,"timestamp":7385100938745,"id":983,"parentId":859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776992047127,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":71890,"timestamp":7385100909514,"id":889,"parentId":887,"tags":{},"startTime":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385100981412,"id":1002,"parentId":887,"tags":{},"startTime":1776992047169,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":72198,"timestamp":7385100909444,"id":887,"parentId":845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":"app-pages-browser"},"startTime":1776992047097,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10091,"timestamp":7385100971611,"id":999,"parentId":998,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10106,"timestamp":7385100971597,"id":998,"parentId":993,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10733,"timestamp":7385100971285,"id":993,"parentId":862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/dev-root-not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10509,"timestamp":7385100971593,"id":997,"parentId":996,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10546,"timestamp":7385100971557,"id":996,"parentId":990,"tags":{},"startTime":1776992047160,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12648,"timestamp":7385100971049,"id":990,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776992047159,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21415,"timestamp":7385100986160,"id":1011,"parentId":1010,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21432,"timestamp":7385100986148,"id":1010,"parentId":1005,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22403,"timestamp":7385100985665,"id":1005,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21942,"timestamp":7385100986146,"id":1009,"parentId":1008,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21958,"timestamp":7385100986131,"id":1008,"parentId":1004,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":22668,"timestamp":7385100985628,"id":1004,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":22223,"timestamp":7385100986122,"id":1007,"parentId":1006,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":22289,"timestamp":7385100986057,"id":1006,"parentId":1003,"tags":{},"startTime":1776992047174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":23278,"timestamp":7385100985471,"id":1003,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776992047173,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1007,"timestamp":7385101009847,"id":1039,"parentId":1014,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1059,"timestamp":7385101009851,"id":1040,"parentId":1019,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1089,"timestamp":7385101009853,"id":1041,"parentId":1022,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1114,"timestamp":7385101009854,"id":1042,"parentId":1023,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1137,"timestamp":7385101009860,"id":1043,"parentId":1028,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":1162,"timestamp":7385101009862,"id":1044,"parentId":1029,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":617,"timestamp":7385101010867,"id":1087,"parentId":1014,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":572,"timestamp":7385101010914,"id":1088,"parentId":1019,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":542,"timestamp":7385101010945,"id":1089,"parentId":1022,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":516,"timestamp":7385101010971,"id":1090,"parentId":1023,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":489,"timestamp":7385101010999,"id":1091,"parentId":1028,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":462,"timestamp":7385101011026,"id":1092,"parentId":1029,"tags":{},"startTime":1776992047199,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3042,"timestamp":7385101009129,"id":1014,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3081,"timestamp":7385101009258,"id":1019,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3322,"timestamp":7385101009338,"id":1022,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3582,"timestamp":7385101009384,"id":1023,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3784,"timestamp":7385101009516,"id":1028,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8241,"timestamp":7385101009570,"id":1029,"parentId":916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11718,"timestamp":7385101009977,"id":1046,"parentId":1045,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11752,"timestamp":7385101009947,"id":1045,"parentId":1012,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16503,"timestamp":7385101009018,"id":1012,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15605,"timestamp":7385101010006,"id":1052,"parentId":1051,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15628,"timestamp":7385101009999,"id":1051,"parentId":1016,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19659,"timestamp":7385101009198,"id":1016,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18966,"timestamp":7385101009989,"id":1048,"parentId":1047,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18980,"timestamp":7385101009980,"id":1047,"parentId":1013,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"}]
+[{"name":"build-module-js","duration":22762,"timestamp":7385101009100,"id":1013,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":21952,"timestamp":7385101009998,"id":1050,"parentId":1049,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":21964,"timestamp":7385101009990,"id":1049,"parentId":1015,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25280,"timestamp":7385101009175,"id":1015,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24462,"timestamp":7385101010023,"id":1056,"parentId":1055,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24470,"timestamp":7385101010016,"id":1055,"parentId":1018,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25564,"timestamp":7385101009239,"id":1018,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24800,"timestamp":7385101010015,"id":1054,"parentId":1053,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24807,"timestamp":7385101010008,"id":1053,"parentId":1017,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25859,"timestamp":7385101009219,"id":1017,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25058,"timestamp":7385101010032,"id":1058,"parentId":1057,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25067,"timestamp":7385101010024,"id":1057,"parentId":1020,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26091,"timestamp":7385101009296,"id":1020,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25350,"timestamp":7385101010058,"id":1062,"parentId":1061,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25360,"timestamp":7385101010049,"id":1061,"parentId":1024,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31044,"timestamp":7385101009440,"id":1024,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":30458,"timestamp":7385101010066,"id":1064,"parentId":1063,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":30467,"timestamp":7385101010059,"id":1063,"parentId":1025,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":31650,"timestamp":7385101009460,"id":1025,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31086,"timestamp":7385101010047,"id":1060,"parentId":1059,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31102,"timestamp":7385101010033,"id":1059,"parentId":1021,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32316,"timestamp":7385101009315,"id":1021,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31566,"timestamp":7385101010082,"id":1068,"parentId":1067,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31574,"timestamp":7385101010075,"id":1067,"parentId":1027,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32549,"timestamp":7385101009497,"id":1027,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31971,"timestamp":7385101010090,"id":1070,"parentId":1069,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31979,"timestamp":7385101010083,"id":1069,"parentId":1030,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":32966,"timestamp":7385101009612,"id":1030,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":39521,"timestamp":7385101010099,"id":1072,"parentId":1071,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":39536,"timestamp":7385101010091,"id":1071,"parentId":1031,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":41632,"timestamp":7385101009642,"id":1031,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":41231,"timestamp":7385101010074,"id":1066,"parentId":1065,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":41239,"timestamp":7385101010067,"id":1065,"parentId":1026,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42612,"timestamp":7385101009479,"id":1026,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1776992047197,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":41992,"timestamp":7385101010116,"id":1076,"parentId":1075,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42000,"timestamp":7385101010108,"id":1075,"parentId":1033,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43032,"timestamp":7385101009680,"id":1033,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":42632,"timestamp":7385101010107,"id":1074,"parentId":1073,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42640,"timestamp":7385101010100,"id":1073,"parentId":1032,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44302,"timestamp":7385101009662,"id":1032,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":43859,"timestamp":7385101010123,"id":1078,"parentId":1077,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":43868,"timestamp":7385101010116,"id":1077,"parentId":1034,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":44700,"timestamp":7385101009697,"id":1034,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":44275,"timestamp":7385101010132,"id":1080,"parentId":1079,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44320,"timestamp":7385101010124,"id":1079,"parentId":1035,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45425,"timestamp":7385101009714,"id":1035,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":46047,"timestamp":7385101010170,"id":1086,"parentId":1085,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46070,"timestamp":7385101010148,"id":1085,"parentId":1038,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":46862,"timestamp":7385101009816,"id":1038,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":46561,"timestamp":7385101010140,"id":1082,"parentId":1081,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":46569,"timestamp":7385101010133,"id":1081,"parentId":1036,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":47880,"timestamp":7385101009732,"id":1036,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":47480,"timestamp":7385101010147,"id":1084,"parentId":1083,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":47488,"timestamp":7385101010140,"id":1083,"parentId":1037,"tags":{},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":48304,"timestamp":7385101009750,"id":1037,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"app-pages-browser"},"startTime":1776992047198,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13230,"timestamp":7385101044837,"id":1110,"parentId":1109,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13239,"timestamp":7385101044828,"id":1109,"parentId":1096,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14004,"timestamp":7385101044447,"id":1096,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13648,"timestamp":7385101044815,"id":1106,"parentId":1105,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13660,"timestamp":7385101044804,"id":1105,"parentId":1094,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14466,"timestamp":7385101044378,"id":1094,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14035,"timestamp":7385101044827,"id":1108,"parentId":1107,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14047,"timestamp":7385101044816,"id":1107,"parentId":1095,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15028,"timestamp":7385101044411,"id":1095,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17955,"timestamp":7385101044802,"id":1104,"parentId":1103,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17993,"timestamp":7385101044768,"id":1103,"parentId":1093,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19564,"timestamp":7385101044283,"id":1093,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26104,"timestamp":7385101044870,"id":1118,"parentId":1117,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26116,"timestamp":7385101044863,"id":1117,"parentId":1100,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27149,"timestamp":7385101044534,"id":1100,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26865,"timestamp":7385101044845,"id":1112,"parentId":1111,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26874,"timestamp":7385101044838,"id":1111,"parentId":1097,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27913,"timestamp":7385101044470,"id":1097,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27542,"timestamp":7385101044854,"id":1114,"parentId":1113,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27550,"timestamp":7385101044846,"id":1113,"parentId":1098,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28120,"timestamp":7385101044492,"id":1098,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27759,"timestamp":7385101044862,"id":1116,"parentId":1115,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27767,"timestamp":7385101044854,"id":1115,"parentId":1099,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28476,"timestamp":7385101044513,"id":1099,"parentId":990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1776992047232,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":28114,"timestamp":7385101044887,"id":1122,"parentId":1121,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28122,"timestamp":7385101044879,"id":1121,"parentId":1102,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28763,"timestamp":7385101044574,"id":1102,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"app-pages-browser"},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":28471,"timestamp":7385101044878,"id":1120,"parentId":1119,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":28480,"timestamp":7385101044871,"id":1119,"parentId":1101,"tags":{},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29295,"timestamp":7385101044554,"id":1101,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"app-pages-browser"},"startTime":1776992047233,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7720,"timestamp":7385101066493,"id":1127,"parentId":1126,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7771,"timestamp":7385101066444,"id":1126,"parentId":1123,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8781,"timestamp":7385101065802,"id":1123,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8060,"timestamp":7385101066532,"id":1131,"parentId":1130,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8084,"timestamp":7385101066509,"id":1130,"parentId":1125,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8967,"timestamp":7385101065943,"id":1125,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8454,"timestamp":7385101066508,"id":1129,"parentId":1128,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8466,"timestamp":7385101066496,"id":1128,"parentId":1124,"tags":{},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9599,"timestamp":7385101065907,"id":1124,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1776992047254,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":648,"timestamp":7385101079810,"id":1147,"parentId":1132,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2993,"timestamp":7385101080468,"id":1173,"parentId":1132,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7705,"timestamp":7385101076801,"id":1132,"parentId":1014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5639,"timestamp":7385101080044,"id":1152,"parentId":1151,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5652,"timestamp":7385101080034,"id":1151,"parentId":1134,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9817,"timestamp":7385101076974,"id":1134,"parentId":1014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6747,"timestamp":7385101080063,"id":1156,"parentId":1155,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"}]
+[{"name":"next-swc-loader","duration":6860,"timestamp":7385101080055,"id":1155,"parentId":1136,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10146,"timestamp":7385101077080,"id":1136,"parentId":1015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7208,"timestamp":7385101080030,"id":1150,"parentId":1149,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7242,"timestamp":7385101079997,"id":1149,"parentId":1133,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10650,"timestamp":7385101076903,"id":1133,"parentId":1014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":485,"timestamp":7385101090366,"id":1190,"parentId":1189,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":597,"timestamp":7385101090856,"id":1221,"parentId":1189,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3084,"timestamp":7385101090304,"id":1189,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13623,"timestamp":7385101080054,"id":1154,"parentId":1153,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13638,"timestamp":7385101080045,"id":1153,"parentId":1135,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18802,"timestamp":7385101077007,"id":1135,"parentId":1015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15763,"timestamp":7385101080080,"id":1160,"parentId":1159,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15771,"timestamp":7385101080073,"id":1159,"parentId":1138,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19063,"timestamp":7385101077129,"id":1138,"parentId":1018,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16147,"timestamp":7385101080072,"id":1158,"parentId":1157,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16156,"timestamp":7385101080064,"id":1157,"parentId":1137,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19396,"timestamp":7385101077105,"id":1137,"parentId":1015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16419,"timestamp":7385101080098,"id":1164,"parentId":1163,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16428,"timestamp":7385101080090,"id":1163,"parentId":1140,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19729,"timestamp":7385101077171,"id":1140,"parentId":1027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16806,"timestamp":7385101080106,"id":1166,"parentId":1165,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16814,"timestamp":7385101080099,"id":1165,"parentId":1141,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19997,"timestamp":7385101077190,"id":1141,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17083,"timestamp":7385101080114,"id":1168,"parentId":1167,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17091,"timestamp":7385101080107,"id":1167,"parentId":1144,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17729,"timestamp":7385101079721,"id":1144,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18143,"timestamp":7385101080089,"id":1162,"parentId":1161,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18152,"timestamp":7385101080081,"id":1161,"parentId":1139,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":21436,"timestamp":7385101077151,"id":1139,"parentId":1021,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18467,"timestamp":7385101080129,"id":1172,"parentId":1171,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18475,"timestamp":7385101080122,"id":1171,"parentId":1146,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19058,"timestamp":7385101079771,"id":1146,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18724,"timestamp":7385101080121,"id":1170,"parentId":1169,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18731,"timestamp":7385101080115,"id":1169,"parentId":1145,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19440,"timestamp":7385101079750,"id":1145,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8657,"timestamp":7385101090541,"id":1192,"parentId":1191,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8690,"timestamp":7385101090510,"id":1191,"parentId":1174,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9545,"timestamp":7385101089918,"id":1174,"parentId":1095,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":8915,"timestamp":7385101090555,"id":1194,"parentId":1193,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":8927,"timestamp":7385101090544,"id":1193,"parentId":1175,"tags":{},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9695,"timestamp":7385101090003,"id":1175,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9145,"timestamp":7385101090564,"id":1196,"parentId":1195,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9154,"timestamp":7385101090556,"id":1195,"parentId":1176,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":9962,"timestamp":7385101090033,"id":1176,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9432,"timestamp":7385101090572,"id":1198,"parentId":1197,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9440,"timestamp":7385101090565,"id":1197,"parentId":1177,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10113,"timestamp":7385101090057,"id":1177,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9606,"timestamp":7385101090581,"id":1200,"parentId":1199,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9614,"timestamp":7385101090573,"id":1199,"parentId":1178,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10376,"timestamp":7385101090079,"id":1178,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13912,"timestamp":7385101090589,"id":1202,"parentId":1201,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13922,"timestamp":7385101090582,"id":1201,"parentId":1179,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14818,"timestamp":7385101090102,"id":1179,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14335,"timestamp":7385101090605,"id":1206,"parentId":1205,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14342,"timestamp":7385101090598,"id":1205,"parentId":1181,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15506,"timestamp":7385101090153,"id":1181,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15080,"timestamp":7385101090597,"id":1204,"parentId":1203,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15088,"timestamp":7385101090590,"id":1203,"parentId":1180,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15873,"timestamp":7385101090133,"id":1180,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15395,"timestamp":7385101090621,"id":1210,"parentId":1209,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15402,"timestamp":7385101090614,"id":1209,"parentId":1183,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16098,"timestamp":7385101090192,"id":1183,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15673,"timestamp":7385101090628,"id":1212,"parentId":1211,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15680,"timestamp":7385101090622,"id":1211,"parentId":1184,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16385,"timestamp":7385101090212,"id":1184,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15965,"timestamp":7385101090643,"id":1216,"parentId":1215,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15973,"timestamp":7385101090636,"id":1215,"parentId":1186,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16693,"timestamp":7385101090250,"id":1186,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16299,"timestamp":7385101090651,"id":1218,"parentId":1217,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16306,"timestamp":7385101090644,"id":1217,"parentId":1187,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16865,"timestamp":7385101090268,"id":1187,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16506,"timestamp":7385101090636,"id":1214,"parentId":1213,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16514,"timestamp":7385101090629,"id":1213,"parentId":1185,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17192,"timestamp":7385101090230,"id":1185,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16830,"timestamp":7385101090658,"id":1220,"parentId":1219,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16838,"timestamp":7385101090652,"id":1219,"parentId":1188,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17405,"timestamp":7385101090286,"id":1188,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17106,"timestamp":7385101090612,"id":1208,"parentId":1207,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17113,"timestamp":7385101090606,"id":1207,"parentId":1182,"tags":{},"startTime":1776992047279,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18699,"timestamp":7385101090172,"id":1182,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"app-pages-browser"},"startTime":1776992047278,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7193,"timestamp":7385101102331,"id":1228,"parentId":1227,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7250,"timestamp":7385101102280,"id":1227,"parentId":1222,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8147,"timestamp":7385101101820,"id":1222,"parentId":1102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":41774,"timestamp":7385101079814,"id":1148,"parentId":1143,"tags":{},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385101121606,"id":1229,"parentId":1143,"tags":{},"startTime":1776992047310,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":42443,"timestamp":7385101079657,"id":1143,"parentId":982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776992047268,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":337,"timestamp":7385101131121,"id":1231,"parentId":1230,"tags":{},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":548,"timestamp":7385101152129,"id":1241,"parentId":1232,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2225,"timestamp":7385101152698,"id":1256,"parentId":1232,"tags":{},"startTime":1776992047341,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24293,"timestamp":7385101131147,"id":1232,"parentId":1175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3681,"timestamp":7385101152450,"id":1245,"parentId":1244,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3697,"timestamp":7385101152435,"id":1244,"parentId":1234,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25132,"timestamp":7385101131304,"id":1234,"parentId":1141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3983,"timestamp":7385101152478,"id":1249,"parentId":1248,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3992,"timestamp":7385101152469,"id":1248,"parentId":1236,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25529,"timestamp":7385101131363,"id":1236,"parentId":1139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4419,"timestamp":7385101152486,"id":1251,"parentId":1250,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4427,"timestamp":7385101152479,"id":1250,"parentId":1237,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25822,"timestamp":7385101131388,"id":1237,"parentId":1139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4793,"timestamp":7385101152429,"id":1243,"parentId":1242,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4838,"timestamp":7385101152385,"id":1242,"parentId":1233,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"}]
+[{"name":"build-module-js","duration":27848,"timestamp":7385101131257,"id":1233,"parentId":1140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6626,"timestamp":7385101152505,"id":1255,"parentId":1254,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6634,"timestamp":7385101152497,"id":1254,"parentId":1239,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28137,"timestamp":7385101131431,"id":1239,"parentId":1139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/fast-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7084,"timestamp":7385101152495,"id":1253,"parentId":1252,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7092,"timestamp":7385101152488,"id":1252,"parentId":1238,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":28752,"timestamp":7385101131410,"id":1238,"parentId":1139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":61247,"timestamp":7385101102012,"id":1225,"parentId":1223,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38,"timestamp":7385101163271,"id":1257,"parentId":1223,"tags":{},"startTime":1776992047351,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":61916,"timestamp":7385101101901,"id":1223,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":61797,"timestamp":7385101102031,"id":1226,"parentId":1224,"tags":{},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385101163835,"id":1258,"parentId":1224,"tags":{},"startTime":1776992047352,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":62318,"timestamp":7385101101954,"id":1224,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":"app-pages-browser"},"startTime":1776992047290,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11882,"timestamp":7385101152467,"id":1247,"parentId":1246,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11893,"timestamp":7385101152457,"id":1246,"parentId":1235,"tags":{},"startTime":1776992047340,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":33915,"timestamp":7385101131336,"id":1235,"parentId":1139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1776992047319,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":500,"timestamp":7385101167102,"id":1282,"parentId":1274,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1451,"timestamp":7385101167607,"id":1327,"parentId":1274,"tags":{},"startTime":1776992047356,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3312,"timestamp":7385101166880,"id":1274,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5655,"timestamp":7385101167228,"id":1286,"parentId":1285,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5667,"timestamp":7385101167218,"id":1285,"parentId":1260,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6796,"timestamp":7385101166537,"id":1260,"parentId":1178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"app-pages-browser"},"startTime":1776992047354,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6106,"timestamp":7385101167246,"id":1290,"parentId":1289,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6114,"timestamp":7385101167238,"id":1289,"parentId":1262,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7244,"timestamp":7385101166603,"id":1262,"parentId":1179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6629,"timestamp":7385101167237,"id":1288,"parentId":1287,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6638,"timestamp":7385101167229,"id":1287,"parentId":1261,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7893,"timestamp":7385101166565,"id":1261,"parentId":1178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7206,"timestamp":7385101167262,"id":1294,"parentId":1293,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7213,"timestamp":7385101167255,"id":1293,"parentId":1264,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8083,"timestamp":7385101166648,"id":1264,"parentId":1184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7544,"timestamp":7385101167216,"id":1284,"parentId":1283,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7575,"timestamp":7385101167186,"id":1283,"parentId":1259,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10502,"timestamp":7385101166462,"id":1259,"parentId":1139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1776992047354,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9754,"timestamp":7385101167254,"id":1292,"parentId":1291,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9762,"timestamp":7385101167247,"id":1291,"parentId":1263,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":10869,"timestamp":7385101166626,"id":1263,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15291,"timestamp":7385101167278,"id":1298,"parentId":1297,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15302,"timestamp":7385101167271,"id":1297,"parentId":1266,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16307,"timestamp":7385101166688,"id":1266,"parentId":1184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15738,"timestamp":7385101167270,"id":1296,"parentId":1295,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15746,"timestamp":7385101167263,"id":1295,"parentId":1265,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16603,"timestamp":7385101166668,"id":1265,"parentId":1184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15995,"timestamp":7385101167286,"id":1300,"parentId":1299,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16004,"timestamp":7385101167279,"id":1299,"parentId":1267,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16798,"timestamp":7385101166708,"id":1267,"parentId":1184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16214,"timestamp":7385101167301,"id":1304,"parentId":1303,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16222,"timestamp":7385101167294,"id":1303,"parentId":1269,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16982,"timestamp":7385101166747,"id":1269,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16462,"timestamp":7385101167293,"id":1302,"parentId":1301,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16470,"timestamp":7385101167287,"id":1301,"parentId":1268,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17285,"timestamp":7385101166728,"id":1268,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16706,"timestamp":7385101167315,"id":1308,"parentId":1307,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16714,"timestamp":7385101167309,"id":1307,"parentId":1271,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17415,"timestamp":7385101166810,"id":1271,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":16927,"timestamp":7385101167308,"id":1306,"parentId":1305,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":16934,"timestamp":7385101167302,"id":1305,"parentId":1270,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17630,"timestamp":7385101166789,"id":1270,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17103,"timestamp":7385101167323,"id":1310,"parentId":1309,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17110,"timestamp":7385101167316,"id":1309,"parentId":1272,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17792,"timestamp":7385101166841,"id":1272,"parentId":1184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17296,"timestamp":7385101167346,"id":1316,"parentId":1315,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17303,"timestamp":7385101167339,"id":1315,"parentId":1276,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":17860,"timestamp":7385101166955,"id":1276,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17462,"timestamp":7385101167360,"id":1320,"parentId":1319,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17469,"timestamp":7385101167354,"id":1319,"parentId":1278,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18020,"timestamp":7385101166999,"id":1278,"parentId":1187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":17708,"timestamp":7385101167330,"id":1312,"parentId":1311,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":17716,"timestamp":7385101167323,"id":1311,"parentId":1273,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18686,"timestamp":7385101166861,"id":1273,"parentId":1184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18219,"timestamp":7385101167338,"id":1314,"parentId":1313,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18227,"timestamp":7385101167331,"id":1313,"parentId":1275,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":18908,"timestamp":7385101166924,"id":1275,"parentId":1125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":18496,"timestamp":7385101167353,"id":1318,"parentId":1317,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":18504,"timestamp":7385101167347,"id":1317,"parentId":1277,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":19397,"timestamp":7385101166975,"id":1277,"parentId":1187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":22352,"timestamp":7385101167375,"id":1324,"parentId":1323,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":22361,"timestamp":7385101167368,"id":1323,"parentId":1280,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24407,"timestamp":7385101167046,"id":1280,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24334,"timestamp":7385101167367,"id":1322,"parentId":1321,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24343,"timestamp":7385101167361,"id":1321,"parentId":1279,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25151,"timestamp":7385101167027,"id":1279,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24829,"timestamp":7385101167382,"id":1326,"parentId":1325,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24836,"timestamp":7385101167375,"id":1325,"parentId":1281,"tags":{},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25841,"timestamp":7385101167070,"id":1281,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"app-pages-browser"},"startTime":1776992047355,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13442,"timestamp":7385101179485,"id":1346,"parentId":1345,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13450,"timestamp":7385101179478,"id":1345,"parentId":1331,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14093,"timestamp":7385101179099,"id":1331,"parentId":1135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13735,"timestamp":7385101179468,"id":1342,"parentId":1341,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13746,"timestamp":7385101179458,"id":1341,"parentId":1329,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":14473,"timestamp":7385101179046,"id":1329,"parentId":1182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14084,"timestamp":7385101179455,"id":1340,"parentId":1339,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14117,"timestamp":7385101179423,"id":1339,"parentId":1328,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15036,"timestamp":7385101178952,"id":1328,"parentId":1186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14523,"timestamp":7385101179477,"id":1344,"parentId":1343,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14533,"timestamp":7385101179469,"id":1343,"parentId":1330,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15126,"timestamp":7385101179078,"id":1330,"parentId":1136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14720,"timestamp":7385101179493,"id":1348,"parentId":1347,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14728,"timestamp":7385101179486,"id":1347,"parentId":1332,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15280,"timestamp":7385101179126,"id":1332,"parentId":1232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14895,"timestamp":7385101179519,"id":1354,"parentId":1353,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"}]
+[{"name":"next-swc-loader","duration":14990,"timestamp":7385101179513,"id":1353,"parentId":1335,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15557,"timestamp":7385101179197,"id":1335,"parentId":1236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15255,"timestamp":7385101179512,"id":1352,"parentId":1351,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15263,"timestamp":7385101179505,"id":1351,"parentId":1334,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15936,"timestamp":7385101179176,"id":1334,"parentId":1236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25179,"timestamp":7385101179527,"id":1356,"parentId":1355,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25190,"timestamp":7385101179520,"id":1355,"parentId":1336,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26017,"timestamp":7385101179216,"id":1336,"parentId":1236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25744,"timestamp":7385101179504,"id":1350,"parentId":1349,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26539,"timestamp":7385101179494,"id":1349,"parentId":1333,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27325,"timestamp":7385101179151,"id":1333,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26988,"timestamp":7385101179534,"id":1358,"parentId":1357,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27003,"timestamp":7385101179528,"id":1357,"parentId":1337,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":27806,"timestamp":7385101179235,"id":1337,"parentId":1236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":27563,"timestamp":7385101179541,"id":1360,"parentId":1359,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":27570,"timestamp":7385101179535,"id":1359,"parentId":1338,"tags":{},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29174,"timestamp":7385101179263,"id":1338,"parentId":1237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1776992047367,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11209,"timestamp":7385101197770,"id":1369,"parentId":1368,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11239,"timestamp":7385101197742,"id":1368,"parentId":1361,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12565,"timestamp":7385101196746,"id":1361,"parentId":1235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11539,"timestamp":7385101197782,"id":1371,"parentId":1370,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11549,"timestamp":7385101197773,"id":1370,"parentId":1362,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12733,"timestamp":7385101196818,"id":1362,"parentId":1235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11770,"timestamp":7385101197790,"id":1373,"parentId":1372,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11778,"timestamp":7385101197783,"id":1372,"parentId":1363,"tags":{},"startTime":1776992047386,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13054,"timestamp":7385101196845,"id":1363,"parentId":1235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":232,"timestamp":7385101210927,"id":1380,"parentId":1374,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":271,"timestamp":7385101210930,"id":1381,"parentId":1376,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":295,"timestamp":7385101210931,"id":1382,"parentId":1377,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":85,"timestamp":7385101211165,"id":1385,"parentId":1374,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":48,"timestamp":7385101211202,"id":1386,"parentId":1376,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23,"timestamp":7385101211228,"id":1387,"parentId":1377,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1071,"timestamp":7385101210636,"id":1374,"parentId":1261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1163,"timestamp":7385101210777,"id":1376,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1209,"timestamp":7385101210821,"id":1377,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":297732,"timestamp":7385101211126,"id":1384,"parentId":1383,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":297769,"timestamp":7385101211096,"id":1383,"parentId":1375,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":298753,"timestamp":7385101210723,"id":1375,"parentId":1261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1368,"timestamp":7385101511044,"id":1412,"parentId":1411,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1382,"timestamp":7385101511035,"id":1411,"parentId":1391,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2673,"timestamp":7385101510565,"id":1391,"parentId":1273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2232,"timestamp":7385101511052,"id":1414,"parentId":1413,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2241,"timestamp":7385101511044,"id":1413,"parentId":1392,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":3461,"timestamp":7385101510594,"id":1392,"parentId":1281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3395,"timestamp":7385101511022,"id":1408,"parentId":1407,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3428,"timestamp":7385101510991,"id":1407,"parentId":1389,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4816,"timestamp":7385101510324,"id":1389,"parentId":1328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776992047698,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4105,"timestamp":7385101511059,"id":1416,"parentId":1415,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4113,"timestamp":7385101511052,"id":1415,"parentId":1393,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5102,"timestamp":7385101510616,"id":1393,"parentId":1269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4721,"timestamp":7385101511035,"id":1410,"parentId":1409,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4732,"timestamp":7385101511025,"id":1409,"parentId":1390,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6193,"timestamp":7385101510495,"id":1390,"parentId":1279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"app-pages-browser"},"startTime":1776992047698,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5632,"timestamp":7385101511075,"id":1420,"parentId":1419,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5640,"timestamp":7385101511068,"id":1419,"parentId":1395,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6370,"timestamp":7385101510658,"id":1395,"parentId":1268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5978,"timestamp":7385101511068,"id":1418,"parentId":1417,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5986,"timestamp":7385101511060,"id":1417,"parentId":1394,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6835,"timestamp":7385101510637,"id":1394,"parentId":1268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6398,"timestamp":7385101511083,"id":1422,"parentId":1421,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6405,"timestamp":7385101511076,"id":1421,"parentId":1396,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7066,"timestamp":7385101510699,"id":1396,"parentId":1268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6675,"timestamp":7385101511099,"id":1426,"parentId":1425,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6682,"timestamp":7385101511092,"id":1425,"parentId":1398,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":7421,"timestamp":7385101510776,"id":1398,"parentId":1268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7116,"timestamp":7385101511091,"id":1424,"parentId":1423,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7124,"timestamp":7385101511084,"id":1423,"parentId":1397,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":8824,"timestamp":7385101510721,"id":1397,"parentId":1268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":23753,"timestamp":7385101511130,"id":1430,"parentId":1429,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":23767,"timestamp":7385101511121,"id":1429,"parentId":1400,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24910,"timestamp":7385101510833,"id":1400,"parentId":1271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":24655,"timestamp":7385101511106,"id":1428,"parentId":1427,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":24663,"timestamp":7385101511100,"id":1427,"parentId":1399,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25378,"timestamp":7385101510810,"id":1399,"parentId":1271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25060,"timestamp":7385101511145,"id":1434,"parentId":1433,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25068,"timestamp":7385101511139,"id":1433,"parentId":1402,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":25641,"timestamp":7385101510873,"id":1402,"parentId":1272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":25402,"timestamp":7385101511138,"id":1432,"parentId":1431,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":25410,"timestamp":7385101511131,"id":1431,"parentId":1401,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26363,"timestamp":7385101510854,"id":1401,"parentId":1270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":26079,"timestamp":7385101511153,"id":1436,"parentId":1435,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":26087,"timestamp":7385101511146,"id":1435,"parentId":1403,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":26659,"timestamp":7385101510893,"id":1403,"parentId":1272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":42283,"timestamp":7385101511161,"id":1438,"parentId":1437,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":42296,"timestamp":7385101511154,"id":1437,"parentId":1404,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":43229,"timestamp":7385101510915,"id":1404,"parentId":1273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":358207,"timestamp":7385101197139,"id":1365,"parentId":1364,"tags":{},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":358674,"timestamp":7385101196870,"id":1364,"parentId":860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":358388,"timestamp":7385101197167,"id":1367,"parentId":1366,"tags":{},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":358460,"timestamp":7385101197159,"id":1366,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776992047385,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":44459,"timestamp":7385101511175,"id":1442,"parentId":1441,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44467,"timestamp":7385101511169,"id":1441,"parentId":1406,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45000,"timestamp":7385101510954,"id":1406,"parentId":1273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":44818,"timestamp":7385101511168,"id":1440,"parentId":1439,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44826,"timestamp":7385101511161,"id":1439,"parentId":1405,"tags":{},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":45679,"timestamp":7385101510935,"id":1405,"parentId":1329,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"app-pages-browser"},"startTime":1776992047699,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":355843,"timestamp":7385101210884,"id":1379,"parentId":1378,"tags":{},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":355980,"timestamp":7385101210871,"id":1378,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776992047399,"traceId":"27fab7e1c891f919"},{"name":"postcss-process","duration":308682,"timestamp":7385101424712,"id":1388,"parentId":1240,"tags":{},"startTime":1776992047613,"traceId":"27fab7e1c891f919"},{"name":"postcss-loader","duration":603030,"timestamp":7385101131564,"id":1240,"parentId":1230,"tags":{},"startTime":1776992047320,"traceId":"27fab7e1c891f919"},{"name":"css-loader","duration":29742,"timestamp":7385101734729,"id":1458,"parentId":1230,"tags":{"astUsed":"true"},"startTime":1776992047923,"traceId":"27fab7e1c891f919"}]
+[{"name":"read-resource","duration":183,"timestamp":7385101766349,"id":1465,"parentId":1463,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":34,"timestamp":7385101766544,"id":1475,"parentId":1463,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2392,"timestamp":7385101766242,"id":1463,"parentId":1401,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":201994,"timestamp":7385101567354,"id":1453,"parentId":1452,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":202026,"timestamp":7385101567326,"id":1452,"parentId":1443,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":202746,"timestamp":7385101567088,"id":1443,"parentId":1394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"app-pages-browser"},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":202479,"timestamp":7385101567373,"id":1457,"parentId":1456,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":202487,"timestamp":7385101567366,"id":1456,"parentId":1445,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":202975,"timestamp":7385101567204,"id":1445,"parentId":1393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"app-pages-browser"},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":203082,"timestamp":7385101567365,"id":1455,"parentId":1454,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":203092,"timestamp":7385101567356,"id":1454,"parentId":1444,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":210952,"timestamp":7385101567177,"id":1444,"parentId":1393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"app-pages-browser"},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11839,"timestamp":7385101766423,"id":1470,"parentId":1469,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11851,"timestamp":7385101766413,"id":1469,"parentId":1460,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":12847,"timestamp":7385101766154,"id":1460,"parentId":1401,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"app-pages-browser"},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":12646,"timestamp":7385101766411,"id":1468,"parentId":1467,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":12688,"timestamp":7385101766369,"id":1467,"parentId":1459,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13541,"timestamp":7385101766035,"id":1459,"parentId":1404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"app-pages-browser"},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":13172,"timestamp":7385101766440,"id":1474,"parentId":1473,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":13180,"timestamp":7385101766433,"id":1473,"parentId":1462,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15146,"timestamp":7385101766217,"id":1462,"parentId":1406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"app-pages-browser"},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14985,"timestamp":7385101766431,"id":1472,"parentId":1471,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14994,"timestamp":7385101766424,"id":1471,"parentId":1461,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":15692,"timestamp":7385101766191,"id":1461,"parentId":1404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"app-pages-browser"},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":221871,"timestamp":7385101567271,"id":1451,"parentId":1450,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":221994,"timestamp":7385101567264,"id":1450,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.js","layer":"app-pages-browser"},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":222006,"timestamp":7385101567258,"id":1449,"parentId":1448,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":222165,"timestamp":7385101567250,"id":1448,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":222181,"timestamp":7385101567237,"id":1447,"parentId":1446,"tags":{},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":222306,"timestamp":7385101567227,"id":1446,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776992047755,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":97,"timestamp":7385101790211,"id":1485,"parentId":1477,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":156,"timestamp":7385101790213,"id":1486,"parentId":1478,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":677,"timestamp":7385101790312,"id":1489,"parentId":1477,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":620,"timestamp":7385101790371,"id":1490,"parentId":1478,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4245,"timestamp":7385101790053,"id":1477,"parentId":1444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":4590,"timestamp":7385101790101,"id":1478,"parentId":1444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":28855,"timestamp":7385101766354,"id":1466,"parentId":1464,"tags":{},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385101795227,"id":1491,"parentId":1464,"tags":{},"startTime":1776992047983,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":29184,"timestamp":7385101766296,"id":1464,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776992047954,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5364,"timestamp":7385101790274,"id":1488,"parentId":1487,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5395,"timestamp":7385101790244,"id":1487,"parentId":1476,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":6172,"timestamp":7385101789969,"id":1476,"parentId":1460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":9587,"timestamp":7385101790182,"id":1482,"parentId":1481,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11608,"timestamp":7385101790170,"id":1481,"parentId":1366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":11633,"timestamp":7385101790156,"id":1480,"parentId":1479,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":13407,"timestamp":7385101790145,"id":1479,"parentId":1364,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-dev-runtime.development.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":13504,"timestamp":7385101790201,"id":1484,"parentId":1483,"tags":{},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":16979,"timestamp":7385101790193,"id":1483,"parentId":1378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776992047978,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1136988,"timestamp":7385100672347,"id":847,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":10797,"timestamp":7385101799739,"id":1493,"parentId":1492,"tags":{},"startTime":1776992047988,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":11080,"timestamp":7385101799706,"id":1492,"parentId":1450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1776992047988,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":687489,"timestamp":7385101123556,"id":1230,"parentId":1142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776992047312,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":22687,"timestamp":7385101810141,"id":1497,"parentId":1496,"tags":{},"startTime":1776992047998,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":55,"timestamp":7385101832843,"id":1498,"parentId":1496,"tags":{},"startTime":1776992048021,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":24042,"timestamp":7385101810013,"id":1496,"parentId":1464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":"app-pages-browser"},"startTime":1776992047998,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1161926,"timestamp":7385100672233,"id":845,"parentId":844,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":26091,"timestamp":7385101808556,"id":1495,"parentId":1494,"tags":{},"startTime":1776992047997,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":144046,"timestamp":7385101808507,"id":1494,"parentId":1446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","layer":"app-pages-browser"},"startTime":1776992047996,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":547,"timestamp":7385101954648,"id":1502,"parentId":1501,"tags":{},"startTime":1776992048143,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1264,"timestamp":7385101954332,"id":1501,"parentId":1230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1776992048142,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":2242,"timestamp":7385101953366,"id":1500,"parentId":1499,"tags":{},"startTime":1776992048141,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":5366,"timestamp":7385101953309,"id":1499,"parentId":1492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js","layer":"app-pages-browser"},"startTime":1776992048141,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":888163,"timestamp":7385101077209,"id":1142,"parentId":853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776992047265,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":86,"timestamp":7385101982533,"id":1503,"parentId":1142,"tags":{},"startTime":1776992048170,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1310153,"timestamp":7385100672572,"id":849,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776992046861,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":626,"timestamp":7385101985627,"id":1505,"parentId":1504,"tags":{},"startTime":1776992048174,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":37,"timestamp":7385101986268,"id":1506,"parentId":1504,"tags":{},"startTime":1776992048174,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1064,"timestamp":7385101985507,"id":1504,"parentId":1494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776992048173,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":965,"timestamp":7385101988777,"id":1508,"parentId":1507,"tags":{},"startTime":1776992048177,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":44,"timestamp":7385101989751,"id":1509,"parentId":1507,"tags":{},"startTime":1776992048178,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":2113,"timestamp":7385101988681,"id":1507,"parentId":1504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776992048177,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1318512,"timestamp":7385100672586,"id":850,"parentId":844,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992046861,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":1318774,"timestamp":7385100672328,"id":846,"parentId":844,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992046860,"traceId":"27fab7e1c891f919"},{"name":"make","duration":1328090,"timestamp":7385100663026,"id":844,"parentId":843,"tags":{},"startTime":1776992046851,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1633,"timestamp":7385101994448,"id":1511,"parentId":1510,"tags":{},"startTime":1776992048182,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":17,"timestamp":7385101996096,"id":1513,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":39,"timestamp":7385101996124,"id":1514,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":5,"timestamp":7385101996172,"id":1515,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385101996184,"id":1516,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":669,"timestamp":7385101996090,"id":1512,"parentId":1510,"tags":{},"startTime":1776992048184,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":2960,"timestamp":7385102000200,"id":1517,"parentId":1510,"tags":{},"startTime":1776992048188,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":8843,"timestamp":7385102003175,"id":1518,"parentId":1510,"tags":{},"startTime":1776992048191,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":8994,"timestamp":7385102013482,"id":1519,"parentId":1510,"tags":{},"startTime":1776992048201,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":497,"timestamp":7385102022475,"id":1520,"parentId":1510,"tags":{},"startTime":1776992048210,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":88,"timestamp":7385102022945,"id":1521,"parentId":1510,"tags":{},"startTime":1776992048211,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":83201,"timestamp":7385102023037,"id":1522,"parentId":1510,"tags":{},"startTime":1776992048211,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":61,"timestamp":7385102106857,"id":1524,"parentId":843,"tags":{},"startTime":1776992048295,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":255,"timestamp":7385102106669,"id":1523,"parentId":843,"tags":{},"startTime":1776992048295,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":114826,"timestamp":7385101993758,"id":1510,"parentId":843,"tags":{},"startTime":1776992048182,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":1446014,"timestamp":7385100662616,"id":843,"parentId":253,"tags":{"name":"client"},"startTime":1776992046851,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":20562,"timestamp":7385102108647,"id":1525,"parentId":253,"tags":{},"startTime":1776992048297,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":2540750,"timestamp":7385099589089,"id":117,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776992045777,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":2154828,"timestamp":7385099975254,"id":253,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992046163,"traceId":"27fab7e1c891f919"}]
+[{"name":"handle-request","duration":2679562,"timestamp":7385099554775,"id":115,"tags":{"url":"/","isTurbopack":false},"startTime":1776992045743,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385102234372,"id":1526,"parentId":115,"tags":{"url":"/","memory.rss":"541704192","memory.heapUsed":"317853032","memory.heapTotal":"351911936"},"startTime":1776992048422,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":33,"timestamp":7385103845847,"id":1527,"parentId":3,"tags":{},"startTime":1776992050034,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":45249,"timestamp":7385104934255,"id":1528,"tags":{"url":"/","isTurbopack":false},"startTime":1776992051122,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385104979571,"id":1529,"parentId":1528,"tags":{"url":"/","memory.rss":"277135360","memory.heapUsed":"332335120","memory.heapTotal":"357679104"},"startTime":1776992051168,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":8,"timestamp":7385106264998,"id":1530,"parentId":3,"tags":{},"startTime":1776992052453,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":3,"timestamp":7385106265774,"id":1531,"parentId":3,"tags":{},"startTime":1776992052454,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":7927,"timestamp":7385107137782,"id":1537,"parentId":1536,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992053326,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":20081,"timestamp":7385107142522,"id":1539,"parentId":1538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776992053330,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3490,"timestamp":7385107165745,"id":1542,"parentId":1541,"tags":{},"startTime":1776992053354,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3616,"timestamp":7385107165626,"id":1541,"parentId":1540,"tags":{},"startTime":1776992053354,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":4259,"timestamp":7385107165407,"id":1540,"parentId":1539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"rsc"},"startTime":1776992053353,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":33140,"timestamp":7385107137831,"id":1538,"parentId":1536,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992053326,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":615,"timestamp":7385107181628,"id":1552,"parentId":1535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992053370,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3485,"timestamp":7385107184561,"id":1555,"parentId":1554,"tags":{},"startTime":1776992053372,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3581,"timestamp":7385107184470,"id":1554,"parentId":1553,"tags":{},"startTime":1776992053372,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5723,"timestamp":7385107184220,"id":1553,"parentId":1552,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"ssr"},"startTime":1776992053372,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":892,"timestamp":7385107194781,"id":1557,"parentId":1556,"tags":{},"startTime":1776992053383,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":36,"timestamp":7385107195692,"id":1558,"parentId":1556,"tags":{},"startTime":1776992053384,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":1306,"timestamp":7385107194662,"id":1556,"parentId":1553,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776992053383,"traceId":"27fab7e1c891f919"},{"name":"make","duration":60225,"timestamp":7385107136589,"id":1536,"parentId":1535,"tags":{},"startTime":1776992053325,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1493,"timestamp":7385107199049,"id":1560,"parentId":1559,"tags":{},"startTime":1776992053387,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":3,"timestamp":7385107200564,"id":1562,"parentId":1559,"tags":{},"startTime":1776992053389,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":1398,"timestamp":7385107200590,"id":1563,"parentId":1559,"tags":{},"startTime":1776992053389,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":12,"timestamp":7385107202004,"id":1564,"parentId":1559,"tags":{},"startTime":1776992053390,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385107202032,"id":1565,"parentId":1559,"tags":{},"startTime":1776992053390,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2029,"timestamp":7385107200557,"id":1561,"parentId":1559,"tags":{},"startTime":1776992053388,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":357,"timestamp":7385107203573,"id":1566,"parentId":1559,"tags":{},"startTime":1776992053392,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":1805,"timestamp":7385107203936,"id":1567,"parentId":1559,"tags":{},"startTime":1776992053392,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":767,"timestamp":7385107206820,"id":1568,"parentId":1559,"tags":{},"startTime":1776992053395,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":80,"timestamp":7385107207587,"id":1569,"parentId":1559,"tags":{},"startTime":1776992053396,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":33,"timestamp":7385107207661,"id":1570,"parentId":1559,"tags":{},"startTime":1776992053396,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":4847,"timestamp":7385107207697,"id":1571,"parentId":1559,"tags":{},"startTime":1776992053396,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":15464,"timestamp":7385107198342,"id":1559,"parentId":1535,"tags":{},"startTime":1776992053386,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":79697,"timestamp":7385107134999,"id":1535,"parentId":1533,"tags":{"name":"server"},"startTime":1776992053323,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":13100,"timestamp":7385107214714,"id":1572,"parentId":1533,"tags":{},"startTime":1776992053403,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":95787,"timestamp":7385107132385,"id":1533,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992053320,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":2084,"timestamp":7385107233542,"id":1578,"parentId":1574,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":6864,"timestamp":7385107233494,"id":1575,"parentId":1574,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":16366,"timestamp":7385107233548,"id":1580,"parentId":1574,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17476,"timestamp":7385107233528,"id":1576,"parentId":1574,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":17472,"timestamp":7385107233537,"id":1577,"parentId":1574,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":8793,"timestamp":7385107242252,"id":1584,"parentId":1583,"tags":{},"startTime":1776992053430,"traceId":"27fab7e1c891f919"},{"name":"postcss-process","duration":58389,"timestamp":7385107251095,"id":1586,"parentId":1585,"tags":{},"startTime":1776992053439,"traceId":"27fab7e1c891f919"},{"name":"postcss-loader","duration":59014,"timestamp":7385107251067,"id":1585,"parentId":1583,"tags":{},"startTime":1776992053439,"traceId":"27fab7e1c891f919"},{"name":"css-loader","duration":18551,"timestamp":7385107310110,"id":1587,"parentId":1583,"tags":{"astUsed":"true"},"startTime":1776992053498,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":87753,"timestamp":7385107242169,"id":1583,"parentId":1582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css.webpack[javascript/auto]!=!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":null},"startTime":1776992053430,"traceId":"27fab7e1c891f919"},{"name":"build-module-css","duration":99155,"timestamp":7385107236285,"id":1582,"parentId":1573,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776992053424,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":28,"timestamp":7385107336001,"id":1588,"parentId":1582,"tags":{},"startTime":1776992053524,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":103427,"timestamp":7385107233545,"id":1579,"parentId":1574,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":910,"timestamp":7385107355356,"id":1589,"parentId":1581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992053543,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4380,"timestamp":7385107358953,"id":1592,"parentId":1591,"tags":{},"startTime":1776992053547,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4495,"timestamp":7385107358847,"id":1591,"parentId":1590,"tags":{},"startTime":1776992053547,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":8011,"timestamp":7385107358504,"id":1590,"parentId":1589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"app-pages-browser"},"startTime":1776992053546,"traceId":"27fab7e1c891f919"},{"name":"read-resource","duration":3,"timestamp":7385107368956,"id":1594,"parentId":1593,"tags":{},"startTime":1776992053557,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":29,"timestamp":7385107368965,"id":1595,"parentId":1593,"tags":{},"startTime":1776992053557,"traceId":"27fab7e1c891f919"},{"name":"build-module-js","duration":413,"timestamp":7385107368848,"id":1593,"parentId":1590,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776992053557,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":138060,"timestamp":7385107233549,"id":1581,"parentId":1574,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992053421,"traceId":"27fab7e1c891f919"},{"name":"make","duration":141522,"timestamp":7385107230109,"id":1574,"parentId":1573,"tags":{},"startTime":1776992053418,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1535,"timestamp":7385107373379,"id":1597,"parentId":1596,"tags":{},"startTime":1776992053561,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":4,"timestamp":7385107374938,"id":1599,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":41,"timestamp":7385107374952,"id":1600,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":7,"timestamp":7385107375010,"id":1601,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":6,"timestamp":7385107375118,"id":1602,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":1077,"timestamp":7385107374931,"id":1598,"parentId":1596,"tags":{},"startTime":1776992053563,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":668,"timestamp":7385107376649,"id":1603,"parentId":1596,"tags":{},"startTime":1776992053565,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":1299,"timestamp":7385107377332,"id":1604,"parentId":1596,"tags":{},"startTime":1776992053565,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":2035,"timestamp":7385107379371,"id":1605,"parentId":1596,"tags":{},"startTime":1776992053567,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":81,"timestamp":7385107381406,"id":1606,"parentId":1596,"tags":{},"startTime":1776992053569,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":39,"timestamp":7385107381479,"id":1607,"parentId":1596,"tags":{},"startTime":1776992053569,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":4676,"timestamp":7385107381521,"id":1608,"parentId":1596,"tags":{},"startTime":1776992053569,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":60,"timestamp":7385107387563,"id":1610,"parentId":1573,"tags":{},"startTime":1776992053575,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":161,"timestamp":7385107387465,"id":1609,"parentId":1573,"tags":{},"startTime":1776992053575,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":16082,"timestamp":7385107372768,"id":1596,"parentId":1573,"tags":{},"startTime":1776992053561,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":159191,"timestamp":7385107229722,"id":1573,"parentId":1551,"tags":{"name":"client"},"startTime":1776992053418,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":4860,"timestamp":7385107388950,"id":1611,"parentId":1551,"tags":{},"startTime":1776992053577,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":263186,"timestamp":7385107132413,"id":1534,"tags":{"trigger":"/login","isTurbopack":false},"startTime":1776992053320,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":224261,"timestamp":7385107172473,"id":1551,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992053360,"traceId":"27fab7e1c891f919"}]
+[{"name":"client-success","duration":4,"timestamp":7385107401507,"id":1612,"parentId":3,"tags":{},"startTime":1776992053589,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":1,"timestamp":7385107401681,"id":1613,"parentId":3,"tags":{},"startTime":1776992053590,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":252000,"timestamp":7385107172873,"id":1615,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1776992053616,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":256000,"timestamp":7385107172756,"id":1616,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1776992053624,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":333309,"timestamp":7385107129819,"id":1532,"tags":{"url":"/login?_rsc=gdhdt","isTurbopack":false},"startTime":1776992053318,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":1,"timestamp":7385107463174,"id":1617,"parentId":1532,"tags":{"url":"/login?_rsc=gdhdt","memory.rss":"379355136","memory.heapUsed":"200592368","memory.heapTotal":"250134528"},"startTime":1776992053651,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":70462,"timestamp":7385107402439,"id":1614,"tags":{"url":"/?_rsc=qt7ii","isTurbopack":false},"startTime":1776992053590,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":0,"timestamp":7385107472927,"id":1619,"parentId":1614,"tags":{"url":"/?_rsc=qt7ii","memory.rss":"379863040","memory.heapUsed":"202523360","memory.heapTotal":"250380288"},"startTime":1776992053661,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":20303,"timestamp":7385107464621,"id":1618,"tags":{"url":"/login?_rsc=1f2yp","isTurbopack":false},"startTime":1776992053653,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":186,"timestamp":7385107485653,"id":1620,"parentId":1618,"tags":{"url":"/login?_rsc=1f2yp","memory.rss":"379879424","memory.heapUsed":"203614640","memory.heapTotal":"250380288"},"startTime":1776992053674,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":24805,"timestamp":7385279779633,"id":1628,"parentId":1625,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992225967,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":31739,"timestamp":7385279779626,"id":1627,"parentId":1625,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992225967,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":43375,"timestamp":7385279796115,"id":1629,"parentId":1626,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776992225984,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":139600,"timestamp":7385279853330,"id":1635,"parentId":1634,"tags":{},"startTime":1776992226041,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":139820,"timestamp":7385279853127,"id":1634,"parentId":1633,"tags":{},"startTime":1776992226041,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":141400,"timestamp":7385279852466,"id":1633,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1776992226040,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":148070,"timestamp":7385279845930,"id":1632,"parentId":1631,"tags":{},"startTime":1776992226034,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":148213,"timestamp":7385279845791,"id":1631,"parentId":1630,"tags":{},"startTime":1776992226033,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":150448,"timestamp":7385279845511,"id":1630,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1776992226033,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1311,"timestamp":7385280003084,"id":1640,"parentId":1639,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1373,"timestamp":7385280003029,"id":1639,"parentId":1636,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":2040,"timestamp":7385280002771,"id":1636,"parentId":1630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776992226190,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2037,"timestamp":7385280003149,"id":1644,"parentId":1643,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2068,"timestamp":7385280003121,"id":1643,"parentId":1638,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":2434,"timestamp":7385280002977,"id":1638,"parentId":1630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2437,"timestamp":7385280003118,"id":1642,"parentId":1641,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2469,"timestamp":7385280003088,"id":1641,"parentId":1637,"tags":{},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":2931,"timestamp":7385280002912,"id":1637,"parentId":1630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776992226191,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":226867,"timestamp":7385279779373,"id":1626,"parentId":1625,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992225967,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":772,"timestamp":7385280022412,"id":1658,"parentId":1624,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992226210,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":1392,"timestamp":7385280023201,"id":1659,"parentId":1624,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776992226211,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2375,"timestamp":7385280032143,"id":1668,"parentId":1667,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2416,"timestamp":7385280032109,"id":1667,"parentId":1664,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5631,"timestamp":7385280031958,"id":1664,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4989,"timestamp":7385280032673,"id":1671,"parentId":1670,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":5104,"timestamp":7385280032559,"id":1670,"parentId":1669,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":6274,"timestamp":7385280032331,"id":1669,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7713,"timestamp":7385280032105,"id":1666,"parentId":1665,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7767,"timestamp":7385280032054,"id":1665,"parentId":1663,"tags":{},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":13043,"timestamp":7385280031866,"id":1663,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776992226220,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":15498,"timestamp":7385280029727,"id":1662,"parentId":1661,"tags":{},"startTime":1776992226217,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":15585,"timestamp":7385280029642,"id":1661,"parentId":1660,"tags":{},"startTime":1776992226217,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":32144,"timestamp":7385280029400,"id":1660,"parentId":1658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1776992226217,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10061,"timestamp":7385280079703,"id":1675,"parentId":1674,"tags":{},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10317,"timestamp":7385280079454,"id":1674,"parentId":1672,"tags":{},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":11963,"timestamp":7385280079238,"id":1672,"parentId":1669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":11271,"timestamp":7385280079982,"id":1677,"parentId":1676,"tags":{},"startTime":1776992226268,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":11501,"timestamp":7385280079754,"id":1676,"parentId":1673,"tags":{},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":12890,"timestamp":7385280079374,"id":1673,"parentId":1669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776992226267,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":6124,"timestamp":7385280089131,"id":1681,"parentId":1680,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6182,"timestamp":7385280089076,"id":1680,"parentId":1678,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":7787,"timestamp":7385280088878,"id":1678,"parentId":1660,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7671,"timestamp":7385280089170,"id":1683,"parentId":1682,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7708,"timestamp":7385280089135,"id":1682,"parentId":1679,"tags":{},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":9617,"timestamp":7385280089013,"id":1679,"parentId":1660,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776992226277,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3506,"timestamp":7385280099397,"id":1686,"parentId":1685,"tags":{},"startTime":1776992226287,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3569,"timestamp":7385280099347,"id":1685,"parentId":1684,"tags":{},"startTime":1776992226287,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":4562,"timestamp":7385280099246,"id":1684,"parentId":1660,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776992226287,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1294,"timestamp":7385280106393,"id":1689,"parentId":1688,"tags":{},"startTime":1776992226294,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1348,"timestamp":7385280106342,"id":1688,"parentId":1687,"tags":{},"startTime":1776992226294,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":1928,"timestamp":7385280106210,"id":1687,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776992226294,"traceId":"27fab7e1c891f919"},{"name":"make","duration":333130,"timestamp":7385279775364,"id":1625,"parentId":1624,"tags":{},"startTime":1776992225963,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1615,"timestamp":7385280112335,"id":1691,"parentId":1690,"tags":{},"startTime":1776992226300,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":4,"timestamp":7385280113995,"id":1693,"parentId":1690,"tags":{},"startTime":1776992226302,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":1951,"timestamp":7385280114017,"id":1694,"parentId":1690,"tags":{},"startTime":1776992226302,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":6,"timestamp":7385280115984,"id":1695,"parentId":1690,"tags":{},"startTime":1776992226304,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385280116000,"id":1696,"parentId":1690,"tags":{},"startTime":1776992226304,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2936,"timestamp":7385280113986,"id":1692,"parentId":1690,"tags":{},"startTime":1776992226302,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":1086,"timestamp":7385280117908,"id":1697,"parentId":1690,"tags":{},"startTime":1776992226306,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":6327,"timestamp":7385280119009,"id":1698,"parentId":1690,"tags":{},"startTime":1776992226307,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1887,"timestamp":7385280126672,"id":1699,"parentId":1690,"tags":{},"startTime":1776992226314,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":88,"timestamp":7385280128558,"id":1700,"parentId":1690,"tags":{},"startTime":1776992226316,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":50,"timestamp":7385280128638,"id":1701,"parentId":1690,"tags":{},"startTime":1776992226316,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":13674,"timestamp":7385280128692,"id":1702,"parentId":1690,"tags":{},"startTime":1776992226316,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":42447,"timestamp":7385280111281,"id":1690,"parentId":1624,"tags":{},"startTime":1776992226299,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":382949,"timestamp":7385279774175,"id":1624,"parentId":1622,"tags":{"name":"server"},"startTime":1776992225962,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":13213,"timestamp":7385280157164,"id":1703,"parentId":1622,"tags":{},"startTime":1776992226345,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":424198,"timestamp":7385279747109,"id":1622,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992225935,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":5669,"timestamp":7385280190011,"id":1709,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":19026,"timestamp":7385280189938,"id":1706,"parentId":1705,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":21123,"timestamp":7385280190022,"id":1712,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":22398,"timestamp":7385280190014,"id":1710,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26187,"timestamp":7385280190019,"id":1711,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26329,"timestamp":7385280189991,"id":1707,"parentId":1705,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":26319,"timestamp":7385280190008,"id":1708,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":7543,"timestamp":7385280237654,"id":1715,"parentId":1713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992226425,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":2188,"timestamp":7385280245236,"id":1716,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992226433,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":20209,"timestamp":7385280250512,"id":1722,"parentId":1721,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":20307,"timestamp":7385280250428,"id":1721,"parentId":1717,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":28380,"timestamp":7385280250121,"id":1717,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":31887,"timestamp":7385280250755,"id":1726,"parentId":1725,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":31970,"timestamp":7385280250676,"id":1725,"parentId":1719,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":33622,"timestamp":7385280250311,"id":1719,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":33347,"timestamp":7385280250669,"id":1724,"parentId":1723,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":33470,"timestamp":7385280250550,"id":1723,"parentId":1718,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":37223,"timestamp":7385280250251,"id":1718,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":37859,"timestamp":7385280251774,"id":1728,"parentId":1727,"tags":{},"startTime":1776992226439,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":38827,"timestamp":7385280250809,"id":1727,"parentId":1720,"tags":{},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":49053,"timestamp":7385280250364,"id":1720,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1776992226438,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":1815,"timestamp":7385280304144,"id":1734,"parentId":1733,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":1860,"timestamp":7385280304114,"id":1733,"parentId":1730,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"}]
+[{"name":"build-module-tsx","duration":3451,"timestamp":7385280303993,"id":1730,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":3927,"timestamp":7385280304111,"id":1732,"parentId":1731,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":3981,"timestamp":7385280304059,"id":1731,"parentId":1729,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":5029,"timestamp":7385280303873,"id":1729,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":4281,"timestamp":7385280304691,"id":1740,"parentId":1739,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":4312,"timestamp":7385280304662,"id":1739,"parentId":1736,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":7820,"timestamp":7385280304564,"id":1736,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":7832,"timestamp":7385280304659,"id":1738,"parentId":1737,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":7867,"timestamp":7385280304626,"id":1737,"parentId":1735,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":9544,"timestamp":7385280304507,"id":1735,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":9243,"timestamp":7385280304858,"id":1743,"parentId":1742,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":9273,"timestamp":7385280304829,"id":1742,"parentId":1741,"tags":{},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":10205,"timestamp":7385280304780,"id":1741,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776992226492,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":2431,"timestamp":7385280318434,"id":1746,"parentId":1745,"tags":{},"startTime":1776992226506,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":2507,"timestamp":7385280318363,"id":1745,"parentId":1744,"tags":{},"startTime":1776992226506,"traceId":"27fab7e1c891f919"},{"name":"build-module-ts","duration":3783,"timestamp":7385280318111,"id":1744,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776992226506,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":132547,"timestamp":7385280190027,"id":1714,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":132574,"timestamp":7385280190024,"id":1713,"parentId":1705,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992226378,"traceId":"27fab7e1c891f919"},{"name":"make","duration":149040,"timestamp":7385280173590,"id":1705,"parentId":1704,"tags":{},"startTime":1776992226361,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":838,"timestamp":7385280324436,"id":1748,"parentId":1747,"tags":{},"startTime":1776992226512,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":5,"timestamp":7385280325285,"id":1750,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":28,"timestamp":7385280325299,"id":1751,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":5,"timestamp":7385280325339,"id":1752,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":2,"timestamp":7385280325352,"id":1753,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":828,"timestamp":7385280325281,"id":1749,"parentId":1747,"tags":{},"startTime":1776992226513,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":473,"timestamp":7385280327069,"id":1754,"parentId":1747,"tags":{},"startTime":1776992226515,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":5825,"timestamp":7385280327551,"id":1755,"parentId":1747,"tags":{},"startTime":1776992226515,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":3501,"timestamp":7385280337289,"id":1756,"parentId":1747,"tags":{},"startTime":1776992226525,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":99,"timestamp":7385280340789,"id":1757,"parentId":1747,"tags":{},"startTime":1776992226528,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":48,"timestamp":7385280340879,"id":1758,"parentId":1747,"tags":{},"startTime":1776992226529,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":10901,"timestamp":7385280340930,"id":1759,"parentId":1747,"tags":{},"startTime":1776992226529,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":80,"timestamp":7385280352791,"id":1761,"parentId":1704,"tags":{},"startTime":1776992226540,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":143,"timestamp":7385280352734,"id":1760,"parentId":1704,"tags":{},"startTime":1776992226540,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":30444,"timestamp":7385280323780,"id":1747,"parentId":1704,"tags":{},"startTime":1776992226511,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":181162,"timestamp":7385280173085,"id":1704,"parentId":1657,"tags":{"name":"client"},"startTime":1776992226361,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":5555,"timestamp":7385280354266,"id":1762,"parentId":1657,"tags":{},"startTime":1776992226542,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":613019,"timestamp":7385279747241,"id":1623,"tags":{"trigger":"/dashboard","isTurbopack":false},"startTime":1776992225935,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":353042,"timestamp":7385280007600,"id":1657,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992226195,"traceId":"27fab7e1c891f919"}]
+[{"name":"client-success","duration":5,"timestamp":7385280367880,"id":1763,"parentId":3,"tags":{},"startTime":1776992226556,"traceId":"27fab7e1c891f919"},{"name":"client-success","duration":0,"timestamp":7385280367955,"id":1764,"parentId":3,"tags":{},"startTime":1776992226556,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":677312,"timestamp":7385279723297,"id":1621,"tags":{"url":"/dashboard?_rsc=12xdt","isTurbopack":false},"startTime":1776992225911,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":2,"timestamp":7385280400855,"id":1765,"parentId":1621,"tags":{"url":"/dashboard?_rsc=12xdt","memory.rss":"283131904","memory.heapUsed":"199706464","memory.heapTotal":"237813760"},"startTime":1776992226588,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":388000,"timestamp":7385280008987,"id":1766,"parentId":3,"tags":{"updatedModules":[],"page":"/login","isPageHidden":false},"startTime":1776992226589,"traceId":"27fab7e1c891f919"},{"name":"client-hmr-latency","duration":392000,"timestamp":7385280015813,"id":1768,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776992226597,"traceId":"27fab7e1c891f919"},{"name":"handle-request","duration":16788,"timestamp":7385280403700,"id":1767,"tags":{"url":"/dashboard?_rsc=1i74o","isTurbopack":false},"startTime":1776992226591,"traceId":"27fab7e1c891f919"},{"name":"memory-usage","duration":23,"timestamp":7385280420535,"id":1769,"parentId":1767,"tags":{"url":"/dashboard?_rsc=1i74o","memory.rss":"283312128","memory.heapUsed":"201312464","memory.heapTotal":"237813760"},"startTime":1776992226608,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9102,"timestamp":7385298332329,"id":1777,"parentId":1774,"tags":{"request":"next-app-loader?name=app%2F(public)%2Fpage&page=%2F(public)%2Fpage&appPaths=%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":9114,"timestamp":7385298332331,"id":1778,"parentId":1774,"tags":{"request":"next-app-loader?name=app%2F(public)%2Flogin%2Fpage&page=%2F(public)%2Flogin%2Fpage&appPaths=%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":12004,"timestamp":7385298332325,"id":1776,"parentId":1774,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fdashboard%2Fpage&page=%2F(auth)%2Fdashboard%2Fpage&appPaths=%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":16550,"timestamp":7385298340685,"id":1779,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776992244528,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":5949,"timestamp":7385298362742,"id":1782,"parentId":1781,"tags":{},"startTime":1776992244550,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":6086,"timestamp":7385298362617,"id":1781,"parentId":1780,"tags":{},"startTime":1776992244550,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":7029,"timestamp":7385298362409,"id":1780,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"rsc"},"startTime":1776992244550,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":38954,"timestamp":7385298332272,"id":1775,"parentId":1774,"tags":{"request":"next-app-loader?name=app%2F(auth)%2Fsettings%2Fpage&page=%2F(auth)%2Fsettings%2Fpage&appPaths=%2F(auth)%2Fsettings%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsettings%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776992244520,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":2588,"timestamp":7385298388180,"id":1800,"parentId":1773,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776992244576,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":10001,"timestamp":7385298394695,"id":1803,"parentId":1802,"tags":{},"startTime":1776992244582,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":10103,"timestamp":7385298394607,"id":1802,"parentId":1801,"tags":{},"startTime":1776992244582,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":33750,"timestamp":7385298394265,"id":1801,"parentId":1800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"ssr"},"startTime":1776992244582,"traceId":"27fab7e1c891f919"},{"name":"make","duration":109730,"timestamp":7385298328641,"id":1774,"parentId":1773,"tags":{},"startTime":1776992244516,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":1794,"timestamp":7385298440495,"id":1805,"parentId":1804,"tags":{},"startTime":1776992244628,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":5,"timestamp":7385298442318,"id":1807,"parentId":1804,"tags":{},"startTime":1776992244630,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":1784,"timestamp":7385298442340,"id":1808,"parentId":1804,"tags":{},"startTime":1776992244630,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":8,"timestamp":7385298444144,"id":1809,"parentId":1804,"tags":{},"startTime":1776992244632,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385298444163,"id":1810,"parentId":1804,"tags":{},"startTime":1776992244632,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":2428,"timestamp":7385298442307,"id":1806,"parentId":1804,"tags":{},"startTime":1776992244630,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":1249,"timestamp":7385298446117,"id":1811,"parentId":1804,"tags":{},"startTime":1776992244634,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":2491,"timestamp":7385298447575,"id":1812,"parentId":1804,"tags":{},"startTime":1776992244635,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":1510,"timestamp":7385298451380,"id":1813,"parentId":1804,"tags":{},"startTime":1776992244639,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":94,"timestamp":7385298452889,"id":1814,"parentId":1804,"tags":{},"startTime":1776992244640,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":74,"timestamp":7385298452972,"id":1815,"parentId":1804,"tags":{},"startTime":1776992244641,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":5506,"timestamp":7385298453049,"id":1816,"parentId":1804,"tags":{},"startTime":1776992244641,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":20117,"timestamp":7385298439829,"id":1804,"parentId":1773,"tags":{},"startTime":1776992244627,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":133388,"timestamp":7385298328343,"id":1773,"parentId":1771,"tags":{"name":"server"},"startTime":1776992244516,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":5192,"timestamp":7385298461757,"id":1817,"parentId":1771,"tags":{},"startTime":1776992244649,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-server","duration":141321,"timestamp":7385298326067,"id":1771,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992244514,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":5928,"timestamp":7385298475910,"id":1823,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"build-module","duration":1182,"timestamp":7385298482475,"id":1830,"parentId":1829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776992244670,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10463,"timestamp":7385298475862,"id":1820,"parentId":1819,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776992244663,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":10994,"timestamp":7385298475917,"id":1826,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":11059,"timestamp":7385298475923,"id":1828,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":16741,"timestamp":7385298475921,"id":1827,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":16765,"timestamp":7385298475912,"id":1824,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18617,"timestamp":7385298475915,"id":1825,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18665,"timestamp":7385298475902,"id":1821,"parentId":1819,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":18662,"timestamp":7385298475908,"id":1822,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"next-swc-transform","duration":14180,"timestamp":7385298493880,"id":1833,"parentId":1832,"tags":{},"startTime":1776992244681,"traceId":"27fab7e1c891f919"},{"name":"next-swc-loader","duration":14284,"timestamp":7385298493787,"id":1832,"parentId":1831,"tags":{},"startTime":1776992244681,"traceId":"27fab7e1c891f919"},{"name":"build-module-tsx","duration":47355,"timestamp":7385298493504,"id":1831,"parentId":1830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/settings/page.tsx","layer":"app-pages-browser"},"startTime":1776992244681,"traceId":"27fab7e1c891f919"},{"name":"add-entry","duration":101408,"timestamp":7385298475925,"id":1829,"parentId":1819,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776992244664,"traceId":"27fab7e1c891f919"},{"name":"make","duration":108488,"timestamp":7385298468906,"id":1819,"parentId":1818,"tags":{},"startTime":1776992244657,"traceId":"27fab7e1c891f919"},{"name":"chunk-graph","duration":3994,"timestamp":7385298579079,"id":1835,"parentId":1834,"tags":{},"startTime":1776992244767,"traceId":"27fab7e1c891f919"},{"name":"optimize-modules","duration":2,"timestamp":7385298583097,"id":1837,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunks","duration":33,"timestamp":7385298583110,"id":1838,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize-tree","duration":6,"timestamp":7385298583160,"id":1839,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize-chunk-modules","duration":3,"timestamp":7385298583180,"id":1840,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"optimize","duration":1293,"timestamp":7385298583090,"id":1836,"parentId":1834,"tags":{},"startTime":1776992244771,"traceId":"27fab7e1c891f919"},{"name":"module-hash","duration":658,"timestamp":7385298585483,"id":1841,"parentId":1834,"tags":{},"startTime":1776992244773,"traceId":"27fab7e1c891f919"},{"name":"code-generation","duration":2546,"timestamp":7385298586160,"id":1842,"parentId":1834,"tags":{},"startTime":1776992244774,"traceId":"27fab7e1c891f919"},{"name":"hash","duration":8358,"timestamp":7385298591481,"id":1843,"parentId":1834,"tags":{},"startTime":1776992244779,"traceId":"27fab7e1c891f919"},{"name":"code-generation-jobs","duration":140,"timestamp":7385298599837,"id":1844,"parentId":1834,"tags":{},"startTime":1776992244787,"traceId":"27fab7e1c891f919"},{"name":"module-assets","duration":49,"timestamp":7385298599968,"id":1845,"parentId":1834,"tags":{},"startTime":1776992244788,"traceId":"27fab7e1c891f919"},{"name":"create-chunk-assets","duration":7569,"timestamp":7385298600019,"id":1846,"parentId":1834,"tags":{},"startTime":1776992244788,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-generateClientManifest","duration":106,"timestamp":7385298608704,"id":1848,"parentId":1818,"tags":{},"startTime":1776992244796,"traceId":"27fab7e1c891f919"},{"name":"NextJsBuildManifest-createassets","duration":375,"timestamp":7385298608447,"id":1847,"parentId":1818,"tags":{},"startTime":1776992244796,"traceId":"27fab7e1c891f919"},{"name":"seal","duration":31930,"timestamp":7385298578363,"id":1834,"parentId":1818,"tags":{},"startTime":1776992244766,"traceId":"27fab7e1c891f919"},{"name":"webpack-compilation","duration":141692,"timestamp":7385298468655,"id":1818,"parentId":1799,"tags":{"name":"client"},"startTime":1776992244656,"traceId":"27fab7e1c891f919"},{"name":"emit","duration":6948,"timestamp":7385298610371,"id":1849,"parentId":1799,"tags":{},"startTime":1776992244798,"traceId":"27fab7e1c891f919"},{"name":"compile-path","duration":292102,"timestamp":7385298326096,"id":1772,"tags":{"trigger":"/settings","isTurbopack":false},"startTime":1776992244514,"traceId":"27fab7e1c891f919"},{"name":"webpack-invalidated-client","duration":243388,"timestamp":7385298375200,"id":1799,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776992244563,"traceId":"27fab7e1c891f919"}]
diff --git a/frontend/src/app/(auth)/settings/page.tsx b/frontend/src/app/(auth)/settings/page.tsx
index 73c5b6f3..69b86830 100644
--- a/frontend/src/app/(auth)/settings/page.tsx
+++ b/frontend/src/app/(auth)/settings/page.tsx
@@ -4,15 +4,18 @@ import { useState, useEffect, useCallback } from "react";
import { useAuth } from "@/hooks/use-auth";
import {
listUsersAPI,
- createUserAPI,
disableUserAPI,
resetPasswordAPI,
+ listInviteCodesAPI,
+ createInviteCodeAPI,
+ toggleInviteCodeAPI,
getDataStatsAPI,
dataResetAPI,
getErrorLogsAPI,
clearErrorLogsAPI,
getSystemStatusAPI,
type UserItem,
+ type InviteCodeItem,
type DataStats,
type ErrorLog,
type SystemStatus,
@@ -24,20 +27,23 @@ export default function UsersPage() {
const { user: currentUser } = useAuth();
const [tab, setTab] = useState("users");
- // ── Users state ──
const [users, setUsers] = useState([]);
+ const [inviteCodes, setInviteCodes] = useState([]);
const [loading, setLoading] = useState(true);
+ const [inviteLoading, setInviteLoading] = useState(true);
const [error, setError] = useState("");
- const [showCreate, setShowCreate] = useState(false);
- const [newUsername, setNewUsername] = useState("");
- const [newRole, setNewRole] = useState("user");
- const [createLoading, setCreateLoading] = useState(false);
- const [createError, setCreateError] = useState("");
- const [createdResult, setCreatedResult] = useState<{ username: string; password: string } | null>(null);
- const [resetResult, setResetResult] = useState<{ username: string; password: string } | null>(null);
+
+ const [showCreateInvite, setShowCreateInvite] = useState(false);
+ const [inviteCode, setInviteCode] = useState("");
+ const [inviteDescription, setInviteDescription] = useState("");
+ const [inviteMaxUses, setInviteMaxUses] = useState("10");
+ const [createInviteLoading, setCreateInviteLoading] = useState(false);
+ const [createInviteError, setCreateInviteError] = useState("");
+ const [createdInviteCode, setCreatedInviteCode] = useState(null);
+
+ const [resetResult, setResetResult] = useState<{ email: string; password: string } | null>(null);
const [copied, setCopied] = useState(false);
- // ── Data reset state ──
const [dataStats, setDataStats] = useState(null);
const [resetMode, setResetMode] = useState<"all" | "recommendations" | "date_range" | "low_score">("low_score");
const [beforeDate, setBeforeDate] = useState("");
@@ -45,7 +51,6 @@ export default function UsersPage() {
const [resetResultMsg, setResetResultMsg] = useState(null);
const [confirmReset, setConfirmReset] = useState(false);
- // ── Logs state ──
const [logs, setLogs] = useState([]);
const [logsTotal, setLogsTotal] = useState(0);
const [logSources, setLogSources] = useState([]);
@@ -57,8 +62,8 @@ export default function UsersPage() {
const [expandedLogId, setExpandedLogId] = useState(null);
const [systemStatus, setSystemStatus] = useState(null);
- function copyCredential(username: string, password: string) {
- const text = `用户名:${username}\n密码:${password}`;
+ function copyCredential(account: string, password: string) {
+ const text = `邮箱:${account}\n密码:${password}`;
navigator.clipboard.writeText(text).then(() => {
setCopied(true);
setTimeout(() => setCopied(false), 2000);
@@ -76,12 +81,23 @@ export default function UsersPage() {
}
}, []);
+ const fetchInviteCodes = useCallback(async () => {
+ try {
+ const data = await listInviteCodesAPI();
+ setInviteCodes(data);
+ } catch {
+ setError("加载邀请码失败");
+ } finally {
+ setInviteLoading(false);
+ }
+ }, []);
+
const fetchStats = useCallback(async () => {
try {
const stats = await getDataStatsAPI();
setDataStats(stats);
} catch {
- // silently fail
+ // ignore
}
}, []);
@@ -94,7 +110,7 @@ export default function UsersPage() {
setLogSources(result.sources);
setLogLevels(result.levels);
} catch {
- // silently fail
+ // ignore
} finally {
setLogsLoading(false);
}
@@ -105,17 +121,18 @@ export default function UsersPage() {
const status = await getSystemStatusAPI();
setSystemStatus(status);
} catch {
- // silently fail
+ // ignore
}
}, []);
useEffect(() => {
if (currentUser?.role === "admin") {
fetchUsers();
+ fetchInviteCodes();
fetchStats();
fetchSystemStatus();
}
- }, [currentUser, fetchUsers, fetchStats, fetchSystemStatus]);
+ }, [currentUser, fetchUsers, fetchInviteCodes, fetchStats, fetchSystemStatus]);
useEffect(() => {
if (currentUser?.role === "admin" && tab === "logs") {
@@ -131,24 +148,35 @@ export default function UsersPage() {
);
}
- async function handleCreate(e: React.FormEvent) {
+ async function handleCreateInvite(e: React.FormEvent) {
e.preventDefault();
- setCreateError("");
- if (!newUsername.trim()) {
- setCreateError("请输入用户名");
+ setCreateInviteError("");
+
+ const normalizedCode = inviteCode.trim().toUpperCase();
+ const maxUses = Number(inviteMaxUses);
+
+ if (!normalizedCode) {
+ setCreateInviteError("请输入邀请码");
return;
}
- setCreateLoading(true);
+ if (!Number.isFinite(maxUses) || maxUses < 1) {
+ setCreateInviteError("邀请人数上限至少为 1");
+ return;
+ }
+
+ setCreateInviteLoading(true);
try {
- const result = await createUserAPI(newUsername.trim(), newRole);
- setCreatedResult({ username: result.username, password: result.password });
- setNewUsername("");
- setNewRole("user");
+ const result = await createInviteCodeAPI(normalizedCode, inviteDescription.trim(), maxUses);
+ setCreatedInviteCode(result.code);
+ setInviteCode("");
+ setInviteDescription("");
+ setInviteMaxUses("10");
+ fetchInviteCodes();
fetchUsers();
} catch (err) {
- setCreateError(err instanceof Error ? err.message : "创建失败");
+ setCreateInviteError(err instanceof Error ? err.message : "创建失败");
} finally {
- setCreateLoading(false);
+ setCreateInviteLoading(false);
}
}
@@ -164,13 +192,23 @@ export default function UsersPage() {
async function handleResetPassword(userId: number) {
try {
const result = await resetPasswordAPI(userId);
- setResetResult({ username: result.username, password: result.password });
+ setCopied(false);
+ setResetResult({ email: result.email, password: result.password });
fetchUsers();
} catch (err) {
alert(err instanceof Error ? err.message : "操作失败");
}
}
+ async function handleToggleInvite(inviteId: number) {
+ try {
+ await toggleInviteCodeAPI(inviteId);
+ fetchInviteCodes();
+ } catch (err) {
+ alert(err instanceof Error ? err.message : "操作失败");
+ }
+ }
+
async function handleDataReset() {
setConfirmReset(false);
setResetLoading(true);
@@ -205,14 +243,13 @@ export default function UsersPage() {
}
const tabs: { key: Tab; label: string }[] = [
- { key: "users", label: "用户管理" },
+ { key: "users", label: "用户与邀请码" },
{ key: "data", label: "数据管理" },
{ key: "logs", label: "系统日志" },
];
return (
-
- {/* Header + Tabs */}
+
系统设置
@@ -232,95 +269,235 @@ export default function UsersPage() {
- {/* ── Tab: Users ── */}
{tab === "users" && (
- <>
-
- { setShowCreate(true); setCreateError(""); setCreatedResult(null); }}
- className="px-4 py-2 rounded-xl text-sm font-medium bg-gradient-to-r from-amber-500/20 to-amber-600/15 text-amber-400 border border-amber-500/10 hover:from-amber-500/30 hover:to-amber-600/25 transition-all"
- >
- + 创建用户
-
-
-
- {error &&
{error}
}
-
- {loading ? (
-
- {[1, 2, 3].map((i) => (
-
- ))}
+
+
+
+
+
用户列表
+
已注册用户、角色、邀请码来源与账号状态
+
+
{users.length} 个用户
- ) : (
-
- {users.map((u) => (
-
-
-
- {u.username.charAt(0).toUpperCase()}
-
-
-
-
{u.username}
-
{u.role}
- {!u.is_active &&
已禁用 }
+
+ {error &&
{error}
}
+
+ {loading ? (
+
+ {[1, 2, 3].map((i) => (
+
+ ))}
+
+ ) : users.length === 0 ? (
+
+ ) : (
+
+ {users.map((u) => (
+
+
+
+ {(u.email || u.username).charAt(0).toUpperCase()}
+
+
+
+ {u.email || u.username}
+
+ {u.role}
+
+ {!u.is_active && 已禁用 }
+
+
+ 邀请码来源:{u.invite_code_used || "系统初始化/手动创建"}
+
+ {u.created_at && (
+
创建于 {new Date(u.created_at).toLocaleString("zh-CN")}
+ )}
- {u.created_at &&
创建于 {new Date(u.created_at).toLocaleDateString("zh-CN")}
}
+ {u.id !== currentUser!.id && (
+
+ handleResetPassword(u.id)}
+ className="px-3 py-1.5 rounded-lg text-xs text-text-secondary hover:text-text-primary bg-surface-2 hover:bg-surface-4 border border-border-subtle transition-all"
+ >
+ 重置密码
+
+ {u.is_active ? (
+ handleDisable(u.id)}
+ className="px-3 py-1.5 rounded-lg text-xs text-red-400/60 hover:text-red-400 bg-red-500/[0.03] hover:bg-red-500/[0.08] border border-red-500/[0.06] transition-all"
+ >
+ 禁用
+
+ ) : (
+ 已禁用
+ )}
+
+ )}
- {u.id !== currentUser!.id && (
-
- handleResetPassword(u.id)} className="px-3 py-1.5 rounded-lg text-xs text-text-secondary hover:text-text-primary bg-surface-2 hover:bg-surface-4 border border-border-subtle transition-all">重置密码
- {u.is_active ? (
- handleDisable(u.id)} className="px-3 py-1.5 rounded-lg text-xs text-red-400/60 hover:text-red-400 bg-red-500/[0.03] hover:bg-red-500/[0.08] border border-red-500/[0.06] transition-all">禁用
- ) : (
- 已禁用
- )}
-
- )}
-
- ))}
- {users.length === 0 &&
}
-
- )}
+ ))}
+
+ )}
+
- {/* Create User Dialog */}
- {showCreate && (
-
-
setShowCreate(false)} />
-
- {createdResult ? (
-
-
用户创建成功
-
-
用户名 {createdResult.username}
-
密码 {createdResult.password}
+
+
+
+
邀请码管理
+
控制注册入口和每个邀请码的可邀请人数
+
+
{
+ setShowCreateInvite(true);
+ setCreatedInviteCode(null);
+ setCreateInviteError("");
+ }}
+ className="px-4 py-2 rounded-xl text-sm font-medium bg-gradient-to-r from-amber-500/20 to-amber-600/15 text-amber-400 border border-amber-500/10 hover:from-amber-500/30 hover:to-amber-600/25 transition-all"
+ >
+ + 新建邀请码
+
+
+
+ {inviteLoading ? (
+
+ {[1, 2, 3].map((i) => (
+
+ ))}
+
+ ) : inviteCodes.length === 0 ? (
+
+ ) : (
+
+ {inviteCodes.map((item) => {
+ const isExhausted = item.max_uses > 0 && item.used_count >= item.max_uses;
+ return (
+
+
+
+
+ {item.code}
+
+ {item.is_active ? "启用中" : "已停用"}
+
+ {isExhausted && 已用完 }
+
+
{item.description || "无说明"}
+
+
handleToggleInvite(item.id)}
+ className="px-3 py-1.5 rounded-lg text-xs text-text-secondary hover:text-text-primary bg-surface-2 hover:bg-surface-4 border border-border-subtle transition-all"
+ >
+ {item.is_active ? "停用" : "启用"}
+
+
+
+
+
+
已邀请
+
{item.used_count}
+
+
+
+
剩余
+
+ {Math.max(item.max_uses - item.used_count, 0)}
+
+
+
+
+ );
+ })}
+
+ )}
+
+
+ {showCreateInvite && (
+
+
setShowCreateInvite(false)} />
+
+ {createdInviteCode ? (
+
+
邀请码创建成功
+
+
+ 邀请码
+ {createdInviteCode}
+
-
请妥善保管密码,此密码仅显示一次
- copyCredential(createdResult.username, createdResult.password)} className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-gradient-to-r from-amber-500/20 to-amber-600/15 text-amber-400 border border-amber-500/10 hover:from-amber-500/30 hover:to-amber-600/25 transition-all">{copied ? "已复制" : "一键复制"}
- setShowCreate(false)} className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-surface-3 border border-border-default text-text-secondary hover:text-text-primary hover:bg-surface-4 transition-all">关闭
+ {
+ navigator.clipboard.writeText(createdInviteCode);
+ setCopied(true);
+ setTimeout(() => setCopied(false), 2000);
+ }}
+ className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-gradient-to-r from-amber-500/20 to-amber-600/15 text-amber-400 border border-amber-500/10 hover:from-amber-500/30 hover:to-amber-600/25 transition-all"
+ >
+ {copied ? "已复制" : "复制邀请码"}
+
+ {
+ setShowCreateInvite(false);
+ setCopied(false);
+ }}
+ className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-surface-3 border border-border-default text-text-secondary hover:text-text-primary hover:bg-surface-4 transition-all"
+ >
+ 关闭
+
) : (
<>
-
创建新用户
-
>
@@ -329,28 +506,42 @@ export default function UsersPage() {
)}
- {/* Reset Password Result Dialog */}
{resetResult && (
setResetResult(null)} />
密码已重置
-
用户名 {resetResult.username}
-
新密码 {resetResult.password}
+
+ 邮箱
+ {resetResult.email}
+
+
+ 新密码
+ {resetResult.password}
+
请妥善保管新密码,此密码仅显示一次
- copyCredential(resetResult.username, resetResult.password)} className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-gradient-to-r from-amber-500/20 to-amber-600/15 text-amber-400 border border-amber-500/10 hover:from-amber-500/30 hover:to-amber-600/25 transition-all">{copied ? "已复制" : "一键复制"}
- setResetResult(null)} className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-surface-3 border border-border-default text-text-secondary hover:text-text-primary hover:bg-surface-4 transition-all">关闭
+ copyCredential(resetResult.email, resetResult.password)}
+ className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-gradient-to-r from-amber-500/20 to-amber-600/15 text-amber-400 border border-amber-500/10 hover:from-amber-500/30 hover:to-amber-600/25 transition-all"
+ >
+ {copied ? "已复制" : "一键复制"}
+
+ setResetResult(null)}
+ className="flex-1 py-2.5 rounded-xl text-sm font-medium bg-surface-3 border border-border-default text-text-secondary hover:text-text-primary hover:bg-surface-4 transition-all"
+ >
+ 关闭
+
)}
- >
+
)}
- {/* ── Tab: Data ── */}
{tab === "data" && dataStats && (
数据统计 & 重置
@@ -395,10 +586,8 @@ export default function UsersPage() {
)}
- {/* ── Tab: Logs ── */}
{tab === "logs" && (
- {/* System Status */}
{systemStatus && (
系统状态
@@ -427,7 +616,6 @@ export default function UsersPage() {
)}
- {/* Filters */}
setLogFilterSource(e.target.value)} className="bg-surface-2 border border-border-default rounded-lg px-3 py-1.5 text-xs text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30 appearance-none">
全部来源
@@ -453,7 +641,6 @@ export default function UsersPage() {
{logsTotal} 条记录
- {/* Error list */}
{logsLoading ? (
{[1, 2, 3].map((i) =>
)}
@@ -490,4 +677,4 @@ export default function UsersPage() {
)}
);
-}
\ No newline at end of file
+}
diff --git a/frontend/src/app/(public)/login/page.tsx b/frontend/src/app/(public)/login/page.tsx
index 68aaa0e5..6ece002c 100644
--- a/frontend/src/app/(public)/login/page.tsx
+++ b/frontend/src/app/(public)/login/page.tsx
@@ -1,29 +1,53 @@
"use client";
-import { useState } from "react";
+import { useMemo, useState } from "react";
import { useRouter } from "next/navigation";
import { useAuth } from "@/hooks/use-auth";
+import { registerAPI, sendRegisterCodeAPI } from "@/lib/api";
+
+type Tab = "login" | "register";
export default function LoginPage() {
- const [username, setUsername] = useState("");
+ const router = useRouter();
+ const { login } = useAuth();
+
+ const [tab, setTab] = useState
("login");
+ const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const [error, setError] = useState("");
const [submitting, setSubmitting] = useState(false);
- const { login } = useAuth();
- const router = useRouter();
- async function handleSubmit(e: React.FormEvent) {
+ const [registerEmail, setRegisterEmail] = useState("");
+ const [inviteCode, setInviteCode] = useState("");
+ const [emailCode, setEmailCode] = useState("");
+ const [registerPassword, setRegisterPassword] = useState("");
+ const [confirmPassword, setConfirmPassword] = useState("");
+ const [registerSubmitting, setRegisterSubmitting] = useState(false);
+ const [registerError, setRegisterError] = useState("");
+ const [registerSuccess, setRegisterSuccess] = useState("");
+ const [sendingCode, setSendingCode] = useState(false);
+ const [cooldown, setCooldown] = useState(0);
+
+ useMemo(() => {
+ if (!cooldown) return;
+ const timer = window.setTimeout(() => setCooldown((v) => Math.max(v - 1, 0)), 1000);
+ return () => window.clearTimeout(timer);
+ }, [cooldown]);
+
+ async function handleLoginSubmit(e: React.FormEvent) {
e.preventDefault();
setError("");
-
- if (!username.trim() || !password.trim()) {
- setError("请输入用户名和密码");
+ if (!email.trim() || !password.trim()) {
+ setError("请输入邮箱和密码");
+ return;
+ }
+ if (password.length < 6) {
+ setError("密码至少 6 位");
return;
}
-
setSubmitting(true);
try {
- await login(username, password);
+ await login(email.trim(), password);
router.push("/dashboard");
} catch (err) {
setError(err instanceof Error ? err.message : "登录失败,请重试");
@@ -32,80 +56,197 @@ export default function LoginPage() {
}
}
+ async function handleSendCode() {
+ setRegisterError("");
+ if (!registerEmail.trim() || !inviteCode.trim()) {
+ setRegisterError("请先填写邀请码和邮箱");
+ return;
+ }
+ setSendingCode(true);
+ try {
+ const result = await sendRegisterCodeAPI(registerEmail.trim(), inviteCode.trim());
+ setRegisterSuccess(result.message);
+ setCooldown(60);
+ } catch (err) {
+ setRegisterError(err instanceof Error ? err.message : "发送失败");
+ } finally {
+ setSendingCode(false);
+ }
+ }
+
+ async function handleRegisterSubmit(e: React.FormEvent) {
+ e.preventDefault();
+ setRegisterError("");
+ setRegisterSuccess("");
+ if (!inviteCode.trim() || !registerEmail.trim() || !emailCode.trim() || !registerPassword.trim() || !confirmPassword.trim()) {
+ setRegisterError("请填写完整注册信息");
+ return;
+ }
+ if (registerPassword.length < 6) {
+ setRegisterError("密码至少 6 位");
+ return;
+ }
+ if (registerPassword !== confirmPassword) {
+ setRegisterError("两次输入的密码不一致");
+ return;
+ }
+ setRegisterSubmitting(true);
+ try {
+ const result = await registerAPI(registerEmail.trim(), inviteCode.trim(), emailCode.trim(), registerPassword);
+ setRegisterSuccess(result.message);
+ setTab("login");
+ setEmail(registerEmail.trim());
+ setPassword(registerPassword);
+ setEmailCode("");
+ } catch (err) {
+ setRegisterError(err instanceof Error ? err.message : "注册失败");
+ } finally {
+ setRegisterSubmitting(false);
+ }
+ }
+
return (
- {/* Ambient glow */}
-
- {/* Brand */}
+
-
-
- Dragon AI Agent
-
+
Dragon AI Agent
A 股智能筛选引擎
- {/* Login card */}
-
登录以继续
+
+ {[
+ { key: "login", label: "登录" },
+ { key: "register", label: "注册" },
+ ].map((item) => (
+ setTab(item.key as Tab)}
+ className={`flex-1 rounded-xl py-2.5 text-sm font-medium transition-all ${
+ tab === item.key
+ ? "bg-gradient-to-r from-amber-500/20 to-amber-600/15 text-amber-400 border border-amber-500/10"
+ : "bg-surface-2 text-text-muted border border-transparent hover:text-text-secondary"
+ }`}
+ >
+ {item.label}
+
+ ))}
+
-
-
- {/* Error */}
- {error && (
-
- {error}
-
+
setConfirmPassword(e.target.value)}
+ className="w-full bg-surface-2 border border-border-default rounded-xl px-4 py-3 text-sm text-text-primary focus:outline-none focus:ring-1 focus:ring-amber-500/30"
+ autoComplete="new-password"
+ />
+
+ {registerSubmitting ? "注册中..." : "完成注册"}
+
+ {registerError ? (
+
{registerError}
+ ) : null}
+ {registerSuccess ? (
+
{registerSuccess}
+ ) : null}
+
)}
- {/* Footer link */}
返回首页
);
-}
\ No newline at end of file
+}
diff --git a/frontend/src/components/user-menu.tsx b/frontend/src/components/user-menu.tsx
index 8fe74ff1..9249b1b4 100644
--- a/frontend/src/components/user-menu.tsx
+++ b/frontend/src/components/user-menu.tsx
@@ -16,7 +16,7 @@ export function UserMenu() {
- {user.username}
+ {user.email || user.username}
{user.role}
diff --git a/frontend/src/hooks/use-auth.tsx b/frontend/src/hooks/use-auth.tsx
index a359a4b8..0faef01e 100644
--- a/frontend/src/hooks/use-auth.tsx
+++ b/frontend/src/hooks/use-auth.tsx
@@ -6,7 +6,7 @@ import { type AuthUser, loginAPI } from "@/lib/api";
interface AuthContextValue {
user: AuthUser | null;
loading: boolean;
- login: (username: string, password: string) => Promise;
+ login: (email: string, password: string) => Promise;
logout: () => void;
}
@@ -35,8 +35,8 @@ export function AuthProvider({ children }: { children: ReactNode }) {
setLoading(false);
}, []);
- const login = useCallback(async (username: string, password: string) => {
- const res = await loginAPI(username, password);
+ const login = useCallback(async (email: string, password: string) => {
+ const res = await loginAPI(email, password);
localStorage.setItem("auth_token", res.token);
localStorage.setItem("auth_user", JSON.stringify(res.user));
setUser(res.user);
diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts
index e21325b4..2029b9b1 100644
--- a/frontend/src/lib/api.ts
+++ b/frontend/src/lib/api.ts
@@ -552,6 +552,7 @@ export async function* streamChat(
export interface AuthUser {
id: number;
username: string;
+ email: string;
role: "admin" | "user";
}
@@ -560,11 +561,11 @@ export interface LoginResponse {
user: AuthUser;
}
-export async function loginAPI(username: string, password: string): Promise {
+export async function loginAPI(email: string, password: string): Promise {
const res = await fetch(`${API_BASE}/api/auth/login`, {
method: "POST",
headers: { "Content-Type": "application/json" },
- body: JSON.stringify({ username, password }),
+ body: JSON.stringify({ email, password }),
});
if (!res.ok) {
const data = await res.json().catch(() => ({}));
@@ -573,25 +574,56 @@ export async function loginAPI(username: string, password: string): Promise {
+ return postAPI<{ message: string }>("/api/auth/send-register-code", {
+ email,
+ invite_code: inviteCode,
+ });
+}
+
+export async function registerAPI(
+ email: string,
+ inviteCode: string,
+ emailCode: string,
+ password: string
+): Promise<{ message: string }> {
+ return postAPI<{ message: string }>("/api/auth/register", {
+ email,
+ invite_code: inviteCode,
+ email_code: emailCode,
+ password,
+ });
+}
+
// ---------- User Management ----------
export interface UserItem {
id: number;
username: string;
+ email: string;
role: "admin" | "user";
is_active: boolean;
+ invite_code_used?: string;
created_at: string | null;
}
export interface CreateUserResult {
- username: string;
- password: string;
- role: string;
message: string;
+ code: string;
+}
+
+export interface InviteCodeItem {
+ id: number;
+ code: string;
+ description: string;
+ is_active: boolean;
+ max_uses: number;
+ used_count: number;
+ created_at: string | null;
}
export interface ResetPasswordResult {
- username: string;
+ email: string;
password: string;
message: string;
}
@@ -600,10 +632,6 @@ export async function listUsersAPI(): Promise {
return fetchAPI("/api/auth/users");
}
-export async function createUserAPI(username: string, role: string): Promise {
- return postAPI("/api/auth/users", { username, role });
-}
-
export async function disableUserAPI(userId: number): Promise<{ message: string }> {
return deleteAPI<{ message: string }>(`/api/auth/users/${userId}`);
}
@@ -612,6 +640,22 @@ export async function resetPasswordAPI(userId: number): Promise(`/api/auth/users/${userId}/reset-password`);
}
+export async function listInviteCodesAPI(): Promise {
+ return fetchAPI("/api/auth/invite-codes");
+}
+
+export async function createInviteCodeAPI(code: string, description: string, maxUses: number): Promise {
+ return postAPI("/api/auth/invite-codes", {
+ code,
+ description,
+ max_uses: maxUses,
+ });
+}
+
+export async function toggleInviteCodeAPI(inviteId: number): Promise<{ message: string }> {
+ return postAPI<{ message: string }>(`/api/auth/invite-codes/${inviteId}/toggle`);
+}
+
export async function changePasswordAPI(oldPassword: string, newPassword: string): Promise<{ message: string }> {
return postAPI<{ message: string }>("/api/auth/change-password", {
old_password: oldPassword,