diff --git a/backend/app/__pycache__/main.cpython-313.pyc b/backend/app/__pycache__/main.cpython-313.pyc index d6e0844e..39253b23 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/analysis/__pycache__/intraday.cpython-313.pyc b/backend/app/analysis/__pycache__/intraday.cpython-313.pyc index 144650cf..f3ab463a 100644 Binary files a/backend/app/analysis/__pycache__/intraday.cpython-313.pyc and b/backend/app/analysis/__pycache__/intraday.cpython-313.pyc differ diff --git a/backend/app/analysis/intraday.py b/backend/app/analysis/intraday.py index 695476b9..ccb85db8 100644 --- a/backend/app/analysis/intraday.py +++ b/backend/app/analysis/intraday.py @@ -269,59 +269,49 @@ def _score_intraday(quote: StockQuote) -> float: async def intraday_sector_scan(prev_sectors: list[SectorInfo]) -> list[SectorInfo]: - """盘中板块热度更新:用腾讯实时行情刷新板块涨幅和涨停数 + """盘中板块热度更新:用东方财富实时板块数据刷新涨幅和涨停数 - 基于前一日的板块列表(来自 Tushare),用成分股的实时行情 - 重新计算板块涨跌幅和涨停家数。 + 一次请求替代之前腾讯批量获取数千只成分股的方式。 """ if not prev_sectors: return prev_sectors - # 收集所有板块的成分股 - sector_members: dict[str, list[str]] = {} - all_codes = set() - for sector in prev_sectors: - members = tushare_client.get_ths_members(sector.sector_code) - if members.empty or "con_code" not in members.columns: - continue - codes = [c for c in members["con_code"].tolist() if "." in str(c)] - sector_members[sector.sector_code] = codes - all_codes.update(codes) - - if not all_codes: + # 从东方财富获取实时板块排名(1次 HTTP 请求) + try: + from app.data.eastmoney_client import get_sector_realtime_ranking + em_sectors = await get_sector_realtime_ranking() + except Exception as e: + logger.warning(f"东方财富板块实时数据获取失败: {e}") return prev_sectors - # 批量获取实时行情 - quotes = await tencent_client.get_realtime_quotes_batch(list(all_codes)) - if not quotes: + if not em_sectors: return prev_sectors - # 构建涨停集合 - limit_up_codes = set() - for code, q in quotes.items(): - if q.limit_up and q.price >= q.limit_up * 0.995: - limit_up_codes.add(code) - - # 更新每个板块的数据 + # 按板块名称匹配更新数据 + matched = 0 for sector in prev_sectors: - codes = sector_members.get(sector.sector_code, []) - if not codes: - continue + em_data = None + # 先精确匹配 + for em_s in em_sectors: + if em_s["sector_name"] == sector.sector_name: + em_data = em_s + break + # 模糊匹配 + if not em_data: + for em_s in em_sectors: + em_name = em_s["sector_name"].rstrip("行业").rstrip("板块").strip() + ts_name = sector.sector_name.rstrip("行业").rstrip("板块").strip() + if em_name == ts_name or (len(em_name) <= len(ts_name) and em_name in ts_name) or (len(ts_name) <= len(em_name) and ts_name in em_name): + em_data = em_s + break - sector_quotes = [quotes[c] for c in codes if c in quotes] - if not sector_quotes: - continue - - # 实时涨跌幅(成分股均值) - pct_changes = [q.pct_chg for q in sector_quotes if q.pct_chg is not None] - if pct_changes: - sector.pct_change = round(sum(pct_changes) / len(pct_changes), 2) - - # 实时涨停家数 - sector.limit_up_count = len([c for c in codes if c in limit_up_codes]) + if em_data: + matched += 1 + sector.pct_change = em_data["pct_change"] + # 涨停数保留 Tushare 数据(东方财富此字段不可用) logger.info( - f"盘中板块实时更新: {len(prev_sectors)} 个板块, " + f"盘中板块实时更新: {matched}/{len(prev_sectors)} 匹配成功, " f"涨幅最高={max(prev_sectors, key=lambda s: s.pct_change).sector_name} " f"({max(s.pct_change for s in prev_sectors):.1f}%)" ) diff --git a/backend/app/api/__pycache__/sectors.cpython-313.pyc b/backend/app/api/__pycache__/sectors.cpython-313.pyc index 62e75367..9b3d928d 100644 Binary files a/backend/app/api/__pycache__/sectors.cpython-313.pyc and b/backend/app/api/__pycache__/sectors.cpython-313.pyc differ diff --git a/backend/app/api/__pycache__/stocks.cpython-313.pyc b/backend/app/api/__pycache__/stocks.cpython-313.pyc index 0a572188..c768cdc0 100644 Binary files a/backend/app/api/__pycache__/stocks.cpython-313.pyc and b/backend/app/api/__pycache__/stocks.cpython-313.pyc differ diff --git a/backend/app/api/monitor.py b/backend/app/api/monitor.py deleted file mode 100644 index 9ad8a873..00000000 --- a/backend/app/api/monitor.py +++ /dev/null @@ -1,171 +0,0 @@ -"""涨跌停/异动监控 API - -盘后:使用 Tushare 涨跌停列表和日级数据(完整准确) -盘中:涨跌停仍用 Tushare,异动股用腾讯实时行情(量比/振幅/急涨急跌) -""" - -from fastapi import APIRouter - -from app.data.tushare_client import tushare_client -from app.config import is_market_session - -router = APIRouter(prefix="/api/monitor", tags=["monitor"]) - - -@router.get("/limits") -async def get_limits(): - """获取涨跌停数据""" - trade_date = tushare_client.get_latest_trade_date() - is_realtime = is_market_session() - - limit_df = tushare_client.get_limit_list(trade_date) - - if limit_df.empty: - return {"trade_date": trade_date, "is_realtime": False, "limit_up": [], "limit_down": []} - - # 拆分涨停和跌停 - up_df = limit_df[limit_df["limit"] == "U"].sort_values("pct_chg", ascending=False) - down_df = limit_df[limit_df["limit"] == "D"].sort_values("pct_chg", ascending=True) - - def _parse(df): - results = [] - for _, r in df.head(50).iterrows(): - results.append({ - "ts_code": r.get("ts_code", ""), - "name": r.get("name", ""), - "close": float(r.get("close", 0)), - "pct_chg": float(r.get("pct_chg", 0)), - "limit_times": int(r.get("limit_times", 0)), - "first_time": str(r.get("first_time", "")), - "last_time": str(r.get("last_time", "")), - "open_times": int(r.get("open_times", 0)), - "fd_amount": float(r.get("fd_amount", 0)) if r.get("fd_amount") else 0, - "up_stat": str(r.get("up_stat", "")), - }) - return results - - return { - "trade_date": trade_date, - "is_realtime": is_realtime, - "limit_up": _parse(up_df), - "limit_down": _parse(down_df), - } - - -@router.get("/unusual") -async def get_unusual(): - """获取异动股(量比>3、振幅>8%、快速拉升) - - 盘中时使用腾讯实时行情补充量比和涨跌幅, - 盘后使用 Tushare 日级数据。 - """ - trade_date = tushare_client.get_latest_trade_date() - is_realtime = is_market_session() - - if is_realtime: - # 盘中:用腾讯实时行情扫描异动 - return await _get_unusual_realtime(trade_date) - - # 盘后:使用 Tushare 日级数据 - daily = tushare_client.get_daily_all(trade_date) - if daily.empty: - return {"trade_date": trade_date, "is_realtime": False, "stocks": []} - - basic = tushare_client.get_daily_basic(trade_date) - if not basic.empty: - daily = daily.merge(basic[["ts_code", "turnover_rate", "volume_ratio"]], on="ts_code", how="left") - - stock_basic = tushare_client.get_stock_basic() - name_map = {} - if not stock_basic.empty: - for _, r in stock_basic.iterrows(): - name_map[r["ts_code"]] = r["name"] - - unusual = [] - for _, r in daily.iterrows(): - ts = r.get("ts_code", "") - if not ts.endswith((".SH", ".SZ")): - continue - - pct = r.get("pct_chg", 0) - vol_ratio = r.get("volume_ratio", 0) - high = r.get("high", 0) - low = r.get("low", 0) - pre_close = r.get("pre_close", 0) - amplitude = (high - low) / pre_close * 100 if pre_close > 0 else 0 - - tags = [] - if vol_ratio and vol_ratio > 3: - tags.append("巨量") - if amplitude > 8: - tags.append("高振幅") - if pct > 7: - tags.append("急涨") - elif pct < -7: - tags.append("急跌") - - if tags: - unusual.append({ - "ts_code": ts, - "name": name_map.get(ts, ts), - "close": float(r.get("close", 0)), - "pct_chg": float(pct), - "amplitude": round(float(amplitude), 2), - "volume_ratio": round(float(vol_ratio), 2) if vol_ratio and vol_ratio == vol_ratio else 0, - "turnover_rate": round(float(r.get("turnover_rate", 0)), 2), - "tags": tags, - }) - - unusual.sort(key=lambda x: abs(x["pct_chg"]), reverse=True) - return {"trade_date": trade_date, "is_realtime": False, "stocks": unusual[:50]} - - -async def _get_unusual_realtime(trade_date: str) -> dict: - """盘中:用腾讯实时行情扫描异动""" - from app.data.tencent_client import get_realtime_quotes_batch - - stock_basic = tushare_client.get_stock_basic() - if stock_basic.empty: - return {"trade_date": trade_date, "is_realtime": True, "stocks": []} - - # 只扫描主板(非 ST) - valid = stock_basic[ - ~stock_basic["name"].str.contains("ST", na=False) - ] - codes = valid["ts_code"].tolist() - - # 分批获取实时行情 - unusual = [] - batch_size = 200 - for i in range(0, len(codes), batch_size): - batch = codes[i:i + batch_size] - quotes = await get_realtime_quotes_batch(batch) - - for ts_code, q in quotes.items(): - if not q.price or q.price <= 0: - continue - - tags = [] - if q.volume_ratio and q.volume_ratio > 3: - tags.append("巨量") - if q.amplitude and q.amplitude > 8: - tags.append("高振幅") - if q.pct_chg > 7: - tags.append("急涨") - elif q.pct_chg < -7: - tags.append("急跌") - - if tags: - unusual.append({ - "ts_code": ts_code, - "name": q.name or ts_code, - "close": q.price, - "pct_chg": q.pct_chg, - "amplitude": round(q.amplitude, 2) if q.amplitude else 0, - "volume_ratio": round(q.volume_ratio, 2) if q.volume_ratio else 0, - "turnover_rate": round(q.turnover_rate, 2) if q.turnover_rate else 0, - "tags": tags, - }) - - unusual.sort(key=lambda x: abs(x["pct_chg"]), reverse=True) - return {"trade_date": trade_date, "is_realtime": True, "stocks": unusual[:50]} \ No newline at end of file diff --git a/backend/app/api/sectors.py b/backend/app/api/sectors.py index b6ebfcbb..22009754 100644 --- a/backend/app/api/sectors.py +++ b/backend/app/api/sectors.py @@ -6,7 +6,7 @@ from fastapi import APIRouter from app.config import is_market_session from app.data.tushare_client import tushare_client -from app.data.tencent_client import get_realtime_quotes_batch +from app.data.eastmoney_client import get_sector_realtime_ranking from app.data.cache import cache from app.engine.recommender import get_latest_sectors @@ -14,8 +14,28 @@ logger = logging.getLogger(__name__) router = APIRouter(prefix="/api/sectors", tags=["sectors"]) +def _match_sector_name(em_name: str, ts_name: str) -> bool: + """东方财富板块名与 Tushare 板块名模糊匹配 + + 东方财富用"酿酒行业",Tushare 可能叫"白酒"; + 东方财富用"汽车整车",Tushare 可能叫"汽车"。 + 用包含匹配(短名在长名中)或尾部去掉"行业"后完全匹配。 + """ + # 去掉常见后缀再做比较 + em_clean = em_name.rstrip("行业").rstrip("板块").rstrip("概念").strip() + ts_clean = ts_name.rstrip("行业").rstrip("板块").rstrip("概念").strip() + if em_clean == ts_clean: + return True + # 短名包含在长名中 + short, long = (em_clean, ts_clean) if len(em_clean) <= len(ts_clean) else (ts_clean, em_clean) + return short in long + + async def _enrich_sectors_realtime(sectors_data: list[dict]) -> list[dict]: - """盘中时,用腾讯实时行情补充板块涨幅和涨停数""" + """盘中时,用东方财富实时板块数据补充涨幅和涨停数 + + 一次请求替代之前腾讯批量获取数千只成分股的方式。 + """ if not is_market_session(): for s in sectors_data: s["realtime_pct_change"] = None @@ -23,71 +43,64 @@ async def _enrich_sectors_realtime(sectors_data: list[dict]) -> list[dict]: s["is_realtime"] = False return sectors_data - # 收集所有板块的成分股代码 - sector_members: dict[str, list[str]] = {} - all_codes: list[str] = [] - - for s in sectors_data: - code = s["sector_code"] - try: - df = tushare_client.get_ths_members(code) - members = df["con_code"].tolist() if not df.empty else [] - except Exception: - members = [] - sector_members[code] = members - all_codes.extend(members) - - if not all_codes: - for s in sectors_data: - s["realtime_pct_change"] = None - s["realtime_limit_up_count"] = None - s["is_realtime"] = True - return sectors_data - - # 批量获取实时报价 + # 从东方财富获取实时板块排名(1次 HTTP 请求) try: - quotes = await get_realtime_quotes_batch(all_codes) + em_sectors = await get_sector_realtime_ranking() except Exception: - logger.warning("获取板块实时行情失败,回退到日级数据") + logger.warning("东方财富板块实时数据获取失败,回退到日级数据") for s in sectors_data: s["realtime_pct_change"] = None s["realtime_limit_up_count"] = None s["is_realtime"] = False return sectors_data - # 为每个板块计算实时指标 + if not em_sectors: + for s in sectors_data: + s["realtime_pct_change"] = None + s["realtime_limit_up_count"] = None + s["is_realtime"] = False + return sectors_data + + # 构建东方财富板块名查找表(用于匹配) + em_name_map = {s["sector_name"]: s for s in em_sectors} + + matched = 0 for s in sectors_data: - members = sector_members.get(s["sector_code"], []) - member_quotes = [quotes[c] for c in members if c in quotes] + ts_name = s["sector_name"] + # 尝试匹配:先精确,再模糊 + em_data = em_name_map.get(ts_name) + if not em_data: + # 模糊匹配 + for em_s in em_sectors: + if _match_sector_name(em_s["sector_name"], ts_name): + em_data = em_s + break - if member_quotes: - pct_changes = [q.pct_chg for q in member_quotes] - s["realtime_pct_change"] = round(sum(pct_changes) / len(pct_changes), 2) - s["realtime_limit_up_count"] = sum( - 1 for q in member_quotes - if q.limit_up and q.price >= q.limit_up * 0.995 - ) - - # 盘中更新领涨股 - sorted_quotes = sorted(member_quotes, key=lambda q: q.pct_chg, reverse=True) - s["leading_stocks_realtime"] = [ - { - "ts_code": q.ts_code, - "name": q.name or q.ts_code, - "pct_chg": round(q.pct_chg, 2), - "amount": round(q.amount, 0), - } - for q in sorted_quotes[:3] - ] + if em_data: + matched += 1 + s["realtime_pct_change"] = em_data["pct_change"] + s["is_realtime"] = True + # 涨停家数仍保留 Tushare 数据(东方财富此字段不可用) + s["realtime_limit_up_count"] = None + # 更新领涨股(东方财富直接提供) + if em_data.get("leading_stock_name"): + s["leading_stocks_realtime"] = [ + { + "ts_code": em_data.get("leading_stock_code", ""), + "name": em_data.get("leading_stock_name", ""), + "pct_chg": em_data.get("leading_stock_pct", 0), + "amount": 0, + } + ] else: s["realtime_pct_change"] = None s["realtime_limit_up_count"] = None - s["leading_stocks_realtime"] = None + s["is_realtime"] = False - s["is_realtime"] = True + logger.info(f"板块实时数据: {matched}/{len(sectors_data)} 匹配成功") # 盘中按实时涨幅重新排序 - sectors_data.sort(key=lambda s: s.get("realtime_pct_change") or 0, reverse=True) + sectors_data.sort(key=lambda s: s.get("realtime_pct_change") or s.get("pct_change") or 0, reverse=True) return sectors_data diff --git a/backend/app/data/eastmoney_client.py b/backend/app/data/eastmoney_client.py index 19f5b335..4f935be7 100644 --- a/backend/app/data/eastmoney_client.py +++ b/backend/app/data/eastmoney_client.py @@ -1,7 +1,8 @@ -"""东方财富分钟K线数据客户端 +"""东方财富数据客户端 -通过 push2his.eastmoney.com 获取 A 股分钟级 K 线数据, -用于盘中量能分布分析和短线进场时机判断。 +通过 push2.eastmoney.com / push2his.eastmoney.com 获取实时数据: + - 板块实时涨跌幅排名(行业/概念板块) + - A 股分钟级 K 线数据(盘中量能分布分析) 免费接口,无需认证,注意限频。 """ @@ -16,12 +17,17 @@ from app.config import settings logger = logging.getLogger(__name__) -# 东方财富分钟K线接口 +# 东方财富接口 EASTMONEY_KLINE_URL = "http://push2his.eastmoney.com/api/qt/stock/kline/get" +SECTOR_LIST_URL = "http://push2.eastmoney.com/api/qt/clist/get" HEADERS = { "Referer": "http://finance.eastmoney.com", "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36", } +SECTOR_HEADERS = { + "Referer": "http://data.eastmoney.com", + "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36", +} def _ts_code_to_eastmoney(ts_code: str) -> str: @@ -31,6 +37,102 @@ def _ts_code_to_eastmoney(ts_code: str) -> str: return f"{prefix}.{code}" +async def get_sector_realtime_ranking( + fs: str = "m:90+t:2", + sort_by: str = "f3", + descending: bool = True, + page_size: int = 100, +) -> list[dict]: + """获取东方财富板块实时涨跌幅排名 + + 一次请求获取所有板块的实时数据,盘中和盘后均可使用。 + 替代通过腾讯批量获取成分股行情再手动计算的方式。 + + Args: + fs: 板块类型 + - "m:90+t:2": 行业板块(东方财富分类,约496个) + - "m:90+t:3": 概念板块(约493个) + - "m:90+t:1": 地域板块(约31个) + sort_by: 排序字段,默认 f3=涨跌幅 + descending: True=降序(涨幅从高到低) + page_size: 返回板块数量 + + Returns: + list[dict],每个 dict 包含: + - sector_code: 东方财富板块代码 (如 "BK0428") + - sector_name: 板块名称 (如 "酿酒行业") + - pct_change: 实时涨跌幅 % + - amount: 成交额(元) + - turnover_rate: 换手率 % + - up_count: 上涨家数 + - down_count: 下跌家数 + - leading_stock_name: 领涨股名称 (f128) + - leading_stock_code: 领涨股代码 (f140) + - leading_stock_pct: 领涨股涨跌幅 % (f141) + """ + cache_key = f"sector_rt:{fs}:{sort_by}" + cached = cache.get(cache_key) + if cached is not None: + return cached + + params = { + "pn": "1", + "pz": str(page_size), + "po": "0" if descending else "1", + "np": "1", + "ut": "b1f8f8f8", + "fltt": "2", + "invt": "2", + "fid": sort_by, + "fs": fs, + "fields": "f2,f3,f4,f6,f8,f12,f14,f104,f105,f128,f140,f141", + } + + try: + async with httpx.AsyncClient() as client: + resp = await client.get( + SECTOR_LIST_URL, + params=params, + headers=SECTOR_HEADERS, + timeout=10, + ) + data = resp.json() + + items = data.get("data", {}).get("diff", []) + if not items: + logger.debug("东方财富板块实时排名无数据") + return [] + + result = [] + for item in items: + # f3 可能是 "-"(停牌等异常情况) + pct = item.get("f3") + if pct == "-" or pct is None: + pct = 0.0 + result.append({ + "sector_code": item.get("f12", ""), + "sector_name": item.get("f14", ""), + "pct_change": float(pct), + "amount": float(item.get("f6", 0) or 0), + "turnover_rate": float(item.get("f8", 0) or 0), + "up_count": int(item.get("f104", 0) or 0), + "down_count": int(item.get("f105", 0) or 0), + "leading_stock_name": item.get("f128", ""), + "leading_stock_code": item.get("f140", ""), + "leading_stock_pct": float(item.get("f141", 0) or 0), + }) + + # 缓存:盘中 60 秒,盘后 300 秒 + ttl = 60 if _is_trading_hours() else 300 + cache.set(cache_key, result, ttl) + logger.info(f"东方财富板块实时排名: 获取 {len(result)} 个板块") + return result + + except Exception as e: + logger.error(f"东方财富板块实时排名获取失败: {e}") + return [] + + async def get_min_kline( ts_code: str, period: str = "5", diff --git a/backend/app/main.py b/backend/app/main.py index 41dcd8bb..02109139 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -8,7 +8,7 @@ from fastapi.middleware.cors import CORSMiddleware from app.config import settings from app.db.database import init_db from app.engine.scheduler import start_scheduler, stop_scheduler -from app.api import market, sectors, recommendations, stocks, websocket, chat, auth, monitor +from app.api import market, sectors, recommendations, stocks, websocket, chat, auth logging.basicConfig( level=logging.DEBUG if settings.debug else logging.INFO, @@ -80,7 +80,6 @@ app.include_router(recommendations.router) app.include_router(stocks.router) app.include_router(chat.router) app.include_router(auth.router) -app.include_router(monitor.router) # WebSocket app.websocket("/ws")(websocket.ws_endpoint) diff --git a/backend/astock.db b/backend/astock.db index 3f6b4d01..4bed5741 100644 Binary files a/backend/astock.db and b/backend/astock.db differ diff --git a/backend/scripts/__init__.py b/backend/scripts/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/scripts/cleanup_recommendations.py b/backend/scripts/cleanup_recommendations.py new file mode 100644 index 00000000..69fad490 --- /dev/null +++ b/backend/scripts/cleanup_recommendations.py @@ -0,0 +1,34 @@ +"""删除评分低于 60 的推荐记录 + +用法: python -m scripts.cleanup_recommendations +""" + +import asyncio +from sqlalchemy import text + +from app.db.database import get_db + + +async def cleanup(): + async with get_db() as db: + # 先统计 + result = await db.execute( + text("SELECT COUNT(*) FROM recommendations WHERE score < 60") + ) + count = result.scalar() + print(f"找到 {count} 条评分低于 60 的推荐记录") + + if count == 0: + print("无需清理") + return + + # 删除 + await db.execute( + text("DELETE FROM recommendations WHERE score < 60") + ) + await db.commit() + print(f"已删除 {count} 条记录") + + +if __name__ == "__main__": + asyncio.run(cleanup()) \ No newline at end of file diff --git a/frontend/.next/app-build-manifest.json b/frontend/.next/app-build-manifest.json index e43b4628..6f44eac9 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -10,6 +10,16 @@ "static/chunks/main-app.js", "static/css/app/layout.css", "static/chunks/app/layout.js" + ], + "/sectors/page": [ + "static/chunks/webpack.js", + "static/chunks/main-app.js", + "static/chunks/app/sectors/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/cache/.tsbuildinfo b/frontend/.next/cache/.tsbuildinfo index 07fdf3b8..25c3f8b9 100644 --- a/frontend/.next/cache/.tsbuildinfo +++ b/frontend/.next/cache/.tsbuildinfo @@ -1 +1 @@ -{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/shared/lib/amp.d.ts","../../node_modules/next/amp.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/future/route-kind.d.ts","../../node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/server/lib/revalidate.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/font-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-modules/route-module.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/client/components/request-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/request-async-storage.external.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","../../node_modules/next/dist/client/components/app-router.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/action-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/action-async-storage.external.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/search-params.d.ts","../../node_modules/next/dist/client/components/not-found-boundary.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/lib/builtin-request-context.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/future/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/postponed.d.ts","../../node_modules/next/dist/server/future/normalizers/request/action.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefetch-rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/types/index.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/shared/lib/runtime-config.external.d.ts","../../node_modules/next/config.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/client/components/draft-mode.d.ts","../../node_modules/next/dist/client/components/headers.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../../next-env.d.ts","../../tailwind.config.ts","../../src/app/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/markdown.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../node_modules/next-themes/dist/index.d.ts","../../src/components/theme-toggle.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/layout.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/page.tsx","../../src/app/chat/page.tsx","../../src/components/error-boundary.tsx","../../src/app/diagnose/page.tsx","../../src/app/login/page.tsx","../../src/app/monitor/page.tsx","../../src/app/recommendations/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/app/sectors/page.tsx","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx","../../src/components/score-radar.tsx","../types/app/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/diagnose/page.ts","../types/app/login/page.ts","../types/app/monitor/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../node_modules/@types/json5/index.d.ts"],"fileIdsList":[[99,145,405,412],[99,145,360,429],[99,145,360,431],[99,145,360,432],[99,145,360,433],[99,145,360,428],[99,145,360,434],[99,145,360,437],[99,145,360,440],[99,145,360,441],[99,145,408,409],[99,145],[99,142,145],[99,144,145],[145],[99,145,150,178],[99,145,146,151,156,164,175,186],[99,145,146,147,156,164],[94,95,96,99,145],[99,145,148,187],[99,145,149,150,157,165],[99,145,150,175,183],[99,145,151,153,156,164],[99,144,145,152],[99,145,153,154],[99,145,155,156],[99,144,145,156],[99,145,156,157,158,175,186],[99,145,156,157,158,171,175,178],[99,145,153,156,159,164,175,186],[99,145,156,157,159,160,164,175,183,186],[99,145,159,161,175,183,186],[97,98,99,100,101,102,103,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,156,162],[99,145,163,186,191],[99,145,153,156,164,175],[99,145,165],[99,145,166],[99,144,145,167],[99,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,169],[99,145,170],[99,145,156,171,172],[99,145,171,173,187,189],[99,145,156,175,176,178],[99,145,177,178],[99,145,175,176],[99,145,178],[99,145,179],[99,142,145,175,180],[99,145,156,181,182],[99,145,181,182],[99,145,150,164,175,183],[99,145,184],[99,145,164,185],[99,145,159,170,186],[99,145,150,187],[99,145,175,188],[99,145,163,189],[99,145,190],[99,140,145],[99,140,145,156,158,167,175,178,186,189,191],[99,145,175,192],[87,99,145,197,198,199],[87,99,145,197,198],[87,99,145],[87,91,99,145,196,361,404],[87,91,99,145,195,361,404],[84,85,86,99,145],[99,145,435],[92,99,145],[99,145,365],[99,145,367,368,369],[99,145,371],[99,145,202,212,218,220,361],[99,145,202,209,211,214,232],[99,145,212],[99,145,212,214,339],[99,145,267,285,300,407],[99,145,309],[99,145,202,212,219,253,263,336,337,407],[99,145,219,407],[99,145,212,263,264,265,407],[99,145,212,219,253,407],[99,145,407],[99,145,202,219,220,407],[99,145,293],[99,144,145,193,292],[87,99,145,286,287,288,306,307],[87,99,145,286],[99,145,276],[99,145,275,277,381],[87,99,145,286,287,304],[99,145,282,307,393],[99,145,391,392],[99,145,226,390],[99,145,279],[99,144,145,193,226,242,275,276,277,278],[87,99,145,304,306,307],[99,145,304,306],[99,145,304,305,307],[99,145,170,193],[99,145,274],[99,144,145,193,211,213,270,271,272,273],[87,99,145,203,384],[87,99,145,186,193],[87,99,145,219,251],[87,99,145,219],[99,145,249,254],[87,99,145,250,364],[87,91,99,145,159,193,195,196,361,402,403],[99,145,361],[99,145,201],[99,145,354,355,356,357,358,359],[99,145,356],[87,99,145,250,286,364],[87,99,145,286,362,364],[87,99,145,286,364],[99,145,159,193,213,364],[99,145,159,193,210,211,222,240,242,274,279,280,302,304],[99,145,271,274,279,287,289,290,291,293,294,295,296,297,298,299,407],[99,145,272],[87,99,145,170,193,211,212,240,242,243,245,270,302,303,307,361,407],[99,145,159,193,213,214,226,227,275],[99,145,159,193,212,214],[99,145,159,175,193,210,213,214],[99,145,159,170,186,193,210,211,212,213,214,219,222,223,233,234,236,239,240,242,243,244,245,269,270,303,304,312,314,317,319,322,324,325,326,327],[99,145,159,175,193],[99,145,202,203,204,210,211,361,364,407],[99,145,159,175,186,193,207,338,340,341,407],[99,145,170,186,193,207,210,213,230,234,236,237,238,243,270,317,328,330,336,350,351],[99,145,212,216,270],[99,145,210,212],[99,145,223,318],[99,145,320,321],[99,145,320],[99,145,318],[99,145,320,323],[99,145,206,207],[99,145,206,246],[99,145,206],[99,145,208,223,316],[99,145,315],[99,145,207,208],[99,145,208,313],[99,145,207],[99,145,302],[99,145,159,193,210,222,241,261,267,281,284,301,304],[99,145,255,256,257,258,259,260,282,283,307,362],[99,145,311],[99,145,159,193,210,222,241,247,308,310,312,361,364],[99,145,159,186,193,203,210,212,269],[99,145,266],[99,145,159,193,344,349],[99,145,233,242,269,364],[99,145,332,336,350,353],[99,145,159,216,336,344,345,353],[99,145,202,212,233,244,347],[99,145,159,193,212,219,244,331,332,342,343,346,348],[99,145,194,240,241,242,361,364],[99,145,159,170,186,193,208,210,211,213,216,221,222,230,233,234,236,237,238,239,243,245,269,270,314,328,329,364],[99,145,159,193,210,212,216,330,352],[99,145,159,193,211,213],[87,99,145,159,170,193,201,203,210,211,214,222,239,240,242,243,245,311,361,364],[99,145,159,170,186,193,205,208,209,213],[99,145,206,268],[99,145,159,193,206,211,222],[99,145,159,193,212,223],[99,145,159,193],[99,145,226],[99,145,225],[99,145,227],[99,145,212,224,226,230],[99,145,212,224,226],[99,145,159,193,205,212,213,219,227,228,229],[87,99,145,304,305,306],[99,145,262],[87,99,145,203],[87,99,145,236],[87,99,145,194,239,242,245,361,364],[99,145,203,384,385],[87,99,145,254],[87,99,145,170,186,193,201,248,250,252,253,364],[99,145,213,219,236],[99,145,235],[87,99,145,157,159,170,193,201,254,263,361,362,363],[83,87,88,89,90,99,145,195,196,361,404],[99,145,150],[99,145,333,334,335],[99,145,333],[99,145,373],[99,145,375],[99,145,377],[99,145,379],[99,145,382],[99,145,386],[91,93,99,145,361,366,370,372,374,376,378,380,383,387,389,395,396,398,405,406,407],[99,145,388],[99,145,394],[99,145,250],[99,145,397],[99,144,145,227,228,229,230,399,400,401,404],[99,145,193],[87,91,99,145,159,161,170,193,195,196,197,199,201,214,353,360,364,404],[99,112,116,145,186],[99,112,145,175,186],[99,107,145],[99,109,112,145,183,186],[99,145,164,183],[99,107,145,193],[99,109,112,145,164,186],[99,104,105,108,111,145,156,175,186],[99,112,119,145],[99,104,110,145],[99,112,133,134,145],[99,108,112,145,178,186,193],[99,133,145,193],[99,106,107,145,193],[99,112,145],[99,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,145],[99,112,127,145],[99,112,119,120,145],[99,110,112,120,121,145],[99,111,145],[99,104,107,112,145],[99,112,116,120,121,145],[99,116,145],[99,110,112,115,145,186],[99,104,109,112,119,145],[99,145,175],[99,107,112,133,145,191,193],[99,145,405],[87,99,145,414,415,420],[87,99,145,395,414,415,420,430],[99,145,408,417,418,420,422,423],[87,99,145,395,417],[87,99,145,414,430],[87,99,145,413,414,415,417,421,425,426,427],[87,99,145,413,414,426],[87,99,145,413,414,416,430,436],[87,99,145,395,414,416,430,438,439],[87,99,145,414,417],[87,99,145,420,436],[87,99,145,414],[99,145,414,416],[99,145,389,395,417,421],[87,99,145,414,416],[87,99,145,420],[87,99,145,417,419,421]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29","signature":false,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","signature":false,"impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","signature":false,"impliedFormat":1},{"version":"8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","signature":false,"impliedFormat":1},{"version":"0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","signature":false,"impliedFormat":1},{"version":"05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","signature":false,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","signature":false,"impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","signature":false,"impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","signature":false,"impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","signature":false,"impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","signature":false,"impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","signature":false,"impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","signature":false,"impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","signature":false,"impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","signature":false,"impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","signature":false,"impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","signature":false,"impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","signature":false,"impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","signature":false,"impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","signature":false,"impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","signature":false,"impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","signature":false,"impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","signature":false,"impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","signature":false,"impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","signature":false,"impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","signature":false,"impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","signature":false,"impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","signature":false,"impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","signature":false,"impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","signature":false,"impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","signature":false,"impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","signature":false,"impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","signature":false,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","signature":false,"impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","signature":false,"impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","signature":false,"impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","signature":false,"impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","signature":false,"impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","signature":false,"impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","signature":false,"impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","signature":false,"impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","signature":false,"impliedFormat":1},{"version":"8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","signature":false,"impliedFormat":1},{"version":"f9fd93190acb1ffe0bc0fb395df979452f8d625071e9ffc8636e4dfb86ab2508","signature":false,"impliedFormat":1},{"version":"5f41fd8732a89e940c58ce22206e3df85745feb8983e2b4c6257fb8cbb118493","signature":false,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","signature":false,"impliedFormat":1},{"version":"1cfa8647d7d71cb03847d616bd79320abfc01ddea082a49569fda71ac5ece66b","signature":false,"impliedFormat":1},{"version":"bb7a61dd55dc4b9422d13da3a6bb9cc5e89be888ef23bbcf6558aa9726b89a1c","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","signature":false,"impliedFormat":1},{"version":"cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","signature":false,"impliedFormat":1},{"version":"3a8bddb66b659f6bd2ff641fc71df8a8165bafe0f4b799cc298be5cd3755bb20","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","signature":false,"impliedFormat":1},{"version":"fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","signature":false,"impliedFormat":1},{"version":"196c960b12253fde69b204aa4fbf69470b26daf7a430855d7f94107a16495ab0","signature":false,"impliedFormat":1},{"version":"ee15ea5dd7a9fc9f5013832e5843031817a880bf0f24f37a29fd8337981aae07","signature":false,"impliedFormat":1},{"version":"bf24f6d35f7318e246010ffe9924395893c4e96d34324cde77151a73f078b9ad","signature":false,"impliedFormat":1},{"version":"ea53732769832d0f127ae16620bd5345991d26bf0b74e85e41b61b27d74ea90f","signature":false,"impliedFormat":1},{"version":"10595c7ff5094dd5b6a959ccb1c00e6a06441b4e10a87bc09c15f23755d34439","signature":false,"impliedFormat":1},{"version":"9620c1ff645afb4a9ab4044c85c26676f0a93e8c0e4b593aea03a89ccb47b6d0","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"a9af0e608929aaf9ce96bd7a7b99c9360636c31d73670e4af09a09950df97841","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"08ed0b3f0166787f84a6606f80aa3b1388c7518d78912571b203817406e471da","signature":false,"impliedFormat":1},{"version":"47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","signature":false,"impliedFormat":1},{"version":"65f43099ded6073336e697512d9b80f2d4fec3182b7b2316abf712e84104db00","signature":false,"impliedFormat":1},{"version":"f5f541902bf7ae0512a177295de9b6bcd6809ea38307a2c0a18bfca72212f368","signature":false,"impliedFormat":1},{"version":"b0decf4b6da3ebc52ea0c96095bdfaa8503acc4ac8e9081c5f2b0824835dd3bd","signature":false,"impliedFormat":1},{"version":"ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","signature":false,"impliedFormat":1},{"version":"fc3e1c87b39e5ba1142f27ec089d1966da168c04a859a4f6aab64dceae162c2b","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"61888522cec948102eba94d831c873200aa97d00d8989fdfd2a3e0ee75ec65a2","signature":false,"impliedFormat":1},{"version":"4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"59bf32919de37809e101acffc120596a9e45fdbab1a99de5087f31fdc36e2f11","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"faa03dffb64286e8304a2ca96dd1317a77db6bfc7b3fb385163648f67e535d77","signature":false,"impliedFormat":1},{"version":"c40c848daad198266370c1c72a7a8c3d18d2f50727c7859fcfefd3ff69a7f288","signature":false,"impliedFormat":1},{"version":"ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","signature":false,"impliedFormat":1},{"version":"6428e6edd944ce6789afdf43f9376c1f2e4957eea34166177625aaff4c0da1a0","signature":false,"impliedFormat":1},{"version":"ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","signature":false,"impliedFormat":1},{"version":"6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","signature":false,"impliedFormat":1},{"version":"8dba67056cbb27628e9b9a1cba8e57036d359dceded0725c72a3abe4b6c79cd4","signature":false,"impliedFormat":1},{"version":"70f3814c457f54a7efe2d9ce9d2686de9250bb42eb7f4c539bd2280a42e52d33","signature":false,"impliedFormat":1},{"version":"154dd2e22e1e94d5bc4ff7726706bc0483760bae40506bdce780734f11f7ec47","signature":false,"impliedFormat":1},{"version":"ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"0131e203d8560edb39678abe10db42564a068f98c4ebd1ed9ffe7279c78b3c81","signature":false,"impliedFormat":1},{"version":"f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"8b8f00491431fe82f060dfe8c7f2180a9fb239f3d851527db909b83230e75882","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","signature":false,"impliedFormat":1},{"version":"aeab39e8e0b1a3b250434c3b2bb8f4d17bbec2a9dbce5f77e8a83569d3d2cbc2","signature":false,"impliedFormat":1},{"version":"ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"d729408dfde75b451530bcae944cf89ee8277e2a9df04d1f62f2abfd8b03c1e1","signature":false,"impliedFormat":1},{"version":"e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","signature":false,"impliedFormat":1},{"version":"5f58e28cd22e8fc1ac1b3bc6b431869f1e7d0b39e2c21fbf79b9fa5195a85980","signature":false,"impliedFormat":1},{"version":"e1fc1a1045db5aa09366be2b330e4ce391550041fc3e925f60998ca0b647aa97","signature":false,"impliedFormat":1},{"version":"63533978dcda286422670f6e184ac516805a365fb37a086eeff4309e812f1402","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"31fb49ef3aa3d76f0beb644984e01eab0ea222372ea9b49bb6533be5722d756c","signature":false,"impliedFormat":1},{"version":"33cd131e1461157e3e06b06916b5176e7a8ec3fce15a5cfe145e56de744e07d2","signature":false,"impliedFormat":1},{"version":"889ef863f90f4917221703781d9723278db4122d75596b01c429f7c363562b86","signature":false,"impliedFormat":1},{"version":"3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","signature":false,"impliedFormat":1},{"version":"437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","signature":false,"impliedFormat":1},{"version":"48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","signature":false,"impliedFormat":1},{"version":"d11308de5a36c7015bb73adb5ad1c1bdaac2baede4cc831a05cf85efa3cc7f2f","signature":false,"impliedFormat":1},{"version":"38e4684c22ed9319beda6765bab332c724103d3a966c2e5e1c5a49cf7007845f","signature":false,"impliedFormat":1},{"version":"f9812cfc220ecf7557183379531fa409acd249b9e5b9a145d0d52b76c20862de","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e650298721abc4f6ae851e60ae93ee8199791ceec4b544c3379862f81f43178c","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","signature":false,"impliedFormat":1},{"version":"680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","signature":false,"impliedFormat":1},{"version":"913ddbba170240070bd5921b8f33ea780021bdf42fbdfcd4fcb2691b1884ddde","signature":false,"impliedFormat":1},{"version":"b4e6d416466999ff40d3fe5ceb95f7a8bfb7ac2262580287ac1a8391e5362431","signature":false,"impliedFormat":1},{"version":"5fe23bd829e6be57d41929ac374ee9551ccc3c44cee893167b7b5b77be708014","signature":false,"impliedFormat":1},{"version":"0a626484617019fcfbfc3c1bc1f9e84e2913f1adb73692aa9075817404fb41a1","signature":false,"impliedFormat":1},{"version":"438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","signature":false,"impliedFormat":1},{"version":"cf185cc4a9a6d397f416dd28cca95c227b29f0f27b160060a95c0e5e36cda865","signature":false,"impliedFormat":1},{"version":"0086f3e4ad898fd7ca56bb223098acfacf3fa065595182aaf0f6c4a6a95e6fbd","signature":false,"impliedFormat":1},{"version":"efaa078e392f9abda3ee8ade3f3762ab77f9c50b184e6883063a911742a4c96a","signature":false,"impliedFormat":1},{"version":"54a8bb487e1dc04591a280e7a673cdfb272c83f61e28d8a64cf1ac2e63c35c51","signature":false,"impliedFormat":1},{"version":"021a9498000497497fd693dd315325484c58a71b5929e2bbb91f419b04b24cea","signature":false,"impliedFormat":1},{"version":"9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"84124384abae2f6f66b7fbfc03862d0c2c0b71b826f7dbf42c8085d31f1d3f95","signature":false,"impliedFormat":1},{"version":"63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","signature":false,"impliedFormat":1},{"version":"3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"58b49e5c1def740360b5ae22ae2405cfac295fee74abd88d74ac4ea42502dc03","signature":false,"impliedFormat":1},{"version":"512fc15cca3a35b8dbbf6e23fe9d07e6f87ad03c895acffd3087ce09f352aad0","signature":false,"impliedFormat":1},{"version":"9a0946d15a005832e432ea0cd4da71b57797efb25b755cc07f32274296d62355","signature":false,"impliedFormat":1},{"version":"a52ff6c0a149e9f370372fc3c715d7f2beee1f3bab7980e271a7ab7d313ec677","signature":false,"impliedFormat":1},{"version":"fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","signature":false,"impliedFormat":1},{"version":"ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","signature":false,"impliedFormat":1},{"version":"f95180f03d827525ca4f990f49e17ec67198c316dd000afbe564655141f725cd","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"4e4475fba4ed93a72f167b061cd94a2e171b82695c56de9899275e880e06ba41","signature":false,"impliedFormat":1},{"version":"97c5f5d580ab2e4decd0a3135204050f9b97cd7908c5a8fbc041eadede79b2fa","signature":false,"impliedFormat":1},{"version":"c99a3a5f2215d5b9d735aa04cec6e61ed079d8c0263248e298ffe4604d4d0624","signature":false,"impliedFormat":1},{"version":"49b2375c586882c3ac7f57eba86680ff9742a8d8cb2fe25fe54d1b9673690d41","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"847e160d709c74cc714fbe1f99c41d3425b74cd47b1be133df1623cd87014089","signature":false,"impliedFormat":1},{"version":"9fee04f1e1afa50524862289b9f0b0fdc3735b80e2a0d684cec3b9ff3d94cecc","signature":false,"impliedFormat":1},{"version":"5cdc27fbc5c166fc5c763a30ac21cbac9859dc5ba795d3230db6d4e52a1965bb","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","signature":false,"impliedFormat":1},{"version":"05c97cddbaf99978f83d96de2d8af86aded9332592f08ce4a284d72d0952c391","signature":false,"impliedFormat":1},{"version":"14e5cdec6f8ae82dfd0694e64903a0a54abdfe37e1d966de3d4128362acbf35f","signature":false,"impliedFormat":1},{"version":"bbc183d2d69f4b59fd4dd8799ffdf4eb91173d1c4ad71cce91a3811c021bf80c","signature":false,"impliedFormat":1},{"version":"7b6ff760c8a240b40dab6e4419b989f06a5b782f4710d2967e67c695ef3e93c4","signature":false,"impliedFormat":1},{"version":"8dbc4134a4b3623fc476be5f36de35c40f2768e2e3d9ed437e0d5f1c4cd850f6","signature":false,"impliedFormat":1},{"version":"4e06330a84dec7287f7ebdd64978f41a9f70a668d3b5edc69d5d4a50b9b376bb","signature":false,"impliedFormat":1},{"version":"65bfa72967fbe9fc33353e1ac03f0480aa2e2ea346d61ff3ea997dfd850f641a","signature":false,"impliedFormat":1},{"version":"c06f0bb92d1a1a5a6c6e4b5389a5664d96d09c31673296cb7da5fe945d54d786","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"872caaa31423f4345983d643e4649fb30f548e9883a334d6d1c5fff68ede22d4","signature":false,"impliedFormat":1},{"version":"94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","signature":false,"impliedFormat":1},{"version":"5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","signature":false,"impliedFormat":1},{"version":"09dfc64fcd6a2785867f2368419859a6cc5a8d4e73cbe2538f205b1642eb0f51","signature":false,"impliedFormat":1},{"version":"bcf6f0a323653e72199105a9316d91463ad4744c546d1271310818b8cef7c608","signature":false,"impliedFormat":1},{"version":"01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","signature":false,"impliedFormat":1},{"version":"351475f9c874c62f9b45b1f0dc7e2704e80dfd5f1af83a3a9f841f9dfe5b2912","signature":false,"impliedFormat":1},{"version":"ac457ad39e531b7649e7b40ee5847606eac64e236efd76c5d12db95bf4eacd17","signature":false,"impliedFormat":1},{"version":"187a6fdbdecb972510b7555f3caacb44b58415da8d5825d03a583c4b73fde4cf","signature":false,"impliedFormat":1},{"version":"d4c3250105a612202289b3a266bb7e323db144f6b9414f9dea85c531c098b811","signature":false,"impliedFormat":1},{"version":"95b444b8c311f2084f0fb51c616163f950fb2e35f4eaa07878f313a2d36c98a4","signature":false,"impliedFormat":1},{"version":"741067675daa6d4334a2dc80a4452ca3850e89d5852e330db7cb2b5f867173b1","signature":false,"impliedFormat":1},{"version":"f8acecec1114f11690956e007d920044799aefeb3cece9e7f4b1f8a1d542b2c9","signature":false,"impliedFormat":1},{"version":"178071ccd043967a58c5d1a032db0ddf9bd139e7920766b537d9783e88eb615e","signature":false,"impliedFormat":1},{"version":"3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","signature":false,"impliedFormat":1},{"version":"32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","signature":false,"impliedFormat":1},{"version":"0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","signature":false,"impliedFormat":1},{"version":"e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","signature":false,"impliedFormat":1},{"version":"5cad4158616d7793296dd41e22e1257440910ea8d01c7b75045d4dfb20c5a41a","signature":false,"impliedFormat":1},{"version":"04d3aad777b6af5bd000bfc409907a159fe77e190b9d368da4ba649cdc28d39e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74efc1d6523bd57eb159c18d805db4ead810626bc5bc7002a2c7f483044b2e0f","signature":false,"impliedFormat":1},{"version":"19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","signature":false,"impliedFormat":1},{"version":"bc11f3ac00ac060462597add171220aed628c393f2782ac75dd29ff1e0db871c","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"3b0b1d352b8d2e47f1c4df4fb0678702aee071155b12ef0185fce9eb4fa4af1e","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"a344403e7a7384e0e7093942533d309194ad0a53eca2a3100c0b0ab4d3932773","signature":false,"impliedFormat":1},{"version":"b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","signature":false,"impliedFormat":1},{"version":"5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","signature":false,"impliedFormat":1},{"version":"bb18bf4a61a17b4a6199eb3938ecfa4a59eb7c40843ad4a82b975ab6f7e3d925","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"e9b6fc05f536dfddcdc65dbcf04e09391b1c968ab967382e48924f5cb90d88e1","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"2b664c3cc544d0e35276e1fb2d4989f7d4b4027ffc64da34ec83a6ccf2e5c528","signature":false,"impliedFormat":1},{"version":"a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","signature":false,"impliedFormat":1},{"version":"3cd8f0464e0939b47bfccbb9bb474a6d87d57210e304029cd8eb59c63a81935d","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"3026abd48e5e312f2328629ede6e0f770d21c3cd32cee705c450e589d015ee09","signature":false,"impliedFormat":1},{"version":"8b140b398a6afbd17cc97c38aea5274b2f7f39b1ae5b62952cfe65bf493e3e75","signature":false,"impliedFormat":1},{"version":"7663d2c19ce5ef8288c790edba3d45af54e58c84f1b37b1249f6d49d962f3d91","signature":false,"impliedFormat":1},{"version":"5cce3b975cdb72b57ae7de745b3c5de5790781ee88bcb41ba142f07c0fa02e97","signature":false,"impliedFormat":1},{"version":"00bd6ebe607246b45296aa2b805bd6a58c859acecda154bfa91f5334d7c175c6","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"0d28b974a7605c4eda20c943b3fa9ae16cb452c1666fc9b8c341b879992c7612","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"87ac2fb61e629e777f4d161dff534c2023ee15afd9cb3b1589b9b1f014e75c58","signature":false,"impliedFormat":1},{"version":"13c8b4348db91e2f7d694adc17e7438e6776bc506d5c8f5de9ad9989707fa3fe","signature":false,"impliedFormat":1},{"version":"3c1051617aa50b38e9efaabce25e10a5dd9b1f42e372ef0e8a674076a68742ed","signature":false,"impliedFormat":1},{"version":"07a3e20cdcb0f1182f452c0410606711fbea922ca76929a41aacb01104bc0d27","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"4cd4b6b1279e9d744a3825cbd7757bbefe7f0708f3f1069179ad535f19e8ed2c","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"b95a6f019095dd1d48fd04965b50dfd63e5743a6e75478343c46d2582a5132bf","signature":false,"impliedFormat":99},{"version":"c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","signature":false,"impliedFormat":99},{"version":"b97cb5616d2ab82a98ec9ada7b9e9cabb1f5da880ec50ea2b8dc5baa4cbf3c16","signature":false,"impliedFormat":99},{"version":"d23df9ff06ae8bf1dcb7cc933e97ae7da418ac77749fecee758bb43a8d69f840","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"040c71dde2c406f869ad2f41e8d4ce579cc60c8dbe5aa0dd8962ac943b846572","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","signature":false,"impliedFormat":1},{"version":"a6df929821e62f4719551f7955b9f42c0cd53c1370aec2dd322e24196a7dfe33","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"9dd9d642cdb87d4d5b3173217e0c45429b3e47a6f5cf5fb0ead6c644ec5fed01","signature":false},{"version":"e482174f15675678363b9a4ed12113ca45d18eee41e8e678deb0e824be29d3e7","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"1cccbcbf29b6befd514680173e7b1df70b1cddd5d1803cc34f761cdbec39fdfd","signature":false},{"version":"06313932547a3ca9c439149e296b385872f47775b36f262a84bfa5acda468e48","signature":false},{"version":"3ee18c7abaf5a829f0430ce4f7a0769e9953cbe19cdac28b43272d7b829fa255","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"370f98a39917baa5b5c1484f9e87d6544f568d9e90c5ddfcda4c2bdf86f16e18","signature":false},{"version":"e5fab9363dd130c193e1877d1f152809254adf1303e41175d83f49a46260b180","signature":false},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","signature":false,"impliedFormat":1},{"version":"cb5eaa5ad51d596beda5a76732641b7dcf9e26acae7b20919a811d7b38d7c03a","signature":false},{"version":"868089c4835bcfc56985ec7b898e93b409f4c985a73d70589b7b0e2d7d6c5352","signature":false},{"version":"93d92e7f545ad26444d1640623f4f3aa4a1b825c3f142679f41dce5f7bde5a98","signature":false},{"version":"a644de050a39f1628968a6bc4c9c975a5129d0e3874a3c033f7e9b0847d92c3e","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"e14aa6e21dff7cbaf54884d0973e89758e571f7546899fa02b6e87a10c660d20","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"1d99fe0d2ab957f8ce36d7cadf33e4a8337dd918a3afa480dd6603f80fde1094","signature":false},{"version":"f7886bcfa6587f307aa8045d6f9861f319808bbc59f6c89f1ba40a19be648ec5","signature":false},{"version":"288e514b408582dbbe0ebedfe7620f92b65eefacd03c66aba34a0504cf400ccb","signature":false},{"version":"dd500fb85312298d9c50675e8005734324eb7eef4dc49703f5312c185152e7ca","signature":false},{"version":"d5876e27f72a8708c4c6705699a5ca0c42e3133bee3b670ef559c6b645851c1e","signature":false},{"version":"34579954dc94a5fbf4e5297e05e002b837ed64e0cf4457a4ce2449aab4684a43","signature":false},{"version":"35ab356d9cb1f1ac1e8d500cbd31a01aa5bf8ae75992c49332c6ddc89d7a1718","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"03608eab2e6c43d1844fcbeed6e140e089c78ba8764a9651fd4747aa91fc507f","signature":false},{"version":"9fa4f9fde67afe4bef8157c58de7690809173f98c72463526cd48964b165080e","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"e9d654ec9a79d49238e0a996c78508a4eaf889d6b16a744cf4e22126b0dc2e3a","signature":false},{"version":"7ecbfcab0d7422a8fba7e8b0afb98ab1f6076e129fb4647bcab89ba05ca80931","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"2ab5d412ffa57dbca06de472201ddaea1c41b8a515c74667b7059bf334cbb20f","signature":false},{"version":"034d31e472e4e70878fdac24f6314c3355b5b065c3eba828a75f824a83c20341","signature":false},{"version":"3c0c4a0730704889504deb1457bd552134b43f6e2367cfa0d1378b881e779c81","signature":false},{"version":"c67c285034e735a86d94459e59d97659641056e932d053f21a164bede16d14a3","signature":false},{"version":"76e93d96bc19a32eb66e4fd28c96e4d3ded687202893eabf550f835230add683","signature":false},{"version":"f1dd13f58a17547ac02277d9923be0c09ae047d12d1f80e54a7c89539f37128b","signature":false},{"version":"3913d85082a4eda81a195bacbd18a93aeb39103bf930ad397c69e1f7521ddf8d","signature":false},{"version":"623de97f632c3c7091a19759e01b1764a3a64aac3ae2ea890c410cc37fd4258e","signature":false},{"version":"ba9ca691d5427129c4c651d308fc027aa3bccdb6484ec90f016a4f2a77f9e7b9","signature":false},{"version":"2c04659a5a9897aee5307e3aad32283ee831ffc7918fcc2a4b7f50065ccfc25b","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,419],[421,434],[437,452]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[444,1],[445,2],[446,3],[447,4],[448,5],[443,6],[449,7],[450,8],[451,9],[452,10],[410,11],[363,12],[453,12],[142,13],[143,13],[144,14],[99,15],[145,16],[146,17],[147,18],[94,12],[97,19],[95,12],[96,12],[148,20],[149,21],[150,22],[151,23],[152,24],[153,25],[154,25],[155,26],[156,27],[157,28],[158,29],[100,12],[98,12],[159,30],[160,31],[161,32],[193,33],[162,34],[163,35],[164,36],[165,37],[166,38],[167,39],[168,40],[169,41],[170,42],[171,43],[172,43],[173,44],[174,12],[175,45],[177,46],[176,47],[178,48],[179,49],[180,50],[181,51],[182,52],[183,53],[184,54],[185,55],[186,56],[187,57],[188,58],[189,59],[190,60],[101,12],[102,12],[103,12],[141,61],[191,62],[192,63],[86,12],[198,64],[199,65],[197,66],[195,67],[196,68],[84,12],[87,69],[286,66],[85,12],[436,70],[435,12],[420,66],[93,71],[366,72],[370,73],[372,74],[219,75],[233,76],[337,77],[265,12],[340,78],[301,79],[310,80],[338,81],[220,82],[264,12],[266,83],[339,84],[240,85],[221,86],[245,85],[234,85],[204,85],[292,87],[293,88],[209,12],[289,89],[294,90],[381,91],[287,90],[382,92],[271,12],[290,93],[394,94],[393,95],[296,90],[392,12],[390,12],[391,96],[291,66],[278,97],[279,98],[288,99],[305,100],[306,101],[295,102],[273,103],[274,104],[385,105],[388,106],[252,107],[251,108],[250,109],[397,66],[249,110],[225,12],[400,12],[403,12],[402,66],[404,111],[200,12],[331,12],[232,112],[202,113],[354,12],[355,12],[357,12],[360,114],[356,12],[358,115],[359,115],[218,12],[231,12],[365,116],[373,117],[377,118],[214,119],[281,120],[280,12],[272,103],[300,121],[298,122],[297,12],[299,12],[304,123],[276,124],[213,125],[238,126],[328,127],[205,128],[212,129],[201,77],[342,130],[352,131],[341,12],[351,132],[239,12],[223,133],[319,134],[318,12],[325,135],[327,136],[320,137],[324,138],[326,135],[323,137],[322,135],[321,137],[261,139],[246,139],[313,140],[247,140],[207,141],[206,12],[317,142],[316,143],[315,144],[314,145],[208,146],[285,147],[302,148],[284,149],[309,150],[311,151],[308,149],[241,146],[194,12],[329,152],[267,153],[303,12],[350,154],[270,155],[345,156],[211,12],[346,157],[348,158],[349,159],[332,12],[344,128],[243,160],[330,161],[353,162],[215,12],[217,12],[222,163],[312,164],[210,165],[216,12],[269,166],[268,167],[224,168],[277,169],[275,170],[226,171],[228,172],[401,12],[227,173],[229,174],[368,12],[367,12],[369,12],[399,12],[230,175],[283,66],[92,12],[307,176],[253,12],[263,177],[242,12],[375,66],[384,178],[260,66],[379,90],[259,179],[362,180],[258,178],[203,12],[386,181],[256,66],[257,66],[248,12],[262,12],[255,182],[254,183],[244,184],[237,102],[347,12],[236,185],[235,12],[371,12],[282,66],[364,186],[83,12],[91,187],[88,66],[89,12],[90,12],[343,188],[336,189],[335,12],[334,190],[333,12],[374,191],[376,192],[378,193],[380,194],[383,195],[409,196],[387,196],[408,197],[389,198],[395,199],[396,200],[398,201],[405,202],[407,12],[406,203],[361,204],[81,12],[82,12],[13,12],[14,12],[16,12],[15,12],[2,12],[17,12],[18,12],[19,12],[20,12],[21,12],[22,12],[23,12],[24,12],[3,12],[25,12],[26,12],[4,12],[27,12],[31,12],[28,12],[29,12],[30,12],[32,12],[33,12],[34,12],[5,12],[35,12],[36,12],[37,12],[38,12],[6,12],[42,12],[39,12],[40,12],[41,12],[43,12],[7,12],[44,12],[49,12],[50,12],[45,12],[46,12],[47,12],[48,12],[8,12],[54,12],[51,12],[52,12],[53,12],[55,12],[9,12],[56,12],[57,12],[58,12],[60,12],[59,12],[61,12],[62,12],[10,12],[63,12],[64,12],[65,12],[11,12],[66,12],[67,12],[68,12],[69,12],[70,12],[1,12],[71,12],[72,12],[12,12],[76,12],[74,12],[79,12],[78,12],[73,12],[77,12],[75,12],[80,12],[119,205],[129,206],[118,205],[139,207],[110,208],[109,209],[138,203],[132,210],[137,211],[112,212],[126,213],[111,214],[135,215],[107,216],[106,203],[136,217],[108,218],[113,219],[114,12],[117,219],[104,12],[140,220],[130,221],[121,222],[122,223],[124,224],[120,225],[123,226],[133,203],[115,227],[116,228],[125,229],[105,230],[128,221],[127,219],[131,12],[134,231],[412,232],[429,233],[431,234],[424,235],[432,236],[433,237],[428,238],[434,239],[437,240],[440,241],[441,242],[418,236],[439,243],[419,244],[430,66],[438,243],[425,245],[423,246],[442,243],[427,245],[426,247],[421,248],[422,249],[417,244],[413,66],[414,12],[415,12],[416,12],[411,12]],"changeFileSet":[444,445,446,447,448,443,449,450,451,452,410,363,453,142,143,144,99,145,146,147,94,97,95,96,148,149,150,151,152,153,154,155,156,157,158,100,98,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,176,178,179,180,181,182,183,184,185,186,187,188,189,190,101,102,103,141,191,192,86,198,199,197,195,196,84,87,286,85,436,435,420,93,366,370,372,219,233,337,265,340,301,310,338,220,264,266,339,240,221,245,234,204,292,293,209,289,294,381,287,382,271,290,394,393,296,392,390,391,291,278,279,288,305,306,295,273,274,385,388,252,251,250,397,249,225,400,403,402,404,200,331,232,202,354,355,357,360,356,358,359,218,231,365,373,377,214,281,280,272,300,298,297,299,304,276,213,238,328,205,212,201,342,352,341,351,239,223,319,318,325,327,320,324,326,323,322,321,261,246,313,247,207,206,317,316,315,314,208,285,302,284,309,311,308,241,194,329,267,303,350,270,345,211,346,348,349,332,344,243,330,353,215,217,222,312,210,216,269,268,224,277,275,226,228,401,227,229,368,367,369,399,230,283,92,307,253,263,242,375,384,260,379,259,362,258,203,386,256,257,248,262,255,254,244,237,347,236,235,371,282,364,83,91,88,89,90,343,336,335,334,333,374,376,378,380,383,409,387,408,389,395,396,398,405,407,406,361,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,119,129,118,139,110,109,138,132,137,112,126,111,135,107,106,136,108,113,114,117,104,140,130,121,122,124,120,123,133,115,116,125,105,128,127,131,134,412,429,431,424,432,433,428,434,437,440,441,418,439,419,430,438,425,423,442,427,426,421,422,417,413,414,415,416,411],"version":"5.9.3"} \ No newline at end of file +{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/shared/lib/amp.d.ts","../../node_modules/next/amp.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/future/route-kind.d.ts","../../node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/server/lib/revalidate.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/font-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-modules/route-module.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/client/components/request-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/request-async-storage.external.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","../../node_modules/next/dist/client/components/app-router.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/action-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/action-async-storage.external.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/search-params.d.ts","../../node_modules/next/dist/client/components/not-found-boundary.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/lib/builtin-request-context.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/future/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/postponed.d.ts","../../node_modules/next/dist/server/future/normalizers/request/action.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefetch-rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/types/index.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/shared/lib/runtime-config.external.d.ts","../../node_modules/next/config.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/client/components/draft-mode.d.ts","../../node_modules/next/dist/client/components/headers.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../../next-env.d.ts","../../tailwind.config.ts","../../src/app/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/markdown.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../node_modules/next-themes/dist/index.d.ts","../../src/components/theme-toggle.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/layout.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/page.tsx","../../src/app/chat/page.tsx","../../src/components/error-boundary.tsx","../../src/app/diagnose/page.tsx","../../src/app/login/page.tsx","../../src/app/recommendations/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/app/sectors/page.tsx","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx","../../src/components/score-radar.tsx","../types/app/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/diagnose/page.ts","../types/app/login/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../node_modules/@types/json5/index.d.ts","../types/app/monitor/page.ts","../../src/app/monitor/page.tsx"],"fileIdsList":[[99,145,405,412],[99,145,360,429],[99,145,360,431],[99,145,360,432],[99,145,360,428],[99,145,360,433],[99,145,360,436],[99,145,360,439],[99,145,360,440],[99,145,408,409],[99,145],[99,142,145],[99,144,145],[145],[99,145,150,178],[99,145,146,151,156,164,175,186],[99,145,146,147,156,164],[94,95,96,99,145],[99,145,148,187],[99,145,149,150,157,165],[99,145,150,175,183],[99,145,151,153,156,164],[99,144,145,152],[99,145,153,154],[99,145,155,156],[99,144,145,156],[99,145,156,157,158,175,186],[99,145,156,157,158,171,175,178],[99,145,153,156,159,164,175,186],[99,145,156,157,159,160,164,175,183,186],[99,145,159,161,175,183,186],[97,98,99,100,101,102,103,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,156,162],[99,145,163,186,191],[99,145,153,156,164,175],[99,145,165],[99,145,166],[99,144,145,167],[99,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,169],[99,145,170],[99,145,156,171,172],[99,145,171,173,187,189],[99,145,156,175,176,178],[99,145,177,178],[99,145,175,176],[99,145,178],[99,145,179],[99,142,145,175,180],[99,145,156,181,182],[99,145,181,182],[99,145,150,164,175,183],[99,145,184],[99,145,164,185],[99,145,159,170,186],[99,145,150,187],[99,145,175,188],[99,145,163,189],[99,145,190],[99,140,145],[99,140,145,156,158,167,175,178,186,189,191],[99,145,175,192],[87,99,145,197,198,199],[87,99,145,197,198],[87,99,145],[87,91,99,145,196,361,404],[87,91,99,145,195,361,404],[84,85,86,99,145],[99,145,434],[92,99,145],[99,145,365],[99,145,367,368,369],[99,145,371],[99,145,202,212,218,220,361],[99,145,202,209,211,214,232],[99,145,212],[99,145,212,214,339],[99,145,267,285,300,407],[99,145,309],[99,145,202,212,219,253,263,336,337,407],[99,145,219,407],[99,145,212,263,264,265,407],[99,145,212,219,253,407],[99,145,407],[99,145,202,219,220,407],[99,145,293],[99,144,145,193,292],[87,99,145,286,287,288,306,307],[87,99,145,286],[99,145,276],[99,145,275,277,381],[87,99,145,286,287,304],[99,145,282,307,393],[99,145,391,392],[99,145,226,390],[99,145,279],[99,144,145,193,226,242,275,276,277,278],[87,99,145,304,306,307],[99,145,304,306],[99,145,304,305,307],[99,145,170,193],[99,145,274],[99,144,145,193,211,213,270,271,272,273],[87,99,145,203,384],[87,99,145,186,193],[87,99,145,219,251],[87,99,145,219],[99,145,249,254],[87,99,145,250,364],[87,91,99,145,159,193,195,196,361,402,403],[99,145,361],[99,145,201],[99,145,354,355,356,357,358,359],[99,145,356],[87,99,145,250,286,364],[87,99,145,286,362,364],[87,99,145,286,364],[99,145,159,193,213,364],[99,145,159,193,210,211,222,240,242,274,279,280,302,304],[99,145,271,274,279,287,289,290,291,293,294,295,296,297,298,299,407],[99,145,272],[87,99,145,170,193,211,212,240,242,243,245,270,302,303,307,361,407],[99,145,159,193,213,214,226,227,275],[99,145,159,193,212,214],[99,145,159,175,193,210,213,214],[99,145,159,170,186,193,210,211,212,213,214,219,222,223,233,234,236,239,240,242,243,244,245,269,270,303,304,312,314,317,319,322,324,325,326,327],[99,145,159,175,193],[99,145,202,203,204,210,211,361,364,407],[99,145,159,175,186,193,207,338,340,341,407],[99,145,170,186,193,207,210,213,230,234,236,237,238,243,270,317,328,330,336,350,351],[99,145,212,216,270],[99,145,210,212],[99,145,223,318],[99,145,320,321],[99,145,320],[99,145,318],[99,145,320,323],[99,145,206,207],[99,145,206,246],[99,145,206],[99,145,208,223,316],[99,145,315],[99,145,207,208],[99,145,208,313],[99,145,207],[99,145,302],[99,145,159,193,210,222,241,261,267,281,284,301,304],[99,145,255,256,257,258,259,260,282,283,307,362],[99,145,311],[99,145,159,193,210,222,241,247,308,310,312,361,364],[99,145,159,186,193,203,210,212,269],[99,145,266],[99,145,159,193,344,349],[99,145,233,242,269,364],[99,145,332,336,350,353],[99,145,159,216,336,344,345,353],[99,145,202,212,233,244,347],[99,145,159,193,212,219,244,331,332,342,343,346,348],[99,145,194,240,241,242,361,364],[99,145,159,170,186,193,208,210,211,213,216,221,222,230,233,234,236,237,238,239,243,245,269,270,314,328,329,364],[99,145,159,193,210,212,216,330,352],[99,145,159,193,211,213],[87,99,145,159,170,193,201,203,210,211,214,222,239,240,242,243,245,311,361,364],[99,145,159,170,186,193,205,208,209,213],[99,145,206,268],[99,145,159,193,206,211,222],[99,145,159,193,212,223],[99,145,159,193],[99,145,226],[99,145,225],[99,145,227],[99,145,212,224,226,230],[99,145,212,224,226],[99,145,159,193,205,212,213,219,227,228,229],[87,99,145,304,305,306],[99,145,262],[87,99,145,203],[87,99,145,236],[87,99,145,194,239,242,245,361,364],[99,145,203,384,385],[87,99,145,254],[87,99,145,170,186,193,201,248,250,252,253,364],[99,145,213,219,236],[99,145,235],[87,99,145,157,159,170,193,201,254,263,361,362,363],[83,87,88,89,90,99,145,195,196,361,404],[99,145,150],[99,145,333,334,335],[99,145,333],[99,145,373],[99,145,375],[99,145,377],[99,145,379],[99,145,382],[99,145,386],[91,93,99,145,361,366,370,372,374,376,378,380,383,387,389,395,396,398,405,406,407],[99,145,388],[99,145,394],[99,145,250],[99,145,397],[99,144,145,227,228,229,230,399,400,401,404],[99,145,193],[87,91,99,145,159,161,170,193,195,196,197,199,201,214,353,360,364,404],[99,112,116,145,186],[99,112,145,175,186],[99,107,145],[99,109,112,145,183,186],[99,145,164,183],[99,107,145,193],[99,109,112,145,164,186],[99,104,105,108,111,145,156,175,186],[99,112,119,145],[99,104,110,145],[99,112,133,134,145],[99,108,112,145,178,186,193],[99,133,145,193],[99,106,107,145,193],[99,112,145],[99,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,145],[99,112,127,145],[99,112,119,120,145],[99,110,112,120,121,145],[99,111,145],[99,104,107,112,145],[99,112,116,120,121,145],[99,116,145],[99,110,112,115,145,186],[99,104,109,112,119,145],[99,145,175],[99,107,112,133,145,191,193],[99,145,405],[87,99,145,414,415,420],[87,99,145,395,414,415,420,430],[99,145,408,417,418,420,422,423],[87,99,145,395,417],[87,99,145,413,414,415,417,421,425,426,427],[87,99,145,413,414,426],[87,99,145,413,414,416,430,435],[87,99,145,395,414,416,430,437,438],[87,99,145,414,417],[87,99,145,420,435],[87,99,145,414],[99,145,414,416],[99,145,389,395,417,421],[87,99,145,414,416],[87,99,145,420],[87,99,145,417,419,421]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29","signature":false,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","signature":false,"impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","signature":false,"impliedFormat":1},{"version":"8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","signature":false,"impliedFormat":1},{"version":"0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","signature":false,"impliedFormat":1},{"version":"05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","signature":false,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","signature":false,"impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","signature":false,"impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","signature":false,"impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","signature":false,"impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","signature":false,"impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","signature":false,"impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","signature":false,"impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","signature":false,"impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","signature":false,"impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","signature":false,"impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","signature":false,"impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","signature":false,"impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","signature":false,"impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","signature":false,"impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","signature":false,"impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","signature":false,"impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","signature":false,"impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","signature":false,"impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","signature":false,"impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","signature":false,"impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","signature":false,"impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","signature":false,"impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","signature":false,"impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","signature":false,"impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","signature":false,"impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","signature":false,"impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","signature":false,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","signature":false,"impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","signature":false,"impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","signature":false,"impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","signature":false,"impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","signature":false,"impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","signature":false,"impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","signature":false,"impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","signature":false,"impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","signature":false,"impliedFormat":1},{"version":"8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","signature":false,"impliedFormat":1},{"version":"f9fd93190acb1ffe0bc0fb395df979452f8d625071e9ffc8636e4dfb86ab2508","signature":false,"impliedFormat":1},{"version":"5f41fd8732a89e940c58ce22206e3df85745feb8983e2b4c6257fb8cbb118493","signature":false,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","signature":false,"impliedFormat":1},{"version":"1cfa8647d7d71cb03847d616bd79320abfc01ddea082a49569fda71ac5ece66b","signature":false,"impliedFormat":1},{"version":"bb7a61dd55dc4b9422d13da3a6bb9cc5e89be888ef23bbcf6558aa9726b89a1c","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","signature":false,"impliedFormat":1},{"version":"cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","signature":false,"impliedFormat":1},{"version":"3a8bddb66b659f6bd2ff641fc71df8a8165bafe0f4b799cc298be5cd3755bb20","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","signature":false,"impliedFormat":1},{"version":"fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","signature":false,"impliedFormat":1},{"version":"196c960b12253fde69b204aa4fbf69470b26daf7a430855d7f94107a16495ab0","signature":false,"impliedFormat":1},{"version":"ee15ea5dd7a9fc9f5013832e5843031817a880bf0f24f37a29fd8337981aae07","signature":false,"impliedFormat":1},{"version":"bf24f6d35f7318e246010ffe9924395893c4e96d34324cde77151a73f078b9ad","signature":false,"impliedFormat":1},{"version":"ea53732769832d0f127ae16620bd5345991d26bf0b74e85e41b61b27d74ea90f","signature":false,"impliedFormat":1},{"version":"10595c7ff5094dd5b6a959ccb1c00e6a06441b4e10a87bc09c15f23755d34439","signature":false,"impliedFormat":1},{"version":"9620c1ff645afb4a9ab4044c85c26676f0a93e8c0e4b593aea03a89ccb47b6d0","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"a9af0e608929aaf9ce96bd7a7b99c9360636c31d73670e4af09a09950df97841","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"08ed0b3f0166787f84a6606f80aa3b1388c7518d78912571b203817406e471da","signature":false,"impliedFormat":1},{"version":"47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","signature":false,"impliedFormat":1},{"version":"65f43099ded6073336e697512d9b80f2d4fec3182b7b2316abf712e84104db00","signature":false,"impliedFormat":1},{"version":"f5f541902bf7ae0512a177295de9b6bcd6809ea38307a2c0a18bfca72212f368","signature":false,"impliedFormat":1},{"version":"b0decf4b6da3ebc52ea0c96095bdfaa8503acc4ac8e9081c5f2b0824835dd3bd","signature":false,"impliedFormat":1},{"version":"ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","signature":false,"impliedFormat":1},{"version":"fc3e1c87b39e5ba1142f27ec089d1966da168c04a859a4f6aab64dceae162c2b","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"61888522cec948102eba94d831c873200aa97d00d8989fdfd2a3e0ee75ec65a2","signature":false,"impliedFormat":1},{"version":"4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"59bf32919de37809e101acffc120596a9e45fdbab1a99de5087f31fdc36e2f11","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"faa03dffb64286e8304a2ca96dd1317a77db6bfc7b3fb385163648f67e535d77","signature":false,"impliedFormat":1},{"version":"c40c848daad198266370c1c72a7a8c3d18d2f50727c7859fcfefd3ff69a7f288","signature":false,"impliedFormat":1},{"version":"ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","signature":false,"impliedFormat":1},{"version":"6428e6edd944ce6789afdf43f9376c1f2e4957eea34166177625aaff4c0da1a0","signature":false,"impliedFormat":1},{"version":"ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","signature":false,"impliedFormat":1},{"version":"6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","signature":false,"impliedFormat":1},{"version":"8dba67056cbb27628e9b9a1cba8e57036d359dceded0725c72a3abe4b6c79cd4","signature":false,"impliedFormat":1},{"version":"70f3814c457f54a7efe2d9ce9d2686de9250bb42eb7f4c539bd2280a42e52d33","signature":false,"impliedFormat":1},{"version":"154dd2e22e1e94d5bc4ff7726706bc0483760bae40506bdce780734f11f7ec47","signature":false,"impliedFormat":1},{"version":"ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"0131e203d8560edb39678abe10db42564a068f98c4ebd1ed9ffe7279c78b3c81","signature":false,"impliedFormat":1},{"version":"f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"8b8f00491431fe82f060dfe8c7f2180a9fb239f3d851527db909b83230e75882","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","signature":false,"impliedFormat":1},{"version":"aeab39e8e0b1a3b250434c3b2bb8f4d17bbec2a9dbce5f77e8a83569d3d2cbc2","signature":false,"impliedFormat":1},{"version":"ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"d729408dfde75b451530bcae944cf89ee8277e2a9df04d1f62f2abfd8b03c1e1","signature":false,"impliedFormat":1},{"version":"e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","signature":false,"impliedFormat":1},{"version":"5f58e28cd22e8fc1ac1b3bc6b431869f1e7d0b39e2c21fbf79b9fa5195a85980","signature":false,"impliedFormat":1},{"version":"e1fc1a1045db5aa09366be2b330e4ce391550041fc3e925f60998ca0b647aa97","signature":false,"impliedFormat":1},{"version":"63533978dcda286422670f6e184ac516805a365fb37a086eeff4309e812f1402","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"31fb49ef3aa3d76f0beb644984e01eab0ea222372ea9b49bb6533be5722d756c","signature":false,"impliedFormat":1},{"version":"33cd131e1461157e3e06b06916b5176e7a8ec3fce15a5cfe145e56de744e07d2","signature":false,"impliedFormat":1},{"version":"889ef863f90f4917221703781d9723278db4122d75596b01c429f7c363562b86","signature":false,"impliedFormat":1},{"version":"3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","signature":false,"impliedFormat":1},{"version":"437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","signature":false,"impliedFormat":1},{"version":"48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","signature":false,"impliedFormat":1},{"version":"d11308de5a36c7015bb73adb5ad1c1bdaac2baede4cc831a05cf85efa3cc7f2f","signature":false,"impliedFormat":1},{"version":"38e4684c22ed9319beda6765bab332c724103d3a966c2e5e1c5a49cf7007845f","signature":false,"impliedFormat":1},{"version":"f9812cfc220ecf7557183379531fa409acd249b9e5b9a145d0d52b76c20862de","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e650298721abc4f6ae851e60ae93ee8199791ceec4b544c3379862f81f43178c","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","signature":false,"impliedFormat":1},{"version":"680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","signature":false,"impliedFormat":1},{"version":"913ddbba170240070bd5921b8f33ea780021bdf42fbdfcd4fcb2691b1884ddde","signature":false,"impliedFormat":1},{"version":"b4e6d416466999ff40d3fe5ceb95f7a8bfb7ac2262580287ac1a8391e5362431","signature":false,"impliedFormat":1},{"version":"5fe23bd829e6be57d41929ac374ee9551ccc3c44cee893167b7b5b77be708014","signature":false,"impliedFormat":1},{"version":"0a626484617019fcfbfc3c1bc1f9e84e2913f1adb73692aa9075817404fb41a1","signature":false,"impliedFormat":1},{"version":"438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","signature":false,"impliedFormat":1},{"version":"cf185cc4a9a6d397f416dd28cca95c227b29f0f27b160060a95c0e5e36cda865","signature":false,"impliedFormat":1},{"version":"0086f3e4ad898fd7ca56bb223098acfacf3fa065595182aaf0f6c4a6a95e6fbd","signature":false,"impliedFormat":1},{"version":"efaa078e392f9abda3ee8ade3f3762ab77f9c50b184e6883063a911742a4c96a","signature":false,"impliedFormat":1},{"version":"54a8bb487e1dc04591a280e7a673cdfb272c83f61e28d8a64cf1ac2e63c35c51","signature":false,"impliedFormat":1},{"version":"021a9498000497497fd693dd315325484c58a71b5929e2bbb91f419b04b24cea","signature":false,"impliedFormat":1},{"version":"9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"84124384abae2f6f66b7fbfc03862d0c2c0b71b826f7dbf42c8085d31f1d3f95","signature":false,"impliedFormat":1},{"version":"63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","signature":false,"impliedFormat":1},{"version":"3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"58b49e5c1def740360b5ae22ae2405cfac295fee74abd88d74ac4ea42502dc03","signature":false,"impliedFormat":1},{"version":"512fc15cca3a35b8dbbf6e23fe9d07e6f87ad03c895acffd3087ce09f352aad0","signature":false,"impliedFormat":1},{"version":"9a0946d15a005832e432ea0cd4da71b57797efb25b755cc07f32274296d62355","signature":false,"impliedFormat":1},{"version":"a52ff6c0a149e9f370372fc3c715d7f2beee1f3bab7980e271a7ab7d313ec677","signature":false,"impliedFormat":1},{"version":"fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","signature":false,"impliedFormat":1},{"version":"ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","signature":false,"impliedFormat":1},{"version":"f95180f03d827525ca4f990f49e17ec67198c316dd000afbe564655141f725cd","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"4e4475fba4ed93a72f167b061cd94a2e171b82695c56de9899275e880e06ba41","signature":false,"impliedFormat":1},{"version":"97c5f5d580ab2e4decd0a3135204050f9b97cd7908c5a8fbc041eadede79b2fa","signature":false,"impliedFormat":1},{"version":"c99a3a5f2215d5b9d735aa04cec6e61ed079d8c0263248e298ffe4604d4d0624","signature":false,"impliedFormat":1},{"version":"49b2375c586882c3ac7f57eba86680ff9742a8d8cb2fe25fe54d1b9673690d41","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"847e160d709c74cc714fbe1f99c41d3425b74cd47b1be133df1623cd87014089","signature":false,"impliedFormat":1},{"version":"9fee04f1e1afa50524862289b9f0b0fdc3735b80e2a0d684cec3b9ff3d94cecc","signature":false,"impliedFormat":1},{"version":"5cdc27fbc5c166fc5c763a30ac21cbac9859dc5ba795d3230db6d4e52a1965bb","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","signature":false,"impliedFormat":1},{"version":"05c97cddbaf99978f83d96de2d8af86aded9332592f08ce4a284d72d0952c391","signature":false,"impliedFormat":1},{"version":"14e5cdec6f8ae82dfd0694e64903a0a54abdfe37e1d966de3d4128362acbf35f","signature":false,"impliedFormat":1},{"version":"bbc183d2d69f4b59fd4dd8799ffdf4eb91173d1c4ad71cce91a3811c021bf80c","signature":false,"impliedFormat":1},{"version":"7b6ff760c8a240b40dab6e4419b989f06a5b782f4710d2967e67c695ef3e93c4","signature":false,"impliedFormat":1},{"version":"8dbc4134a4b3623fc476be5f36de35c40f2768e2e3d9ed437e0d5f1c4cd850f6","signature":false,"impliedFormat":1},{"version":"4e06330a84dec7287f7ebdd64978f41a9f70a668d3b5edc69d5d4a50b9b376bb","signature":false,"impliedFormat":1},{"version":"65bfa72967fbe9fc33353e1ac03f0480aa2e2ea346d61ff3ea997dfd850f641a","signature":false,"impliedFormat":1},{"version":"c06f0bb92d1a1a5a6c6e4b5389a5664d96d09c31673296cb7da5fe945d54d786","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"872caaa31423f4345983d643e4649fb30f548e9883a334d6d1c5fff68ede22d4","signature":false,"impliedFormat":1},{"version":"94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","signature":false,"impliedFormat":1},{"version":"5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","signature":false,"impliedFormat":1},{"version":"09dfc64fcd6a2785867f2368419859a6cc5a8d4e73cbe2538f205b1642eb0f51","signature":false,"impliedFormat":1},{"version":"bcf6f0a323653e72199105a9316d91463ad4744c546d1271310818b8cef7c608","signature":false,"impliedFormat":1},{"version":"01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","signature":false,"impliedFormat":1},{"version":"351475f9c874c62f9b45b1f0dc7e2704e80dfd5f1af83a3a9f841f9dfe5b2912","signature":false,"impliedFormat":1},{"version":"ac457ad39e531b7649e7b40ee5847606eac64e236efd76c5d12db95bf4eacd17","signature":false,"impliedFormat":1},{"version":"187a6fdbdecb972510b7555f3caacb44b58415da8d5825d03a583c4b73fde4cf","signature":false,"impliedFormat":1},{"version":"d4c3250105a612202289b3a266bb7e323db144f6b9414f9dea85c531c098b811","signature":false,"impliedFormat":1},{"version":"95b444b8c311f2084f0fb51c616163f950fb2e35f4eaa07878f313a2d36c98a4","signature":false,"impliedFormat":1},{"version":"741067675daa6d4334a2dc80a4452ca3850e89d5852e330db7cb2b5f867173b1","signature":false,"impliedFormat":1},{"version":"f8acecec1114f11690956e007d920044799aefeb3cece9e7f4b1f8a1d542b2c9","signature":false,"impliedFormat":1},{"version":"178071ccd043967a58c5d1a032db0ddf9bd139e7920766b537d9783e88eb615e","signature":false,"impliedFormat":1},{"version":"3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","signature":false,"impliedFormat":1},{"version":"32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","signature":false,"impliedFormat":1},{"version":"0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","signature":false,"impliedFormat":1},{"version":"e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","signature":false,"impliedFormat":1},{"version":"5cad4158616d7793296dd41e22e1257440910ea8d01c7b75045d4dfb20c5a41a","signature":false,"impliedFormat":1},{"version":"04d3aad777b6af5bd000bfc409907a159fe77e190b9d368da4ba649cdc28d39e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74efc1d6523bd57eb159c18d805db4ead810626bc5bc7002a2c7f483044b2e0f","signature":false,"impliedFormat":1},{"version":"19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","signature":false,"impliedFormat":1},{"version":"bc11f3ac00ac060462597add171220aed628c393f2782ac75dd29ff1e0db871c","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"3b0b1d352b8d2e47f1c4df4fb0678702aee071155b12ef0185fce9eb4fa4af1e","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"a344403e7a7384e0e7093942533d309194ad0a53eca2a3100c0b0ab4d3932773","signature":false,"impliedFormat":1},{"version":"b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","signature":false,"impliedFormat":1},{"version":"5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","signature":false,"impliedFormat":1},{"version":"bb18bf4a61a17b4a6199eb3938ecfa4a59eb7c40843ad4a82b975ab6f7e3d925","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"e9b6fc05f536dfddcdc65dbcf04e09391b1c968ab967382e48924f5cb90d88e1","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"2b664c3cc544d0e35276e1fb2d4989f7d4b4027ffc64da34ec83a6ccf2e5c528","signature":false,"impliedFormat":1},{"version":"a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","signature":false,"impliedFormat":1},{"version":"3cd8f0464e0939b47bfccbb9bb474a6d87d57210e304029cd8eb59c63a81935d","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"3026abd48e5e312f2328629ede6e0f770d21c3cd32cee705c450e589d015ee09","signature":false,"impliedFormat":1},{"version":"8b140b398a6afbd17cc97c38aea5274b2f7f39b1ae5b62952cfe65bf493e3e75","signature":false,"impliedFormat":1},{"version":"7663d2c19ce5ef8288c790edba3d45af54e58c84f1b37b1249f6d49d962f3d91","signature":false,"impliedFormat":1},{"version":"5cce3b975cdb72b57ae7de745b3c5de5790781ee88bcb41ba142f07c0fa02e97","signature":false,"impliedFormat":1},{"version":"00bd6ebe607246b45296aa2b805bd6a58c859acecda154bfa91f5334d7c175c6","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"0d28b974a7605c4eda20c943b3fa9ae16cb452c1666fc9b8c341b879992c7612","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"87ac2fb61e629e777f4d161dff534c2023ee15afd9cb3b1589b9b1f014e75c58","signature":false,"impliedFormat":1},{"version":"13c8b4348db91e2f7d694adc17e7438e6776bc506d5c8f5de9ad9989707fa3fe","signature":false,"impliedFormat":1},{"version":"3c1051617aa50b38e9efaabce25e10a5dd9b1f42e372ef0e8a674076a68742ed","signature":false,"impliedFormat":1},{"version":"07a3e20cdcb0f1182f452c0410606711fbea922ca76929a41aacb01104bc0d27","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"4cd4b6b1279e9d744a3825cbd7757bbefe7f0708f3f1069179ad535f19e8ed2c","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"b95a6f019095dd1d48fd04965b50dfd63e5743a6e75478343c46d2582a5132bf","signature":false,"impliedFormat":99},{"version":"c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","signature":false,"impliedFormat":99},{"version":"b97cb5616d2ab82a98ec9ada7b9e9cabb1f5da880ec50ea2b8dc5baa4cbf3c16","signature":false,"impliedFormat":99},{"version":"d23df9ff06ae8bf1dcb7cc933e97ae7da418ac77749fecee758bb43a8d69f840","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"040c71dde2c406f869ad2f41e8d4ce579cc60c8dbe5aa0dd8962ac943b846572","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","signature":false,"impliedFormat":1},{"version":"a6df929821e62f4719551f7955b9f42c0cd53c1370aec2dd322e24196a7dfe33","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"9dd9d642cdb87d4d5b3173217e0c45429b3e47a6f5cf5fb0ead6c644ec5fed01","signature":false},{"version":"e482174f15675678363b9a4ed12113ca45d18eee41e8e678deb0e824be29d3e7","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"1cccbcbf29b6befd514680173e7b1df70b1cddd5d1803cc34f761cdbec39fdfd","signature":false},{"version":"8dbef3a76dc1979412d1f2a7d685a614d09bf803d2c8ff6983e2fbe394a59aee","signature":false},{"version":"3ee18c7abaf5a829f0430ce4f7a0769e9953cbe19cdac28b43272d7b829fa255","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"370f98a39917baa5b5c1484f9e87d6544f568d9e90c5ddfcda4c2bdf86f16e18","signature":false},{"version":"e5fab9363dd130c193e1877d1f152809254adf1303e41175d83f49a46260b180","signature":false},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","signature":false,"impliedFormat":1},{"version":"cb5eaa5ad51d596beda5a76732641b7dcf9e26acae7b20919a811d7b38d7c03a","signature":false},{"version":"868089c4835bcfc56985ec7b898e93b409f4c985a73d70589b7b0e2d7d6c5352","signature":false},{"version":"253d32169895b33f796a5d7c593de4b8edd4640bce4d0ae2ebc6e2813914b0d3","signature":false},{"version":"a644de050a39f1628968a6bc4c9c975a5129d0e3874a3c033f7e9b0847d92c3e","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"e14aa6e21dff7cbaf54884d0973e89758e571f7546899fa02b6e87a10c660d20","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"1d99fe0d2ab957f8ce36d7cadf33e4a8337dd918a3afa480dd6603f80fde1094","signature":false},{"version":"f7886bcfa6587f307aa8045d6f9861f319808bbc59f6c89f1ba40a19be648ec5","signature":false},{"version":"288e514b408582dbbe0ebedfe7620f92b65eefacd03c66aba34a0504cf400ccb","signature":false},{"version":"dd500fb85312298d9c50675e8005734324eb7eef4dc49703f5312c185152e7ca","signature":false},{"version":"d5876e27f72a8708c4c6705699a5ca0c42e3133bee3b670ef559c6b645851c1e","signature":false},{"version":"35ab356d9cb1f1ac1e8d500cbd31a01aa5bf8ae75992c49332c6ddc89d7a1718","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"03608eab2e6c43d1844fcbeed6e140e089c78ba8764a9651fd4747aa91fc507f","signature":false},{"version":"9fa4f9fde67afe4bef8157c58de7690809173f98c72463526cd48964b165080e","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"e9d654ec9a79d49238e0a996c78508a4eaf889d6b16a744cf4e22126b0dc2e3a","signature":false},{"version":"7ecbfcab0d7422a8fba7e8b0afb98ab1f6076e129fb4647bcab89ba05ca80931","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"2ab5d412ffa57dbca06de472201ddaea1c41b8a515c74667b7059bf334cbb20f","signature":false},{"version":"034d31e472e4e70878fdac24f6314c3355b5b065c3eba828a75f824a83c20341","signature":false},{"version":"3c0c4a0730704889504deb1457bd552134b43f6e2367cfa0d1378b881e779c81","signature":false},{"version":"c67c285034e735a86d94459e59d97659641056e932d053f21a164bede16d14a3","signature":false},{"version":"76e93d96bc19a32eb66e4fd28c96e4d3ded687202893eabf550f835230add683","signature":false},{"version":"3913d85082a4eda81a195bacbd18a93aeb39103bf930ad397c69e1f7521ddf8d","signature":false},{"version":"623de97f632c3c7091a19759e01b1764a3a64aac3ae2ea890c410cc37fd4258e","signature":false},{"version":"ba9ca691d5427129c4c651d308fc027aa3bccdb6484ec90f016a4f2a77f9e7b9","signature":false},{"version":"2c04659a5a9897aee5307e3aad32283ee831ffc7918fcc2a4b7f50065ccfc25b","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,419],[421,433],[436,450]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[443,1],[444,2],[445,3],[446,4],[442,5],[447,6],[448,7],[449,8],[450,9],[410,10],[363,11],[451,11],[142,12],[143,12],[144,13],[99,14],[145,15],[146,16],[147,17],[94,11],[97,18],[95,11],[96,11],[148,19],[149,20],[150,21],[151,22],[152,23],[153,24],[154,24],[155,25],[156,26],[157,27],[158,28],[100,11],[98,11],[159,29],[160,30],[161,31],[193,32],[162,33],[163,34],[164,35],[165,36],[166,37],[167,38],[168,39],[169,40],[170,41],[171,42],[172,42],[173,43],[174,11],[175,44],[177,45],[176,46],[178,47],[179,48],[180,49],[181,50],[182,51],[183,52],[184,53],[185,54],[186,55],[187,56],[188,57],[189,58],[190,59],[101,11],[102,11],[103,11],[141,60],[191,61],[192,62],[86,11],[198,63],[199,64],[197,65],[195,66],[196,67],[84,11],[87,68],[286,65],[85,11],[435,69],[434,11],[420,65],[93,70],[366,71],[370,72],[372,73],[219,74],[233,75],[337,76],[265,11],[340,77],[301,78],[310,79],[338,80],[220,81],[264,11],[266,82],[339,83],[240,84],[221,85],[245,84],[234,84],[204,84],[292,86],[293,87],[209,11],[289,88],[294,89],[381,90],[287,89],[382,91],[271,11],[290,92],[394,93],[393,94],[296,89],[392,11],[390,11],[391,95],[291,65],[278,96],[279,97],[288,98],[305,99],[306,100],[295,101],[273,102],[274,103],[385,104],[388,105],[252,106],[251,107],[250,108],[397,65],[249,109],[225,11],[400,11],[403,11],[402,65],[404,110],[200,11],[331,11],[232,111],[202,112],[354,11],[355,11],[357,11],[360,113],[356,11],[358,114],[359,114],[218,11],[231,11],[365,115],[373,116],[377,117],[214,118],[281,119],[280,11],[272,102],[300,120],[298,121],[297,11],[299,11],[304,122],[276,123],[213,124],[238,125],[328,126],[205,127],[212,128],[201,76],[342,129],[352,130],[341,11],[351,131],[239,11],[223,132],[319,133],[318,11],[325,134],[327,135],[320,136],[324,137],[326,134],[323,136],[322,134],[321,136],[261,138],[246,138],[313,139],[247,139],[207,140],[206,11],[317,141],[316,142],[315,143],[314,144],[208,145],[285,146],[302,147],[284,148],[309,149],[311,150],[308,148],[241,145],[194,11],[329,151],[267,152],[303,11],[350,153],[270,154],[345,155],[211,11],[346,156],[348,157],[349,158],[332,11],[344,127],[243,159],[330,160],[353,161],[215,11],[217,11],[222,162],[312,163],[210,164],[216,11],[269,165],[268,166],[224,167],[277,168],[275,169],[226,170],[228,171],[401,11],[227,172],[229,173],[368,11],[367,11],[369,11],[399,11],[230,174],[283,65],[92,11],[307,175],[253,11],[263,176],[242,11],[375,65],[384,177],[260,65],[379,89],[259,178],[362,179],[258,177],[203,11],[386,180],[256,65],[257,65],[248,11],[262,11],[255,181],[254,182],[244,183],[237,101],[347,11],[236,184],[235,11],[371,11],[282,65],[364,185],[83,11],[91,186],[88,65],[89,11],[90,11],[343,187],[336,188],[335,11],[334,189],[333,11],[374,190],[376,191],[378,192],[380,193],[383,194],[409,195],[387,195],[408,196],[389,197],[395,198],[396,199],[398,200],[405,201],[407,11],[406,202],[361,203],[81,11],[82,11],[13,11],[14,11],[16,11],[15,11],[2,11],[17,11],[18,11],[19,11],[20,11],[21,11],[22,11],[23,11],[24,11],[3,11],[25,11],[26,11],[4,11],[27,11],[31,11],[28,11],[29,11],[30,11],[32,11],[33,11],[34,11],[5,11],[35,11],[36,11],[37,11],[38,11],[6,11],[42,11],[39,11],[40,11],[41,11],[43,11],[7,11],[44,11],[49,11],[50,11],[45,11],[46,11],[47,11],[48,11],[8,11],[54,11],[51,11],[52,11],[53,11],[55,11],[9,11],[56,11],[57,11],[58,11],[60,11],[59,11],[61,11],[62,11],[10,11],[63,11],[64,11],[65,11],[11,11],[66,11],[67,11],[68,11],[69,11],[70,11],[1,11],[71,11],[72,11],[12,11],[76,11],[74,11],[79,11],[78,11],[73,11],[77,11],[75,11],[80,11],[119,204],[129,205],[118,204],[139,206],[110,207],[109,208],[138,202],[132,209],[137,210],[112,211],[126,212],[111,213],[135,214],[107,215],[106,202],[136,216],[108,217],[113,218],[114,11],[117,218],[104,11],[140,219],[130,220],[121,221],[122,222],[124,223],[120,224],[123,225],[133,202],[115,226],[116,227],[125,228],[105,229],[128,220],[127,218],[131,11],[134,230],[412,231],[429,232],[431,233],[424,234],[432,235],[428,236],[433,237],[436,238],[439,239],[440,240],[418,235],[438,241],[419,242],[430,65],[437,241],[425,243],[423,244],[441,241],[427,243],[426,245],[421,246],[422,247],[417,242],[413,65],[414,11],[415,11],[416,11],[411,11]],"changeFileSet":[443,444,445,446,452,442,447,448,449,450,410,363,451,142,143,144,99,145,146,147,94,97,95,96,148,149,150,151,152,153,154,155,156,157,158,100,98,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,176,178,179,180,181,182,183,184,185,186,187,188,189,190,101,102,103,141,191,192,86,198,199,197,195,196,84,87,286,85,435,434,420,93,366,370,372,219,233,337,265,340,301,310,338,220,264,266,339,240,221,245,234,204,292,293,209,289,294,381,287,382,271,290,394,393,296,392,390,391,291,278,279,288,305,306,295,273,274,385,388,252,251,250,397,249,225,400,403,402,404,200,331,232,202,354,355,357,360,356,358,359,218,231,365,373,377,214,281,280,272,300,298,297,299,304,276,213,238,328,205,212,201,342,352,341,351,239,223,319,318,325,327,320,324,326,323,322,321,261,246,313,247,207,206,317,316,315,314,208,285,302,284,309,311,308,241,194,329,267,303,350,270,345,211,346,348,349,332,344,243,330,353,215,217,222,312,210,216,269,268,224,277,275,226,228,401,227,229,368,367,369,399,230,283,92,307,253,263,242,375,384,260,379,259,362,258,203,386,256,257,248,262,255,254,244,237,347,236,235,371,282,364,83,91,88,89,90,343,336,335,334,333,374,376,378,380,383,409,387,408,389,395,396,398,405,407,406,361,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,119,129,118,139,110,109,138,132,137,112,126,111,135,107,106,136,108,113,114,117,104,140,130,121,122,124,120,123,133,115,116,125,105,128,127,131,134,412,429,431,424,432,453,428,433,436,439,440,418,438,419,430,437,425,423,441,427,426,421,422,417,413,414,415,416,411],"version":"5.9.3"} \ No newline at end of file diff --git a/frontend/.next/react-loadable-manifest.json b/frontend/.next/react-loadable-manifest.json index 9e26dfee..2e1e8099 100644 --- a/frontend/.next/react-loadable-manifest.json +++ b/frontend/.next/react-loadable-manifest.json @@ -1 +1,8 @@ -{} \ No newline at end of file +{ + "app/sectors/page.tsx -> echarts": { + "id": "app/sectors/page.tsx -> echarts", + "files": [ + "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js" + ] + } +} \ 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 e234c2ed..b650b5e8 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,3 +1,5 @@ { - "/page": "app/page.js" + "/_not-found/page": "app/_not-found/page.js", + "/page": "app/page.js", + "/sectors/page": "app/sectors/page.js" } \ No newline at end of file diff --git a/frontend/.next/server/middleware-react-loadable-manifest.js b/frontend/.next/server/middleware-react-loadable-manifest.js index ca34f09f..56c9c349 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="{}" \ No newline at end of file +self.__REACT_LOADABLE_MANIFEST="{\"app/sectors/page.tsx -> echarts\":{\"id\":\"app/sectors/page.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]}}" \ 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 b9f34565..a155d5c3 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1,5 +1,5 @@ { "node": {}, "edge": {}, - "encryptionKey": "s33pKc3VjlvggFQFOCpPXrHp6MilpQP7rFdwHOWbtO8=" + "encryptionKey": "3EcBu3/DLHcDJDy/e3ozITIuj0jdVQNPr7Acwbdh1AI=" } \ No newline at end of file diff --git a/frontend/.next/server/webpack-runtime.js b/frontend/.next/server/webpack-runtime.js index 08cbdf9e..58f2d346 100644 --- a/frontend/.next/server/webpack-runtime.js +++ b/frontend/.next/server/webpack-runtime.js @@ -125,7 +125,7 @@ /******/ /******/ /* webpack/runtime/getFullHash */ /******/ (() => { -/******/ __webpack_require__.h = () => ("668607dc222a6966") +/******/ __webpack_require__.h = () => ("463c86bf832e0923") /******/ })(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ diff --git a/frontend/.next/trace b/frontend/.next/trace index 809b9cfd..b22c854a 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,17 +1,52 @@ -[{"name":"hot-reloader","duration":26,"timestamp":6713185211817,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776320132206,"traceId":"301cc70d0b43064f"},{"name":"start","duration":0,"timestamp":6713185212260,"id":4,"parentId":3,"tags":{},"startTime":1776320132207,"traceId":"301cc70d0b43064f"},{"name":"get-version-info","duration":121491,"timestamp":6713185212357,"id":5,"parentId":4,"tags":{},"startTime":1776320132207,"traceId":"301cc70d0b43064f"},{"name":"clean","duration":131978,"timestamp":6713185333889,"id":6,"parentId":4,"tags":{},"startTime":1776320132329,"traceId":"301cc70d0b43064f"},{"name":"create-pages-mapping","duration":97,"timestamp":6713185466465,"id":8,"parentId":7,"tags":{},"startTime":1776320132461,"traceId":"301cc70d0b43064f"},{"name":"create-entrypoints","duration":214137,"timestamp":6713185466574,"id":9,"parentId":7,"tags":{},"startTime":1776320132461,"traceId":"301cc70d0b43064f"},{"name":"generate-webpack-config","duration":62351,"timestamp":6713185680744,"id":10,"parentId":7,"tags":{},"startTime":1776320132675,"traceId":"301cc70d0b43064f"},{"name":"get-webpack-config","duration":276683,"timestamp":6713185466421,"id":7,"parentId":4,"tags":{},"startTime":1776320132461,"traceId":"301cc70d0b43064f"},{"name":"make","duration":511,"timestamp":6713185783207,"id":12,"parentId":11,"tags":{},"startTime":1776320132778,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":328,"timestamp":6713185784651,"id":14,"parentId":13,"tags":{},"startTime":1776320132779,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":9,"timestamp":6713185785030,"id":16,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":57,"timestamp":6713185785121,"id":17,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":10,"timestamp":6713185785203,"id":18,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":10,"timestamp":6713185785287,"id":19,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":329,"timestamp":6713185785009,"id":15,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":43,"timestamp":6713185785620,"id":20,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":70,"timestamp":6713185785673,"id":21,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":208,"timestamp":6713185785856,"id":22,"parentId":13,"tags":{},"startTime":1776320132780,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":26,"timestamp":6713185786064,"id":23,"parentId":13,"tags":{},"startTime":1776320132781,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":33,"timestamp":6713185786079,"id":24,"parentId":13,"tags":{},"startTime":1776320132781,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":122,"timestamp":6713185786116,"id":25,"parentId":13,"tags":{},"startTime":1776320132781,"traceId":"301cc70d0b43064f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":656,"timestamp":6713185819569,"id":27,"parentId":11,"tags":{},"startTime":1776320132814,"traceId":"301cc70d0b43064f"},{"name":"NextJsBuildManifest-createassets","duration":894,"timestamp":6713185819340,"id":26,"parentId":11,"tags":{},"startTime":1776320132814,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":36195,"timestamp":6713185784570,"id":13,"parentId":11,"tags":{},"startTime":1776320132779,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":39315,"timestamp":6713185781577,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776320132776,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":2693,"timestamp":6713185821075,"id":28,"parentId":3,"tags":{},"startTime":1776320132816,"traceId":"301cc70d0b43064f"},{"name":"make","duration":756,"timestamp":6713185828205,"id":30,"parentId":29,"tags":{},"startTime":1776320132823,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":16,"timestamp":6713185829217,"id":32,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":2,"timestamp":6713185829248,"id":34,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":36,"timestamp":6713185829282,"id":35,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":4,"timestamp":6713185829336,"id":36,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":27,"timestamp":6713185829361,"id":37,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":173,"timestamp":6713185829241,"id":33,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":4,"timestamp":6713185829477,"id":38,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":7,"timestamp":6713185829487,"id":39,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":102,"timestamp":6713185829561,"id":40,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":35,"timestamp":6713185829662,"id":41,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":9,"timestamp":6713185829691,"id":42,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":10,"timestamp":6713185829704,"id":43,"parentId":31,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":1093,"timestamp":6713185829148,"id":31,"parentId":29,"tags":{},"startTime":1776320132824,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":2819,"timestamp":6713185827502,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776320132822,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":3132,"timestamp":6713185830367,"id":44,"parentId":3,"tags":{},"startTime":1776320132825,"traceId":"301cc70d0b43064f"},{"name":"make","duration":93,"timestamp":6713185836004,"id":46,"parentId":45,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":11,"timestamp":6713185836347,"id":48,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":2,"timestamp":6713185836367,"id":50,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":4,"timestamp":6713185836393,"id":51,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":2,"timestamp":6713185836403,"id":52,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6713185836415,"id":53,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":61,"timestamp":6713185836364,"id":49,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":4,"timestamp":6713185836470,"id":54,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":3,"timestamp":6713185836478,"id":55,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":35,"timestamp":6713185836507,"id":56,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":9,"timestamp":6713185836542,"id":57,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":5,"timestamp":6713185836548,"id":58,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":6,"timestamp":6713185836555,"id":59,"parentId":47,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":502,"timestamp":6713185836327,"id":47,"parentId":45,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":1655,"timestamp":6713185835191,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776320132830,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":684,"timestamp":6713185836865,"id":60,"parentId":3,"tags":{},"startTime":1776320132831,"traceId":"301cc70d0b43064f"}] -[{"name":"make","duration":176,"timestamp":6713186085192,"id":65,"parentId":64,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":13,"timestamp":6713186085461,"id":67,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":2,"timestamp":6713186085482,"id":69,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":4,"timestamp":6713186085491,"id":70,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":3,"timestamp":6713186085501,"id":71,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6713186085512,"id":72,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":48,"timestamp":6713186085479,"id":68,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":4,"timestamp":6713186085576,"id":73,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":3,"timestamp":6713186085585,"id":74,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":102,"timestamp":6713186085604,"id":75,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":27,"timestamp":6713186085705,"id":76,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":8,"timestamp":6713186085726,"id":77,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":13,"timestamp":6713186085737,"id":78,"parentId":66,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":205,"timestamp":6713186086157,"id":80,"parentId":64,"tags":{},"startTime":1776320133081,"traceId":"301cc70d0b43064f"},{"name":"NextJsBuildManifest-createassets","duration":233,"timestamp":6713186086133,"id":79,"parentId":64,"tags":{},"startTime":1776320133081,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":1012,"timestamp":6713186085444,"id":66,"parentId":64,"tags":{},"startTime":1776320133080,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":1668,"timestamp":6713186084806,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776320133079,"traceId":"301cc70d0b43064f"},{"name":"setup-dev-bundler","duration":1010055,"timestamp":6713185103892,"id":2,"parentId":1,"tags":{},"startTime":1776320132099,"traceId":"301cc70d0b43064f"},{"name":"run-instrumentation-hook","duration":22,"timestamp":6713186137404,"id":82,"parentId":1,"tags":{},"startTime":1776320133132,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":51289,"timestamp":6713186086490,"id":81,"parentId":61,"tags":{},"startTime":1776320133081,"traceId":"301cc70d0b43064f"},{"name":"webpack-invalidated-client","duration":56786,"timestamp":6713186081681,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776320133076,"traceId":"301cc70d0b43064f"},{"name":"make","duration":341,"timestamp":6713186139622,"id":84,"parentId":83,"tags":{},"startTime":1776320133134,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":16,"timestamp":6713186140046,"id":86,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":2,"timestamp":6713186140071,"id":88,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":75,"timestamp":6713186140104,"id":89,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":4,"timestamp":6713186140185,"id":90,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6713186140199,"id":91,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":144,"timestamp":6713186140068,"id":87,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":4,"timestamp":6713186140331,"id":92,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":3,"timestamp":6713186140339,"id":93,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":29,"timestamp":6713186140358,"id":94,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":8,"timestamp":6713186140387,"id":95,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":3,"timestamp":6713186140393,"id":96,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":9,"timestamp":6713186140398,"id":97,"parentId":85,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":526,"timestamp":6713186140032,"id":85,"parentId":83,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":1296,"timestamp":6713186139278,"id":83,"parentId":62,"tags":{"name":"server"},"startTime":1776320133134,"traceId":"301cc70d0b43064f"},{"name":"start-dev-server","duration":1286112,"timestamp":6713184861246,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"125009920","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"208551936","memory.heapTotal":"104693760","memory.heapUsed":"80243624"},"startTime":1776320131856,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":8434,"timestamp":6713186140585,"id":98,"parentId":62,"tags":{},"startTime":1776320133135,"traceId":"301cc70d0b43064f"},{"name":"webpack-invalidated-server","duration":67563,"timestamp":6713186081802,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776320133076,"traceId":"301cc70d0b43064f"},{"name":"make","duration":136,"timestamp":6713186150583,"id":100,"parentId":99,"tags":{},"startTime":1776320133145,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":15,"timestamp":6713186150870,"id":102,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":2,"timestamp":6713186150893,"id":104,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":5,"timestamp":6713186150908,"id":105,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":4,"timestamp":6713186150920,"id":106,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6713186150932,"id":107,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":56,"timestamp":6713186150890,"id":103,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":4,"timestamp":6713186150999,"id":108,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":3,"timestamp":6713186151007,"id":109,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":28,"timestamp":6713186151027,"id":110,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":8,"timestamp":6713186151055,"id":111,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":3,"timestamp":6713186151061,"id":112,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":8,"timestamp":6713186151069,"id":113,"parentId":101,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":412,"timestamp":6713186150841,"id":101,"parentId":99,"tags":{},"startTime":1776320133145,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":1073,"timestamp":6713186150194,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776320133145,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":19279,"timestamp":6713186151276,"id":114,"parentId":63,"tags":{},"startTime":1776320133146,"traceId":"301cc70d0b43064f"},{"name":"webpack-invalidated-edge-server","duration":89571,"timestamp":6713186081823,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776320133076,"traceId":"301cc70d0b43064f"}] -[{"name":"build-module","duration":19841,"timestamp":6713186660645,"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%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1776320133655,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3154,"timestamp":6713186692173,"id":133,"parentId":132,"tags":{},"startTime":1776320133687,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3587,"timestamp":6713186691748,"id":132,"parentId":122,"tags":{},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":6762,"timestamp":6713186689733,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"rsc"},"startTime":1776320133684,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5091,"timestamp":6713186692321,"id":137,"parentId":136,"tags":{},"startTime":1776320133687,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5131,"timestamp":6713186692286,"id":136,"parentId":127,"tags":{},"startTime":1776320133687,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7184,"timestamp":6713186691526,"id":127,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6396,"timestamp":6713186692350,"id":139,"parentId":138,"tags":{},"startTime":1776320133687,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6424,"timestamp":6713186692323,"id":138,"parentId":128,"tags":{},"startTime":1776320133687,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9792,"timestamp":6713186691572,"id":128,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9124,"timestamp":6713186692284,"id":135,"parentId":134,"tags":{},"startTime":1776320133687,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9215,"timestamp":6713186692194,"id":134,"parentId":123,"tags":{},"startTime":1776320133687,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":12873,"timestamp":6713186690811,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776320133685,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":14430,"timestamp":6713186691719,"id":129,"parentId":124,"tags":{},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":72,"timestamp":6713186706179,"id":140,"parentId":124,"tags":{},"startTime":1776320133701,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":15868,"timestamp":6713186690921,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":15060,"timestamp":6713186691736,"id":130,"parentId":125,"tags":{},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":58,"timestamp":6713186706805,"id":141,"parentId":125,"tags":{},"startTime":1776320133701,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17904,"timestamp":6713186691266,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":19111,"timestamp":6713186691742,"id":131,"parentId":126,"tags":{},"startTime":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":40,"timestamp":6713186710864,"id":142,"parentId":126,"tags":{},"startTime":1776320133705,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":20277,"timestamp":6713186691433,"id":126,"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":1776320133686,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":271,"timestamp":6713186715515,"id":143,"parentId":126,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776320133710,"traceId":"301cc70d0b43064f"},{"name":"build-module-external","duration":15,"timestamp":6713186716457,"id":147,"parentId":125,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"build-module-external","duration":5,"timestamp":6713186716479,"id":148,"parentId":125,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"build-module-external","duration":3,"timestamp":6713186716487,"id":149,"parentId":125,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5624,"timestamp":6713186716806,"id":159,"parentId":158,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5657,"timestamp":6713186716777,"id":158,"parentId":146,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6464,"timestamp":6713186716413,"id":146,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6188,"timestamp":6713186716836,"id":161,"parentId":160,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6218,"timestamp":6713186716808,"id":160,"parentId":150,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6744,"timestamp":6713186716492,"id":150,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6476,"timestamp":6713186716775,"id":157,"parentId":156,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6507,"timestamp":6713186716744,"id":156,"parentId":145,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7135,"timestamp":6713186716290,"id":145,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6344,"timestamp":6713186717089,"id":165,"parentId":164,"tags":{},"startTime":1776320133712,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6387,"timestamp":6713186717047,"id":164,"parentId":152,"tags":{},"startTime":1776320133712,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7934,"timestamp":6713186716561,"id":152,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7465,"timestamp":6713186717044,"id":163,"parentId":162,"tags":{},"startTime":1776320133712,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7602,"timestamp":6713186716908,"id":162,"parentId":151,"tags":{},"startTime":1776320133712,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8974,"timestamp":6713186716529,"id":151,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8873,"timestamp":6713186716741,"id":155,"parentId":154,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8981,"timestamp":6713186716635,"id":154,"parentId":144,"tags":{},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9712,"timestamp":6713186716109,"id":144,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9850,"timestamp":6713186717119,"id":167,"parentId":166,"tags":{},"startTime":1776320133712,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9879,"timestamp":6713186717096,"id":166,"parentId":153,"tags":{},"startTime":1776320133712,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10636,"timestamp":6713186716594,"id":153,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776320133711,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":8334,"timestamp":6713186722371,"id":169,"parentId":168,"tags":{},"startTime":1776320133717,"traceId":"301cc70d0b43064f"},{"name":"build-module-css","duration":9179,"timestamp":6713186721818,"id":168,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776320133716,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":4258,"timestamp":6713186727810,"id":174,"parentId":170,"tags":{},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":63,"timestamp":6713186732082,"id":178,"parentId":170,"tags":{},"startTime":1776320133727,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13980,"timestamp":6713186727473,"id":170,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":13714,"timestamp":6713186727827,"id":176,"parentId":172,"tags":{},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":46,"timestamp":6713186741553,"id":179,"parentId":172,"tags":{},"startTime":1776320133736,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14205,"timestamp":6713186727632,"id":172,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":14024,"timestamp":6713186727821,"id":175,"parentId":171,"tags":{},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":33,"timestamp":6713186741850,"id":180,"parentId":171,"tags":{},"startTime":1776320133736,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14677,"timestamp":6713186727572,"id":171,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":14427,"timestamp":6713186727841,"id":177,"parentId":173,"tags":{},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":31,"timestamp":6713186742274,"id":181,"parentId":173,"tags":{},"startTime":1776320133737,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":15389,"timestamp":6713186727684,"id":173,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776320133722,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":4872,"timestamp":6713186743555,"id":183,"parentId":182,"tags":{},"startTime":1776320133738,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":91,"timestamp":6713186748436,"id":184,"parentId":182,"tags":{},"startTime":1776320133743,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6378,"timestamp":6713186743456,"id":182,"parentId":151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776320133738,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":3846,"timestamp":6713186750336,"id":190,"parentId":187,"tags":{},"startTime":1776320133745,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":30,"timestamp":6713186754191,"id":201,"parentId":187,"tags":{},"startTime":1776320133749,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4309,"timestamp":6713186750252,"id":187,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776320133745,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":4296,"timestamp":6713186750329,"id":189,"parentId":186,"tags":{},"startTime":1776320133745,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":31,"timestamp":6713186754629,"id":202,"parentId":186,"tags":{},"startTime":1776320133749,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5326,"timestamp":6713186750193,"id":186,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776320133745,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":5215,"timestamp":6713186750314,"id":188,"parentId":185,"tags":{},"startTime":1776320133745,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":34,"timestamp":6713186755549,"id":203,"parentId":185,"tags":{},"startTime":1776320133750,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5722,"timestamp":6713186750081,"id":185,"parentId":127,"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":1776320133745,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2493,"timestamp":6713186756190,"id":208,"parentId":207,"tags":{},"startTime":1776320133751,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2522,"timestamp":6713186756164,"id":207,"parentId":205,"tags":{},"startTime":1776320133751,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3323,"timestamp":6713186755988,"id":205,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776320133751,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":6325,"timestamp":6713186753152,"id":196,"parentId":191,"tags":{},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":30,"timestamp":6713186759483,"id":215,"parentId":191,"tags":{},"startTime":1776320133754,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6928,"timestamp":6713186752876,"id":191,"parentId":151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":6638,"timestamp":6713186753173,"id":198,"parentId":193,"tags":{},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":41,"timestamp":6713186759815,"id":216,"parentId":193,"tags":{},"startTime":1776320133754,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8832,"timestamp":6713186753011,"id":193,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":8684,"timestamp":6713186753165,"id":197,"parentId":192,"tags":{},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":50,"timestamp":6713186761855,"id":217,"parentId":192,"tags":{},"startTime":1776320133756,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10028,"timestamp":6713186752959,"id":192,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":9815,"timestamp":6713186753177,"id":199,"parentId":194,"tags":{},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":57,"timestamp":6713186762996,"id":218,"parentId":194,"tags":{},"startTime":1776320133758,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10830,"timestamp":6713186753057,"id":194,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":10897,"timestamp":6713186753182,"id":200,"parentId":195,"tags":{},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":68,"timestamp":6713186764084,"id":219,"parentId":195,"tags":{},"startTime":1776320133759,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11832,"timestamp":6713186753100,"id":195,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776320133748,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":10237,"timestamp":6713186756031,"id":206,"parentId":204,"tags":{},"startTime":1776320133751,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":29,"timestamp":6713186766275,"id":222,"parentId":204,"tags":{},"startTime":1776320133761,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11035,"timestamp":6713186755917,"id":204,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776320133751,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":12238,"timestamp":6713186757975,"id":211,"parentId":209,"tags":{},"startTime":1776320133753,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":37,"timestamp":6713186770223,"id":225,"parentId":209,"tags":{},"startTime":1776320133765,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12577,"timestamp":6713186757836,"id":209,"parentId":125,"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":1776320133752,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":12434,"timestamp":6713186757985,"id":212,"parentId":210,"tags":{},"startTime":1776320133753,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":32,"timestamp":6713186770423,"id":226,"parentId":210,"tags":{},"startTime":1776320133765,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12645,"timestamp":6713186757905,"id":210,"parentId":128,"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":1776320133753,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":13182,"timestamp":6713186759456,"id":214,"parentId":213,"tags":{},"startTime":1776320133754,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-loader","duration":28,"timestamp":6713186772732,"id":239,"parentId":213,"tags":{},"startTime":1776320133767,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13530,"timestamp":6713186759375,"id":213,"parentId":128,"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":1776320133754,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1705,"timestamp":6713186771233,"id":232,"parentId":231,"tags":{},"startTime":1776320133766,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1739,"timestamp":6713186771200,"id":231,"parentId":228,"tags":{},"startTime":1776320133766,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":2167,"timestamp":6713186771054,"id":228,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776320133766,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2031,"timestamp":6713186771198,"id":230,"parentId":229,"tags":{},"startTime":1776320133766,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2085,"timestamp":6713186771145,"id":229,"parentId":227,"tags":{},"startTime":1776320133766,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":2409,"timestamp":6713186770969,"id":227,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776320133766,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":7682,"timestamp":6713186765719,"id":221,"parentId":220,"tags":{},"startTime":1776320133760,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1909,"timestamp":6713186772392,"id":236,"parentId":235,"tags":{},"startTime":1776320133767,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1956,"timestamp":6713186772347,"id":235,"parentId":233,"tags":{},"startTime":1776320133767,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":2229,"timestamp":6713186772202,"id":233,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776320133767,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2012,"timestamp":6713186772427,"id":238,"parentId":237,"tags":{},"startTime":1776320133767,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2045,"timestamp":6713186772394,"id":237,"parentId":234,"tags":{},"startTime":1776320133767,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":2293,"timestamp":6713186772280,"id":234,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776320133767,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":4741,"timestamp":6713186769859,"id":224,"parentId":223,"tags":{},"startTime":1776320133764,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":27,"timestamp":6713186774604,"id":244,"parentId":223,"tags":{},"startTime":1776320133769,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4974,"timestamp":6713186769726,"id":223,"parentId":123,"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":1776320133764,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1261,"timestamp":6713186773450,"id":241,"parentId":240,"tags":{},"startTime":1776320133768,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1303,"timestamp":6713186773408,"id":240,"parentId":220,"tags":{},"startTime":1776320133768,"traceId":"301cc70d0b43064f"},{"name":"build-module-mjs","duration":9681,"timestamp":6713186765366,"id":220,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776320133760,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":2370,"timestamp":6713186773678,"id":243,"parentId":242,"tags":{},"startTime":1776320133768,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":26,"timestamp":6713186776052,"id":245,"parentId":242,"tags":{},"startTime":1776320133771,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3340,"timestamp":6713186773569,"id":242,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776320133768,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":690,"timestamp":6713186777497,"id":247,"parentId":246,"tags":{},"startTime":1776320133772,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":24,"timestamp":6713186778190,"id":252,"parentId":246,"tags":{},"startTime":1776320133773,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":866,"timestamp":6713186777433,"id":246,"parentId":171,"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":1776320133772,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":360,"timestamp":6713186778180,"id":251,"parentId":249,"tags":{},"startTime":1776320133773,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":40,"timestamp":6713186778544,"id":253,"parentId":249,"tags":{},"startTime":1776320133773,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7811,"timestamp":6713186778127,"id":249,"parentId":193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776320133773,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":9333,"timestamp":6713186778173,"id":250,"parentId":248,"tags":{},"startTime":1776320133773,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":29,"timestamp":6713186787516,"id":254,"parentId":248,"tags":{},"startTime":1776320133782,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9777,"timestamp":6713186778072,"id":248,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776320133773,"traceId":"301cc70d0b43064f"},{"name":"add-entry","duration":140909,"timestamp":6713186646992,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1776320133642,"traceId":"301cc70d0b43064f"},{"name":"build-module","duration":1383,"timestamp":6713186799353,"id":259,"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%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776320133794,"traceId":"301cc70d0b43064f"},{"name":"build-module","duration":1968,"timestamp":6713186800756,"id":260,"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%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&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":1776320133795,"traceId":"301cc70d0b43064f"},{"name":"build-module","duration":2061,"timestamp":6713186802738,"id":261,"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":1776320133797,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5821,"timestamp":6713186809107,"id":264,"parentId":263,"tags":{},"startTime":1776320133804,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5939,"timestamp":6713186808997,"id":263,"parentId":262,"tags":{},"startTime":1776320133804,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":11386,"timestamp":6713186807795,"id":262,"parentId":259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"ssr"},"startTime":1776320133802,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9141,"timestamp":6713186814356,"id":270,"parentId":269,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9204,"timestamp":6713186814308,"id":269,"parentId":265,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":10375,"timestamp":6713186813759,"id":265,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776320133808,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9723,"timestamp":6713186814439,"id":276,"parentId":275,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9745,"timestamp":6713186814419,"id":275,"parentId":268,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10966,"timestamp":6713186814061,"id":268,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10633,"timestamp":6713186814418,"id":274,"parentId":273,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10662,"timestamp":6713186814390,"id":273,"parentId":267,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":11911,"timestamp":6713186814002,"id":267,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11583,"timestamp":6713186814388,"id":272,"parentId":271,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11614,"timestamp":6713186814358,"id":271,"parentId":266,"tags":{},"startTime":1776320133809,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":13938,"timestamp":6713186813845,"id":266,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776320133808,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7652,"timestamp":6713186820154,"id":288,"parentId":287,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7662,"timestamp":6713186820145,"id":287,"parentId":279,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8369,"timestamp":6713186819828,"id":279,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776320133814,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8094,"timestamp":6713186820129,"id":284,"parentId":283,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8142,"timestamp":6713186820082,"id":283,"parentId":277,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":10137,"timestamp":6713186819722,"id":277,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776320133814,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9725,"timestamp":6713186820172,"id":292,"parentId":291,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9735,"timestamp":6713186820164,"id":291,"parentId":281,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10326,"timestamp":6713186819950,"id":281,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":13888,"timestamp":6713186820180,"id":294,"parentId":293,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":13898,"timestamp":6713186820173,"id":293,"parentId":282,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14671,"timestamp":6713186819974,"id":282,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":14513,"timestamp":6713186820163,"id":290,"parentId":289,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":14523,"timestamp":6713186820155,"id":289,"parentId":280,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":16295,"timestamp":6713186819914,"id":280,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16099,"timestamp":6713186820144,"id":286,"parentId":285,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16111,"timestamp":6713186820132,"id":285,"parentId":278,"tags":{},"startTime":1776320133815,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18434,"timestamp":6713186819800,"id":278,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776320133814,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":137,"timestamp":6713186840231,"id":296,"parentId":295,"tags":{},"startTime":1776320133835,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5836,"timestamp":6713186840426,"id":298,"parentId":297,"tags":{},"startTime":1776320133835,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5895,"timestamp":6713186840374,"id":297,"parentId":295,"tags":{},"startTime":1776320133835,"traceId":"301cc70d0b43064f"},{"name":"build-module-mjs","duration":7674,"timestamp":6713186839868,"id":295,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776320133835,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":67,"timestamp":6713186848602,"id":301,"parentId":299,"tags":{},"startTime":1776320133843,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":72,"timestamp":6713186848674,"id":304,"parentId":299,"tags":{},"startTime":1776320133843,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":371,"timestamp":6713186848497,"id":299,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776320133843,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4813,"timestamp":6713186848643,"id":303,"parentId":302,"tags":{},"startTime":1776320133843,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4842,"timestamp":6713186848622,"id":302,"parentId":300,"tags":{},"startTime":1776320133843,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5473,"timestamp":6713186848570,"id":300,"parentId":279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776320133843,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4249,"timestamp":6713186855982,"id":310,"parentId":309,"tags":{},"startTime":1776320133851,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4263,"timestamp":6713186855973,"id":309,"parentId":306,"tags":{},"startTime":1776320133851,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4697,"timestamp":6713186855876,"id":306,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776320133851,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4621,"timestamp":6713186855971,"id":308,"parentId":307,"tags":{},"startTime":1776320133851,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4642,"timestamp":6713186855951,"id":307,"parentId":305,"tags":{},"startTime":1776320133851,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5298,"timestamp":6713186855833,"id":305,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776320133850,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":160,"timestamp":6713186863075,"id":343,"parentId":341,"tags":{},"startTime":1776320133858,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":196,"timestamp":6713186863078,"id":344,"parentId":342,"tags":{},"startTime":1776320133858,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":193,"timestamp":6713186863241,"id":345,"parentId":341,"tags":{},"startTime":1776320133858,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":159,"timestamp":6713186863277,"id":346,"parentId":342,"tags":{},"startTime":1776320133858,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1061,"timestamp":6713186862939,"id":341,"parentId":300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776320133858,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1162,"timestamp":6713186863013,"id":342,"parentId":300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776320133858,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5261,"timestamp":6713186859861,"id":328,"parentId":327,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5270,"timestamp":6713186859853,"id":327,"parentId":314,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5707,"timestamp":6713186859642,"id":314,"parentId":282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5506,"timestamp":6713186859853,"id":326,"parentId":325,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5515,"timestamp":6713186859844,"id":325,"parentId":313,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6021,"timestamp":6713186859619,"id":313,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5810,"timestamp":6713186859843,"id":324,"parentId":323,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5822,"timestamp":6713186859833,"id":323,"parentId":312,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6289,"timestamp":6713186859590,"id":312,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-transform","duration":6147,"timestamp":6713186859830,"id":322,"parentId":321,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6177,"timestamp":6713186859801,"id":321,"parentId":311,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6715,"timestamp":6713186859500,"id":311,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6354,"timestamp":6713186859870,"id":330,"parentId":329,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6363,"timestamp":6713186859862,"id":329,"parentId":315,"tags":{},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6706,"timestamp":6713186859663,"id":315,"parentId":280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6500,"timestamp":6713186859878,"id":332,"parentId":331,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6508,"timestamp":6713186859871,"id":331,"parentId":316,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6926,"timestamp":6713186859682,"id":316,"parentId":280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6734,"timestamp":6713186859885,"id":334,"parentId":333,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6742,"timestamp":6713186859878,"id":333,"parentId":317,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7255,"timestamp":6713186859704,"id":317,"parentId":280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7954,"timestamp":6713186859908,"id":340,"parentId":339,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7963,"timestamp":6713186859901,"id":339,"parentId":320,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8368,"timestamp":6713186859757,"id":320,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8248,"timestamp":6713186859893,"id":336,"parentId":335,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8256,"timestamp":6713186859886,"id":335,"parentId":318,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9004,"timestamp":6713186859723,"id":318,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8841,"timestamp":6713186859900,"id":338,"parentId":337,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8848,"timestamp":6713186859894,"id":337,"parentId":319,"tags":{},"startTime":1776320133855,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9391,"timestamp":6713186859741,"id":319,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776320133854,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4896,"timestamp":6713186871256,"id":362,"parentId":361,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4908,"timestamp":6713186871248,"id":361,"parentId":350,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5778,"timestamp":6713186870670,"id":350,"parentId":278,"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":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5222,"timestamp":6713186871237,"id":358,"parentId":357,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5239,"timestamp":6713186871221,"id":357,"parentId":348,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6043,"timestamp":6713186870626,"id":348,"parentId":280,"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":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5430,"timestamp":6713186871247,"id":360,"parentId":359,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5440,"timestamp":6713186871238,"id":359,"parentId":349,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6419,"timestamp":6713186870650,"id":349,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5873,"timestamp":6713186871217,"id":356,"parentId":355,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5947,"timestamp":6713186871145,"id":355,"parentId":347,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7059,"timestamp":6713186870577,"id":347,"parentId":280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6401,"timestamp":6713186871272,"id":366,"parentId":365,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6409,"timestamp":6713186871265,"id":365,"parentId":352,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7061,"timestamp":6713186870759,"id":352,"parentId":280,"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":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6887,"timestamp":6713186871264,"id":364,"parentId":363,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6895,"timestamp":6713186871257,"id":363,"parentId":351,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8089,"timestamp":6713186870739,"id":351,"parentId":278,"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":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8263,"timestamp":6713186871288,"id":370,"parentId":369,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8273,"timestamp":6713186871281,"id":369,"parentId":354,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9052,"timestamp":6713186870826,"id":354,"parentId":278,"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":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8975,"timestamp":6713186871280,"id":368,"parentId":367,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8985,"timestamp":6713186871273,"id":367,"parentId":353,"tags":{},"startTime":1776320133866,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9719,"timestamp":6713186870778,"id":353,"parentId":280,"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":1776320133865,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":205,"timestamp":6713186881182,"id":384,"parentId":377,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":631,"timestamp":6713186881393,"id":396,"parentId":377,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1302,"timestamp":6713186880970,"id":377,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6899,"timestamp":6713186876052,"id":374,"parentId":373,"tags":{},"startTime":1776320133871,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6922,"timestamp":6713186876031,"id":373,"parentId":371,"tags":{},"startTime":1776320133871,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7232,"timestamp":6713186875886,"id":371,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776320133871,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7065,"timestamp":6713186876063,"id":376,"parentId":375,"tags":{},"startTime":1776320133871,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7075,"timestamp":6713186876054,"id":375,"parentId":372,"tags":{},"startTime":1776320133871,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7307,"timestamp":6713186875937,"id":372,"parentId":282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776320133871,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2294,"timestamp":6713186881308,"id":393,"parentId":392,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2303,"timestamp":6713186881300,"id":392,"parentId":382,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2909,"timestamp":6713186881140,"id":382,"parentId":278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2768,"timestamp":6713186881289,"id":389,"parentId":388,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2779,"timestamp":6713186881279,"id":388,"parentId":379,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3230,"timestamp":6713186881057,"id":379,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3138,"timestamp":6713186881277,"id":387,"parentId":386,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3160,"timestamp":6713186881257,"id":386,"parentId":378,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3582,"timestamp":6713186881032,"id":378,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3324,"timestamp":6713186881299,"id":391,"parentId":390,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3333,"timestamp":6713186881290,"id":390,"parentId":381,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3616,"timestamp":6713186881121,"id":381,"parentId":280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6052,"timestamp":6713186881317,"id":395,"parentId":394,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6062,"timestamp":6713186881309,"id":394,"parentId":383,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7827,"timestamp":6713186881158,"id":383,"parentId":278,"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":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4001,"timestamp":6713186885018,"id":405,"parentId":404,"tags":{},"startTime":1776320133880,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4011,"timestamp":6713186885009,"id":404,"parentId":399,"tags":{},"startTime":1776320133880,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4394,"timestamp":6713186884882,"id":399,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776320133880,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4321,"timestamp":6713186885008,"id":403,"parentId":402,"tags":{},"startTime":1776320133880,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4334,"timestamp":6713186884996,"id":402,"parentId":398,"tags":{},"startTime":1776320133880,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4641,"timestamp":6713186884855,"id":398,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776320133879,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4635,"timestamp":6713186884993,"id":401,"parentId":400,"tags":{},"startTime":1776320133880,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4673,"timestamp":6713186884956,"id":400,"parentId":397,"tags":{},"startTime":1776320133880,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5228,"timestamp":6713186884793,"id":397,"parentId":306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776320133879,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":14667,"timestamp":6713186881186,"id":385,"parentId":380,"tags":{},"startTime":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":29,"timestamp":6713186895861,"id":422,"parentId":380,"tags":{},"startTime":1776320133890,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14917,"timestamp":6713186881078,"id":380,"parentId":268,"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":1776320133876,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2762,"timestamp":6713186893251,"id":417,"parentId":416,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2774,"timestamp":6713186893241,"id":416,"parentId":408,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3353,"timestamp":6713186892795,"id":408,"parentId":313,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776320133887,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2896,"timestamp":6713186893261,"id":419,"parentId":418,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2905,"timestamp":6713186893252,"id":418,"parentId":409,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3462,"timestamp":6713186892824,"id":409,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776320133887,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3186,"timestamp":6713186893238,"id":415,"parentId":414,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3214,"timestamp":6713186893211,"id":414,"parentId":406,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4214,"timestamp":6713186892645,"id":406,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776320133887,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3605,"timestamp":6713186893269,"id":421,"parentId":420,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3614,"timestamp":6713186893262,"id":420,"parentId":410,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4470,"timestamp":6713186892847,"id":410,"parentId":318,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776320133887,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2174,"timestamp":6713186898542,"id":435,"parentId":434,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2185,"timestamp":6713186898534,"id":434,"parentId":425,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3076,"timestamp":6713186897981,"id":425,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2546,"timestamp":6713186898521,"id":431,"parentId":430,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2570,"timestamp":6713186898498,"id":430,"parentId":423,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3420,"timestamp":6713186897884,"id":423,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2781,"timestamp":6713186898533,"id":433,"parentId":432,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2792,"timestamp":6713186898523,"id":432,"parentId":424,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"}] -[{"name":"build-module-js","duration":3726,"timestamp":6713186897951,"id":424,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4391,"timestamp":6713186898552,"id":437,"parentId":436,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4402,"timestamp":6713186898543,"id":436,"parentId":426,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5633,"timestamp":6713186898010,"id":426,"parentId":351,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5471,"timestamp":6713186898560,"id":439,"parentId":438,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5485,"timestamp":6713186898553,"id":438,"parentId":427,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6764,"timestamp":6713186898034,"id":427,"parentId":351,"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":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6987,"timestamp":6713186898577,"id":443,"parentId":442,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6998,"timestamp":6713186898569,"id":442,"parentId":429,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8020,"timestamp":6713186898072,"id":429,"parentId":351,"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":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7631,"timestamp":6713186898568,"id":441,"parentId":440,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7639,"timestamp":6713186898561,"id":440,"parentId":428,"tags":{},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8812,"timestamp":6713186898054,"id":428,"parentId":351,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776320133893,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":364,"timestamp":6713186908145,"id":450,"parentId":448,"tags":{},"startTime":1776320133903,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":386,"timestamp":6713186908515,"id":452,"parentId":448,"tags":{},"startTime":1776320133903,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1124,"timestamp":6713186908003,"id":448,"parentId":380,"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":1776320133903,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":17042,"timestamp":6713186892982,"id":412,"parentId":407,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":39,"timestamp":6713186910031,"id":453,"parentId":407,"tags":{},"startTime":1776320133905,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17538,"timestamp":6713186892735,"id":407,"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":1776320133887,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":17369,"timestamp":6713186892997,"id":413,"parentId":411,"tags":{},"startTime":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":28,"timestamp":6713186910371,"id":454,"parentId":411,"tags":{},"startTime":1776320133905,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17625,"timestamp":6713186892875,"id":411,"parentId":262,"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":1776320133888,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2574,"timestamp":6713186911350,"id":468,"parentId":467,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2589,"timestamp":6713186911338,"id":467,"parentId":458,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3230,"timestamp":6713186910937,"id":458,"parentId":397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2919,"timestamp":6713186911291,"id":464,"parentId":463,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3028,"timestamp":6713186911183,"id":463,"parentId":456,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":4113,"timestamp":6713186910788,"id":456,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776320133905,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3654,"timestamp":6713186911336,"id":466,"parentId":465,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3694,"timestamp":6713186911297,"id":465,"parentId":457,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":5725,"timestamp":6713186910890,"id":457,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":15333,"timestamp":6713186901907,"id":446,"parentId":444,"tags":{},"startTime":1776320133897,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":34,"timestamp":6713186917251,"id":479,"parentId":444,"tags":{},"startTime":1776320133912,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":15640,"timestamp":6713186901785,"id":444,"parentId":268,"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":1776320133896,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":15515,"timestamp":6713186901917,"id":447,"parentId":445,"tags":{},"startTime":1776320133897,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":27,"timestamp":6713186917437,"id":480,"parentId":445,"tags":{},"startTime":1776320133912,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":15663,"timestamp":6713186901858,"id":445,"parentId":280,"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":1776320133896,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7639,"timestamp":6713186911181,"id":462,"parentId":461,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7682,"timestamp":6713186911139,"id":461,"parentId":455,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":9078,"timestamp":6713186910654,"id":455,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776320133905,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8393,"timestamp":6713186911360,"id":470,"parentId":469,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8403,"timestamp":6713186911351,"id":469,"parentId":459,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9169,"timestamp":6713186910958,"id":459,"parentId":383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8774,"timestamp":6713186911369,"id":472,"parentId":471,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8783,"timestamp":6713186911361,"id":471,"parentId":460,"tags":{},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9569,"timestamp":6713186910976,"id":460,"parentId":383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776320133906,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6727,"timestamp":6713186913843,"id":476,"parentId":475,"tags":{},"startTime":1776320133908,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6769,"timestamp":6713186913802,"id":475,"parentId":473,"tags":{},"startTime":1776320133908,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":7806,"timestamp":6713186913614,"id":473,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776320133908,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7560,"timestamp":6713186913877,"id":478,"parentId":477,"tags":{},"startTime":1776320133909,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7593,"timestamp":6713186913845,"id":477,"parentId":474,"tags":{},"startTime":1776320133908,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":8295,"timestamp":6713186913690,"id":474,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776320133908,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":15206,"timestamp":6713186908148,"id":451,"parentId":449,"tags":{},"startTime":1776320133903,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":38,"timestamp":6713186923362,"id":500,"parentId":449,"tags":{},"startTime":1776320133918,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":15743,"timestamp":6713186908081,"id":449,"parentId":353,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776320133903,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8955,"timestamp":6713186918577,"id":493,"parentId":492,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8970,"timestamp":6713186918565,"id":492,"parentId":482,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9825,"timestamp":6713186917880,"id":482,"parentId":406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9122,"timestamp":6713186918596,"id":497,"parentId":496,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9130,"timestamp":6713186918588,"id":496,"parentId":484,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10058,"timestamp":6713186917930,"id":484,"parentId":410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9531,"timestamp":6713186918562,"id":491,"parentId":490,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9578,"timestamp":6713186918516,"id":490,"parentId":481,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":10981,"timestamp":6713186917801,"id":481,"parentId":277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776320133912,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10207,"timestamp":6713186918587,"id":495,"parentId":494,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10216,"timestamp":6713186918578,"id":494,"parentId":483,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11019,"timestamp":6713186917908,"id":483,"parentId":406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10331,"timestamp":6713186918604,"id":499,"parentId":498,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10340,"timestamp":6713186918597,"id":498,"parentId":485,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11143,"timestamp":6713186917950,"id":485,"parentId":398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3686,"timestamp":6713186926104,"id":504,"parentId":503,"tags":{},"startTime":1776320133921,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3714,"timestamp":6713186926078,"id":503,"parentId":501,"tags":{},"startTime":1776320133921,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4756,"timestamp":6713186925256,"id":501,"parentId":428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776320133920,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3908,"timestamp":6713186926117,"id":506,"parentId":505,"tags":{},"startTime":1776320133921,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3919,"timestamp":6713186926106,"id":505,"parentId":502,"tags":{},"startTime":1776320133921,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4933,"timestamp":6713186925315,"id":502,"parentId":429,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776320133920,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2923,"timestamp":6713186931222,"id":516,"parentId":515,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2936,"timestamp":6713186931212,"id":515,"parentId":508,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3795,"timestamp":6713186930697,"id":508,"parentId":383,"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":1776320133925,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3261,"timestamp":6713186931241,"id":520,"parentId":519,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3270,"timestamp":6713186931232,"id":519,"parentId":510,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3890,"timestamp":6713186930742,"id":510,"parentId":383,"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":1776320133925,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3411,"timestamp":6713186931231,"id":518,"parentId":517,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3420,"timestamp":6713186931223,"id":517,"parentId":509,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4199,"timestamp":6713186930722,"id":509,"parentId":383,"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":1776320133925,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4056,"timestamp":6713186931203,"id":514,"parentId":513,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4080,"timestamp":6713186931180,"id":513,"parentId":507,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5811,"timestamp":6713186930642,"id":507,"parentId":383,"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":1776320133925,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5219,"timestamp":6713186931249,"id":522,"parentId":521,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5227,"timestamp":6713186931242,"id":521,"parentId":511,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6150,"timestamp":6713186930760,"id":511,"parentId":383,"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":1776320133925,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7737,"timestamp":6713186931266,"id":524,"parentId":523,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7760,"timestamp":6713186931250,"id":523,"parentId":512,"tags":{},"startTime":1776320133926,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8619,"timestamp":6713186930778,"id":512,"parentId":383,"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":1776320133925,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":22007,"timestamp":6713186918085,"id":488,"parentId":486,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":30,"timestamp":6713186940098,"id":527,"parentId":486,"tags":{},"startTime":1776320133935,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":22280,"timestamp":6713186917970,"id":486,"parentId":383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":22372,"timestamp":6713186918099,"id":489,"parentId":487,"tags":{},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":30,"timestamp":6713186940475,"id":528,"parentId":487,"tags":{},"startTime":1776320133935,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":22675,"timestamp":6713186918011,"id":487,"parentId":383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776320133913,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3229,"timestamp":6713186942110,"id":538,"parentId":537,"tags":{},"startTime":1776320133937,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-loader","duration":3362,"timestamp":6713186942064,"id":537,"parentId":532,"tags":{},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":3864,"timestamp":6713186941927,"id":532,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4217,"timestamp":6713186942141,"id":540,"parentId":539,"tags":{},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4248,"timestamp":6713186942112,"id":539,"parentId":533,"tags":{},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":5185,"timestamp":6713186941971,"id":533,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4517,"timestamp":6713186943927,"id":545,"parentId":544,"tags":{},"startTime":1776320133939,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4549,"timestamp":6713186943897,"id":544,"parentId":542,"tags":{},"startTime":1776320133939,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4936,"timestamp":6713186943798,"id":542,"parentId":449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776320133938,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":11470,"timestamp":6713186937301,"id":526,"parentId":525,"tags":{},"startTime":1776320133932,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":33,"timestamp":6713186948777,"id":570,"parentId":525,"tags":{},"startTime":1776320133943,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11715,"timestamp":6713186937165,"id":525,"parentId":347,"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":1776320133932,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2625,"timestamp":6713186947492,"id":561,"parentId":560,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2639,"timestamp":6713186947484,"id":560,"parentId":549,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3333,"timestamp":6713186947308,"id":549,"parentId":484,"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":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3185,"timestamp":6713186947473,"id":557,"parentId":556,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3197,"timestamp":6713186947462,"id":556,"parentId":547,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3883,"timestamp":6713186947262,"id":547,"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":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3724,"timestamp":6713186947460,"id":555,"parentId":554,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3748,"timestamp":6713186947439,"id":554,"parentId":546,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4636,"timestamp":6713186947212,"id":546,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4363,"timestamp":6713186947499,"id":563,"parentId":562,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4370,"timestamp":6713186947492,"id":562,"parentId":550,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4853,"timestamp":6713186947326,"id":550,"parentId":484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6394,"timestamp":6713186947507,"id":565,"parentId":564,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6406,"timestamp":6713186947500,"id":564,"parentId":551,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7111,"timestamp":6713186947344,"id":551,"parentId":484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":12581,"timestamp":6713186942037,"id":536,"parentId":531,"tags":{},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":33,"timestamp":6713186954624,"id":605,"parentId":531,"tags":{},"startTime":1776320133949,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12852,"timestamp":6713186941881,"id":531,"parentId":305,"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":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":12705,"timestamp":6713186942032,"id":535,"parentId":530,"tags":{},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":40,"timestamp":6713186954741,"id":606,"parentId":530,"tags":{},"startTime":1776320133949,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13002,"timestamp":6713186941830,"id":530,"parentId":281,"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":1776320133936,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":12820,"timestamp":6713186942018,"id":534,"parentId":529,"tags":{},"startTime":1776320133937,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":27,"timestamp":6713186954841,"id":607,"parentId":529,"tags":{},"startTime":1776320133949,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13175,"timestamp":6713186941738,"id":529,"parentId":278,"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":1776320133936,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7462,"timestamp":6713186947483,"id":559,"parentId":558,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7472,"timestamp":6713186947474,"id":558,"parentId":548,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8593,"timestamp":6713186947288,"id":548,"parentId":484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8381,"timestamp":6713186947514,"id":567,"parentId":566,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8388,"timestamp":6713186947508,"id":566,"parentId":552,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8866,"timestamp":6713186947362,"id":552,"parentId":484,"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":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6607,"timestamp":6713186949631,"id":586,"parentId":585,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6635,"timestamp":6713186949604,"id":585,"parentId":573,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7253,"timestamp":6713186949173,"id":573,"parentId":460,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6793,"timestamp":6713186949646,"id":588,"parentId":587,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6805,"timestamp":6713186949635,"id":587,"parentId":574,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7537,"timestamp":6713186949227,"id":574,"parentId":460,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7096,"timestamp":6713186949676,"id":594,"parentId":593,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7105,"timestamp":6713186949668,"id":593,"parentId":577,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7623,"timestamp":6713186949311,"id":577,"parentId":460,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7275,"timestamp":6713186949666,"id":592,"parentId":591,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7285,"timestamp":6713186949658,"id":591,"parentId":576,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7838,"timestamp":6713186949290,"id":576,"parentId":460,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9622,"timestamp":6713186947522,"id":569,"parentId":568,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9630,"timestamp":6713186947515,"id":568,"parentId":553,"tags":{},"startTime":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10364,"timestamp":6713186947379,"id":553,"parentId":484,"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":1776320133942,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8089,"timestamp":6713186949686,"id":596,"parentId":595,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8097,"timestamp":6713186949678,"id":595,"parentId":578,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8680,"timestamp":6713186949328,"id":578,"parentId":460,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8313,"timestamp":6713186949704,"id":600,"parentId":599,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8321,"timestamp":6713186949696,"id":599,"parentId":580,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8915,"timestamp":6713186949365,"id":580,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8594,"timestamp":6713186949695,"id":598,"parentId":597,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8602,"timestamp":6713186949687,"id":597,"parentId":579,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9159,"timestamp":6713186949347,"id":579,"parentId":460,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":18107,"timestamp":6713186949656,"id":590,"parentId":589,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":18119,"timestamp":6713186949647,"id":589,"parentId":575,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19459,"timestamp":6713186949267,"id":575,"parentId":460,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":19026,"timestamp":6713186949713,"id":602,"parentId":601,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":19035,"timestamp":6713186949705,"id":601,"parentId":581,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19633,"timestamp":6713186949381,"id":581,"parentId":509,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":25278,"timestamp":6713186943857,"id":543,"parentId":541,"tags":{},"startTime":1776320133938,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":28,"timestamp":6713186969140,"id":608,"parentId":541,"tags":{},"startTime":1776320133964,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":25727,"timestamp":6713186943729,"id":541,"parentId":281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776320133938,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":19751,"timestamp":6713186949722,"id":604,"parentId":603,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":19759,"timestamp":6713186949714,"id":603,"parentId":582,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":20388,"timestamp":6713186949399,"id":582,"parentId":511,"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":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":26467,"timestamp":6713186949434,"id":583,"parentId":571,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":35,"timestamp":6713186975909,"id":609,"parentId":571,"tags":{},"startTime":1776320133971,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":27131,"timestamp":6713186948991,"id":571,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":26682,"timestamp":6713186949444,"id":584,"parentId":572,"tags":{},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":24,"timestamp":6713186976130,"id":610,"parentId":572,"tags":{},"startTime":1776320133971,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":27126,"timestamp":6713186949088,"id":572,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776320133944,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2446,"timestamp":6713186977187,"id":622,"parentId":621,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2459,"timestamp":6713186977177,"id":621,"parentId":613,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3095,"timestamp":6713186976867,"id":613,"parentId":549,"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":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2823,"timestamp":6713186977153,"id":618,"parentId":617,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2882,"timestamp":6713186977095,"id":617,"parentId":611,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3392,"timestamp":6713186976785,"id":611,"parentId":547,"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":1776320133971,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2992,"timestamp":6713186977198,"id":624,"parentId":623,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3001,"timestamp":6713186977189,"id":623,"parentId":614,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3575,"timestamp":6713186976887,"id":614,"parentId":549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3620,"timestamp":6713186977175,"id":620,"parentId":619,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3637,"timestamp":6713186977160,"id":619,"parentId":612,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4273,"timestamp":6713186976843,"id":612,"parentId":549,"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":1776320133971,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4948,"timestamp":6713186977207,"id":626,"parentId":625,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4959,"timestamp":6713186977199,"id":625,"parentId":615,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5454,"timestamp":6713186976915,"id":615,"parentId":549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2874,"timestamp":6713186979505,"id":636,"parentId":635,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2903,"timestamp":6713186979477,"id":635,"parentId":630,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3248,"timestamp":6713186979287,"id":630,"parentId":548,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776320133974,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-transform","duration":3168,"timestamp":6713186979474,"id":634,"parentId":633,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3200,"timestamp":6713186979444,"id":633,"parentId":629,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3631,"timestamp":6713186979235,"id":629,"parentId":548,"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":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3341,"timestamp":6713186979534,"id":638,"parentId":637,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3366,"timestamp":6713186979510,"id":637,"parentId":631,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3815,"timestamp":6713186979311,"id":631,"parentId":548,"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":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3759,"timestamp":6713186979546,"id":640,"parentId":639,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3770,"timestamp":6713186979536,"id":639,"parentId":632,"tags":{},"startTime":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4124,"timestamp":6713186979332,"id":632,"parentId":574,"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":1776320133974,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8571,"timestamp":6713186977217,"id":628,"parentId":627,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8585,"timestamp":6713186977209,"id":627,"parentId":616,"tags":{},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10371,"timestamp":6713186976939,"id":616,"parentId":550,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776320133972,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5286,"timestamp":6713186982051,"id":648,"parentId":647,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5309,"timestamp":6713186982029,"id":647,"parentId":641,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5858,"timestamp":6713186981659,"id":641,"parentId":542,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776320133976,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5480,"timestamp":6713186982062,"id":650,"parentId":649,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5491,"timestamp":6713186982052,"id":649,"parentId":643,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5947,"timestamp":6713186981737,"id":643,"parentId":575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776320133976,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5614,"timestamp":6713186982079,"id":654,"parentId":653,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5622,"timestamp":6713186982072,"id":653,"parentId":645,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6139,"timestamp":6713186981774,"id":645,"parentId":575,"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":1776320133976,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5851,"timestamp":6713186982071,"id":652,"parentId":651,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5860,"timestamp":6713186982063,"id":651,"parentId":644,"tags":{},"startTime":1776320133977,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6405,"timestamp":6713186981756,"id":644,"parentId":582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776320133976,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1583,"timestamp":6713186989374,"id":666,"parentId":665,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1595,"timestamp":6713186989366,"id":665,"parentId":657,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2188,"timestamp":6713186989111,"id":657,"parentId":578,"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":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2384,"timestamp":6713186989365,"id":664,"parentId":663,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2397,"timestamp":6713186989355,"id":663,"parentId":656,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2913,"timestamp":6713186989088,"id":656,"parentId":578,"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":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2657,"timestamp":6713186989353,"id":662,"parentId":661,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2679,"timestamp":6713186989332,"id":661,"parentId":655,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3123,"timestamp":6713186989043,"id":655,"parentId":578,"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":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":11287,"timestamp":6713186981799,"id":646,"parentId":642,"tags":{},"startTime":1776320133976,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":28,"timestamp":6713186993092,"id":676,"parentId":642,"tags":{},"startTime":1776320133988,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11601,"timestamp":6713186981695,"id":642,"parentId":580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776320133976,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3923,"timestamp":6713186989382,"id":668,"parentId":667,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3931,"timestamp":6713186989374,"id":667,"parentId":658,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4309,"timestamp":6713186989130,"id":658,"parentId":578,"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":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5141,"timestamp":6713186989389,"id":670,"parentId":669,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5149,"timestamp":6713186989382,"id":669,"parentId":659,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5572,"timestamp":6713186989148,"id":659,"parentId":575,"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":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5462,"timestamp":6713186989397,"id":672,"parentId":671,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5470,"timestamp":6713186989390,"id":671,"parentId":660,"tags":{},"startTime":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6247,"timestamp":6713186989166,"id":660,"parentId":575,"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":1776320133984,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5446,"timestamp":6713186990356,"id":675,"parentId":674,"tags":{},"startTime":1776320133985,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5460,"timestamp":6713186990342,"id":674,"parentId":673,"tags":{},"startTime":1776320133985,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6860,"timestamp":6713186990315,"id":673,"parentId":571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776320133985,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5484,"timestamp":6713186997854,"id":679,"parentId":678,"tags":{},"startTime":1776320133992,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5515,"timestamp":6713186997826,"id":678,"parentId":677,"tags":{},"startTime":1776320133992,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6099,"timestamp":6713186997633,"id":677,"parentId":383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776320133992,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3308,"timestamp":6713187004907,"id":682,"parentId":681,"tags":{},"startTime":1776320134000,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3335,"timestamp":6713187004884,"id":681,"parentId":680,"tags":{},"startTime":1776320134000,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4146,"timestamp":6713187004793,"id":680,"parentId":645,"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":1776320133999,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2269,"timestamp":6713187007198,"id":690,"parentId":689,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2281,"timestamp":6713187007187,"id":689,"parentId":684,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2589,"timestamp":6713187007039,"id":684,"parentId":574,"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":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2429,"timestamp":6713187007207,"id":692,"parentId":691,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2439,"timestamp":6713187007199,"id":691,"parentId":685,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2678,"timestamp":6713187007067,"id":685,"parentId":574,"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":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2655,"timestamp":6713187007216,"id":694,"parentId":693,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2663,"timestamp":6713187007208,"id":693,"parentId":686,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2907,"timestamp":6713187007088,"id":686,"parentId":642,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3067,"timestamp":6713187007185,"id":688,"parentId":687,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3106,"timestamp":6713187007147,"id":687,"parentId":683,"tags":{},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":3513,"timestamp":6713187006971,"id":683,"parentId":456,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776320134002,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1707,"timestamp":6713187009252,"id":707,"parentId":706,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1724,"timestamp":6713187009236,"id":706,"parentId":695,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2120,"timestamp":6713187008982,"id":695,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1838,"timestamp":6713187009271,"id":711,"parentId":710,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1846,"timestamp":6713187009263,"id":710,"parentId":697,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2216,"timestamp":6713187009039,"id":697,"parentId":575,"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":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2008,"timestamp":6713187009262,"id":709,"parentId":708,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2017,"timestamp":6713187009253,"id":708,"parentId":696,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2652,"timestamp":6713187009017,"id":696,"parentId":578,"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":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3926,"timestamp":6713187009287,"id":715,"parentId":714,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3934,"timestamp":6713187009280,"id":714,"parentId":699,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4376,"timestamp":6713187009089,"id":699,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4200,"timestamp":6713187009279,"id":713,"parentId":712,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4209,"timestamp":6713187009272,"id":712,"parentId":698,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4844,"timestamp":6713187009058,"id":698,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4622,"timestamp":6713187009296,"id":717,"parentId":716,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4631,"timestamp":6713187009287,"id":716,"parentId":700,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5147,"timestamp":6713187009106,"id":700,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4959,"timestamp":6713187009305,"id":719,"parentId":718,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4967,"timestamp":6713187009297,"id":718,"parentId":701,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6278,"timestamp":6713187009126,"id":701,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6097,"timestamp":6713187009319,"id":723,"parentId":722,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6105,"timestamp":6713187009313,"id":722,"parentId":703,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6400,"timestamp":6713187009161,"id":703,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6383,"timestamp":6713187009312,"id":721,"parentId":720,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6390,"timestamp":6713187009305,"id":720,"parentId":702,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7031,"timestamp":6713187009144,"id":702,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6852,"timestamp":6713187009334,"id":727,"parentId":726,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6859,"timestamp":6713187009327,"id":726,"parentId":705,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7276,"timestamp":6713187009194,"id":705,"parentId":660,"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":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7156,"timestamp":6713187009327,"id":725,"parentId":724,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7173,"timestamp":6713187009320,"id":724,"parentId":704,"tags":{},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7667,"timestamp":6713187009177,"id":704,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776320134004,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10225,"timestamp":6713187010834,"id":734,"parentId":733,"tags":{},"startTime":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10237,"timestamp":6713187010825,"id":733,"parentId":729,"tags":{},"startTime":1776320134005,"traceId":"301cc70d0b43064f"}] -[{"name":"build-module-js","duration":10706,"timestamp":6713187010739,"id":729,"parentId":574,"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":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10700,"timestamp":6713187010824,"id":732,"parentId":731,"tags":{},"startTime":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10717,"timestamp":6713187010808,"id":731,"parentId":728,"tags":{},"startTime":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11037,"timestamp":6713187010707,"id":728,"parentId":574,"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":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9490,"timestamp":6713187012263,"id":739,"parentId":738,"tags":{},"startTime":1776320134007,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9506,"timestamp":6713187012247,"id":738,"parentId":737,"tags":{},"startTime":1776320134007,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9976,"timestamp":6713187011925,"id":737,"parentId":578,"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":1776320134007,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11073,"timestamp":6713187010842,"id":736,"parentId":735,"tags":{},"startTime":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11081,"timestamp":6713187010835,"id":735,"parentId":730,"tags":{},"startTime":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11440,"timestamp":6713187010760,"id":730,"parentId":576,"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":1776320134005,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2501,"timestamp":6713187026554,"id":747,"parentId":746,"tags":{},"startTime":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2519,"timestamp":6713187026543,"id":746,"parentId":742,"tags":{},"startTime":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3071,"timestamp":6713187026424,"id":742,"parentId":685,"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":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2980,"timestamp":6713187026540,"id":745,"parentId":744,"tags":{},"startTime":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3031,"timestamp":6713187026490,"id":744,"parentId":741,"tags":{},"startTime":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3804,"timestamp":6713187026385,"id":741,"parentId":684,"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":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7496,"timestamp":6713187028464,"id":756,"parentId":755,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7517,"timestamp":6713187028447,"id":755,"parentId":748,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8040,"timestamp":6713187028241,"id":748,"parentId":696,"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":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7820,"timestamp":6713187028474,"id":758,"parentId":757,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7829,"timestamp":6713187028466,"id":757,"parentId":749,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8270,"timestamp":6713187028280,"id":749,"parentId":696,"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":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8067,"timestamp":6713187028492,"id":762,"parentId":761,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8077,"timestamp":6713187028483,"id":761,"parentId":751,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8423,"timestamp":6713187028322,"id":751,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8279,"timestamp":6713187028482,"id":760,"parentId":759,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8287,"timestamp":6713187028475,"id":759,"parentId":750,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10167,"timestamp":6713187028301,"id":750,"parentId":697,"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":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10929,"timestamp":6713187028507,"id":766,"parentId":765,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10937,"timestamp":6713187028501,"id":765,"parentId":753,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11193,"timestamp":6713187028377,"id":753,"parentId":698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11084,"timestamp":6713187028500,"id":764,"parentId":763,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11092,"timestamp":6713187028493,"id":763,"parentId":752,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11486,"timestamp":6713187028358,"id":752,"parentId":698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11340,"timestamp":6713187028514,"id":768,"parentId":767,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11348,"timestamp":6713187028508,"id":767,"parentId":754,"tags":{},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11689,"timestamp":6713187028399,"id":754,"parentId":698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776320134023,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9046,"timestamp":6713187031053,"id":780,"parentId":779,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9071,"timestamp":6713187031029,"id":779,"parentId":769,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9865,"timestamp":6713187030520,"id":769,"parentId":730,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9321,"timestamp":6713187031078,"id":784,"parentId":783,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9330,"timestamp":6713187031069,"id":783,"parentId":771,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10012,"timestamp":6713187030638,"id":771,"parentId":728,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9570,"timestamp":6713187031087,"id":786,"parentId":785,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9579,"timestamp":6713187031079,"id":785,"parentId":772,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10121,"timestamp":6713187030662,"id":772,"parentId":728,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9676,"timestamp":6713187031114,"id":792,"parentId":791,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9684,"timestamp":6713187031107,"id":791,"parentId":775,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10153,"timestamp":6713187030774,"id":775,"parentId":728,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9866,"timestamp":6713187031067,"id":782,"parentId":781,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9877,"timestamp":6713187031056,"id":781,"parentId":770,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10439,"timestamp":6713187030607,"id":770,"parentId":729,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9956,"timestamp":6713187031096,"id":788,"parentId":787,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9964,"timestamp":6713187031088,"id":787,"parentId":773,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10461,"timestamp":6713187030702,"id":773,"parentId":728,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10063,"timestamp":6713187031105,"id":790,"parentId":789,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10071,"timestamp":6713187031098,"id":789,"parentId":774,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10526,"timestamp":6713187030747,"id":774,"parentId":728,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10233,"timestamp":6713187031123,"id":794,"parentId":793,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10241,"timestamp":6713187031115,"id":793,"parentId":776,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10671,"timestamp":6713187030796,"id":776,"parentId":737,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10343,"timestamp":6713187031131,"id":796,"parentId":795,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10352,"timestamp":6713187031124,"id":795,"parentId":777,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10782,"timestamp":6713187030816,"id":777,"parentId":737,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10467,"timestamp":6713187031140,"id":798,"parentId":797,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10475,"timestamp":6713187031133,"id":797,"parentId":778,"tags":{},"startTime":1776320134026,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11044,"timestamp":6713187030837,"id":778,"parentId":729,"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":1776320134025,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":22871,"timestamp":6713187026453,"id":743,"parentId":740,"tags":{},"startTime":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":33,"timestamp":6713187049346,"id":803,"parentId":740,"tags":{},"startTime":1776320134044,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":23804,"timestamp":6713187026272,"id":740,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776320134021,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":10493,"timestamp":6713187042793,"id":801,"parentId":799,"tags":{},"startTime":1776320134037,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":30,"timestamp":6713187053293,"id":829,"parentId":799,"tags":{},"startTime":1776320134048,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10982,"timestamp":6713187042501,"id":799,"parentId":546,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776320134037,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":10681,"timestamp":6713187042806,"id":802,"parentId":800,"tags":{},"startTime":1776320134037,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":26,"timestamp":6713187053490,"id":830,"parentId":800,"tags":{},"startTime":1776320134048,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11034,"timestamp":6713187042594,"id":800,"parentId":546,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776320134037,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1231,"timestamp":6713187052599,"id":814,"parentId":813,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1245,"timestamp":6713187052585,"id":813,"parentId":808,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1613,"timestamp":6713187052472,"id":808,"parentId":742,"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":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1513,"timestamp":6713187052608,"id":816,"parentId":815,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1522,"timestamp":6713187052600,"id":815,"parentId":809,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1846,"timestamp":6713187052507,"id":809,"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":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1522,"timestamp":6713187052841,"id":822,"parentId":821,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1537,"timestamp":6713187052826,"id":821,"parentId":817,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1771,"timestamp":6713187052735,"id":817,"parentId":754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2044,"timestamp":6713187052872,"id":828,"parentId":827,"tags":{},"startTime":1776320134048,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2054,"timestamp":6713187052863,"id":827,"parentId":820,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2402,"timestamp":6713187052802,"id":820,"parentId":749,"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":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":4379,"timestamp":6713187050956,"id":805,"parentId":804,"tags":{},"startTime":1776320134046,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":26,"timestamp":6713187055346,"id":834,"parentId":804,"tags":{},"startTime":1776320134050,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4607,"timestamp":6713187050865,"id":804,"parentId":574,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776320134045,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3654,"timestamp":6713187052862,"id":826,"parentId":825,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3668,"timestamp":6713187052851,"id":825,"parentId":819,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4139,"timestamp":6713187052783,"id":819,"parentId":749,"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":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4121,"timestamp":6713187052850,"id":824,"parentId":823,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4130,"timestamp":6713187052842,"id":823,"parentId":818,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4887,"timestamp":6713187052759,"id":818,"parentId":754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3926,"timestamp":6713187053735,"id":833,"parentId":832,"tags":{},"startTime":1776320134048,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3950,"timestamp":6713187053711,"id":832,"parentId":831,"tags":{},"startTime":1776320134048,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4222,"timestamp":6713187053663,"id":831,"parentId":771,"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":1776320134048,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":5415,"timestamp":6713187052531,"id":810,"parentId":806,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-loader","duration":37,"timestamp":6713187058110,"id":835,"parentId":806,"tags":{},"startTime":1776320134053,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5867,"timestamp":6713187052362,"id":806,"parentId":673,"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":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1308,"timestamp":6713187058758,"id":841,"parentId":840,"tags":{},"startTime":1776320134053,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1320,"timestamp":6713187058748,"id":840,"parentId":837,"tags":{},"startTime":1776320134053,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1727,"timestamp":6713187058496,"id":837,"parentId":698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776320134053,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1484,"timestamp":6713187058746,"id":839,"parentId":838,"tags":{},"startTime":1776320134053,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1508,"timestamp":6713187058722,"id":838,"parentId":836,"tags":{},"startTime":1776320134053,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1912,"timestamp":6713187058442,"id":836,"parentId":696,"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":1776320134053,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":9,"timestamp":6713187060927,"id":843,"parentId":842,"tags":{},"startTime":1776320134056,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":31,"timestamp":6713187060940,"id":844,"parentId":842,"tags":{},"startTime":1776320134056,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":465,"timestamp":6713187060871,"id":842,"parentId":818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776320134056,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1202,"timestamp":6713187061569,"id":847,"parentId":846,"tags":{},"startTime":1776320134056,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1222,"timestamp":6713187061552,"id":846,"parentId":845,"tags":{},"startTime":1776320134056,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1569,"timestamp":6713187061517,"id":845,"parentId":809,"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":1776320134056,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1251,"timestamp":6713187062224,"id":850,"parentId":849,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1283,"timestamp":6713187062201,"id":849,"parentId":848,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1617,"timestamp":6713187062061,"id":848,"parentId":818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1195,"timestamp":6713187062549,"id":856,"parentId":855,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1205,"timestamp":6713187062540,"id":855,"parentId":852,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1375,"timestamp":6713187062495,"id":852,"parentId":837,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1505,"timestamp":6713187062539,"id":854,"parentId":853,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1520,"timestamp":6713187062524,"id":853,"parentId":851,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2196,"timestamp":6713187062462,"id":851,"parentId":837,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2089,"timestamp":6713187062632,"id":859,"parentId":858,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2101,"timestamp":6713187062622,"id":858,"parentId":857,"tags":{},"startTime":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2559,"timestamp":6713187062600,"id":857,"parentId":836,"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":1776320134057,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":15766,"timestamp":6713187052583,"id":812,"parentId":811,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":15799,"timestamp":6713187052554,"id":811,"parentId":807,"tags":{},"startTime":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":22442,"timestamp":6713187052442,"id":807,"parentId":742,"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":1776320134047,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":373,"timestamp":6713187076062,"id":861,"parentId":860,"tags":{},"startTime":1776320134071,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":51,"timestamp":6713187076440,"id":862,"parentId":860,"tags":{},"startTime":1776320134071,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1648,"timestamp":6713187075952,"id":860,"parentId":741,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776320134071,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":395,"timestamp":6713187078173,"id":864,"parentId":863,"tags":{},"startTime":1776320134073,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":63,"timestamp":6713187078575,"id":867,"parentId":863,"tags":{},"startTime":1776320134073,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3622,"timestamp":6713187078098,"id":863,"parentId":807,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776320134073,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":3361,"timestamp":6713187078371,"id":866,"parentId":865,"tags":{},"startTime":1776320134073,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":32,"timestamp":6713187081737,"id":868,"parentId":865,"tags":{},"startTime":1776320134076,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3816,"timestamp":6713187078287,"id":865,"parentId":807,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776320134073,"traceId":"301cc70d0b43064f"},{"name":"make","duration":438045,"timestamp":6713186645649,"id":119,"parentId":118,"tags":{},"startTime":1776320133640,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":2589,"timestamp":6713187089161,"id":870,"parentId":869,"tags":{},"startTime":1776320134084,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":3,"timestamp":6713187091765,"id":872,"parentId":869,"tags":{},"startTime":1776320134086,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":2387,"timestamp":6713187091825,"id":873,"parentId":869,"tags":{},"startTime":1776320134086,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":4,"timestamp":6713187094227,"id":874,"parentId":869,"tags":{},"startTime":1776320134089,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":1,"timestamp":6713187094242,"id":875,"parentId":869,"tags":{},"startTime":1776320134089,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":3098,"timestamp":6713187091759,"id":871,"parentId":869,"tags":{},"startTime":1776320134086,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":4582,"timestamp":6713187096703,"id":876,"parentId":869,"tags":{},"startTime":1776320134091,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":12661,"timestamp":6713187101302,"id":877,"parentId":869,"tags":{},"startTime":1776320134096,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":2646,"timestamp":6713187116090,"id":878,"parentId":869,"tags":{},"startTime":1776320134111,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":179,"timestamp":6713187118736,"id":879,"parentId":869,"tags":{},"startTime":1776320134113,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":67,"timestamp":6713187118910,"id":880,"parentId":869,"tags":{},"startTime":1776320134114,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":40191,"timestamp":6713187118980,"id":881,"parentId":869,"tags":{},"startTime":1776320134114,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":72598,"timestamp":6713187088465,"id":869,"parentId":118,"tags":{},"startTime":1776320134083,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":516583,"timestamp":6713186645419,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776320133640,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":7730,"timestamp":6713187162032,"id":882,"parentId":116,"tags":{},"startTime":1776320134157,"traceId":"301cc70d0b43064f"},{"name":"webpack-invalidated-server","duration":525257,"timestamp":6713186644825,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776320133639,"traceId":"301cc70d0b43064f"},{"name":"build-module","duration":993,"timestamp":6713187178607,"id":890,"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%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776320134173,"traceId":"301cc70d0b43064f"},{"name":"build-module","duration":1516,"timestamp":6713187179646,"id":891,"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%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&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":1776320134174,"traceId":"301cc70d0b43064f"},{"name":"build-module","duration":1808,"timestamp":6713187181179,"id":892,"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":1776320134176,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":5,"timestamp":6713187189279,"id":894,"parentId":893,"tags":{},"startTime":1776320134184,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3127,"timestamp":6713187189377,"id":896,"parentId":895,"tags":{},"startTime":1776320134184,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3217,"timestamp":6713187189292,"id":895,"parentId":893,"tags":{},"startTime":1776320134184,"traceId":"301cc70d0b43064f"},{"name":"build-module-mjs","duration":5143,"timestamp":6713187188848,"id":893,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776320134183,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2714,"timestamp":6713187191841,"id":910,"parentId":909,"tags":{},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2763,"timestamp":6713187191794,"id":909,"parentId":897,"tags":{},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5568,"timestamp":6713187189735,"id":897,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776320134184,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3421,"timestamp":6713187191912,"id":914,"parentId":913,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3452,"timestamp":6713187191882,"id":913,"parentId":899,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":4443,"timestamp":6713187191451,"id":899,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3946,"timestamp":6713187191971,"id":918,"parentId":917,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3975,"timestamp":6713187191943,"id":917,"parentId":901,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":4787,"timestamp":6713187191548,"id":901,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4438,"timestamp":6713187191942,"id":916,"parentId":915,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4466,"timestamp":6713187191914,"id":915,"parentId":900,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":5967,"timestamp":6713187191503,"id":900,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8209,"timestamp":6713187191881,"id":912,"parentId":911,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8248,"timestamp":6713187191844,"id":911,"parentId":898,"tags":{},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":10309,"timestamp":6713187191129,"id":898,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9478,"timestamp":6713187191990,"id":922,"parentId":921,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9487,"timestamp":6713187191982,"id":921,"parentId":903,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10268,"timestamp":6713187191626,"id":903,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9913,"timestamp":6713187191999,"id":924,"parentId":923,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9921,"timestamp":6713187191991,"id":923,"parentId":904,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12422,"timestamp":6713187191664,"id":904,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":12099,"timestamp":6713187192015,"id":928,"parentId":927,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":12107,"timestamp":6713187192008,"id":927,"parentId":906,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13216,"timestamp":6713187191708,"id":906,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":12913,"timestamp":6713187192023,"id":930,"parentId":929,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":12921,"timestamp":6713187192016,"id":929,"parentId":907,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13569,"timestamp":6713187191729,"id":907,"parentId":892,"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":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":13648,"timestamp":6713187192052,"id":932,"parentId":931,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":13677,"timestamp":6713187192024,"id":931,"parentId":908,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":14386,"timestamp":6713187191749,"id":908,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":14191,"timestamp":6713187191981,"id":920,"parentId":919,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":14202,"timestamp":6713187191972,"id":919,"parentId":902,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":16138,"timestamp":6713187191598,"id":902,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":15761,"timestamp":6713187192007,"id":926,"parentId":925,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":15769,"timestamp":6713187192000,"id":925,"parentId":905,"tags":{},"startTime":1776320134187,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17266,"timestamp":6713187191687,"id":905,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776320134186,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":108,"timestamp":6713187217916,"id":936,"parentId":933,"tags":{},"startTime":1776320134213,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":143,"timestamp":6713187217920,"id":937,"parentId":934,"tags":{},"startTime":1776320134213,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":60,"timestamp":6713187218030,"id":939,"parentId":933,"tags":{},"startTime":1776320134213,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-loader","duration":353,"timestamp":6713187218065,"id":940,"parentId":934,"tags":{},"startTime":1776320134213,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":972,"timestamp":6713187217707,"id":933,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776320134212,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":953,"timestamp":6713187217819,"id":934,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776320134212,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1672,"timestamp":6713187220855,"id":976,"parentId":975,"tags":{},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1685,"timestamp":6713187220847,"id":975,"parentId":943,"tags":{},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3086,"timestamp":6713187219943,"id":943,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2237,"timestamp":6713187220833,"id":972,"parentId":971,"tags":{},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2272,"timestamp":6713187220798,"id":971,"parentId":941,"tags":{},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3570,"timestamp":6713187219856,"id":941,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776320134214,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2591,"timestamp":6713187220846,"id":974,"parentId":973,"tags":{},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2602,"timestamp":6713187220835,"id":973,"parentId":942,"tags":{},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3792,"timestamp":6713187219918,"id":942,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2853,"timestamp":6713187220867,"id":978,"parentId":977,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2864,"timestamp":6713187220856,"id":977,"parentId":944,"tags":{},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4075,"timestamp":6713187219966,"id":944,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4934,"timestamp":6713187220887,"id":982,"parentId":981,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4946,"timestamp":6713187220877,"id":981,"parentId":946,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6148,"timestamp":6713187220018,"id":946,"parentId":904,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5283,"timestamp":6713187220896,"id":984,"parentId":983,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5291,"timestamp":6713187220889,"id":983,"parentId":947,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6441,"timestamp":6713187220036,"id":947,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5580,"timestamp":6713187220908,"id":986,"parentId":985,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5588,"timestamp":6713187220901,"id":985,"parentId":948,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6720,"timestamp":6713187220054,"id":948,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5913,"timestamp":6713187220876,"id":980,"parentId":979,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5921,"timestamp":6713187220869,"id":979,"parentId":945,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7309,"timestamp":6713187219993,"id":945,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6407,"timestamp":6713187220926,"id":990,"parentId":989,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6416,"timestamp":6713187220918,"id":989,"parentId":950,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7705,"timestamp":6713187220101,"id":950,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6905,"timestamp":6713187220917,"id":988,"parentId":987,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6914,"timestamp":6713187220909,"id":987,"parentId":949,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8083,"timestamp":6713187220083,"id":949,"parentId":906,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7249,"timestamp":6713187220937,"id":992,"parentId":991,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7259,"timestamp":6713187220927,"id":991,"parentId":951,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8615,"timestamp":6713187220118,"id":951,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7779,"timestamp":6713187220964,"id":998,"parentId":997,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7789,"timestamp":6713187220954,"id":997,"parentId":954,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8877,"timestamp":6713187220172,"id":954,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8125,"timestamp":6713187220945,"id":994,"parentId":993,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8133,"timestamp":6713187220938,"id":993,"parentId":952,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9402,"timestamp":6713187220139,"id":952,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8682,"timestamp":6713187220953,"id":996,"parentId":995,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8702,"timestamp":6713187220946,"id":995,"parentId":953,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10153,"timestamp":6713187220156,"id":953,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9336,"timestamp":6713187220984,"id":1002,"parentId":1001,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9347,"timestamp":6713187220973,"id":1001,"parentId":956,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10330,"timestamp":6713187220210,"id":956,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9582,"timestamp":6713187220972,"id":1000,"parentId":999,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9589,"timestamp":6713187220965,"id":999,"parentId":955,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10603,"timestamp":6713187220193,"id":955,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9812,"timestamp":6713187220992,"id":1004,"parentId":1003,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9819,"timestamp":6713187220985,"id":1003,"parentId":957,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10856,"timestamp":6713187220226,"id":957,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10089,"timestamp":6713187221005,"id":1006,"parentId":1005,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10098,"timestamp":6713187220997,"id":1005,"parentId":958,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11066,"timestamp":6713187220242,"id":958,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10286,"timestamp":6713187221030,"id":1010,"parentId":1009,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10299,"timestamp":6713187221018,"id":1009,"parentId":960,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11242,"timestamp":6713187220276,"id":960,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10509,"timestamp":6713187221017,"id":1008,"parentId":1007,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10520,"timestamp":6713187221006,"id":1007,"parentId":959,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11677,"timestamp":6713187220259,"id":959,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10879,"timestamp":6713187221071,"id":1018,"parentId":1017,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10887,"timestamp":6713187221064,"id":1017,"parentId":964,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11884,"timestamp":6713187220351,"id":964,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16077,"timestamp":6713187221039,"id":1012,"parentId":1011,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16087,"timestamp":6713187221032,"id":1011,"parentId":961,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17331,"timestamp":6713187220293,"id":961,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16576,"timestamp":6713187221058,"id":1016,"parentId":1015,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16584,"timestamp":6713187221051,"id":1015,"parentId":963,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17608,"timestamp":6713187220335,"id":963,"parentId":905,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16913,"timestamp":6713187221050,"id":1014,"parentId":1013,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16924,"timestamp":6713187221040,"id":1013,"parentId":962,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18216,"timestamp":6713187220318,"id":962,"parentId":905,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":17467,"timestamp":6713187221079,"id":1020,"parentId":1019,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":17475,"timestamp":6713187221072,"id":1019,"parentId":965,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18500,"timestamp":6713187220367,"id":965,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":17784,"timestamp":6713187221093,"id":1024,"parentId":1023,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":17792,"timestamp":6713187221087,"id":1023,"parentId":967,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18592,"timestamp":6713187220491,"id":967,"parentId":905,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":17988,"timestamp":6713187221104,"id":1026,"parentId":1025,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":17999,"timestamp":6713187221094,"id":1025,"parentId":968,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18710,"timestamp":6713187220573,"id":968,"parentId":905,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":18331,"timestamp":6713187221112,"id":1028,"parentId":1027,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":18340,"timestamp":6713187221104,"id":1027,"parentId":969,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19078,"timestamp":6713187220612,"id":969,"parentId":905,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":18609,"timestamp":6713187221156,"id":1030,"parentId":1029,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":18653,"timestamp":6713187221113,"id":1029,"parentId":970,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":19758,"timestamp":6713187220641,"id":970,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":15594,"timestamp":6713187224843,"id":1037,"parentId":1036,"tags":{},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":15646,"timestamp":6713187224791,"id":1036,"parentId":1031,"tags":{},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":16278,"timestamp":6713187224528,"id":1031,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":15930,"timestamp":6713187224887,"id":1041,"parentId":1040,"tags":{},"startTime":1776320134220,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":15941,"timestamp":6713187224876,"id":1040,"parentId":1033,"tags":{},"startTime":1776320134220,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":16457,"timestamp":6713187224664,"id":1033,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16308,"timestamp":6713187224875,"id":1039,"parentId":1038,"tags":{},"startTime":1776320134220,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16339,"timestamp":6713187224845,"id":1038,"parentId":1032,"tags":{},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":17487,"timestamp":6713187224619,"id":1032,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":21050,"timestamp":6713187221086,"id":1022,"parentId":1021,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":21057,"timestamp":6713187221080,"id":1021,"parentId":966,"tags":{},"startTime":1776320134216,"traceId":"301cc70d0b43064f"}] -[{"name":"build-module-js","duration":23147,"timestamp":6713187220397,"id":966,"parentId":902,"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":1776320134215,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":18664,"timestamp":6713187224905,"id":1045,"parentId":1044,"tags":{},"startTime":1776320134220,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":18672,"timestamp":6713187224897,"id":1044,"parentId":1035,"tags":{},"startTime":1776320134220,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19203,"timestamp":6713187224705,"id":1035,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":19038,"timestamp":6713187224896,"id":1043,"parentId":1042,"tags":{},"startTime":1776320134220,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":19047,"timestamp":6713187224888,"id":1042,"parentId":1034,"tags":{},"startTime":1776320134220,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19961,"timestamp":6713187224686,"id":1034,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776320134219,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10074,"timestamp":6713187234582,"id":1057,"parentId":1056,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10083,"timestamp":6713187234574,"id":1056,"parentId":1049,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10546,"timestamp":6713187234385,"id":1049,"parentId":902,"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":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10454,"timestamp":6713187234573,"id":1055,"parentId":1054,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10484,"timestamp":6713187234543,"id":1054,"parentId":1048,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":11437,"timestamp":6713187234339,"id":1048,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":19925,"timestamp":6713187234542,"id":1053,"parentId":1052,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":19958,"timestamp":6713187234511,"id":1052,"parentId":1047,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"build-module-tsx","duration":21757,"timestamp":6713187234287,"id":1047,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":21607,"timestamp":6713187234509,"id":1051,"parentId":1050,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":21633,"timestamp":6713187234484,"id":1050,"parentId":1046,"tags":{},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":23207,"timestamp":6713187234217,"id":1046,"parentId":934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776320134229,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":39758,"timestamp":6713187217922,"id":938,"parentId":935,"tags":{},"startTime":1776320134213,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":57,"timestamp":6713187257688,"id":1058,"parentId":935,"tags":{},"startTime":1776320134252,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":40096,"timestamp":6713187217866,"id":935,"parentId":885,"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":1776320134212,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":405,"timestamp":6713187260495,"id":1065,"parentId":1060,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":439,"timestamp":6713187260501,"id":1066,"parentId":1063,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1254,"timestamp":6713187260907,"id":1075,"parentId":1060,"tags":{},"startTime":1776320134256,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1220,"timestamp":6713187260943,"id":1076,"parentId":1063,"tags":{},"startTime":1776320134256,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2440,"timestamp":6713187260278,"id":1060,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2495,"timestamp":6713187260388,"id":1063,"parentId":944,"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":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2878,"timestamp":6713187260781,"id":1072,"parentId":1071,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2888,"timestamp":6713187260773,"id":1071,"parentId":1062,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3561,"timestamp":6713187260366,"id":1062,"parentId":941,"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":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3181,"timestamp":6713187260772,"id":1070,"parentId":1069,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3192,"timestamp":6713187260762,"id":1069,"parentId":1061,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3825,"timestamp":6713187260340,"id":1061,"parentId":943,"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":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3478,"timestamp":6713187260759,"id":1068,"parentId":1067,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3508,"timestamp":6713187260730,"id":1067,"parentId":1059,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4370,"timestamp":6713187260198,"id":1059,"parentId":941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3793,"timestamp":6713187260810,"id":1074,"parentId":1073,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3821,"timestamp":6713187260782,"id":1073,"parentId":1064,"tags":{},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":4785,"timestamp":6713187260432,"id":1064,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776320134255,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":519,"timestamp":6713187266191,"id":1101,"parentId":1082,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":546,"timestamp":6713187266195,"id":1102,"parentId":1085,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":568,"timestamp":6713187266197,"id":1103,"parentId":1086,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":582,"timestamp":6713187266207,"id":1104,"parentId":1089,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":604,"timestamp":6713187266209,"id":1105,"parentId":1092,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":626,"timestamp":6713187266211,"id":1106,"parentId":1098,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":809,"timestamp":6713187266714,"id":1143,"parentId":1082,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":782,"timestamp":6713187266743,"id":1144,"parentId":1085,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":758,"timestamp":6713187266767,"id":1145,"parentId":1086,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":733,"timestamp":6713187266792,"id":1146,"parentId":1089,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":711,"timestamp":6713187266815,"id":1147,"parentId":1092,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":687,"timestamp":6713187266839,"id":1148,"parentId":1098,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2027,"timestamp":6713187265664,"id":1082,"parentId":957,"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":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2034,"timestamp":6713187265755,"id":1085,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2205,"timestamp":6713187265790,"id":1086,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2230,"timestamp":6713187265861,"id":1089,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2280,"timestamp":6713187265938,"id":1092,"parentId":966,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2361,"timestamp":6713187266099,"id":1098,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2720,"timestamp":6713187266362,"id":1112,"parentId":1111,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2733,"timestamp":6713187266351,"id":1111,"parentId":1079,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3835,"timestamp":6713187265604,"id":1079,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3125,"timestamp":6713187266335,"id":1108,"parentId":1107,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3175,"timestamp":6713187266286,"id":1107,"parentId":1077,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":4341,"timestamp":6713187265491,"id":1077,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3469,"timestamp":6713187266371,"id":1114,"parentId":1113,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3478,"timestamp":6713187266363,"id":1113,"parentId":1080,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4447,"timestamp":6713187265625,"id":1080,"parentId":945,"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":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3733,"timestamp":6713187266350,"id":1110,"parentId":1109,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3747,"timestamp":6713187266337,"id":1109,"parentId":1078,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4959,"timestamp":6713187265577,"id":1078,"parentId":946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4166,"timestamp":6713187266379,"id":1116,"parentId":1115,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4173,"timestamp":6713187266372,"id":1115,"parentId":1081,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5150,"timestamp":6713187265645,"id":1081,"parentId":945,"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":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4393,"timestamp":6713187266413,"id":1120,"parentId":1119,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4419,"timestamp":6713187266387,"id":1119,"parentId":1084,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":5709,"timestamp":6713187265719,"id":1084,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5031,"timestamp":6713187266421,"id":1122,"parentId":1121,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5039,"timestamp":6713187266413,"id":1121,"parentId":1087,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5928,"timestamp":6713187265825,"id":1087,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8922,"timestamp":6713187266431,"id":1124,"parentId":1123,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8931,"timestamp":6713187266425,"id":1123,"parentId":1088,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":9868,"timestamp":6713187265843,"id":1088,"parentId":962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9341,"timestamp":6713187266386,"id":1118,"parentId":1117,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9348,"timestamp":6713187266380,"id":1117,"parentId":1083,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10437,"timestamp":6713187265701,"id":1083,"parentId":951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776320134260,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9703,"timestamp":6713187266444,"id":1126,"parentId":1125,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9716,"timestamp":6713187266432,"id":1125,"parentId":1090,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10559,"timestamp":6713187265897,"id":1090,"parentId":962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10000,"timestamp":6713187266469,"id":1128,"parentId":1127,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10024,"timestamp":6713187266445,"id":1127,"parentId":1091,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10903,"timestamp":6713187265920,"id":1091,"parentId":1034,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10364,"timestamp":6713187266477,"id":1130,"parentId":1129,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10372,"timestamp":6713187266470,"id":1129,"parentId":1093,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11329,"timestamp":6713187265974,"id":1093,"parentId":961,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10830,"timestamp":6713187266484,"id":1132,"parentId":1131,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10838,"timestamp":6713187266478,"id":1131,"parentId":1094,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11754,"timestamp":6713187265990,"id":1094,"parentId":961,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11258,"timestamp":6713187266499,"id":1136,"parentId":1135,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11265,"timestamp":6713187266492,"id":1135,"parentId":1096,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12108,"timestamp":6713187266025,"id":1096,"parentId":961,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11657,"timestamp":6713187266492,"id":1134,"parentId":1133,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-loader","duration":11771,"timestamp":6713187266485,"id":1133,"parentId":1095,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12816,"timestamp":6713187266008,"id":1095,"parentId":961,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":12762,"timestamp":6713187266514,"id":1140,"parentId":1139,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":12770,"timestamp":6713187266507,"id":1139,"parentId":1099,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13523,"timestamp":6713187266139,"id":1099,"parentId":1034,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":13173,"timestamp":6713187266506,"id":1138,"parentId":1137,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":13180,"timestamp":6713187266500,"id":1137,"parentId":1097,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14032,"timestamp":6713187266054,"id":1097,"parentId":1034,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":13582,"timestamp":6713187266521,"id":1142,"parentId":1141,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":13589,"timestamp":6713187266514,"id":1141,"parentId":1100,"tags":{},"startTime":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14637,"timestamp":6713187266163,"id":1100,"parentId":966,"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":1776320134261,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6977,"timestamp":6713187273842,"id":1170,"parentId":1169,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6986,"timestamp":6713187273834,"id":1169,"parentId":1151,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7753,"timestamp":6713187273295,"id":1151,"parentId":966,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7237,"timestamp":6713187273820,"id":1166,"parentId":1165,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7273,"timestamp":6713187273785,"id":1165,"parentId":1149,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8276,"timestamp":6713187273180,"id":1149,"parentId":966,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7635,"timestamp":6713187273833,"id":1168,"parentId":1167,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7645,"timestamp":6713187273823,"id":1167,"parentId":1150,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8634,"timestamp":6713187273254,"id":1150,"parentId":966,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8051,"timestamp":6713187273850,"id":1172,"parentId":1171,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8059,"timestamp":6713187273842,"id":1171,"parentId":1152,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8986,"timestamp":6713187273326,"id":1152,"parentId":966,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":14143,"timestamp":6713187273870,"id":1176,"parentId":1175,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":14158,"timestamp":6713187273858,"id":1175,"parentId":1154,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14987,"timestamp":6713187273374,"id":1154,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":14519,"timestamp":6713187273857,"id":1174,"parentId":1173,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":14526,"timestamp":6713187273850,"id":1173,"parentId":1153,"tags":{},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":15526,"timestamp":6713187273349,"id":1153,"parentId":966,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":15039,"timestamp":6713187273878,"id":1178,"parentId":1177,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":15047,"timestamp":6713187273871,"id":1177,"parentId":1155,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":16224,"timestamp":6713187273399,"id":1155,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":15729,"timestamp":6713187273910,"id":1184,"parentId":1183,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":15741,"timestamp":6713187273899,"id":1183,"parentId":1158,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":16552,"timestamp":6713187273472,"id":1158,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16147,"timestamp":6713187273888,"id":1180,"parentId":1179,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16157,"timestamp":6713187273879,"id":1179,"parentId":1156,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":16904,"timestamp":6713187273423,"id":1156,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16446,"timestamp":6713187273898,"id":1182,"parentId":1181,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16455,"timestamp":6713187273889,"id":1181,"parentId":1157,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17373,"timestamp":6713187273446,"id":1157,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16916,"timestamp":6713187273920,"id":1186,"parentId":1185,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16927,"timestamp":6713187273910,"id":1185,"parentId":1159,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17855,"timestamp":6713187273501,"id":1159,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":17430,"timestamp":6713187273935,"id":1190,"parentId":1189,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":17438,"timestamp":6713187273928,"id":1189,"parentId":1161,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18004,"timestamp":6713187273545,"id":1161,"parentId":1046,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":17628,"timestamp":6713187273928,"id":1188,"parentId":1187,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":17636,"timestamp":6713187273921,"id":1187,"parentId":1160,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18301,"timestamp":6713187273522,"id":1160,"parentId":1046,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":17891,"timestamp":6713187273942,"id":1192,"parentId":1191,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":17898,"timestamp":6713187273936,"id":1191,"parentId":1162,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18601,"timestamp":6713187273578,"id":1162,"parentId":1046,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":18238,"timestamp":6713187273949,"id":1194,"parentId":1193,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":18246,"timestamp":6713187273943,"id":1193,"parentId":1163,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18823,"timestamp":6713187273602,"id":1163,"parentId":1034,"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":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":18467,"timestamp":6713187273983,"id":1196,"parentId":1195,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":18500,"timestamp":6713187273950,"id":1195,"parentId":1164,"tags":{},"startTime":1776320134269,"traceId":"301cc70d0b43064f"},{"name":"build-module-ts","duration":19191,"timestamp":6713187273635,"id":1164,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776320134268,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":344,"timestamp":6713187295054,"id":1206,"parentId":1198,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2330,"timestamp":6713187295405,"id":1222,"parentId":1198,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3177,"timestamp":6713187294789,"id":1198,"parentId":1060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776320134289,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3028,"timestamp":6713187295249,"id":1215,"parentId":1214,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3036,"timestamp":6713187295242,"id":1214,"parentId":1201,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3587,"timestamp":6713187294892,"id":1201,"parentId":1059,"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":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3268,"timestamp":6713187295219,"id":1209,"parentId":1208,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3307,"timestamp":6713187295180,"id":1208,"parentId":1197,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4277,"timestamp":6713187294441,"id":1197,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776320134289,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3484,"timestamp":6713187295241,"id":1213,"parentId":1212,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3492,"timestamp":6713187295233,"id":1212,"parentId":1200,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4209,"timestamp":6713187294867,"id":1200,"parentId":1060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3867,"timestamp":6713187295232,"id":1211,"parentId":1210,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3879,"timestamp":6713187295221,"id":1210,"parentId":1199,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4652,"timestamp":6713187294835,"id":1199,"parentId":1060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776320134289,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4243,"timestamp":6713187295256,"id":1217,"parentId":1216,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4251,"timestamp":6713187295249,"id":1216,"parentId":1202,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4788,"timestamp":6713187294920,"id":1202,"parentId":1059,"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":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4446,"timestamp":6713187295270,"id":1221,"parentId":1220,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4453,"timestamp":6713187295264,"id":1220,"parentId":1205,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4869,"timestamp":6713187295015,"id":1205,"parentId":1034,"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":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4628,"timestamp":6713187295263,"id":1219,"parentId":1218,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4634,"timestamp":6713187295257,"id":1218,"parentId":1203,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5143,"timestamp":6713187294941,"id":1203,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":430,"timestamp":6713187304112,"id":1242,"parentId":1240,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":319,"timestamp":6713187304553,"id":1276,"parentId":1240,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1830,"timestamp":6713187304026,"id":1240,"parentId":1149,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":1863,"timestamp":6713187304229,"id":1249,"parentId":1248,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":1872,"timestamp":6713187304222,"id":1248,"parentId":1225,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4658,"timestamp":6713187301706,"id":1225,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776320134296,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2153,"timestamp":6713187304221,"id":1247,"parentId":1246,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2162,"timestamp":6713187304212,"id":1246,"parentId":1224,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5046,"timestamp":6713187301681,"id":1224,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776320134296,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2633,"timestamp":6713187304210,"id":1245,"parentId":1244,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2669,"timestamp":6713187304188,"id":1244,"parentId":1223,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5720,"timestamp":6713187301628,"id":1223,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776320134296,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7741,"timestamp":6713187304244,"id":1253,"parentId":1252,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7755,"timestamp":6713187304237,"id":1252,"parentId":1227,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10787,"timestamp":6713187301748,"id":1227,"parentId":1098,"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":1776320134296,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8313,"timestamp":6713187304237,"id":1251,"parentId":1250,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8321,"timestamp":6713187304230,"id":1250,"parentId":1226,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11432,"timestamp":6713187301729,"id":1226,"parentId":1081,"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":1776320134296,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-transform","duration":9044,"timestamp":6713187304258,"id":1257,"parentId":1256,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9054,"timestamp":6713187304252,"id":1256,"parentId":1230,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10081,"timestamp":6713187303856,"id":1230,"parentId":1083,"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":1776320134298,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9712,"timestamp":6713187304251,"id":1255,"parentId":1254,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9720,"timestamp":6713187304245,"id":1254,"parentId":1229,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10816,"timestamp":6713187303824,"id":1229,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776320134298,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10379,"timestamp":6713187304279,"id":1263,"parentId":1262,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10387,"timestamp":6713187304273,"id":1262,"parentId":1233,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11252,"timestamp":6713187303911,"id":1233,"parentId":1097,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10921,"timestamp":6713187304265,"id":1259,"parentId":1258,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":10928,"timestamp":6713187304259,"id":1258,"parentId":1231,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11823,"timestamp":6713187303876,"id":1231,"parentId":1096,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11430,"timestamp":6713187304286,"id":1265,"parentId":1264,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11438,"timestamp":6713187304280,"id":1264,"parentId":1234,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12478,"timestamp":6713187303929,"id":1234,"parentId":1097,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":12147,"timestamp":6713187304272,"id":1261,"parentId":1260,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":12154,"timestamp":6713187304266,"id":1260,"parentId":1232,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13116,"timestamp":6713187303894,"id":1232,"parentId":1095,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":12735,"timestamp":6713187304301,"id":1269,"parentId":1268,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":12743,"timestamp":6713187304294,"id":1268,"parentId":1236,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13733,"timestamp":6713187303962,"id":1236,"parentId":1097,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":13399,"timestamp":6713187304314,"id":1273,"parentId":1272,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":13406,"timestamp":6713187304308,"id":1272,"parentId":1238,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14255,"timestamp":6713187303994,"id":1238,"parentId":1097,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":14021,"timestamp":6713187304308,"id":1271,"parentId":1270,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":14029,"timestamp":6713187304301,"id":1270,"parentId":1237,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14885,"timestamp":6713187303977,"id":1237,"parentId":1097,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9225,"timestamp":6713187310049,"id":1290,"parentId":1289,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9245,"timestamp":6713187310030,"id":1289,"parentId":1278,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10067,"timestamp":6713187309639,"id":1278,"parentId":1150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":9703,"timestamp":6713187310028,"id":1288,"parentId":1287,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":9740,"timestamp":6713187309992,"id":1287,"parentId":1277,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10725,"timestamp":6713187309551,"id":1277,"parentId":1157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":16030,"timestamp":6713187304293,"id":1267,"parentId":1266,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":16038,"timestamp":6713187304287,"id":1266,"parentId":1235,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":17878,"timestamp":6713187303945,"id":1235,"parentId":1097,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11767,"timestamp":6713187310073,"id":1294,"parentId":1293,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11778,"timestamp":6713187310063,"id":1293,"parentId":1280,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12524,"timestamp":6713187309706,"id":1280,"parentId":1155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":17929,"timestamp":6713187304321,"id":1275,"parentId":1274,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":17936,"timestamp":6713187304315,"id":1274,"parentId":1239,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18813,"timestamp":6713187304010,"id":1239,"parentId":1097,"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":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":12776,"timestamp":6713187310062,"id":1292,"parentId":1291,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":12788,"timestamp":6713187310050,"id":1291,"parentId":1279,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13904,"timestamp":6713187309676,"id":1279,"parentId":1155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":24247,"timestamp":6713187310083,"id":1296,"parentId":1295,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":24260,"timestamp":6713187310074,"id":1295,"parentId":1281,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":25447,"timestamp":6713187309733,"id":1281,"parentId":1155,"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":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":25309,"timestamp":6713187310117,"id":1302,"parentId":1301,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":25324,"timestamp":6713187310107,"id":1301,"parentId":1284,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":26127,"timestamp":6713187309814,"id":1284,"parentId":1152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":25865,"timestamp":6713187310093,"id":1298,"parentId":1297,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":25875,"timestamp":6713187310085,"id":1297,"parentId":1282,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":26610,"timestamp":6713187309762,"id":1282,"parentId":1163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":26279,"timestamp":6713187310103,"id":1300,"parentId":1299,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":26288,"timestamp":6713187310095,"id":1299,"parentId":1283,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":26900,"timestamp":6713187309787,"id":1283,"parentId":1155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":42144,"timestamp":6713187295059,"id":1207,"parentId":1204,"tags":{},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":46,"timestamp":6713187337212,"id":1303,"parentId":1204,"tags":{},"startTime":1776320134332,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":42444,"timestamp":6713187294969,"id":1204,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776320134290,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":36692,"timestamp":6713187304115,"id":1243,"parentId":1241,"tags":{},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":50,"timestamp":6713187340820,"id":1304,"parentId":1241,"tags":{},"startTime":1776320134335,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":37334,"timestamp":6713187304067,"id":1241,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776320134299,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":39419,"timestamp":6713187309912,"id":1286,"parentId":1285,"tags":{},"startTime":1776320134305,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":49,"timestamp":6713187349353,"id":1305,"parentId":1285,"tags":{},"startTime":1776320134344,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":40257,"timestamp":6713187309841,"id":1285,"parentId":935,"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":1776320134304,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":324,"timestamp":6713187353221,"id":1307,"parentId":1306,"tags":{},"startTime":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":718,"timestamp":6713187370122,"id":1359,"parentId":1341,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":758,"timestamp":6713187370129,"id":1360,"parentId":1348,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":62,"timestamp":6713187370853,"id":1403,"parentId":1341,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":25,"timestamp":6713187370890,"id":1404,"parentId":1348,"tags":{},"startTime":1776320134366,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1694,"timestamp":6713187369519,"id":1341,"parentId":1234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1858,"timestamp":6713187369686,"id":1348,"parentId":1278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":5920,"timestamp":6713187365652,"id":1323,"parentId":1322,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5931,"timestamp":6713187365642,"id":1322,"parentId":1310,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":18501,"timestamp":6713187353343,"id":1310,"parentId":1227,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6219,"timestamp":6713187365640,"id":1321,"parentId":1320,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6238,"timestamp":6713187365621,"id":1320,"parentId":1309,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19063,"timestamp":6713187353311,"id":1309,"parentId":1231,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6785,"timestamp":6713187365617,"id":1319,"parentId":1318,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6823,"timestamp":6713187365580,"id":1318,"parentId":1308,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19699,"timestamp":6713187353235,"id":1308,"parentId":1232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7278,"timestamp":6713187365672,"id":1327,"parentId":1326,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7288,"timestamp":6713187365663,"id":1326,"parentId":1312,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":19895,"timestamp":6713187353404,"id":1312,"parentId":1230,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7622,"timestamp":6713187365691,"id":1331,"parentId":1330,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7630,"timestamp":6713187365683,"id":1330,"parentId":1314,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":20271,"timestamp":6713187353451,"id":1314,"parentId":1230,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":8051,"timestamp":6713187365681,"id":1329,"parentId":1328,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":8060,"timestamp":6713187365673,"id":1328,"parentId":1313,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":20584,"timestamp":6713187353430,"id":1313,"parentId":1230,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":13120,"timestamp":6713187365662,"id":1325,"parentId":1324,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":13132,"timestamp":6713187365653,"id":1324,"parentId":1311,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":26618,"timestamp":6713187353377,"id":1311,"parentId":1230,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":14316,"timestamp":6713187365700,"id":1333,"parentId":1332,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":14325,"timestamp":6713187365692,"id":1332,"parentId":1315,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":26965,"timestamp":6713187353473,"id":1315,"parentId":1230,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":15016,"timestamp":6713187365709,"id":1335,"parentId":1334,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":15024,"timestamp":6713187365701,"id":1334,"parentId":1316,"tags":{},"startTime":1776320134360,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":27905,"timestamp":6713187353507,"id":1316,"parentId":1230,"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":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":10975,"timestamp":6713187370447,"id":1368,"parentId":1367,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-loader","duration":11082,"timestamp":6713187370435,"id":1367,"parentId":1339,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12273,"timestamp":6713187369474,"id":1339,"parentId":1234,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11321,"timestamp":6713187370434,"id":1366,"parentId":1365,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11331,"timestamp":6713187370425,"id":1365,"parentId":1338,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12526,"timestamp":6713187369448,"id":1338,"parentId":1234,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11559,"timestamp":6713187370424,"id":1364,"parentId":1363,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11571,"timestamp":6713187370413,"id":1363,"parentId":1337,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12822,"timestamp":6713187369418,"id":1337,"parentId":1234,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11849,"timestamp":6713187370410,"id":1362,"parentId":1361,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11883,"timestamp":6713187370377,"id":1361,"parentId":1336,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":13130,"timestamp":6713187369350,"id":1336,"parentId":1234,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":20700,"timestamp":6713187370457,"id":1370,"parentId":1369,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":20713,"timestamp":6713187370449,"id":1369,"parentId":1340,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":22066,"timestamp":6713187369496,"id":1340,"parentId":1234,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":21125,"timestamp":6713187370466,"id":1372,"parentId":1371,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":21135,"timestamp":6713187370458,"id":1371,"parentId":1342,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":22382,"timestamp":6713187369562,"id":1342,"parentId":1237,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":21478,"timestamp":6713187370484,"id":1376,"parentId":1375,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":21487,"timestamp":6713187370476,"id":1375,"parentId":1344,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":22590,"timestamp":6713187369605,"id":1344,"parentId":1237,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":21711,"timestamp":6713187370493,"id":1378,"parentId":1377,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":21719,"timestamp":6713187370485,"id":1377,"parentId":1345,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":22791,"timestamp":6713187369626,"id":1345,"parentId":1237,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":21923,"timestamp":6713187370502,"id":1380,"parentId":1379,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":21932,"timestamp":6713187370494,"id":1379,"parentId":1346,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":23012,"timestamp":6713187369646,"id":1346,"parentId":1237,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":22192,"timestamp":6713187370475,"id":1374,"parentId":1373,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":22201,"timestamp":6713187370467,"id":1373,"parentId":1343,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":23289,"timestamp":6713187369584,"id":1343,"parentId":1237,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":22355,"timestamp":6713187370528,"id":1384,"parentId":1383,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":22364,"timestamp":6713187370520,"id":1383,"parentId":1349,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":23386,"timestamp":6713187369723,"id":1349,"parentId":1235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":22600,"timestamp":6713187370518,"id":1382,"parentId":1381,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":22616,"timestamp":6713187370503,"id":1381,"parentId":1347,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":23679,"timestamp":6713187369668,"id":1347,"parentId":1197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":22810,"timestamp":6713187370547,"id":1388,"parentId":1387,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":22819,"timestamp":6713187370539,"id":1387,"parentId":1351,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":23846,"timestamp":6713187369762,"id":1351,"parentId":1235,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":23080,"timestamp":6713187370538,"id":1386,"parentId":1385,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":23089,"timestamp":6713187370530,"id":1385,"parentId":1350,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":24097,"timestamp":6713187369743,"id":1350,"parentId":1281,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":23293,"timestamp":6713187370555,"id":1390,"parentId":1389,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":23302,"timestamp":6713187370548,"id":1389,"parentId":1352,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":24280,"timestamp":6713187369780,"id":1352,"parentId":1235,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":23482,"timestamp":6713187370585,"id":1396,"parentId":1395,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":23491,"timestamp":6713187370578,"id":1395,"parentId":1355,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":24431,"timestamp":6713187369837,"id":1355,"parentId":1235,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":23719,"timestamp":6713187370568,"id":1392,"parentId":1391,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":23731,"timestamp":6713187370556,"id":1391,"parentId":1353,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":25036,"timestamp":6713187369800,"id":1353,"parentId":1235,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":24274,"timestamp":6713187370577,"id":1394,"parentId":1393,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":24282,"timestamp":6713187370569,"id":1393,"parentId":1354,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":25481,"timestamp":6713187369819,"id":1354,"parentId":1237,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":24719,"timestamp":6713187370594,"id":1398,"parentId":1397,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":24728,"timestamp":6713187370586,"id":1397,"parentId":1356,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":25760,"timestamp":6713187369855,"id":1356,"parentId":1235,"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":1776320134364,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":25007,"timestamp":6713187370615,"id":1402,"parentId":1401,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":25020,"timestamp":6713187370603,"id":1401,"parentId":1358,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":25716,"timestamp":6713187370078,"id":1358,"parentId":1223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":25197,"timestamp":6713187370602,"id":1400,"parentId":1399,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":25205,"timestamp":6713187370595,"id":1399,"parentId":1357,"tags":{},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":25985,"timestamp":6713187369986,"id":1357,"parentId":1224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776320134365,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11421,"timestamp":6713187384763,"id":1410,"parentId":1409,"tags":{},"startTime":1776320134379,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11432,"timestamp":6713187384754,"id":1409,"parentId":1406,"tags":{},"startTime":1776320134379,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12188,"timestamp":6713187384491,"id":1406,"parentId":1283,"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":1776320134379,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":11945,"timestamp":6713187384750,"id":1408,"parentId":1407,"tags":{},"startTime":1776320134379,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":11973,"timestamp":6713187384723,"id":1407,"parentId":1405,"tags":{},"startTime":1776320134379,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":12803,"timestamp":6713187384423,"id":1405,"parentId":1281,"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":1776320134379,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7917,"timestamp":6713187399182,"id":1419,"parentId":1418,"tags":{},"startTime":1776320134394,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7953,"timestamp":6713187399155,"id":1418,"parentId":1411,"tags":{},"startTime":1776320134394,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8994,"timestamp":6713187398544,"id":1411,"parentId":1283,"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":1776320134393,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":397,"timestamp":6713187408533,"id":1439,"parentId":1437,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":425,"timestamp":6713187408537,"id":1440,"parentId":1438,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":50,"timestamp":6713187408936,"id":1475,"parentId":1437,"tags":{},"startTime":1776320134404,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":22,"timestamp":6713187408964,"id":1476,"parentId":1438,"tags":{},"startTime":1776320134404,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":744,"timestamp":6713187408439,"id":1437,"parentId":1308,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":790,"timestamp":6713187408482,"id":1438,"parentId":1308,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":294,"timestamp":6713187410454,"id":1490,"parentId":1477,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":33,"timestamp":6713187410756,"id":1515,"parentId":1477,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1222,"timestamp":6713187410097,"id":1477,"parentId":1405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2732,"timestamp":6713187408609,"id":1442,"parentId":1441,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2757,"timestamp":6713187408585,"id":1441,"parentId":1420,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3744,"timestamp":6713187407873,"id":1420,"parentId":1348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3002,"timestamp":6713187408626,"id":1444,"parentId":1443,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3017,"timestamp":6713187408612,"id":1443,"parentId":1421,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3946,"timestamp":6713187407970,"id":1421,"parentId":1309,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3292,"timestamp":6713187408636,"id":1446,"parentId":1445,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3302,"timestamp":6713187408627,"id":1445,"parentId":1422,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4556,"timestamp":6713187408004,"id":1422,"parentId":1312,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3927,"timestamp":6713187408645,"id":1448,"parentId":1447,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3935,"timestamp":6713187408637,"id":1447,"parentId":1423,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4830,"timestamp":6713187408032,"id":1423,"parentId":1312,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4209,"timestamp":6713187408663,"id":1452,"parentId":1451,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4217,"timestamp":6713187408655,"id":1451,"parentId":1425,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5004,"timestamp":6713187408078,"id":1425,"parentId":1312,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4402,"timestamp":6713187408689,"id":1458,"parentId":1457,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4410,"timestamp":6713187408682,"id":1457,"parentId":1428,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5182,"timestamp":6713187408148,"id":1428,"parentId":1311,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4777,"timestamp":6713187408654,"id":1450,"parentId":1449,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4787,"timestamp":6713187408646,"id":1449,"parentId":1424,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":5812,"timestamp":6713187408055,"id":1424,"parentId":1312,"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":1776320134403,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-transform","duration":5300,"timestamp":6713187408680,"id":1456,"parentId":1455,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":5308,"timestamp":6713187408673,"id":1455,"parentId":1427,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6156,"timestamp":6713187408126,"id":1427,"parentId":1311,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6270,"timestamp":6713187408697,"id":1460,"parentId":1459,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6278,"timestamp":6713187408690,"id":1459,"parentId":1429,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7116,"timestamp":6713187408171,"id":1429,"parentId":1311,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6584,"timestamp":6713187408715,"id":1464,"parentId":1463,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6592,"timestamp":6713187408707,"id":1463,"parentId":1431,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7363,"timestamp":6713187408223,"id":1431,"parentId":1338,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":6893,"timestamp":6713187408706,"id":1462,"parentId":1461,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":6902,"timestamp":6713187408698,"id":1461,"parentId":1430,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7811,"timestamp":6713187408193,"id":1430,"parentId":1339,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7281,"timestamp":6713187408730,"id":1468,"parentId":1467,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7288,"timestamp":6713187408724,"id":1467,"parentId":1433,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":7920,"timestamp":6713187408291,"id":1433,"parentId":1337,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7504,"timestamp":6713187408723,"id":1466,"parentId":1465,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7512,"timestamp":6713187408715,"id":1465,"parentId":1432,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8276,"timestamp":6713187408252,"id":1432,"parentId":1337,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":7797,"timestamp":6713187408738,"id":1470,"parentId":1469,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":7804,"timestamp":6713187408731,"id":1469,"parentId":1434,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8363,"timestamp":6713187408363,"id":1434,"parentId":1337,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":265560,"timestamp":6713187408746,"id":1472,"parentId":1471,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":265574,"timestamp":6713187408739,"id":1471,"parentId":1435,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":266621,"timestamp":6713187408393,"id":1435,"parentId":1337,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":266292,"timestamp":6713187408753,"id":1474,"parentId":1473,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":266300,"timestamp":6713187408746,"id":1473,"parentId":1436,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":267068,"timestamp":6713187408418,"id":1436,"parentId":1337,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":266876,"timestamp":6713187408671,"id":1454,"parentId":1453,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":266884,"timestamp":6713187408664,"id":1453,"parentId":1426,"tags":{},"startTime":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":268893,"timestamp":6713187408104,"id":1426,"parentId":1313,"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":1776320134403,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":266493,"timestamp":6713187410515,"id":1492,"parentId":1491,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":266523,"timestamp":6713187410487,"id":1491,"parentId":1478,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":267076,"timestamp":6713187410177,"id":1478,"parentId":1405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":266741,"timestamp":6713187410529,"id":1494,"parentId":1493,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":266752,"timestamp":6713187410518,"id":1493,"parentId":1479,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":267440,"timestamp":6713187410209,"id":1479,"parentId":1356,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":267102,"timestamp":6713187410556,"id":1500,"parentId":1499,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":267111,"timestamp":6713187410548,"id":1499,"parentId":1482,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":267641,"timestamp":6713187410279,"id":1482,"parentId":1354,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":267383,"timestamp":6713187410548,"id":1498,"parentId":1497,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":267391,"timestamp":6713187410540,"id":1497,"parentId":1481,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":267927,"timestamp":6713187410257,"id":1481,"parentId":1353,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":267628,"timestamp":6713187410564,"id":1502,"parentId":1501,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":267636,"timestamp":6713187410557,"id":1501,"parentId":1483,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":268121,"timestamp":6713187410301,"id":1483,"parentId":1340,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":267850,"timestamp":6713187410580,"id":1506,"parentId":1505,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":267858,"timestamp":6713187410573,"id":1505,"parentId":1485,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":268309,"timestamp":6713187410343,"id":1485,"parentId":1346,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":268073,"timestamp":6713187410588,"id":1508,"parentId":1507,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":268080,"timestamp":6713187410581,"id":1507,"parentId":1486,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":268550,"timestamp":6713187410363,"id":1486,"parentId":1346,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":268391,"timestamp":6713187410539,"id":1496,"parentId":1495,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":268401,"timestamp":6713187410530,"id":1495,"parentId":1480,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":269421,"timestamp":6713187410234,"id":1480,"parentId":1351,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":269098,"timestamp":6713187410572,"id":1504,"parentId":1503,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":269106,"timestamp":6713187410565,"id":1503,"parentId":1484,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":270635,"timestamp":6713187410322,"id":1484,"parentId":1340,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":270398,"timestamp":6713187410612,"id":1514,"parentId":1513,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":270409,"timestamp":6713187410605,"id":1513,"parentId":1489,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":270858,"timestamp":6713187410425,"id":1489,"parentId":1354,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":279369,"timestamp":6713187410604,"id":1512,"parentId":1511,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":279381,"timestamp":6713187410597,"id":1511,"parentId":1488,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":280085,"timestamp":6713187410404,"id":1488,"parentId":1354,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":279914,"timestamp":6713187410596,"id":1510,"parentId":1509,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":279922,"timestamp":6713187410589,"id":1509,"parentId":1487,"tags":{},"startTime":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":280712,"timestamp":6713187410383,"id":1487,"parentId":1355,"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":1776320134405,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":293588,"timestamp":6713187398867,"id":1413,"parentId":1412,"tags":{},"startTime":1776320134394,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":294047,"timestamp":6713187398611,"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":1776320134393,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":293779,"timestamp":6713187398892,"id":1415,"parentId":1414,"tags":{},"startTime":1776320134394,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":293857,"timestamp":6713187398883,"id":1414,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776320134394,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":293844,"timestamp":6713187398907,"id":1417,"parentId":1416,"tags":{},"startTime":1776320134394,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":293905,"timestamp":6713187398899,"id":1416,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776320134394,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":167,"timestamp":6713187696006,"id":1530,"parentId":1528,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":30,"timestamp":6713187696179,"id":1542,"parentId":1528,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1522,"timestamp":6713187695924,"id":1528,"parentId":1430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":2146,"timestamp":6713187696064,"id":1533,"parentId":1532,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":2178,"timestamp":6713187696035,"id":1532,"parentId":1523,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2848,"timestamp":6713187695734,"id":1523,"parentId":1432,"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":1776320134690,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":3435,"timestamp":6713187696091,"id":1539,"parentId":1538,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":3442,"timestamp":6713187696085,"id":1538,"parentId":1526,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4022,"timestamp":6713187695884,"id":1526,"parentId":1430,"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":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":290477,"timestamp":6713187414917,"id":1517,"parentId":1516,"tags":{},"startTime":1776320134410,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":290707,"timestamp":6713187414896,"id":1516,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776320134410,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":290671,"timestamp":6713187414943,"id":1519,"parentId":1518,"tags":{},"startTime":1776320134410,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":290854,"timestamp":6713187414932,"id":1518,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776320134410,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":30566,"timestamp":6713187696084,"id":1537,"parentId":1536,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":30579,"timestamp":6713187696077,"id":1536,"parentId":1525,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":31468,"timestamp":6713187695861,"id":1525,"parentId":1431,"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":1776320134690,"traceId":"301cc70d0b43064f"},{"name":"postcss-process","duration":221176,"timestamp":6713187594129,"id":1520,"parentId":1317,"tags":{},"startTime":1776320134589,"traceId":"301cc70d0b43064f"},{"name":"postcss-loader","duration":462584,"timestamp":6713187353631,"id":1317,"parentId":1306,"tags":{},"startTime":1776320134348,"traceId":"301cc70d0b43064f"},{"name":"css-loader","duration":24751,"timestamp":6713187816325,"id":1549,"parentId":1306,"tags":{"astUsed":"true"},"startTime":1776320134811,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":146091,"timestamp":6713187696098,"id":1541,"parentId":1540,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":146099,"timestamp":6713187696092,"id":1540,"parentId":1527,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":147032,"timestamp":6713187695904,"id":1527,"parentId":1489,"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":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":150836,"timestamp":6713187697877,"id":1546,"parentId":1545,"tags":{},"startTime":1776320134693,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":150858,"timestamp":6713187697859,"id":1545,"parentId":1543,"tags":{},"startTime":1776320134692,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":151598,"timestamp":6713187697769,"id":1543,"parentId":1488,"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":1776320134692,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":151508,"timestamp":6713187697886,"id":1548,"parentId":1547,"tags":{},"startTime":1776320134693,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":151517,"timestamp":6713187697878,"id":1547,"parentId":1544,"tags":{},"startTime":1776320134693,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":152038,"timestamp":6713187697824,"id":1544,"parentId":1488,"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":1776320134692,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":153988,"timestamp":6713187696076,"id":1535,"parentId":1534,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"}] -[{"name":"next-swc-loader","duration":154083,"timestamp":6713187696066,"id":1534,"parentId":1524,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":159725,"timestamp":6713187695830,"id":1524,"parentId":1431,"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":1776320134690,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":162291,"timestamp":6713187693749,"id":1522,"parentId":1521,"tags":{},"startTime":1776320134688,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":162413,"timestamp":6713187693711,"id":1521,"parentId":1034,"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":1776320134688,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":162310,"timestamp":6713187696010,"id":1531,"parentId":1529,"tags":{},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":42,"timestamp":6713187858336,"id":1550,"parentId":1529,"tags":{},"startTime":1776320134853,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":162627,"timestamp":6713187695964,"id":1529,"parentId":935,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776320134691,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":6,"timestamp":6713187860465,"id":1562,"parentId":1560,"tags":{},"startTime":1776320134855,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":64,"timestamp":6713187860469,"id":1563,"parentId":1561,"tags":{},"startTime":1776320134855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":83,"timestamp":6713187860477,"id":1564,"parentId":1560,"tags":{},"startTime":1776320134855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":25,"timestamp":6713187860536,"id":1565,"parentId":1561,"tags":{},"startTime":1776320134855,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":2630,"timestamp":6713187860323,"id":1560,"parentId":1524,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776320134855,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":3021,"timestamp":6713187860414,"id":1561,"parentId":1524,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776320134855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-transform","duration":4091,"timestamp":6713187859874,"id":1559,"parentId":1558,"tags":{},"startTime":1776320134855,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":4122,"timestamp":6713187859845,"id":1558,"parentId":1551,"tags":{},"startTime":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":4702,"timestamp":6713187859657,"id":1551,"parentId":1526,"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":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":5144,"timestamp":6713187859778,"id":1555,"parentId":1554,"tags":{},"startTime":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":6941,"timestamp":6713187859767,"id":1554,"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":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":6961,"timestamp":6713187859754,"id":1553,"parentId":1552,"tags":{},"startTime":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":8571,"timestamp":6713187859741,"id":1552,"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":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":8524,"timestamp":6713187859794,"id":1557,"parentId":1556,"tags":{},"startTime":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":14671,"timestamp":6713187859784,"id":1556,"parentId":1416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776320134854,"traceId":"301cc70d0b43064f"},{"name":"add-entry","duration":701815,"timestamp":6713187173462,"id":887,"parentId":884,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776320134168,"traceId":"301cc70d0b43064f"},{"name":"build-module-css","duration":525479,"timestamp":6713187350465,"id":1306,"parentId":1228,"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":1776320134345,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":11374,"timestamp":6713187864784,"id":1569,"parentId":1568,"tags":{},"startTime":1776320134859,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":11490,"timestamp":6713187864774,"id":1568,"parentId":1521,"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":1776320134859,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":785,"timestamp":6713187875651,"id":1571,"parentId":1570,"tags":{},"startTime":1776320134870,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":42,"timestamp":6713187876441,"id":1572,"parentId":1570,"tags":{},"startTime":1776320134871,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1730,"timestamp":6713187875561,"id":1570,"parentId":1529,"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":1776320134870,"traceId":"301cc70d0b43064f"},{"name":"add-entry","duration":703952,"timestamp":6713187173355,"id":885,"parentId":884,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776320134168,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":13115,"timestamp":6713187864763,"id":1567,"parentId":1566,"tags":{},"startTime":1776320134859,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":83643,"timestamp":6713187864738,"id":1566,"parentId":1516,"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":1776320134859,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":72357,"timestamp":6713187877725,"id":1574,"parentId":1573,"tags":{},"startTime":1776320134872,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":72930,"timestamp":6713187877527,"id":1573,"parentId":1306,"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":1776320134872,"traceId":"301cc70d0b43064f"},{"name":"build-module-css","duration":653480,"timestamp":6713187301767,"id":1228,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776320134296,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":6862,"timestamp":6713187948595,"id":1576,"parentId":1575,"tags":{},"startTime":1776320134943,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":10471,"timestamp":6713187948545,"id":1575,"parentId":1568,"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":1776320134943,"traceId":"301cc70d0b43064f"},{"name":"build-module","duration":67,"timestamp":6713187959955,"id":1577,"parentId":1228,"tags":{},"startTime":1776320134955,"traceId":"301cc70d0b43064f"},{"name":"add-entry","duration":786550,"timestamp":6713187173510,"id":888,"parentId":884,"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%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&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":1776320134168,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":216,"timestamp":6713187960335,"id":1579,"parentId":1578,"tags":{},"startTime":1776320134955,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":32,"timestamp":6713187960558,"id":1580,"parentId":1578,"tags":{},"startTime":1776320134955,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":460,"timestamp":6713187960240,"id":1578,"parentId":1566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776320134955,"traceId":"301cc70d0b43064f"},{"name":"read-resource","duration":232,"timestamp":6713187961249,"id":1582,"parentId":1581,"tags":{},"startTime":1776320134956,"traceId":"301cc70d0b43064f"},{"name":"next-swc-loader","duration":37,"timestamp":6713187961484,"id":1583,"parentId":1581,"tags":{},"startTime":1776320134956,"traceId":"301cc70d0b43064f"},{"name":"build-module-js","duration":1138,"timestamp":6713187961182,"id":1581,"parentId":1578,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776320134956,"traceId":"301cc70d0b43064f"},{"name":"add-entry","duration":788921,"timestamp":6713187173448,"id":886,"parentId":884,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776320134168,"traceId":"301cc70d0b43064f"},{"name":"add-entry","duration":788852,"timestamp":6713187173520,"id":889,"parentId":884,"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":1776320134168,"traceId":"301cc70d0b43064f"},{"name":"make","duration":791129,"timestamp":6713187171257,"id":884,"parentId":883,"tags":{},"startTime":1776320134166,"traceId":"301cc70d0b43064f"},{"name":"chunk-graph","duration":1873,"timestamp":6713187965604,"id":1585,"parentId":1584,"tags":{},"startTime":1776320134960,"traceId":"301cc70d0b43064f"},{"name":"optimize-modules","duration":4,"timestamp":6713187967491,"id":1587,"parentId":1584,"tags":{},"startTime":1776320134962,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunks","duration":41,"timestamp":6713187967505,"id":1588,"parentId":1584,"tags":{},"startTime":1776320134962,"traceId":"301cc70d0b43064f"},{"name":"optimize-tree","duration":5,"timestamp":6713187967555,"id":1589,"parentId":1584,"tags":{},"startTime":1776320134962,"traceId":"301cc70d0b43064f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6713187967576,"id":1590,"parentId":1584,"tags":{},"startTime":1776320134962,"traceId":"301cc70d0b43064f"},{"name":"optimize","duration":750,"timestamp":6713187967486,"id":1586,"parentId":1584,"tags":{},"startTime":1776320134962,"traceId":"301cc70d0b43064f"},{"name":"module-hash","duration":2794,"timestamp":6713187969564,"id":1591,"parentId":1584,"tags":{},"startTime":1776320134964,"traceId":"301cc70d0b43064f"},{"name":"code-generation","duration":8008,"timestamp":6713187972371,"id":1592,"parentId":1584,"tags":{},"startTime":1776320134967,"traceId":"301cc70d0b43064f"},{"name":"hash","duration":7096,"timestamp":6713187981572,"id":1593,"parentId":1584,"tags":{},"startTime":1776320134976,"traceId":"301cc70d0b43064f"},{"name":"code-generation-jobs","duration":197,"timestamp":6713187988667,"id":1594,"parentId":1584,"tags":{},"startTime":1776320134983,"traceId":"301cc70d0b43064f"},{"name":"module-assets","duration":35,"timestamp":6713187988851,"id":1595,"parentId":1584,"tags":{},"startTime":1776320134983,"traceId":"301cc70d0b43064f"},{"name":"create-chunk-assets","duration":82088,"timestamp":6713187988890,"id":1596,"parentId":1584,"tags":{},"startTime":1776320134984,"traceId":"301cc70d0b43064f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":60,"timestamp":6713188071592,"id":1598,"parentId":883,"tags":{},"startTime":1776320135066,"traceId":"301cc70d0b43064f"},{"name":"NextJsBuildManifest-createassets","duration":259,"timestamp":6713188071397,"id":1597,"parentId":883,"tags":{},"startTime":1776320135066,"traceId":"301cc70d0b43064f"},{"name":"seal","duration":111089,"timestamp":6713187964956,"id":1584,"parentId":883,"tags":{},"startTime":1776320134960,"traceId":"301cc70d0b43064f"},{"name":"webpack-compilation","duration":905078,"timestamp":6713187171019,"id":883,"parentId":258,"tags":{"name":"client"},"startTime":1776320134166,"traceId":"301cc70d0b43064f"},{"name":"emit","duration":18786,"timestamp":6713188076118,"id":1599,"parentId":258,"tags":{},"startTime":1776320135071,"traceId":"301cc70d0b43064f"},{"name":"compile-path","duration":1450773,"timestamp":6713186644839,"id":117,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776320133639,"traceId":"301cc70d0b43064f"},{"name":"webpack-invalidated-client","duration":1299518,"timestamp":6713186796358,"id":258,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776320133791,"traceId":"301cc70d0b43064f"}] +[{"name":"hot-reloader","duration":29,"timestamp":6721893880729,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776328840917,"traceId":"6b0bec12f182cf2c"},{"name":"start","duration":1,"timestamp":6721893881216,"id":4,"parentId":3,"tags":{},"startTime":1776328840918,"traceId":"6b0bec12f182cf2c"},{"name":"get-version-info","duration":1059173,"timestamp":6721893881318,"id":5,"parentId":4,"tags":{},"startTime":1776328840918,"traceId":"6b0bec12f182cf2c"},{"name":"clean","duration":170516,"timestamp":6721894940558,"id":6,"parentId":4,"tags":{},"startTime":1776328841977,"traceId":"6b0bec12f182cf2c"},{"name":"create-pages-mapping","duration":104,"timestamp":6721895111727,"id":8,"parentId":7,"tags":{},"startTime":1776328842148,"traceId":"6b0bec12f182cf2c"},{"name":"create-entrypoints","duration":234804,"timestamp":6721895111842,"id":9,"parentId":7,"tags":{},"startTime":1776328842148,"traceId":"6b0bec12f182cf2c"},{"name":"generate-webpack-config","duration":61425,"timestamp":6721895346674,"id":10,"parentId":7,"tags":{},"startTime":1776328842383,"traceId":"6b0bec12f182cf2c"},{"name":"get-webpack-config","duration":296425,"timestamp":6721895111684,"id":7,"parentId":4,"tags":{},"startTime":1776328842148,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":527,"timestamp":6721895446845,"id":12,"parentId":11,"tags":{},"startTime":1776328842483,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":328,"timestamp":6721895448332,"id":14,"parentId":13,"tags":{},"startTime":1776328842485,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":10,"timestamp":6721895448713,"id":16,"parentId":13,"tags":{},"startTime":1776328842485,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":64,"timestamp":6721895448810,"id":17,"parentId":13,"tags":{},"startTime":1776328842485,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":9,"timestamp":6721895448910,"id":18,"parentId":13,"tags":{},"startTime":1776328842485,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":14,"timestamp":6721895449002,"id":19,"parentId":13,"tags":{},"startTime":1776328842485,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":366,"timestamp":6721895448695,"id":15,"parentId":13,"tags":{},"startTime":1776328842485,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":49,"timestamp":6721895449357,"id":20,"parentId":13,"tags":{},"startTime":1776328842486,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":70,"timestamp":6721895449416,"id":21,"parentId":13,"tags":{},"startTime":1776328842486,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":205,"timestamp":6721895449600,"id":22,"parentId":13,"tags":{},"startTime":1776328842486,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":32,"timestamp":6721895449804,"id":23,"parentId":13,"tags":{},"startTime":1776328842486,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":36,"timestamp":6721895449821,"id":24,"parentId":13,"tags":{},"startTime":1776328842486,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":121,"timestamp":6721895449861,"id":25,"parentId":13,"tags":{},"startTime":1776328842486,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-generateClientManifest","duration":831,"timestamp":6721895479659,"id":27,"parentId":11,"tags":{},"startTime":1776328842516,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-createassets","duration":1064,"timestamp":6721895479437,"id":26,"parentId":11,"tags":{},"startTime":1776328842516,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":32901,"timestamp":6721895448242,"id":13,"parentId":11,"tags":{},"startTime":1776328842485,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":36124,"timestamp":6721895445151,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776328842481,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":3049,"timestamp":6721895481480,"id":28,"parentId":3,"tags":{},"startTime":1776328842518,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":790,"timestamp":6721895488897,"id":30,"parentId":29,"tags":{},"startTime":1776328842525,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":14,"timestamp":6721895489907,"id":32,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":3,"timestamp":6721895489934,"id":34,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":30,"timestamp":6721895489965,"id":35,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":3,"timestamp":6721895490017,"id":36,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6721895490060,"id":37,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":161,"timestamp":6721895489927,"id":33,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":9,"timestamp":6721895490167,"id":38,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":4,"timestamp":6721895490180,"id":39,"parentId":31,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":29,"timestamp":6721895490223,"id":40,"parentId":31,"tags":{},"startTime":1776328842527,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":18,"timestamp":6721895490252,"id":41,"parentId":31,"tags":{},"startTime":1776328842527,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":6,"timestamp":6721895490267,"id":42,"parentId":31,"tags":{},"startTime":1776328842527,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":11,"timestamp":6721895490276,"id":43,"parentId":31,"tags":{},"startTime":1776328842527,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":849,"timestamp":6721895489855,"id":31,"parentId":29,"tags":{},"startTime":1776328842526,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":2544,"timestamp":6721895488223,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776328842525,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":2877,"timestamp":6721895490798,"id":44,"parentId":3,"tags":{},"startTime":1776328842527,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":80,"timestamp":6721895495949,"id":46,"parentId":45,"tags":{},"startTime":1776328842532,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":11,"timestamp":6721895496270,"id":48,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":2,"timestamp":6721895496289,"id":50,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":4,"timestamp":6721895496314,"id":51,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":2,"timestamp":6721895496325,"id":52,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6721895496336,"id":53,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":59,"timestamp":6721895496286,"id":49,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":3,"timestamp":6721895496392,"id":54,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":3,"timestamp":6721895496399,"id":55,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":47,"timestamp":6721895496423,"id":56,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":8,"timestamp":6721895496470,"id":57,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":3,"timestamp":6721895496476,"id":58,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":5,"timestamp":6721895496481,"id":59,"parentId":47,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":516,"timestamp":6721895496257,"id":47,"parentId":45,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":1589,"timestamp":6721895495200,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776328842531,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":520,"timestamp":6721895496806,"id":60,"parentId":3,"tags":{},"startTime":1776328842533,"traceId":"6b0bec12f182cf2c"}] +[{"name":"make","duration":173,"timestamp":6721895711195,"id":65,"parentId":64,"tags":{},"startTime":1776328842747,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":12,"timestamp":6721895711458,"id":67,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":2,"timestamp":6721895711482,"id":69,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":4,"timestamp":6721895711491,"id":70,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":2,"timestamp":6721895711501,"id":71,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6721895711510,"id":72,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":46,"timestamp":6721895711479,"id":68,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":4,"timestamp":6721895711570,"id":73,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":3,"timestamp":6721895711577,"id":74,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":24,"timestamp":6721895711594,"id":75,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":8,"timestamp":6721895711618,"id":76,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":3,"timestamp":6721895711624,"id":77,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":6,"timestamp":6721895711630,"id":78,"parentId":66,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-generateClientManifest","duration":213,"timestamp":6721895711838,"id":80,"parentId":64,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-createassets","duration":241,"timestamp":6721895711812,"id":79,"parentId":64,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":690,"timestamp":6721895711443,"id":66,"parentId":64,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":1325,"timestamp":6721895710821,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776328842747,"traceId":"6b0bec12f182cf2c"},{"name":"setup-dev-bundler","duration":1959694,"timestamp":6721893773993,"id":2,"parentId":1,"tags":{},"startTime":1776328840810,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":21994,"timestamp":6721895712160,"id":81,"parentId":61,"tags":{},"startTime":1776328842748,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-invalidated-client","duration":26514,"timestamp":6721895708180,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776328842744,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":162,"timestamp":6721895735740,"id":83,"parentId":82,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":17,"timestamp":6721895735976,"id":85,"parentId":84,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":2,"timestamp":6721895736001,"id":87,"parentId":84,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":70,"timestamp":6721895736034,"id":88,"parentId":84,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":2,"timestamp":6721895736110,"id":89,"parentId":84,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6721895736121,"id":90,"parentId":84,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":135,"timestamp":6721895735998,"id":86,"parentId":84,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":3,"timestamp":6721895736250,"id":91,"parentId":84,"tags":{},"startTime":1776328842773,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":3,"timestamp":6721895736259,"id":92,"parentId":84,"tags":{},"startTime":1776328842773,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":27,"timestamp":6721895736277,"id":93,"parentId":84,"tags":{},"startTime":1776328842773,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":8,"timestamp":6721895736304,"id":94,"parentId":84,"tags":{},"startTime":1776328842773,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":3,"timestamp":6721895736310,"id":95,"parentId":84,"tags":{},"startTime":1776328842773,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":7,"timestamp":6721895736316,"id":96,"parentId":84,"tags":{},"startTime":1776328842773,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":508,"timestamp":6721895735962,"id":84,"parentId":82,"tags":{},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":1085,"timestamp":6721895735400,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776328842772,"traceId":"6b0bec12f182cf2c"},{"name":"run-instrumentation-hook","duration":24,"timestamp":6721895752805,"id":98,"parentId":1,"tags":{},"startTime":1776328842789,"traceId":"6b0bec12f182cf2c"},{"name":"start-dev-server","duration":2234619,"timestamp":6721893523631,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"92372992","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"226689024","memory.heapTotal":"105168896","memory.heapUsed":"80709912"},"startTime":1776328840560,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":22788,"timestamp":6721895736493,"id":97,"parentId":62,"tags":{},"startTime":1776328842773,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-invalidated-server","duration":51318,"timestamp":6721895708272,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776328842745,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":272,"timestamp":6721895760778,"id":100,"parentId":99,"tags":{},"startTime":1776328842797,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":12,"timestamp":6721895761203,"id":102,"parentId":101,"tags":{},"startTime":1776328842797,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":2,"timestamp":6721895761226,"id":104,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":5,"timestamp":6721895761237,"id":105,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":2,"timestamp":6721895761249,"id":106,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6721895761261,"id":107,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":51,"timestamp":6721895761222,"id":103,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":4,"timestamp":6721895761322,"id":108,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":3,"timestamp":6721895761330,"id":109,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":26,"timestamp":6721895761349,"id":110,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":8,"timestamp":6721895761375,"id":111,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":3,"timestamp":6721895761381,"id":112,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":8,"timestamp":6721895761387,"id":113,"parentId":101,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":374,"timestamp":6721895761187,"id":101,"parentId":99,"tags":{},"startTime":1776328842797,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":1153,"timestamp":6721895760423,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776328842797,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":6280,"timestamp":6721895761585,"id":114,"parentId":63,"tags":{},"startTime":1776328842798,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-invalidated-edge-server","duration":59999,"timestamp":6721895708302,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776328842745,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module","duration":19400,"timestamp":6721895786295,"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%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1776328842823,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":38202,"timestamp":6721895817698,"id":137,"parentId":136,"tags":{},"startTime":1776328842854,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38262,"timestamp":6721895817647,"id":136,"parentId":127,"tags":{},"startTime":1776328842854,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40819,"timestamp":6721895816829,"id":127,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":41169,"timestamp":6721895817521,"id":133,"parentId":132,"tags":{},"startTime":1776328842854,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41624,"timestamp":6721895817068,"id":132,"parentId":122,"tags":{},"startTime":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":44899,"timestamp":6721895814723,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"rsc"},"startTime":1776328842851,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":42040,"timestamp":6721895817644,"id":135,"parentId":134,"tags":{},"startTime":1776328842854,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42143,"timestamp":6721895817543,"id":134,"parentId":123,"tags":{},"startTime":1776328842854,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":46885,"timestamp":6721895815851,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776328842852,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":45028,"timestamp":6721895817731,"id":139,"parentId":138,"tags":{},"startTime":1776328842854,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":45060,"timestamp":6721895817700,"id":138,"parentId":128,"tags":{},"startTime":1776328842854,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47722,"timestamp":6721895816880,"id":128,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50070,"timestamp":6721895817032,"id":129,"parentId":124,"tags":{},"startTime":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":76,"timestamp":6721895867131,"id":140,"parentId":124,"tags":{},"startTime":1776328842903,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":53844,"timestamp":6721895815962,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776328842852,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":52765,"timestamp":6721895817052,"id":130,"parentId":125,"tags":{},"startTime":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721895869828,"id":141,"parentId":125,"tags":{},"startTime":1776328842906,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":53757,"timestamp":6721895816534,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":53279,"timestamp":6721895817058,"id":131,"parentId":126,"tags":{},"startTime":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721895870346,"id":142,"parentId":126,"tags":{},"startTime":1776328842907,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":54358,"timestamp":6721895816729,"id":126,"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":1776328842853,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":277,"timestamp":6721895874356,"id":143,"parentId":126,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776328842911,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-external","duration":17,"timestamp":6721895880738,"id":149,"parentId":124,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-external","duration":7,"timestamp":6721895880775,"id":150,"parentId":124,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-external","duration":5,"timestamp":6721895880786,"id":151,"parentId":124,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2534,"timestamp":6721895881096,"id":161,"parentId":160,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2567,"timestamp":6721895881070,"id":160,"parentId":148,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3455,"timestamp":6721895880703,"id":148,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3203,"timestamp":6721895881127,"id":163,"parentId":162,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3234,"timestamp":6721895881098,"id":162,"parentId":152,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3782,"timestamp":6721895880793,"id":152,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5020,"timestamp":6721895881067,"id":159,"parentId":158,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5052,"timestamp":6721895881038,"id":158,"parentId":147,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5685,"timestamp":6721895880627,"id":147,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5286,"timestamp":6721895881035,"id":157,"parentId":156,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5401,"timestamp":6721895880920,"id":156,"parentId":146,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5933,"timestamp":6721895880524,"id":146,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5413,"timestamp":6721895881328,"id":165,"parentId":164,"tags":{},"startTime":1776328842918,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5546,"timestamp":6721895881196,"id":164,"parentId":153,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6860,"timestamp":6721895880829,"id":153,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6310,"timestamp":6721895881397,"id":169,"parentId":168,"tags":{},"startTime":1776328842918,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6331,"timestamp":6721895881377,"id":168,"parentId":155,"tags":{},"startTime":1776328842918,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6955,"timestamp":6721895880889,"id":155,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6480,"timestamp":6721895881372,"id":167,"parentId":166,"tags":{},"startTime":1776328842918,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6521,"timestamp":6721895881331,"id":166,"parentId":154,"tags":{},"startTime":1776328842918,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8135,"timestamp":6721895880855,"id":154,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11197,"timestamp":6721895880414,"id":145,"parentId":144,"tags":{},"startTime":1776328842917,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-css","duration":12087,"timestamp":6721895879796,"id":144,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776328842916,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6956,"timestamp":6721895886047,"id":174,"parentId":170,"tags":{},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":57,"timestamp":6721895893010,"id":178,"parentId":170,"tags":{},"startTime":1776328842929,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16850,"timestamp":6721895885761,"id":170,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16775,"timestamp":6721895886067,"id":176,"parentId":172,"tags":{},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721895902852,"id":179,"parentId":172,"tags":{},"startTime":1776328842939,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17185,"timestamp":6721895885914,"id":172,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17048,"timestamp":6721895886061,"id":175,"parentId":171,"tags":{},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721895903115,"id":180,"parentId":171,"tags":{},"startTime":1776328842939,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17642,"timestamp":6721895885854,"id":171,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17537,"timestamp":6721895886070,"id":177,"parentId":173,"tags":{},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721895903613,"id":181,"parentId":173,"tags":{},"startTime":1776328842940,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18427,"timestamp":6721895885963,"id":173,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776328842922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":5895,"timestamp":6721895904837,"id":183,"parentId":182,"tags":{},"startTime":1776328842941,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721895910747,"id":184,"parentId":182,"tags":{},"startTime":1776328842947,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7530,"timestamp":6721895904728,"id":182,"parentId":153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776328842941,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3427,"timestamp":6721895913748,"id":190,"parentId":187,"tags":{},"startTime":1776328842950,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721895917185,"id":201,"parentId":187,"tags":{},"startTime":1776328842953,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3895,"timestamp":6721895913669,"id":187,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776328842950,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3897,"timestamp":6721895913740,"id":189,"parentId":186,"tags":{},"startTime":1776328842950,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721895917643,"id":202,"parentId":186,"tags":{},"startTime":1776328842954,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4845,"timestamp":6721895913617,"id":186,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776328842950,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":4740,"timestamp":6721895913727,"id":188,"parentId":185,"tags":{},"startTime":1776328842950,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721895918472,"id":203,"parentId":185,"tags":{},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5141,"timestamp":6721895913524,"id":185,"parentId":127,"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":1776328842950,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1922,"timestamp":6721895919130,"id":212,"parentId":211,"tags":{},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1955,"timestamp":6721895919100,"id":211,"parentId":207,"tags":{},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2679,"timestamp":6721895918934,"id":207,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6231,"timestamp":6721895915898,"id":196,"parentId":191,"tags":{},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721895922139,"id":215,"parentId":191,"tags":{},"startTime":1776328842958,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6927,"timestamp":6721895915640,"id":191,"parentId":153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6687,"timestamp":6721895915908,"id":197,"parentId":192,"tags":{},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721895922602,"id":216,"parentId":192,"tags":{},"startTime":1776328842959,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7965,"timestamp":6721895915703,"id":192,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7751,"timestamp":6721895915924,"id":198,"parentId":193,"tags":{},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721895923681,"id":217,"parentId":193,"tags":{},"startTime":1776328842960,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10081,"timestamp":6721895915749,"id":193,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9912,"timestamp":6721895915928,"id":199,"parentId":194,"tags":{},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":40,"timestamp":6721895925846,"id":218,"parentId":194,"tags":{},"startTime":1776328842962,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11138,"timestamp":6721895915795,"id":194,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11010,"timestamp":6721895915932,"id":200,"parentId":195,"tags":{},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":78,"timestamp":6721895926964,"id":219,"parentId":195,"tags":{},"startTime":1776328842963,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11912,"timestamp":6721895915841,"id":195,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776328842952,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11065,"timestamp":6721895918981,"id":210,"parentId":206,"tags":{},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721895930053,"id":224,"parentId":206,"tags":{},"startTime":1776328842966,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11839,"timestamp":6721895918889,"id":206,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13274,"timestamp":6721895918971,"id":208,"parentId":204,"tags":{},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721895932251,"id":231,"parentId":204,"tags":{},"startTime":1776328842969,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13630,"timestamp":6721895918769,"id":204,"parentId":124,"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":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13427,"timestamp":6721895918977,"id":209,"parentId":205,"tags":{},"startTime":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721895932408,"id":232,"parentId":205,"tags":{},"startTime":1776328842969,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13721,"timestamp":6721895918838,"id":205,"parentId":128,"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":1776328842955,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12046,"timestamp":6721895920530,"id":214,"parentId":213,"tags":{},"startTime":1776328842957,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":33,"timestamp":6721895932666,"id":233,"parentId":213,"tags":{},"startTime":1776328842969,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12343,"timestamp":6721895920440,"id":213,"parentId":128,"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":1776328842957,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2332,"timestamp":6721895932166,"id":230,"parentId":229,"tags":{},"startTime":1776328842968,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2367,"timestamp":6721895932135,"id":229,"parentId":226,"tags":{},"startTime":1776328842968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":2754,"timestamp":6721895932017,"id":226,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776328842968,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2648,"timestamp":6721895932132,"id":228,"parentId":227,"tags":{},"startTime":1776328842968,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2698,"timestamp":6721895932083,"id":227,"parentId":225,"tags":{},"startTime":1776328842968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":3032,"timestamp":6721895931943,"id":225,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776328842968,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1601,"timestamp":6721895933382,"id":237,"parentId":236,"tags":{},"startTime":1776328842970,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1641,"timestamp":6721895933343,"id":236,"parentId":234,"tags":{},"startTime":1776328842970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":1897,"timestamp":6721895933191,"id":234,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776328842969,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2443,"timestamp":6721895933415,"id":239,"parentId":238,"tags":{},"startTime":1776328842970,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2476,"timestamp":6721895933384,"id":238,"parentId":235,"tags":{},"startTime":1776328842970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":2733,"timestamp":6721895933269,"id":235,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776328842970,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6582,"timestamp":6721895929425,"id":223,"parentId":221,"tags":{},"startTime":1776328842966,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721895936012,"id":240,"parentId":221,"tags":{},"startTime":1776328842972,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6795,"timestamp":6721895929322,"id":221,"parentId":123,"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":1776328842966,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6743,"timestamp":6721895929414,"id":222,"parentId":220,"tags":{},"startTime":1776328842966,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":379,"timestamp":6721895936470,"id":244,"parentId":243,"tags":{},"startTime":1776328842973,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721895936854,"id":245,"parentId":243,"tags":{},"startTime":1776328842973,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1390,"timestamp":6721895936323,"id":243,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776328842973,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1602,"timestamp":6721895936202,"id":242,"parentId":241,"tags":{},"startTime":1776328842972,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1644,"timestamp":6721895936161,"id":241,"parentId":220,"tags":{},"startTime":1776328842972,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-mjs","duration":9215,"timestamp":6721895929000,"id":220,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776328842965,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":199,"timestamp":6721895939953,"id":251,"parentId":250,"tags":{},"startTime":1776328842976,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":48,"timestamp":6721895940160,"id":252,"parentId":250,"tags":{},"startTime":1776328842976,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7695,"timestamp":6721895939897,"id":250,"parentId":193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776328842976,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8328,"timestamp":6721895939279,"id":247,"parentId":246,"tags":{},"startTime":1776328842976,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":45,"timestamp":6721895947613,"id":253,"parentId":246,"tags":{},"startTime":1776328842984,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8565,"timestamp":6721895939212,"id":246,"parentId":171,"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":1776328842976,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9793,"timestamp":6721895939616,"id":249,"parentId":248,"tags":{},"startTime":1776328842976,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721895949418,"id":254,"parentId":248,"tags":{},"startTime":1776328842986,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10140,"timestamp":6721895939559,"id":248,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776328842976,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":175893,"timestamp":6721895773865,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1776328842810,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":1311,"timestamp":6721895962817,"id":259,"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%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776328842999,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":1816,"timestamp":6721895964152,"id":260,"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%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&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":1776328843000,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":1825,"timestamp":6721895965979,"id":261,"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":1776328843002,"traceId":"6b0bec12f182cf2c"},{"name":"client-success","duration":3,"timestamp":6721895968418,"id":262,"parentId":3,"tags":{},"startTime":1776328843005,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4983,"timestamp":6721895973233,"id":265,"parentId":264,"tags":{},"startTime":1776328843010,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5087,"timestamp":6721895973133,"id":264,"parentId":263,"tags":{},"startTime":1776328843009,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":8802,"timestamp":6721895972321,"id":263,"parentId":259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"ssr"},"startTime":1776328843009,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6989,"timestamp":6721895977998,"id":281,"parentId":280,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7018,"timestamp":6721895977971,"id":280,"parentId":270,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":7972,"timestamp":6721895977534,"id":270,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7597,"timestamp":6721895977943,"id":277,"parentId":276,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7628,"timestamp":6721895977913,"id":276,"parentId":268,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":8643,"timestamp":6721895977433,"id":268,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8138,"timestamp":6721895977970,"id":279,"parentId":278,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8167,"timestamp":6721895977944,"id":278,"parentId":269,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":9045,"timestamp":6721895977485,"id":269,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8668,"timestamp":6721895977911,"id":275,"parentId":274,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8715,"timestamp":6721895977866,"id":274,"parentId":267,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":10162,"timestamp":6721895977353,"id":267,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9492,"timestamp":6721895978034,"id":287,"parentId":286,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9500,"timestamp":6721895978027,"id":286,"parentId":273,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10011,"timestamp":6721895977816,"id":273,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9828,"timestamp":6721895978017,"id":283,"parentId":282,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9846,"timestamp":6721895977999,"id":282,"parentId":271,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11922,"timestamp":6721895977581,"id":271,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7548,"timestamp":6721895981986,"id":296,"parentId":295,"tags":{},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7557,"timestamp":6721895981977,"id":295,"parentId":290,"tags":{},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7918,"timestamp":6721895981841,"id":290,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":12064,"timestamp":6721895978026,"id":285,"parentId":284,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12074,"timestamp":6721895978018,"id":284,"parentId":272,"tags":{},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14517,"timestamp":6721895977796,"id":272,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776328843014,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10373,"timestamp":6721895981964,"id":292,"parentId":291,"tags":{},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10397,"timestamp":6721895981942,"id":291,"parentId":288,"tags":{},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11114,"timestamp":6721895981766,"id":288,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11025,"timestamp":6721895981976,"id":294,"parentId":293,"tags":{},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11036,"timestamp":6721895981966,"id":293,"parentId":289,"tags":{},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12605,"timestamp":6721895981814,"id":289,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776328843018,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35,"timestamp":6721896005984,"id":298,"parentId":297,"tags":{},"startTime":1776328843042,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3637,"timestamp":6721896006076,"id":300,"parentId":299,"tags":{},"startTime":1776328843042,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3689,"timestamp":6721896006027,"id":299,"parentId":297,"tags":{},"startTime":1776328843042,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-mjs","duration":5468,"timestamp":6721896005692,"id":297,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776328843042,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":87,"timestamp":6721896011691,"id":304,"parentId":302,"tags":{},"startTime":1776328843048,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":102,"timestamp":6721896011786,"id":307,"parentId":302,"tags":{},"startTime":1776328843048,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":512,"timestamp":6721896011572,"id":302,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776328843048,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5027,"timestamp":6721896017491,"id":321,"parentId":320,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5054,"timestamp":6721896017468,"id":320,"parentId":308,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5800,"timestamp":6721896017180,"id":308,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776328843053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11254,"timestamp":6721896011743,"id":306,"parentId":305,"tags":{},"startTime":1776328843048,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11280,"timestamp":6721896011718,"id":305,"parentId":303,"tags":{},"startTime":1776328843048,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11671,"timestamp":6721896011653,"id":303,"parentId":273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776328843048,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5821,"timestamp":6721896017513,"id":325,"parentId":324,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5832,"timestamp":6721896017502,"id":324,"parentId":310,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6256,"timestamp":6721896017272,"id":310,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6007,"timestamp":6721896017529,"id":329,"parentId":328,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6015,"timestamp":6721896017522,"id":328,"parentId":312,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6393,"timestamp":6721896017313,"id":312,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6213,"timestamp":6721896017501,"id":323,"parentId":322,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6223,"timestamp":6721896017492,"id":322,"parentId":309,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6695,"timestamp":6721896017245,"id":309,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6433,"timestamp":6721896017521,"id":327,"parentId":326,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6441,"timestamp":6721896017514,"id":326,"parentId":311,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7330,"timestamp":6721896017294,"id":311,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7114,"timestamp":6721896017536,"id":331,"parentId":330,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7121,"timestamp":6721896017530,"id":330,"parentId":313,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8238,"timestamp":6721896017336,"id":313,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8039,"timestamp":6721896017550,"id":335,"parentId":334,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8046,"timestamp":6721896017544,"id":334,"parentId":315,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":8711,"timestamp":6721896017374,"id":315,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8535,"timestamp":6721896017561,"id":337,"parentId":336,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8546,"timestamp":6721896017551,"id":336,"parentId":316,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8858,"timestamp":6721896017391,"id":316,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8690,"timestamp":6721896017568,"id":339,"parentId":338,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8697,"timestamp":6721896017562,"id":338,"parentId":317,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9041,"timestamp":6721896017408,"id":317,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9094,"timestamp":6721896017543,"id":333,"parentId":332,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9101,"timestamp":6721896017537,"id":332,"parentId":314,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9625,"timestamp":6721896017353,"id":314,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9411,"timestamp":6721896017576,"id":341,"parentId":340,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9418,"timestamp":6721896017569,"id":340,"parentId":318,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9743,"timestamp":6721896017426,"id":318,"parentId":288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9665,"timestamp":6721896017583,"id":343,"parentId":342,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9672,"timestamp":6721896017577,"id":342,"parentId":319,"tags":{},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10090,"timestamp":6721896017442,"id":319,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776328843054,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3181,"timestamp":6721896029149,"id":353,"parentId":352,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3209,"timestamp":6721896029125,"id":352,"parentId":344,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4223,"timestamp":6721896028507,"id":344,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3580,"timestamp":6721896029169,"id":357,"parentId":356,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3589,"timestamp":6721896029161,"id":356,"parentId":346,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4639,"timestamp":6721896028596,"id":346,"parentId":272,"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":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4097,"timestamp":6721896029160,"id":355,"parentId":354,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4108,"timestamp":6721896029150,"id":354,"parentId":345,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4926,"timestamp":6721896028570,"id":345,"parentId":272,"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":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5090,"timestamp":6721896029184,"id":361,"parentId":360,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5098,"timestamp":6721896029178,"id":360,"parentId":348,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5870,"timestamp":6721896028635,"id":348,"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":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5344,"timestamp":6721896029177,"id":359,"parentId":358,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5352,"timestamp":6721896029170,"id":358,"parentId":347,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6434,"timestamp":6721896028616,"id":347,"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":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9108,"timestamp":6721896029210,"id":365,"parentId":364,"tags":{},"startTime":1776328843066,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9127,"timestamp":6721896029193,"id":364,"parentId":350,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9817,"timestamp":6721896028710,"id":350,"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":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9415,"timestamp":6721896029192,"id":363,"parentId":362,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9423,"timestamp":6721896029185,"id":362,"parentId":349,"tags":{},"startTime":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10221,"timestamp":6721896028652,"id":349,"parentId":272,"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":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9665,"timestamp":6721896029218,"id":367,"parentId":366,"tags":{},"startTime":1776328843066,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9678,"timestamp":6721896029211,"id":366,"parentId":351,"tags":{},"startTime":1776328843066,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10365,"timestamp":6721896028728,"id":351,"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":1776328843065,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":282,"timestamp":6721896039702,"id":375,"parentId":368,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":321,"timestamp":6721896039705,"id":376,"parentId":369,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":420,"timestamp":6721896039989,"id":387,"parentId":368,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":382,"timestamp":6721896040030,"id":388,"parentId":369,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1590,"timestamp":6721896039463,"id":368,"parentId":303,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1681,"timestamp":6721896039547,"id":369,"parentId":303,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2206,"timestamp":6721896039870,"id":378,"parentId":377,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2234,"timestamp":6721896039844,"id":377,"parentId":370,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2659,"timestamp":6721896039596,"id":370,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2368,"timestamp":6721896039896,"id":382,"parentId":381,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2377,"timestamp":6721896039888,"id":381,"parentId":372,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3045,"timestamp":6721896039640,"id":372,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2856,"timestamp":6721896039887,"id":380,"parentId":379,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2871,"timestamp":6721896039873,"id":379,"parentId":371,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3276,"timestamp":6721896039622,"id":371,"parentId":288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3049,"timestamp":6721896039907,"id":384,"parentId":383,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3060,"timestamp":6721896039897,"id":383,"parentId":373,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3460,"timestamp":6721896039657,"id":373,"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":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6203,"timestamp":6721896039916,"id":386,"parentId":385,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6215,"timestamp":6721896039908,"id":385,"parentId":374,"tags":{},"startTime":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8222,"timestamp":6721896039678,"id":374,"parentId":272,"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":1776328843076,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":415,"timestamp":6721896052235,"id":406,"parentId":391,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721896052658,"id":434,"parentId":391,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1251,"timestamp":6721896051823,"id":391,"parentId":368,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1428,"timestamp":6721896052385,"id":411,"parentId":410,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1447,"timestamp":6721896052370,"id":410,"parentId":393,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2226,"timestamp":6721896051921,"id":393,"parentId":368,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1790,"timestamp":6721896052368,"id":409,"parentId":408,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1815,"timestamp":6721896052343,"id":408,"parentId":392,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2516,"timestamp":6721896051894,"id":392,"parentId":368,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2022,"timestamp":6721896052397,"id":413,"parentId":412,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2034,"timestamp":6721896052387,"id":412,"parentId":394,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2879,"timestamp":6721896051942,"id":394,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2603,"timestamp":6721896052426,"id":419,"parentId":418,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2614,"timestamp":6721896052418,"id":418,"parentId":397,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3300,"timestamp":6721896051996,"id":397,"parentId":311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2892,"timestamp":6721896052417,"id":417,"parentId":416,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2902,"timestamp":6721896052408,"id":416,"parentId":396,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3610,"timestamp":6721896051979,"id":396,"parentId":311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3195,"timestamp":6721896052407,"id":415,"parentId":414,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3204,"timestamp":6721896052398,"id":414,"parentId":395,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4114,"timestamp":6721896051961,"id":395,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3651,"timestamp":6721896052434,"id":421,"parentId":420,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3659,"timestamp":6721896052427,"id":420,"parentId":399,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4095,"timestamp":6721896052112,"id":399,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3773,"timestamp":6721896052441,"id":423,"parentId":422,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3781,"timestamp":6721896052435,"id":422,"parentId":400,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4211,"timestamp":6721896052130,"id":400,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4706,"timestamp":6721896052477,"id":431,"parentId":430,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4716,"timestamp":6721896052470,"id":430,"parentId":404,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5535,"timestamp":6721896052198,"id":404,"parentId":346,"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":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5296,"timestamp":6721896052457,"id":427,"parentId":426,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5304,"timestamp":6721896052450,"id":426,"parentId":402,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6104,"timestamp":6721896052162,"id":402,"parentId":346,"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":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17106,"timestamp":6721896043334,"id":390,"parentId":389,"tags":{},"startTime":1776328843080,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721896060450,"id":446,"parentId":389,"tags":{},"startTime":1776328843097,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17348,"timestamp":6721896043260,"id":389,"parentId":271,"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":1776328843080,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8192,"timestamp":6721896052449,"id":425,"parentId":424,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8200,"timestamp":6721896052442,"id":424,"parentId":401,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8946,"timestamp":6721896052146,"id":401,"parentId":313,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8651,"timestamp":6721896052469,"id":429,"parentId":428,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":8745,"timestamp":6721896052458,"id":428,"parentId":403,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9735,"timestamp":6721896052179,"id":403,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8176,"timestamp":6721896053754,"id":445,"parentId":444,"tags":{},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8186,"timestamp":6721896053744,"id":444,"parentId":438,"tags":{},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8597,"timestamp":6721896053659,"id":438,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9860,"timestamp":6721896052485,"id":433,"parentId":432,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9869,"timestamp":6721896052478,"id":432,"parentId":405,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10646,"timestamp":6721896052213,"id":405,"parentId":346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11773,"timestamp":6721896053722,"id":441,"parentId":440,"tags":{},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11814,"timestamp":6721896053687,"id":440,"parentId":436,"tags":{},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12121,"timestamp":6721896053602,"id":436,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11992,"timestamp":6721896053742,"id":443,"parentId":442,"tags":{},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12008,"timestamp":6721896053727,"id":442,"parentId":437,"tags":{},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12367,"timestamp":6721896053629,"id":437,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17173,"timestamp":6721896052238,"id":407,"parentId":398,"tags":{},"startTime":1776328843089,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721896069418,"id":459,"parentId":398,"tags":{},"startTime":1776328843106,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17693,"timestamp":6721896052013,"id":398,"parentId":319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776328843088,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":61,"timestamp":6721896070602,"id":461,"parentId":460,"tags":{},"startTime":1776328843107,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":88,"timestamp":6721896070668,"id":462,"parentId":460,"tags":{},"startTime":1776328843107,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":391,"timestamp":6721896070526,"id":460,"parentId":389,"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":1776328843107,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3559,"timestamp":6721896067818,"id":456,"parentId":455,"tags":{},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3586,"timestamp":6721896067793,"id":455,"parentId":450,"tags":{},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4122,"timestamp":6721896067685,"id":450,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3992,"timestamp":6721896067831,"id":458,"parentId":457,"tags":{},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4003,"timestamp":6721896067821,"id":457,"parentId":451,"tags":{},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4548,"timestamp":6721896067710,"id":451,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19015,"timestamp":6721896053681,"id":439,"parentId":435,"tags":{},"startTime":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721896072701,"id":463,"parentId":435,"tags":{},"startTime":1776328843109,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19292,"timestamp":6721896053522,"id":435,"parentId":263,"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":1776328843090,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1989,"timestamp":6721896074137,"id":481,"parentId":480,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2003,"timestamp":6721896074127,"id":480,"parentId":469,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2881,"timestamp":6721896073543,"id":469,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2628,"timestamp":6721896074146,"id":483,"parentId":482,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2638,"timestamp":6721896074138,"id":482,"parentId":470,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3371,"timestamp":6721896073562,"id":470,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2883,"timestamp":6721896074095,"id":477,"parentId":476,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2955,"timestamp":6721896074024,"id":476,"parentId":465,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":4371,"timestamp":6721896073348,"id":465,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3886,"timestamp":6721896074154,"id":485,"parentId":484,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3895,"timestamp":6721896074147,"id":484,"parentId":471,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4634,"timestamp":6721896073579,"id":471,"parentId":395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10463,"timestamp":6721896067756,"id":454,"parentId":449,"tags":{},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721896078224,"id":495,"parentId":449,"tags":{},"startTime":1776328843115,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10973,"timestamp":6721896067641,"id":449,"parentId":351,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10885,"timestamp":6721896067735,"id":452,"parentId":447,"tags":{},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721896078628,"id":496,"parentId":447,"tags":{},"startTime":1776328843115,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11225,"timestamp":6721896067498,"id":447,"parentId":273,"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":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10988,"timestamp":6721896067749,"id":453,"parentId":448,"tags":{},"startTime":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721896078741,"id":497,"parentId":448,"tags":{},"startTime":1776328843115,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11222,"timestamp":6721896067591,"id":448,"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":1776328843104,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4859,"timestamp":6721896074022,"id":475,"parentId":474,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4904,"timestamp":6721896073977,"id":474,"parentId":464,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":6772,"timestamp":6721896073232,"id":464,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5979,"timestamp":6721896074126,"id":479,"parentId":478,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6010,"timestamp":6721896074096,"id":478,"parentId":466,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":8120,"timestamp":6721896073424,"id":466,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7333,"timestamp":6721896076648,"id":494,"parentId":493,"tags":{},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7354,"timestamp":6721896076639,"id":493,"parentId":488,"tags":{},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7771,"timestamp":6721896076547,"id":488,"parentId":403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7691,"timestamp":6721896076638,"id":492,"parentId":491,"tags":{},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7702,"timestamp":6721896076628,"id":491,"parentId":487,"tags":{},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8045,"timestamp":6721896076521,"id":487,"parentId":401,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7951,"timestamp":6721896076626,"id":490,"parentId":489,"tags":{},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7971,"timestamp":6721896076608,"id":489,"parentId":486,"tags":{},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8348,"timestamp":6721896076467,"id":486,"parentId":404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776328843113,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2687,"timestamp":6721896083671,"id":514,"parentId":513,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2697,"timestamp":6721896083663,"id":513,"parentId":501,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3840,"timestamp":6721896082906,"id":501,"parentId":374,"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":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3135,"timestamp":6721896083651,"id":510,"parentId":509,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3169,"timestamp":6721896083618,"id":509,"parentId":499,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":4693,"timestamp":6721896082818,"id":499,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3927,"timestamp":6721896083616,"id":508,"parentId":507,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3966,"timestamp":6721896083577,"id":507,"parentId":498,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":5080,"timestamp":6721896082751,"id":498,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4184,"timestamp":6721896083662,"id":512,"parentId":511,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4195,"timestamp":6721896083652,"id":511,"parentId":500,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6212,"timestamp":6721896082863,"id":500,"parentId":374,"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":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5396,"timestamp":6721896083696,"id":518,"parentId":517,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5412,"timestamp":6721896083681,"id":517,"parentId":503,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6268,"timestamp":6721896082943,"id":503,"parentId":374,"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":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7633,"timestamp":6721896083680,"id":516,"parentId":515,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7642,"timestamp":6721896083672,"id":515,"parentId":502,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8684,"timestamp":6721896082925,"id":502,"parentId":374,"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":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8030,"timestamp":6721896083722,"id":524,"parentId":523,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8038,"timestamp":6721896083715,"id":523,"parentId":506,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8912,"timestamp":6721896082992,"id":506,"parentId":397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18404,"timestamp":6721896073650,"id":472,"parentId":467,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721896092058,"id":530,"parentId":467,"tags":{},"startTime":1776328843128,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18721,"timestamp":6721896073466,"id":467,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18530,"timestamp":6721896073661,"id":473,"parentId":468,"tags":{},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721896092193,"id":531,"parentId":468,"tags":{},"startTime":1776328843128,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18879,"timestamp":6721896073505,"id":468,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776328843110,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8802,"timestamp":6721896083714,"id":522,"parentId":521,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8811,"timestamp":6721896083706,"id":521,"parentId":505,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9892,"timestamp":6721896082975,"id":505,"parentId":374,"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":1776328843119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7025,"timestamp":6721896085859,"id":527,"parentId":526,"tags":{},"startTime":1776328843122,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7074,"timestamp":6721896085812,"id":526,"parentId":525,"tags":{},"startTime":1776328843122,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":7623,"timestamp":6721896085534,"id":525,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776328843122,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9465,"timestamp":6721896083705,"id":520,"parentId":519,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9473,"timestamp":6721896083697,"id":519,"parentId":504,"tags":{},"startTime":1776328843120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10553,"timestamp":6721896082959,"id":504,"parentId":374,"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":1776328843119,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":14233,"timestamp":6721896089487,"id":529,"parentId":528,"tags":{},"startTime":1776328843126,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":83,"timestamp":6721896103735,"id":538,"parentId":528,"tags":{},"startTime":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14601,"timestamp":6721896089344,"id":528,"parentId":347,"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":1776328843126,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1599,"timestamp":6721896104621,"id":560,"parentId":559,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1623,"timestamp":6721896104598,"id":559,"parentId":539,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2505,"timestamp":6721896104014,"id":539,"parentId":449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1898,"timestamp":6721896104632,"id":562,"parentId":561,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1909,"timestamp":6721896104623,"id":561,"parentId":540,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2700,"timestamp":6721896104049,"id":540,"parentId":451,"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":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3485,"timestamp":6721896104641,"id":564,"parentId":563,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3495,"timestamp":6721896104633,"id":563,"parentId":541,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4516,"timestamp":6721896104068,"id":541,"parentId":451,"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":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3950,"timestamp":6721896104666,"id":570,"parentId":569,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3958,"timestamp":6721896104659,"id":569,"parentId":544,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4801,"timestamp":6721896104121,"id":544,"parentId":451,"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":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4282,"timestamp":6721896104658,"id":568,"parentId":567,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4291,"timestamp":6721896104650,"id":567,"parentId":543,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5310,"timestamp":6721896104103,"id":543,"parentId":451,"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":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4761,"timestamp":6721896104675,"id":572,"parentId":571,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4769,"timestamp":6721896104667,"id":571,"parentId":545,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5830,"timestamp":6721896104138,"id":545,"parentId":451,"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":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5299,"timestamp":6721896104682,"id":574,"parentId":573,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5307,"timestamp":6721896104675,"id":573,"parentId":546,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5985,"timestamp":6721896104231,"id":546,"parentId":451,"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":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11258,"timestamp":6721896104693,"id":576,"parentId":575,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11270,"timestamp":6721896104684,"id":575,"parentId":548,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12091,"timestamp":6721896104286,"id":548,"parentId":486,"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":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11695,"timestamp":6721896104701,"id":578,"parentId":577,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11703,"timestamp":6721896104694,"id":577,"parentId":549,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12499,"timestamp":6721896104305,"id":549,"parentId":488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":12189,"timestamp":6721896104649,"id":566,"parentId":565,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12198,"timestamp":6721896104642,"id":565,"parentId":542,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13736,"timestamp":6721896104086,"id":542,"parentId":451,"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":1776328843140,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13118,"timestamp":6721896104724,"id":584,"parentId":583,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13125,"timestamp":6721896104717,"id":583,"parentId":552,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13806,"timestamp":6721896104357,"id":552,"parentId":487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13448,"timestamp":6721896104731,"id":586,"parentId":585,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13456,"timestamp":6721896104724,"id":585,"parentId":553,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14220,"timestamp":6721896104373,"id":553,"parentId":487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13888,"timestamp":6721896104716,"id":582,"parentId":581,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13896,"timestamp":6721896104709,"id":581,"parentId":551,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14560,"timestamp":6721896104339,"id":551,"parentId":487,"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":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14211,"timestamp":6721896104708,"id":580,"parentId":579,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14219,"timestamp":6721896104701,"id":579,"parentId":550,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15441,"timestamp":6721896104320,"id":550,"parentId":487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15035,"timestamp":6721896104738,"id":588,"parentId":587,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15042,"timestamp":6721896104732,"id":587,"parentId":554,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15834,"timestamp":6721896104389,"id":554,"parentId":487,"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":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15629,"timestamp":6721896104796,"id":594,"parentId":593,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15655,"timestamp":6721896104772,"id":593,"parentId":557,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":16342,"timestamp":6721896104455,"id":557,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16072,"timestamp":6721896104745,"id":590,"parentId":589,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16079,"timestamp":6721896104739,"id":589,"parentId":555,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17020,"timestamp":6721896104404,"id":555,"parentId":487,"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":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16687,"timestamp":6721896104771,"id":592,"parentId":591,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16713,"timestamp":6721896104746,"id":591,"parentId":556,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":17815,"timestamp":6721896104420,"id":556,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17042,"timestamp":6721896105466,"id":599,"parentId":598,"tags":{},"startTime":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17056,"timestamp":6721896105453,"id":598,"parentId":595,"tags":{},"startTime":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17464,"timestamp":6721896105371,"id":595,"parentId":502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17370,"timestamp":6721896105475,"id":601,"parentId":600,"tags":{},"startTime":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17378,"timestamp":6721896105467,"id":600,"parentId":596,"tags":{},"startTime":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17654,"timestamp":6721896105401,"id":596,"parentId":504,"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":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17581,"timestamp":6721896105483,"id":603,"parentId":602,"tags":{},"startTime":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17589,"timestamp":6721896105476,"id":602,"parentId":597,"tags":{},"startTime":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17898,"timestamp":6721896105419,"id":597,"parentId":502,"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":1776328843142,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24665,"timestamp":6721896102919,"id":535,"parentId":532,"tags":{},"startTime":1776328843139,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721896127593,"id":608,"parentId":532,"tags":{},"startTime":1776328843164,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24997,"timestamp":6721896102759,"id":532,"parentId":290,"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":1776328843139,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24834,"timestamp":6721896102928,"id":536,"parentId":533,"tags":{},"startTime":1776328843139,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721896127767,"id":609,"parentId":533,"tags":{},"startTime":1776328843164,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25045,"timestamp":6721896102825,"id":533,"parentId":272,"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":1776328843139,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24915,"timestamp":6721896102960,"id":537,"parentId":534,"tags":{},"startTime":1776328843139,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721896127879,"id":610,"parentId":534,"tags":{},"startTime":1776328843164,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25084,"timestamp":6721896102871,"id":534,"parentId":311,"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":1776328843139,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26956,"timestamp":6721896104495,"id":558,"parentId":547,"tags":{},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721896131458,"id":611,"parentId":547,"tags":{},"startTime":1776328843168,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27630,"timestamp":6721896104247,"id":547,"parentId":290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776328843141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25908,"timestamp":6721896106991,"id":606,"parentId":604,"tags":{},"startTime":1776328843143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721896132904,"id":612,"parentId":604,"tags":{},"startTime":1776328843169,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26192,"timestamp":6721896106868,"id":604,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776328843143,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26075,"timestamp":6721896106997,"id":607,"parentId":605,"tags":{},"startTime":1776328843143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721896133076,"id":613,"parentId":605,"tags":{},"startTime":1776328843169,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26259,"timestamp":6721896106921,"id":605,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776328843143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3644,"timestamp":6721896135727,"id":616,"parentId":615,"tags":{},"startTime":1776328843172,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3674,"timestamp":6721896135699,"id":615,"parentId":614,"tags":{},"startTime":1776328843172,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4118,"timestamp":6721896135542,"id":614,"parentId":541,"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":1776328843172,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1516,"timestamp":6721896139015,"id":631,"parentId":630,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1529,"timestamp":6721896139004,"id":630,"parentId":618,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1964,"timestamp":6721896138723,"id":618,"parentId":542,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1693,"timestamp":6721896139003,"id":629,"parentId":628,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1725,"timestamp":6721896138971,"id":628,"parentId":617,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2277,"timestamp":6721896138657,"id":617,"parentId":548,"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":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1907,"timestamp":6721896139037,"id":635,"parentId":634,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1919,"timestamp":6721896139025,"id":634,"parentId":620,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2352,"timestamp":6721896138780,"id":620,"parentId":553,"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":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2657,"timestamp":6721896139045,"id":637,"parentId":636,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2667,"timestamp":6721896139038,"id":636,"parentId":621,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3346,"timestamp":6721896138809,"id":621,"parentId":553,"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":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3105,"timestamp":6721896139061,"id":641,"parentId":640,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3113,"timestamp":6721896139054,"id":640,"parentId":623,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":3584,"timestamp":6721896138849,"id":623,"parentId":553,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3402,"timestamp":6721896139053,"id":639,"parentId":638,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3410,"timestamp":6721896139046,"id":638,"parentId":622,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3893,"timestamp":6721896138828,"id":622,"parentId":553,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4048,"timestamp":6721896139077,"id":645,"parentId":644,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4056,"timestamp":6721896139070,"id":644,"parentId":625,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4424,"timestamp":6721896138883,"id":625,"parentId":550,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4232,"timestamp":6721896139088,"id":647,"parentId":646,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4244,"timestamp":6721896139078,"id":646,"parentId":626,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4813,"timestamp":6721896138903,"id":626,"parentId":550,"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":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5558,"timestamp":6721896139069,"id":643,"parentId":642,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5567,"timestamp":6721896139062,"id":642,"parentId":624,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6033,"timestamp":6721896138866,"id":624,"parentId":550,"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":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5820,"timestamp":6721896139096,"id":649,"parentId":648,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5828,"timestamp":6721896139089,"id":648,"parentId":627,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6206,"timestamp":6721896138919,"id":627,"parentId":542,"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":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6148,"timestamp":6721896139024,"id":633,"parentId":632,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6156,"timestamp":6721896139016,"id":632,"parentId":619,"tags":{},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10047,"timestamp":6721896138755,"id":619,"parentId":552,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776328843175,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8433,"timestamp":6721896140421,"id":659,"parentId":658,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8451,"timestamp":6721896140405,"id":658,"parentId":650,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8847,"timestamp":6721896140202,"id":650,"parentId":539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776328843176,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9733,"timestamp":6721896140440,"id":663,"parentId":662,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9743,"timestamp":6721896140432,"id":662,"parentId":652,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10131,"timestamp":6721896140253,"id":652,"parentId":545,"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":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9960,"timestamp":6721896140431,"id":661,"parentId":660,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9969,"timestamp":6721896140423,"id":660,"parentId":651,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10331,"timestamp":6721896140232,"id":651,"parentId":545,"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":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10108,"timestamp":6721896140463,"id":669,"parentId":668,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10115,"timestamp":6721896140457,"id":668,"parentId":656,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10340,"timestamp":6721896140369,"id":656,"parentId":596,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10267,"timestamp":6721896140448,"id":665,"parentId":664,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10275,"timestamp":6721896140441,"id":664,"parentId":653,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10569,"timestamp":6721896140270,"id":653,"parentId":545,"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":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9560,"timestamp":6721896141640,"id":673,"parentId":672,"tags":{},"startTime":1776328843178,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9582,"timestamp":6721896141620,"id":672,"parentId":670,"tags":{},"startTime":1776328843178,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9985,"timestamp":6721896141481,"id":670,"parentId":542,"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":1776328843178,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11207,"timestamp":6721896140456,"id":667,"parentId":666,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11215,"timestamp":6721896140449,"id":666,"parentId":654,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11561,"timestamp":6721896140291,"id":654,"parentId":545,"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":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10233,"timestamp":6721896141652,"id":675,"parentId":674,"tags":{},"startTime":1776328843178,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10244,"timestamp":6721896141642,"id":674,"parentId":671,"tags":{},"startTime":1776328843178,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10949,"timestamp":6721896141525,"id":671,"parentId":542,"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":1776328843178,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3730,"timestamp":6721896152975,"id":678,"parentId":677,"tags":{},"startTime":1776328843189,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3755,"timestamp":6721896152952,"id":677,"parentId":676,"tags":{},"startTime":1776328843189,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5225,"timestamp":6721896152780,"id":676,"parentId":605,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776328843189,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17756,"timestamp":6721896140389,"id":657,"parentId":655,"tags":{},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721896158152,"id":679,"parentId":655,"tags":{},"startTime":1776328843194,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18166,"timestamp":6721896140330,"id":655,"parentId":595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776328843177,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2361,"timestamp":6721896159136,"id":682,"parentId":681,"tags":{},"startTime":1776328843195,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2385,"timestamp":6721896159114,"id":681,"parentId":680,"tags":{},"startTime":1776328843195,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2810,"timestamp":6721896159003,"id":680,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776328843195,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3250,"timestamp":6721896162936,"id":685,"parentId":684,"tags":{},"startTime":1776328843199,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3288,"timestamp":6721896162910,"id":684,"parentId":683,"tags":{},"startTime":1776328843199,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4050,"timestamp":6721896162831,"id":683,"parentId":627,"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":1776328843199,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3293,"timestamp":6721896164771,"id":688,"parentId":687,"tags":{},"startTime":1776328843201,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3314,"timestamp":6721896164752,"id":687,"parentId":686,"tags":{},"startTime":1776328843201,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3653,"timestamp":6721896164689,"id":686,"parentId":671,"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":1776328843201,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2172,"timestamp":6721896167086,"id":695,"parentId":694,"tags":{},"startTime":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2187,"timestamp":6721896167073,"id":694,"parentId":690,"tags":{},"startTime":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2479,"timestamp":6721896166966,"id":690,"parentId":541,"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":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2382,"timestamp":6721896167071,"id":693,"parentId":692,"tags":{},"startTime":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2399,"timestamp":6721896167055,"id":692,"parentId":689,"tags":{},"startTime":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2637,"timestamp":6721896166931,"id":689,"parentId":541,"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":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2579,"timestamp":6721896167095,"id":697,"parentId":696,"tags":{},"startTime":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2588,"timestamp":6721896167087,"id":696,"parentId":691,"tags":{},"startTime":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3106,"timestamp":6721896166988,"id":691,"parentId":545,"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":1776328843203,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2535,"timestamp":6721896168997,"id":715,"parentId":714,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2544,"timestamp":6721896168989,"id":714,"parentId":701,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3178,"timestamp":6721896168592,"id":701,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2799,"timestamp":6721896168978,"id":711,"parentId":710,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2811,"timestamp":6721896168966,"id":710,"parentId":699,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3391,"timestamp":6721896168535,"id":699,"parentId":542,"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":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2983,"timestamp":6721896168964,"id":709,"parentId":708,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3022,"timestamp":6721896168926,"id":708,"parentId":698,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":3744,"timestamp":6721896168455,"id":698,"parentId":465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3225,"timestamp":6721896168988,"id":713,"parentId":712,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3234,"timestamp":6721896168979,"id":712,"parentId":700,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4060,"timestamp":6721896168562,"id":700,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3614,"timestamp":6721896169016,"id":719,"parentId":718,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3622,"timestamp":6721896169009,"id":718,"parentId":703,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4134,"timestamp":6721896168671,"id":703,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3780,"timestamp":6721896169033,"id":723,"parentId":722,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3788,"timestamp":6721896169025,"id":722,"parentId":705,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4193,"timestamp":6721896168724,"id":705,"parentId":655,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3924,"timestamp":6721896169008,"id":717,"parentId":716,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3934,"timestamp":6721896168998,"id":716,"parentId":702,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4767,"timestamp":6721896168613,"id":702,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4498,"timestamp":6721896169024,"id":721,"parentId":720,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4507,"timestamp":6721896169017,"id":720,"parentId":704,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5339,"timestamp":6721896168703,"id":704,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5013,"timestamp":6721896169040,"id":725,"parentId":724,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5020,"timestamp":6721896169033,"id":724,"parentId":706,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5447,"timestamp":6721896168743,"id":706,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6877,"timestamp":6721896169047,"id":727,"parentId":726,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6886,"timestamp":6721896169041,"id":726,"parentId":707,"tags":{},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7606,"timestamp":6721896168761,"id":707,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776328843205,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5638,"timestamp":6721896170746,"id":734,"parentId":733,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5655,"timestamp":6721896170730,"id":733,"parentId":728,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6158,"timestamp":6721896170358,"id":728,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5768,"timestamp":6721896170756,"id":736,"parentId":735,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":5872,"timestamp":6721896170747,"id":735,"parentId":729,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6381,"timestamp":6721896170402,"id":729,"parentId":541,"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":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6107,"timestamp":6721896170764,"id":738,"parentId":737,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6116,"timestamp":6721896170757,"id":737,"parentId":730,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6577,"timestamp":6721896170424,"id":730,"parentId":541,"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":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6226,"timestamp":6721896170781,"id":742,"parentId":741,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6234,"timestamp":6721896170774,"id":741,"parentId":732,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6674,"timestamp":6721896170462,"id":732,"parentId":545,"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":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6373,"timestamp":6721896170773,"id":740,"parentId":739,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6381,"timestamp":6721896170765,"id":739,"parentId":731,"tags":{},"startTime":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6961,"timestamp":6721896170443,"id":731,"parentId":543,"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":1776328843207,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1114,"timestamp":6721896184186,"id":755,"parentId":754,"tags":{},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1148,"timestamp":6721896184155,"id":754,"parentId":745,"tags":{},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1650,"timestamp":6721896183898,"id":745,"parentId":691,"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":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1386,"timestamp":6721896184207,"id":759,"parentId":758,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1395,"timestamp":6721896184199,"id":758,"parentId":747,"tags":{},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1873,"timestamp":6721896183971,"id":747,"parentId":689,"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":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1635,"timestamp":6721896184219,"id":761,"parentId":760,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1644,"timestamp":6721896184211,"id":760,"parentId":748,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2088,"timestamp":6721896183992,"id":748,"parentId":691,"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":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3617,"timestamp":6721896184198,"id":757,"parentId":756,"tags":{},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3629,"timestamp":6721896184188,"id":756,"parentId":746,"tags":{},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4330,"timestamp":6721896183943,"id":746,"parentId":690,"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":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4030,"timestamp":6721896184254,"id":767,"parentId":766,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4037,"timestamp":6721896184247,"id":766,"parentId":751,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4327,"timestamp":6721896184055,"id":751,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4153,"timestamp":6721896184237,"id":763,"parentId":762,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4170,"timestamp":6721896184220,"id":762,"parentId":749,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4558,"timestamp":6721896184018,"id":749,"parentId":702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4403,"timestamp":6721896184261,"id":769,"parentId":768,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4410,"timestamp":6721896184255,"id":768,"parentId":752,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4801,"timestamp":6721896184078,"id":752,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3918,"timestamp":6721896184968,"id":785,"parentId":784,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3930,"timestamp":6721896184957,"id":784,"parentId":773,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4289,"timestamp":6721896184753,"id":773,"parentId":729,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4806,"timestamp":6721896184246,"id":765,"parentId":764,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4815,"timestamp":6721896184238,"id":764,"parentId":750,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5239,"timestamp":6721896184038,"id":750,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4331,"timestamp":6721896184955,"id":783,"parentId":782,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4354,"timestamp":6721896184933,"id":782,"parentId":772,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4952,"timestamp":6721896184679,"id":772,"parentId":731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9041,"timestamp":6721896184270,"id":771,"parentId":770,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9051,"timestamp":6721896184262,"id":770,"parentId":753,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9775,"timestamp":6721896184103,"id":753,"parentId":699,"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":1776328843220,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8903,"timestamp":6721896184993,"id":791,"parentId":790,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8911,"timestamp":6721896184986,"id":790,"parentId":776,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9309,"timestamp":6721896184819,"id":776,"parentId":729,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9155,"timestamp":6721896184985,"id":789,"parentId":788,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9163,"timestamp":6721896184978,"id":788,"parentId":775,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9492,"timestamp":6721896184800,"id":775,"parentId":729,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9330,"timestamp":6721896184977,"id":787,"parentId":786,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9339,"timestamp":6721896184969,"id":786,"parentId":774,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9788,"timestamp":6721896184779,"id":774,"parentId":729,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9535,"timestamp":6721896185040,"id":795,"parentId":794,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9557,"timestamp":6721896185019,"id":794,"parentId":778,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9856,"timestamp":6721896184856,"id":778,"parentId":730,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9717,"timestamp":6721896185001,"id":793,"parentId":792,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9724,"timestamp":6721896184994,"id":792,"parentId":777,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10003,"timestamp":6721896184838,"id":777,"parentId":729,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11329,"timestamp":6721896185053,"id":797,"parentId":796,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11341,"timestamp":6721896185042,"id":796,"parentId":779,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11849,"timestamp":6721896184873,"id":779,"parentId":730,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11668,"timestamp":6721896185062,"id":799,"parentId":798,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11676,"timestamp":6721896185054,"id":798,"parentId":780,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11962,"timestamp":6721896184895,"id":780,"parentId":732,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11793,"timestamp":6721896185070,"id":801,"parentId":800,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11801,"timestamp":6721896185063,"id":800,"parentId":781,"tags":{},"startTime":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12147,"timestamp":6721896184912,"id":781,"parentId":732,"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":1776328843221,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19424,"timestamp":6721896182480,"id":744,"parentId":743,"tags":{},"startTime":1776328843219,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721896201913,"id":802,"parentId":743,"tags":{},"startTime":1776328843238,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20142,"timestamp":6721896182384,"id":743,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776328843219,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1370,"timestamp":6721896205136,"id":823,"parentId":822,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1384,"timestamp":6721896205124,"id":822,"parentId":813,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1839,"timestamp":6721896204993,"id":813,"parentId":747,"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":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1737,"timestamp":6721896205144,"id":825,"parentId":824,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1746,"timestamp":6721896205137,"id":824,"parentId":814,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2138,"timestamp":6721896205012,"id":814,"parentId":748,"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":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2051,"timestamp":6721896205111,"id":819,"parentId":818,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2081,"timestamp":6721896205082,"id":818,"parentId":811,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2463,"timestamp":6721896204932,"id":811,"parentId":748,"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":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3010,"timestamp":6721896205152,"id":827,"parentId":826,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3017,"timestamp":6721896205145,"id":826,"parentId":815,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3308,"timestamp":6721896205029,"id":815,"parentId":752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3187,"timestamp":6721896205159,"id":829,"parentId":828,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3194,"timestamp":6721896205152,"id":828,"parentId":816,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3685,"timestamp":6721896205047,"id":816,"parentId":746,"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":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3972,"timestamp":6721896205167,"id":831,"parentId":830,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3979,"timestamp":6721896205160,"id":830,"parentId":817,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4685,"timestamp":6721896205064,"id":817,"parentId":752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7273,"timestamp":6721896203666,"id":807,"parentId":804,"tags":{},"startTime":1776328843240,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721896210947,"id":832,"parentId":804,"tags":{},"startTime":1776328843247,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7604,"timestamp":6721896203556,"id":804,"parentId":549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776328843240,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7512,"timestamp":6721896203654,"id":806,"parentId":803,"tags":{},"startTime":1776328843240,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721896211169,"id":833,"parentId":803,"tags":{},"startTime":1776328843247,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7826,"timestamp":6721896203464,"id":803,"parentId":541,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776328843240,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7654,"timestamp":6721896203670,"id":808,"parentId":805,"tags":{},"startTime":1776328843240,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":23,"timestamp":6721896211327,"id":834,"parentId":805,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7828,"timestamp":6721896203601,"id":805,"parentId":549,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776328843240,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7217,"timestamp":6721896204832,"id":810,"parentId":809,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721896212052,"id":844,"parentId":809,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7449,"timestamp":6721896204757,"id":809,"parentId":676,"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":1776328843241,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":100,"timestamp":6721896212538,"id":846,"parentId":845,"tags":{},"startTime":1776328843249,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721896212642,"id":847,"parentId":845,"tags":{},"startTime":1776328843249,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":651,"timestamp":6721896212451,"id":845,"parentId":817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776328843249,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1400,"timestamp":6721896211716,"id":841,"parentId":840,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1411,"timestamp":6721896211706,"id":840,"parentId":836,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1674,"timestamp":6721896211545,"id":836,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1546,"timestamp":6721896211704,"id":839,"parentId":838,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1650,"timestamp":6721896211601,"id":838,"parentId":835,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1853,"timestamp":6721896211501,"id":835,"parentId":691,"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":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1795,"timestamp":6721896211725,"id":843,"parentId":842,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1804,"timestamp":6721896211717,"id":842,"parentId":837,"tags":{},"startTime":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2109,"timestamp":6721896211568,"id":837,"parentId":774,"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":1776328843248,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":876,"timestamp":6721896213904,"id":850,"parentId":849,"tags":{},"startTime":1776328843250,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":900,"timestamp":6721896213881,"id":849,"parentId":848,"tags":{},"startTime":1776328843250,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1206,"timestamp":6721896213792,"id":848,"parentId":814,"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":1776328843250,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1196,"timestamp":6721896214721,"id":853,"parentId":852,"tags":{},"startTime":1776328843251,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1213,"timestamp":6721896214706,"id":852,"parentId":851,"tags":{},"startTime":1776328843251,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1486,"timestamp":6721896214675,"id":851,"parentId":817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776328843251,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":727,"timestamp":6721896216348,"id":860,"parentId":859,"tags":{},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":738,"timestamp":6721896216339,"id":859,"parentId":855,"tags":{},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":991,"timestamp":6721896216275,"id":855,"parentId":836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1563,"timestamp":6721896216338,"id":858,"parentId":857,"tags":{},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1584,"timestamp":6721896216320,"id":857,"parentId":854,"tags":{},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2267,"timestamp":6721896216228,"id":854,"parentId":836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2203,"timestamp":6721896216357,"id":862,"parentId":861,"tags":{},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2212,"timestamp":6721896216349,"id":861,"parentId":856,"tags":{},"startTime":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2706,"timestamp":6721896216298,"id":856,"parentId":835,"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":1776328843253,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16502,"timestamp":6721896205123,"id":821,"parentId":820,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16513,"timestamp":6721896205114,"id":820,"parentId":812,"tags":{},"startTime":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22406,"timestamp":6721896204970,"id":812,"parentId":747,"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":1776328843241,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":320,"timestamp":6721896227945,"id":864,"parentId":863,"tags":{},"startTime":1776328843264,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721896228271,"id":865,"parentId":863,"tags":{},"startTime":1776328843265,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1733,"timestamp":6721896227869,"id":863,"parentId":746,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776328843264,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":390,"timestamp":6721896230495,"id":867,"parentId":866,"tags":{},"startTime":1776328843267,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721896230890,"id":870,"parentId":866,"tags":{},"startTime":1776328843267,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":835,"timestamp":6721896230392,"id":866,"parentId":812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776328843267,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":686,"timestamp":6721896230633,"id":869,"parentId":868,"tags":{},"startTime":1776328843267,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":58,"timestamp":6721896231326,"id":871,"parentId":868,"tags":{},"startTime":1776328843268,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3595,"timestamp":6721896230541,"id":868,"parentId":812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776328843267,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":462944,"timestamp":6721895772752,"id":119,"parentId":118,"tags":{},"startTime":1776328842809,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":2858,"timestamp":6721896241535,"id":873,"parentId":872,"tags":{},"startTime":1776328843278,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":3,"timestamp":6721896244424,"id":875,"parentId":872,"tags":{},"startTime":1776328843281,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":2450,"timestamp":6721896244437,"id":876,"parentId":872,"tags":{},"startTime":1776328843281,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":4,"timestamp":6721896246907,"id":877,"parentId":872,"tags":{},"startTime":1776328843283,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6721896246924,"id":878,"parentId":872,"tags":{},"startTime":1776328843283,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":3108,"timestamp":6721896244402,"id":874,"parentId":872,"tags":{},"startTime":1776328843281,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":4109,"timestamp":6721896249484,"id":879,"parentId":872,"tags":{},"startTime":1776328843286,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":13772,"timestamp":6721896253608,"id":880,"parentId":872,"tags":{},"startTime":1776328843290,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":2760,"timestamp":6721896269523,"id":881,"parentId":872,"tags":{},"startTime":1776328843306,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":184,"timestamp":6721896272283,"id":882,"parentId":872,"tags":{},"startTime":1776328843309,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":77,"timestamp":6721896272461,"id":883,"parentId":872,"tags":{},"startTime":1776328843309,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":39577,"timestamp":6721896272541,"id":884,"parentId":872,"tags":{},"startTime":1776328843309,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":73005,"timestamp":6721896240715,"id":872,"parentId":118,"tags":{},"startTime":1776328843277,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":542045,"timestamp":6721895772532,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776328842809,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":10758,"timestamp":6721896314634,"id":885,"parentId":116,"tags":{},"startTime":1776328843351,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-invalidated-server","duration":8,"timestamp":6721896325733,"id":886,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776328843362,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":755,"timestamp":6721896334321,"id":895,"parentId":891,"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%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776328843371,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":1274,"timestamp":6721896335105,"id":896,"parentId":892,"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%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&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":1776328843371,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":1196,"timestamp":6721896336394,"id":897,"parentId":893,"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":1776328843373,"traceId":"6b0bec12f182cf2c"},{"name":"next-client-pages-loader","duration":89,"timestamp":6721896338652,"id":899,"parentId":898,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1776328843375,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":1495,"timestamp":6721896337597,"id":898,"parentId":894,"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":1776328843374,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3,"timestamp":6721896345064,"id":901,"parentId":900,"tags":{},"startTime":1776328843381,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3899,"timestamp":6721896347473,"id":918,"parentId":917,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3944,"timestamp":6721896347432,"id":917,"parentId":904,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6568,"timestamp":6721896345574,"id":904,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776328843382,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5254,"timestamp":6721896347489,"id":920,"parentId":919,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5268,"timestamp":6721896347476,"id":919,"parentId":905,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6642,"timestamp":6721896346591,"id":905,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1776328843383,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8111,"timestamp":6721896345153,"id":903,"parentId":902,"tags":{},"startTime":1776328843381,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8192,"timestamp":6721896345074,"id":902,"parentId":900,"tags":{},"startTime":1776328843381,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-mjs","duration":9398,"timestamp":6721896344734,"id":900,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776328843381,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6590,"timestamp":6721896347557,"id":924,"parentId":923,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6620,"timestamp":6721896347528,"id":923,"parentId":907,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":7646,"timestamp":6721896346937,"id":907,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776328843383,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7139,"timestamp":6721896347526,"id":922,"parentId":921,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7175,"timestamp":6721896347491,"id":921,"parentId":906,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":9675,"timestamp":6721896346647,"id":906,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1776328843383,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8753,"timestamp":6721896347613,"id":928,"parentId":927,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8781,"timestamp":6721896347586,"id":927,"parentId":909,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":9829,"timestamp":6721896347122,"id":909,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776328843383,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14745,"timestamp":6721896347585,"id":926,"parentId":925,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14776,"timestamp":6721896347558,"id":925,"parentId":908,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":16354,"timestamp":6721896347039,"id":908,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776328843383,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15779,"timestamp":6721896347632,"id":932,"parentId":931,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15787,"timestamp":6721896347624,"id":931,"parentId":911,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16549,"timestamp":6721896347211,"id":911,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16137,"timestamp":6721896347641,"id":934,"parentId":933,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16145,"timestamp":6721896347633,"id":933,"parentId":912,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17182,"timestamp":6721896347234,"id":912,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16772,"timestamp":6721896347659,"id":938,"parentId":937,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16780,"timestamp":6721896347651,"id":937,"parentId":914,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17716,"timestamp":6721896347278,"id":914,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17336,"timestamp":6721896347668,"id":940,"parentId":939,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17345,"timestamp":6721896347660,"id":939,"parentId":915,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17999,"timestamp":6721896347297,"id":915,"parentId":897,"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":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17961,"timestamp":6721896347650,"id":936,"parentId":935,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17970,"timestamp":6721896347642,"id":935,"parentId":913,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19562,"timestamp":6721896347257,"id":913,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":19145,"timestamp":6721896347696,"id":942,"parentId":941,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":19173,"timestamp":6721896347669,"id":941,"parentId":916,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":19958,"timestamp":6721896347317,"id":916,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-transform","duration":19805,"timestamp":6721896347623,"id":930,"parentId":929,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":19815,"timestamp":6721896347614,"id":929,"parentId":910,"tags":{},"startTime":1776328843384,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21912,"timestamp":6721896347177,"id":910,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776328843383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":125,"timestamp":6721896376451,"id":945,"parentId":943,"tags":{},"startTime":1776328843413,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721896376581,"id":947,"parentId":943,"tags":{},"startTime":1776328843413,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":554,"timestamp":6721896376260,"id":943,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776328843413,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":622,"timestamp":6721896378716,"id":979,"parentId":977,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":226,"timestamp":6721896379342,"id":1040,"parentId":977,"tags":{},"startTime":1776328843416,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1033,"timestamp":6721896378638,"id":977,"parentId":908,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2771,"timestamp":6721896378814,"id":985,"parentId":984,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2781,"timestamp":6721896378806,"id":984,"parentId":950,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3866,"timestamp":6721896378132,"id":950,"parentId":910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776328843414,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3215,"timestamp":6721896378793,"id":981,"parentId":980,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3248,"timestamp":6721896378761,"id":980,"parentId":948,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4215,"timestamp":6721896378065,"id":948,"parentId":910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776328843414,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3484,"timestamp":6721896378805,"id":983,"parentId":982,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3494,"timestamp":6721896378795,"id":982,"parentId":949,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4443,"timestamp":6721896378105,"id":949,"parentId":910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776328843414,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3737,"timestamp":6721896378822,"id":987,"parentId":986,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3745,"timestamp":6721896378814,"id":986,"parentId":951,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4755,"timestamp":6721896378152,"id":951,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776328843414,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4077,"timestamp":6721896378838,"id":991,"parentId":990,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4084,"timestamp":6721896378831,"id":990,"parentId":953,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4952,"timestamp":6721896378194,"id":953,"parentId":912,"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":1776328843414,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4307,"timestamp":6721896378845,"id":993,"parentId":992,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4314,"timestamp":6721896378839,"id":992,"parentId":954,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5155,"timestamp":6721896378212,"id":954,"parentId":912,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4521,"timestamp":6721896378853,"id":995,"parentId":994,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4528,"timestamp":6721896378846,"id":994,"parentId":955,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5374,"timestamp":6721896378231,"id":955,"parentId":914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4742,"timestamp":6721896378869,"id":999,"parentId":998,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4751,"timestamp":6721896378861,"id":998,"parentId":957,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5525,"timestamp":6721896378271,"id":957,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4979,"timestamp":6721896378830,"id":989,"parentId":988,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4988,"timestamp":6721896378822,"id":988,"parentId":952,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6133,"timestamp":6721896378171,"id":952,"parentId":912,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776328843414,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5435,"timestamp":6721896378877,"id":1001,"parentId":1000,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5442,"timestamp":6721896378870,"id":1000,"parentId":958,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6309,"timestamp":6721896378293,"id":958,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5750,"timestamp":6721896378860,"id":997,"parentId":996,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5757,"timestamp":6721896378854,"id":996,"parentId":956,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6593,"timestamp":6721896378254,"id":956,"parentId":914,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8758,"timestamp":6721896378884,"id":1003,"parentId":1002,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8767,"timestamp":6721896378877,"id":1002,"parentId":959,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9784,"timestamp":6721896378311,"id":959,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9202,"timestamp":6721896378906,"id":1009,"parentId":1008,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9210,"timestamp":6721896378899,"id":1008,"parentId":962,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12348,"timestamp":6721896378365,"id":962,"parentId":910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11856,"timestamp":6721896378891,"id":1005,"parentId":1004,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11864,"timestamp":6721896378885,"id":1004,"parentId":960,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12808,"timestamp":6721896378332,"id":960,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":12260,"timestamp":6721896378899,"id":1007,"parentId":1006,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12267,"timestamp":6721896378892,"id":1006,"parentId":961,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13445,"timestamp":6721896378349,"id":961,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":12895,"timestamp":6721896378913,"id":1011,"parentId":1010,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12903,"timestamp":6721896378907,"id":1010,"parentId":963,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13750,"timestamp":6721896378382,"id":963,"parentId":910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13219,"timestamp":6721896378921,"id":1013,"parentId":1012,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13226,"timestamp":6721896378914,"id":1012,"parentId":964,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13966,"timestamp":6721896378404,"id":964,"parentId":910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13450,"timestamp":6721896378928,"id":1015,"parentId":1014,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13465,"timestamp":6721896378921,"id":1014,"parentId":965,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14162,"timestamp":6721896378424,"id":965,"parentId":914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13650,"timestamp":6721896378943,"id":1019,"parentId":1018,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13657,"timestamp":6721896378937,"id":1018,"parentId":967,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14355,"timestamp":6721896378457,"id":967,"parentId":913,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13869,"timestamp":6721896378951,"id":1021,"parentId":1020,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13876,"timestamp":6721896378944,"id":1020,"parentId":968,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14620,"timestamp":6721896378474,"id":968,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14142,"timestamp":6721896378958,"id":1023,"parentId":1022,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14149,"timestamp":6721896378951,"id":1022,"parentId":969,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14860,"timestamp":6721896378494,"id":969,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14430,"timestamp":6721896378936,"id":1017,"parentId":1016,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14438,"timestamp":6721896378929,"id":1016,"parentId":966,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15459,"timestamp":6721896378441,"id":966,"parentId":913,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14942,"timestamp":6721896378972,"id":1027,"parentId":1026,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14950,"timestamp":6721896378966,"id":1026,"parentId":971,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15640,"timestamp":6721896378527,"id":971,"parentId":913,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15218,"timestamp":6721896378965,"id":1025,"parentId":1024,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15226,"timestamp":6721896378958,"id":1024,"parentId":970,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16050,"timestamp":6721896378510,"id":970,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15589,"timestamp":6721896378980,"id":1029,"parentId":1028,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15596,"timestamp":6721896378973,"id":1028,"parentId":972,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16241,"timestamp":6721896378548,"id":972,"parentId":913,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15801,"timestamp":6721896378994,"id":1033,"parentId":1032,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15809,"timestamp":6721896378988,"id":1032,"parentId":974,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16451,"timestamp":6721896378583,"id":974,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16054,"timestamp":6721896378987,"id":1031,"parentId":1030,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16061,"timestamp":6721896378980,"id":1030,"parentId":973,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16757,"timestamp":6721896378564,"id":973,"parentId":913,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16501,"timestamp":6721896379002,"id":1035,"parentId":1034,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16509,"timestamp":6721896378995,"id":1034,"parentId":975,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17149,"timestamp":6721896378599,"id":975,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15146,"timestamp":6721896380646,"id":1050,"parentId":1049,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15182,"timestamp":6721896380610,"id":1049,"parentId":1042,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":16157,"timestamp":6721896380287,"id":1042,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":225,"timestamp":6721896397940,"id":1073,"parentId":1071,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":252,"timestamp":6721896397943,"id":1074,"parentId":1072,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1441,"timestamp":6721896398170,"id":1081,"parentId":1071,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1415,"timestamp":6721896398197,"id":1082,"parentId":1072,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1939,"timestamp":6721896397857,"id":1071,"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":1776328843434,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":2159,"timestamp":6721896397894,"id":1072,"parentId":914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21069,"timestamp":6721896379023,"id":1037,"parentId":1036,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21091,"timestamp":6721896379003,"id":1036,"parentId":976,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22762,"timestamp":6721896378616,"id":976,"parentId":910,"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":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":22399,"timestamp":6721896379054,"id":1039,"parentId":1038,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22430,"timestamp":6721896379024,"id":1038,"parentId":978,"tags":{},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":23705,"timestamp":6721896378672,"id":978,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776328843415,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21726,"timestamp":6721896380676,"id":1052,"parentId":1051,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21757,"timestamp":6721896380647,"id":1051,"parentId":1043,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":22455,"timestamp":6721896380330,"id":1043,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":22263,"timestamp":6721896380608,"id":1048,"parentId":1047,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22316,"timestamp":6721896380557,"id":1047,"parentId":1041,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":25087,"timestamp":6721896380233,"id":1041,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":24645,"timestamp":6721896380689,"id":1054,"parentId":1053,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24657,"timestamp":6721896380678,"id":1053,"parentId":1044,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25334,"timestamp":6721896380368,"id":1044,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":19686,"timestamp":6721896386057,"id":1063,"parentId":1062,"tags":{},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":19731,"timestamp":6721896386013,"id":1062,"parentId":1059,"tags":{},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":20486,"timestamp":6721896385758,"id":1059,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":25557,"timestamp":6721896380698,"id":1056,"parentId":1055,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25566,"timestamp":6721896380690,"id":1055,"parentId":1045,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26153,"timestamp":6721896380387,"id":1045,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":25925,"timestamp":6721896380707,"id":1058,"parentId":1057,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25933,"timestamp":6721896380699,"id":1057,"parentId":1046,"tags":{},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26930,"timestamp":6721896380466,"id":1046,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776328843417,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21337,"timestamp":6721896386089,"id":1065,"parentId":1064,"tags":{},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21368,"timestamp":6721896386059,"id":1064,"parentId":1060,"tags":{},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":22342,"timestamp":6721896385840,"id":1060,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":22106,"timestamp":6721896386100,"id":1067,"parentId":1066,"tags":{},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22121,"timestamp":6721896386090,"id":1066,"parentId":1061,"tags":{},"startTime":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22679,"timestamp":6721896385899,"id":1061,"parentId":910,"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":1776328843422,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":32286,"timestamp":6721896376454,"id":946,"parentId":944,"tags":{},"startTime":1776328843413,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721896408748,"id":1083,"parentId":944,"tags":{},"startTime":1776328843445,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32620,"timestamp":6721896376382,"id":944,"parentId":889,"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":1776328843413,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10995,"timestamp":6721896398081,"id":1078,"parentId":1077,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11028,"timestamp":6721896398050,"id":1077,"parentId":1069,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":11648,"timestamp":6721896397769,"id":1069,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11321,"timestamp":6721896398109,"id":1080,"parentId":1079,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11349,"timestamp":6721896398082,"id":1079,"parentId":1070,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":11963,"timestamp":6721896397817,"id":1070,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":245,"timestamp":6721896411508,"id":1087,"parentId":1085,"tags":{},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5438,"timestamp":6721896411757,"id":1092,"parentId":1085,"tags":{},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6324,"timestamp":6721896411413,"id":1085,"parentId":951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":19955,"timestamp":6721896398048,"id":1076,"parentId":1075,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":19983,"timestamp":6721896398022,"id":1075,"parentId":1068,"tags":{},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22871,"timestamp":6721896397708,"id":1068,"parentId":977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776328843434,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9290,"timestamp":6721896411701,"id":1089,"parentId":1088,"tags":{},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9318,"timestamp":6721896411673,"id":1088,"parentId":1084,"tags":{},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10058,"timestamp":6721896411352,"id":1084,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9710,"timestamp":6721896411713,"id":1091,"parentId":1090,"tags":{},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9721,"timestamp":6721896411703,"id":1090,"parentId":1086,"tags":{},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10389,"timestamp":6721896411461,"id":1086,"parentId":953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776328843448,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":282,"timestamp":6721896422786,"id":1097,"parentId":1096,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1559,"timestamp":6721896423073,"id":1104,"parentId":1096,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2086,"timestamp":6721896422737,"id":1096,"parentId":958,"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":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2409,"timestamp":6721896423020,"id":1103,"parentId":1102,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2418,"timestamp":6721896423012,"id":1102,"parentId":1095,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3102,"timestamp":6721896422715,"id":1095,"parentId":952,"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":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2835,"timestamp":6721896422998,"id":1099,"parentId":1098,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2861,"timestamp":6721896422972,"id":1098,"parentId":1093,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3529,"timestamp":6721896422626,"id":1093,"parentId":952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3152,"timestamp":6721896423011,"id":1101,"parentId":1100,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3163,"timestamp":6721896423000,"id":1100,"parentId":1094,"tags":{},"startTime":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3673,"timestamp":6721896422688,"id":1094,"parentId":952,"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":1776328843459,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":353,"timestamp":6721896428224,"id":1123,"parentId":1107,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":379,"timestamp":6721896428229,"id":1124,"parentId":1116,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":407,"timestamp":6721896428230,"id":1125,"parentId":1117,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":432,"timestamp":6721896428232,"id":1126,"parentId":1119,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":666,"timestamp":6721896428581,"id":1155,"parentId":1107,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":638,"timestamp":6721896428610,"id":1156,"parentId":1116,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":609,"timestamp":6721896428639,"id":1157,"parentId":1117,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":583,"timestamp":6721896428665,"id":1158,"parentId":1119,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1626,"timestamp":6721896427803,"id":1107,"parentId":951,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1672,"timestamp":6721896428011,"id":1116,"parentId":973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1720,"timestamp":6721896428051,"id":1117,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1780,"timestamp":6721896428120,"id":1119,"parentId":976,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2150,"timestamp":6721896428320,"id":1128,"parentId":1127,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2173,"timestamp":6721896428298,"id":1127,"parentId":1105,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2973,"timestamp":6721896427722,"id":1105,"parentId":950,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2371,"timestamp":6721896428331,"id":1130,"parentId":1129,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2381,"timestamp":6721896428322,"id":1129,"parentId":1106,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3103,"timestamp":6721896427775,"id":1106,"parentId":948,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2539,"timestamp":6721896428347,"id":1134,"parentId":1133,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2547,"timestamp":6721896428340,"id":1133,"parentId":1109,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3291,"timestamp":6721896427871,"id":1109,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2830,"timestamp":6721896428340,"id":1132,"parentId":1131,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2837,"timestamp":6721896428332,"id":1131,"parentId":1108,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3529,"timestamp":6721896427844,"id":1108,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3026,"timestamp":6721896428355,"id":1136,"parentId":1135,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3034,"timestamp":6721896428348,"id":1135,"parentId":1110,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3736,"timestamp":6721896427891,"id":1110,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":551,"timestamp":6721896433396,"id":1182,"parentId":1171,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":434,"timestamp":6721896433956,"id":1227,"parentId":1171,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1489,"timestamp":6721896433113,"id":1171,"parentId":1085,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6253,"timestamp":6721896428374,"id":1138,"parentId":1137,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6272,"timestamp":6721896428356,"id":1137,"parentId":1111,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7157,"timestamp":6721896427914,"id":1111,"parentId":961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6708,"timestamp":6721896428382,"id":1140,"parentId":1139,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6716,"timestamp":6721896428375,"id":1139,"parentId":1112,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7611,"timestamp":6721896427932,"id":1112,"parentId":970,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7166,"timestamp":6721896428390,"id":1142,"parentId":1141,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":7254,"timestamp":6721896428383,"id":1141,"parentId":1113,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8134,"timestamp":6721896427955,"id":1113,"parentId":970,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7708,"timestamp":6721896428397,"id":1144,"parentId":1143,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7715,"timestamp":6721896428390,"id":1143,"parentId":1114,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8690,"timestamp":6721896427972,"id":1114,"parentId":970,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8264,"timestamp":6721896428411,"id":1148,"parentId":1147,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8271,"timestamp":6721896428405,"id":1147,"parentId":1118,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8960,"timestamp":6721896428098,"id":1118,"parentId":1046,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8665,"timestamp":6721896428404,"id":1146,"parentId":1145,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8672,"timestamp":6721896428398,"id":1145,"parentId":1115,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9462,"timestamp":6721896427989,"id":1115,"parentId":970,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9457,"timestamp":6721896428419,"id":1150,"parentId":1149,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9465,"timestamp":6721896428412,"id":1149,"parentId":1120,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10131,"timestamp":6721896428154,"id":1120,"parentId":1046,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9861,"timestamp":6721896428433,"id":1154,"parentId":1153,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9879,"timestamp":6721896428427,"id":1153,"parentId":1122,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10369,"timestamp":6721896428199,"id":1122,"parentId":1046,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10151,"timestamp":6721896428426,"id":1152,"parentId":1151,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10158,"timestamp":6721896428419,"id":1151,"parentId":1121,"tags":{},"startTime":1776328843465,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10671,"timestamp":6721896428171,"id":1121,"parentId":1046,"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":1776328843464,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5336,"timestamp":6721896433513,"id":1190,"parentId":1189,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5345,"timestamp":6721896433505,"id":1189,"parentId":1162,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6174,"timestamp":6721896432865,"id":1162,"parentId":976,"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":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5552,"timestamp":6721896433496,"id":1186,"parentId":1185,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5564,"timestamp":6721896433484,"id":1185,"parentId":1160,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6558,"timestamp":6721896432799,"id":1160,"parentId":976,"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":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8847,"timestamp":6721896433504,"id":1188,"parentId":1187,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8856,"timestamp":6721896433496,"id":1187,"parentId":1161,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10097,"timestamp":6721896432837,"id":1161,"parentId":976,"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":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9426,"timestamp":6721896433542,"id":1196,"parentId":1195,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9436,"timestamp":6721896433533,"id":1195,"parentId":1165,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10319,"timestamp":6721896432938,"id":1165,"parentId":976,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9793,"timestamp":6721896433483,"id":1184,"parentId":1183,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9817,"timestamp":6721896433459,"id":1183,"parentId":1159,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11225,"timestamp":6721896432734,"id":1159,"parentId":976,"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":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10438,"timestamp":6721896433532,"id":1194,"parentId":1193,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10450,"timestamp":6721896433521,"id":1193,"parentId":1164,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11446,"timestamp":6721896432914,"id":1164,"parentId":976,"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":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10853,"timestamp":6721896433520,"id":1192,"parentId":1191,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10861,"timestamp":6721896433513,"id":1191,"parentId":1163,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11928,"timestamp":6721896432889,"id":1163,"parentId":976,"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":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11239,"timestamp":6721896433588,"id":1202,"parentId":1201,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11247,"timestamp":6721896433581,"id":1201,"parentId":1168,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12067,"timestamp":6721896433034,"id":1168,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11550,"timestamp":6721896433572,"id":1198,"parentId":1197,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11581,"timestamp":6721896433543,"id":1197,"parentId":1166,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-ts","duration":12559,"timestamp":6721896432961,"id":1166,"parentId":1042,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11954,"timestamp":6721896433580,"id":1200,"parentId":1199,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11962,"timestamp":6721896433573,"id":1199,"parentId":1167,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14175,"timestamp":6721896433011,"id":1167,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13610,"timestamp":6721896433599,"id":1204,"parentId":1203,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13622,"timestamp":6721896433588,"id":1203,"parentId":1169,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14593,"timestamp":6721896433055,"id":1169,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14049,"timestamp":6721896433610,"id":1206,"parentId":1205,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14060,"timestamp":6721896433600,"id":1205,"parentId":1170,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14882,"timestamp":6721896433081,"id":1170,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14338,"timestamp":6721896433633,"id":1210,"parentId":1209,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14348,"timestamp":6721896433624,"id":1209,"parentId":1173,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14965,"timestamp":6721896433179,"id":1173,"parentId":1068,"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":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14511,"timestamp":6721896433641,"id":1212,"parentId":1211,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14518,"timestamp":6721896433634,"id":1211,"parentId":1174,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15194,"timestamp":6721896433198,"id":1174,"parentId":1085,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":14751,"timestamp":6721896433649,"id":1214,"parentId":1213,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":14758,"timestamp":6721896433642,"id":1213,"parentId":1175,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15418,"timestamp":6721896433231,"id":1175,"parentId":1085,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15040,"timestamp":6721896433623,"id":1208,"parentId":1207,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15053,"timestamp":6721896433611,"id":1207,"parentId":1172,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16005,"timestamp":6721896433150,"id":1172,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776328843469,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15489,"timestamp":6721896433673,"id":1220,"parentId":1219,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15499,"timestamp":6721896433663,"id":1219,"parentId":1178,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16058,"timestamp":6721896433301,"id":1178,"parentId":1086,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15710,"timestamp":6721896433656,"id":1216,"parentId":1215,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15717,"timestamp":6721896433649,"id":1215,"parentId":1176,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16348,"timestamp":6721896433252,"id":1176,"parentId":1086,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":15927,"timestamp":6721896433680,"id":1222,"parentId":1221,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":15934,"timestamp":6721896433674,"id":1221,"parentId":1179,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16460,"timestamp":6721896433322,"id":1179,"parentId":1068,"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":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17103,"timestamp":6721896433694,"id":1226,"parentId":1225,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17110,"timestamp":6721896433688,"id":1225,"parentId":1181,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17641,"timestamp":6721896433363,"id":1181,"parentId":1084,"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":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17355,"timestamp":6721896433663,"id":1218,"parentId":1217,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17364,"timestamp":6721896433656,"id":1217,"parentId":1177,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18028,"timestamp":6721896433273,"id":1177,"parentId":1086,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17630,"timestamp":6721896433687,"id":1224,"parentId":1223,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17637,"timestamp":6721896433681,"id":1223,"parentId":1180,"tags":{},"startTime":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18348,"timestamp":6721896433343,"id":1180,"parentId":1068,"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":1776328843470,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3346,"timestamp":6721896454157,"id":1233,"parentId":1232,"tags":{},"startTime":1776328843490,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3367,"timestamp":6721896454137,"id":1232,"parentId":1229,"tags":{},"startTime":1776328843490,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4130,"timestamp":6721896453724,"id":1229,"parentId":954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776328843490,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3735,"timestamp":6721896454135,"id":1231,"parentId":1230,"tags":{},"startTime":1776328843490,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3765,"timestamp":6721896454105,"id":1230,"parentId":1228,"tags":{},"startTime":1776328843490,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4439,"timestamp":6721896453655,"id":1228,"parentId":1084,"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":1776328843490,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":191,"timestamp":6721896462719,"id":1293,"parentId":1291,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721896462918,"id":1312,"parentId":1291,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2588,"timestamp":6721896460862,"id":1291,"parentId":1160,"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":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3797,"timestamp":6721896459673,"id":1261,"parentId":1260,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3806,"timestamp":6721896459665,"id":1260,"parentId":1238,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4451,"timestamp":6721896459263,"id":1238,"parentId":1046,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4080,"timestamp":6721896459643,"id":1255,"parentId":1254,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4102,"timestamp":6721896459621,"id":1254,"parentId":1234,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4827,"timestamp":6721896459124,"id":1234,"parentId":1095,"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":1776328843495,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-transform","duration":4382,"timestamp":6721896459655,"id":1257,"parentId":1256,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4393,"timestamp":6721896459645,"id":1256,"parentId":1236,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5062,"timestamp":6721896459220,"id":1236,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4632,"timestamp":6721896459664,"id":1259,"parentId":1258,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4641,"timestamp":6721896459656,"id":1258,"parentId":1237,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5423,"timestamp":6721896459241,"id":1237,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4991,"timestamp":6721896459681,"id":1263,"parentId":1262,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4999,"timestamp":6721896459673,"id":1262,"parentId":1239,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5624,"timestamp":6721896459281,"id":1239,"parentId":1116,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5224,"timestamp":6721896459688,"id":1265,"parentId":1264,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5232,"timestamp":6721896459681,"id":1264,"parentId":1240,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5886,"timestamp":6721896459305,"id":1240,"parentId":1111,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5519,"timestamp":6721896459696,"id":1267,"parentId":1266,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5526,"timestamp":6721896459689,"id":1266,"parentId":1241,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6138,"timestamp":6721896459322,"id":1241,"parentId":1115,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5764,"timestamp":6721896459704,"id":1269,"parentId":1268,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5771,"timestamp":6721896459697,"id":1268,"parentId":1242,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6365,"timestamp":6721896459339,"id":1242,"parentId":1114,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6000,"timestamp":6721896459711,"id":1271,"parentId":1270,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6008,"timestamp":6721896459704,"id":1270,"parentId":1243,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6575,"timestamp":6721896459358,"id":1243,"parentId":1120,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6206,"timestamp":6721896459734,"id":1277,"parentId":1276,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6213,"timestamp":6721896459728,"id":1276,"parentId":1246,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6755,"timestamp":6721896459411,"id":1246,"parentId":1120,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":6457,"timestamp":6721896459719,"id":1273,"parentId":1272,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6464,"timestamp":6721896459712,"id":1272,"parentId":1244,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7132,"timestamp":6721896459374,"id":1244,"parentId":1120,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7423,"timestamp":6721896459742,"id":1279,"parentId":1278,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7431,"timestamp":6721896459735,"id":1278,"parentId":1247,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7996,"timestamp":6721896459427,"id":1247,"parentId":1120,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7681,"timestamp":6721896459750,"id":1281,"parentId":1280,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7688,"timestamp":6721896459743,"id":1280,"parentId":1248,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8243,"timestamp":6721896459443,"id":1248,"parentId":1120,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4928,"timestamp":6721896462770,"id":1299,"parentId":1298,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4937,"timestamp":6721896462761,"id":1298,"parentId":1284,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7181,"timestamp":6721896460717,"id":1284,"parentId":1161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5159,"timestamp":6721896462746,"id":1295,"parentId":1294,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5182,"timestamp":6721896462724,"id":1294,"parentId":1282,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7539,"timestamp":6721896460612,"id":1282,"parentId":1169,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9718,"timestamp":6721896462760,"id":1297,"parentId":1296,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9731,"timestamp":6721896462749,"id":1296,"parentId":1283,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12151,"timestamp":6721896460686,"id":1283,"parentId":1122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13139,"timestamp":6721896459727,"id":1275,"parentId":1274,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13147,"timestamp":6721896459720,"id":1274,"parentId":1245,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15623,"timestamp":6721896459392,"id":1245,"parentId":1120,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":12244,"timestamp":6721896462795,"id":1305,"parentId":1304,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12252,"timestamp":6721896462787,"id":1304,"parentId":1287,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14666,"timestamp":6721896460785,"id":1287,"parentId":1167,"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":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":12674,"timestamp":6721896462787,"id":1303,"parentId":1302,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12682,"timestamp":6721896462779,"id":1302,"parentId":1286,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14905,"timestamp":6721896460763,"id":1286,"parentId":1167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":12902,"timestamp":6721896462778,"id":1301,"parentId":1300,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":12910,"timestamp":6721896462771,"id":1300,"parentId":1285,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15254,"timestamp":6721896460741,"id":1285,"parentId":1167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13209,"timestamp":6721896462803,"id":1307,"parentId":1306,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13217,"timestamp":6721896462796,"id":1306,"parentId":1288,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15485,"timestamp":6721896460804,"id":1288,"parentId":1120,"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":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13484,"timestamp":6721896462811,"id":1309,"parentId":1308,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13492,"timestamp":6721896462804,"id":1308,"parentId":1289,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15634,"timestamp":6721896460823,"id":1289,"parentId":1167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":13643,"timestamp":6721896462819,"id":1311,"parentId":1310,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":13650,"timestamp":6721896462812,"id":1310,"parentId":1290,"tags":{},"startTime":1776328843499,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15784,"timestamp":6721896460842,"id":1290,"parentId":1163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22609,"timestamp":6721896459540,"id":1251,"parentId":1235,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721896482161,"id":1313,"parentId":1235,"tags":{},"startTime":1776328843518,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23292,"timestamp":6721896459178,"id":1235,"parentId":1044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776328843495,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22919,"timestamp":6721896459557,"id":1253,"parentId":1250,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":76,"timestamp":6721896482481,"id":1314,"parentId":1250,"tags":{},"startTime":1776328843519,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23710,"timestamp":6721896459495,"id":1250,"parentId":944,"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":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23661,"timestamp":6721896459553,"id":1252,"parentId":1249,"tags":{},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721896483221,"id":1315,"parentId":1249,"tags":{},"startTime":1776328843520,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24173,"timestamp":6721896459460,"id":1249,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776328843496,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":522,"timestamp":6721896497308,"id":1329,"parentId":1328,"tags":{},"startTime":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1121,"timestamp":6721896511309,"id":1342,"parentId":1330,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":923,"timestamp":6721896512442,"id":1387,"parentId":1330,"tags":{},"startTime":1776328843549,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16392,"timestamp":6721896497318,"id":1330,"parentId":1246,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7332,"timestamp":6721896511804,"id":1344,"parentId":1343,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7373,"timestamp":6721896511766,"id":1343,"parentId":1316,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25360,"timestamp":6721896494343,"id":1316,"parentId":1176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7824,"timestamp":6721896511894,"id":1350,"parentId":1349,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7840,"timestamp":6721896511879,"id":1349,"parentId":1319,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25903,"timestamp":6721896494500,"id":1319,"parentId":1241,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8541,"timestamp":6721896511877,"id":1348,"parentId":1347,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8592,"timestamp":6721896511828,"id":1347,"parentId":1318,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26680,"timestamp":6721896494465,"id":1318,"parentId":1242,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9229,"timestamp":6721896511924,"id":1352,"parentId":1351,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9244,"timestamp":6721896511910,"id":1351,"parentId":1320,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26903,"timestamp":6721896494531,"id":1320,"parentId":1239,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9614,"timestamp":6721896511826,"id":1346,"parentId":1345,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9629,"timestamp":6721896511813,"id":1345,"parentId":1317,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27548,"timestamp":6721896494431,"id":1317,"parentId":1177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":348,"timestamp":6721896526856,"id":1400,"parentId":1388,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":835,"timestamp":6721896527212,"id":1415,"parentId":1388,"tags":{},"startTime":1776328843564,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2339,"timestamp":6721896526150,"id":1388,"parentId":1284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776328843562,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16550,"timestamp":6721896511975,"id":1358,"parentId":1357,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16561,"timestamp":6721896511965,"id":1357,"parentId":1323,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34279,"timestamp":6721896494612,"id":1323,"parentId":1240,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16943,"timestamp":6721896511964,"id":1356,"parentId":1355,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16958,"timestamp":6721896511950,"id":1355,"parentId":1322,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34713,"timestamp":6721896494586,"id":1322,"parentId":1240,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17310,"timestamp":6721896512004,"id":1360,"parentId":1359,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":17507,"timestamp":6721896511976,"id":1359,"parentId":1324,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35420,"timestamp":6721896494655,"id":1324,"parentId":1240,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":18083,"timestamp":6721896512015,"id":1362,"parentId":1361,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":18093,"timestamp":6721896512006,"id":1361,"parentId":1325,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35846,"timestamp":6721896494678,"id":1325,"parentId":1240,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":18497,"timestamp":6721896512038,"id":1366,"parentId":1365,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":18508,"timestamp":6721896512028,"id":1365,"parentId":1327,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36065,"timestamp":6721896494730,"id":1327,"parentId":1246,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":18758,"timestamp":6721896512049,"id":1368,"parentId":1367,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":18768,"timestamp":6721896512039,"id":1367,"parentId":1331,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33683,"timestamp":6721896497407,"id":1331,"parentId":1247,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":19043,"timestamp":6721896512061,"id":1370,"parentId":1369,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":19054,"timestamp":6721896512051,"id":1369,"parentId":1332,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33866,"timestamp":6721896497457,"id":1332,"parentId":1247,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":19313,"timestamp":6721896512027,"id":1364,"parentId":1363,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":19323,"timestamp":6721896512017,"id":1363,"parentId":1326,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37254,"timestamp":6721896494701,"id":1326,"parentId":1240,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":20027,"timestamp":6721896511947,"id":1354,"parentId":1353,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":20050,"timestamp":6721896511925,"id":1353,"parentId":1321,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38239,"timestamp":6721896494560,"id":1321,"parentId":1240,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":20719,"timestamp":6721896512087,"id":1372,"parentId":1371,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":20744,"timestamp":6721896512062,"id":1371,"parentId":1333,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35517,"timestamp":6721896497485,"id":1333,"parentId":1247,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":20895,"timestamp":6721896512114,"id":1374,"parentId":1373,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":20920,"timestamp":6721896512088,"id":1373,"parentId":1334,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35745,"timestamp":6721896497512,"id":1334,"parentId":1247,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21137,"timestamp":6721896512126,"id":1376,"parentId":1375,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21148,"timestamp":6721896512115,"id":1375,"parentId":1335,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35927,"timestamp":6721896497582,"id":1335,"parentId":1244,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21383,"timestamp":6721896512138,"id":1378,"parentId":1377,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21394,"timestamp":6721896512128,"id":1377,"parentId":1336,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36075,"timestamp":6721896497650,"id":1336,"parentId":1244,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21582,"timestamp":6721896512149,"id":1380,"parentId":1379,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21592,"timestamp":6721896512139,"id":1379,"parentId":1337,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36211,"timestamp":6721896497684,"id":1337,"parentId":1244,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21724,"timestamp":6721896512177,"id":1382,"parentId":1381,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21750,"timestamp":6721896512151,"id":1381,"parentId":1338,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36356,"timestamp":6721896497727,"id":1338,"parentId":1244,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":21901,"timestamp":6721896512188,"id":1384,"parentId":1383,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":21911,"timestamp":6721896512179,"id":1383,"parentId":1339,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36496,"timestamp":6721896497769,"id":1339,"parentId":1247,"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":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":22073,"timestamp":6721896512200,"id":1386,"parentId":1385,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22083,"timestamp":6721896512190,"id":1385,"parentId":1340,"tags":{},"startTime":1776328843548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36680,"timestamp":6721896497803,"id":1340,"parentId":1229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7866,"timestamp":6721896527036,"id":1402,"parentId":1401,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7896,"timestamp":6721896527006,"id":1401,"parentId":1389,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8838,"timestamp":6721896526259,"id":1389,"parentId":1245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8050,"timestamp":6721896527060,"id":1406,"parentId":1405,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8060,"timestamp":6721896527052,"id":1405,"parentId":1391,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9012,"timestamp":6721896526324,"id":1391,"parentId":1245,"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":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16429,"timestamp":6721896527050,"id":1404,"parentId":1403,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16443,"timestamp":6721896527039,"id":1403,"parentId":1390,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17652,"timestamp":6721896526299,"id":1390,"parentId":1245,"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":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16873,"timestamp":6721896527089,"id":1412,"parentId":1411,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16882,"timestamp":6721896527081,"id":1411,"parentId":1394,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17797,"timestamp":6721896526434,"id":1394,"parentId":1245,"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":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17183,"timestamp":6721896527071,"id":1408,"parentId":1407,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17193,"timestamp":6721896527062,"id":1407,"parentId":1392,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18443,"timestamp":6721896526348,"id":1392,"parentId":1245,"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":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":17703,"timestamp":6721896527098,"id":1414,"parentId":1413,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":17711,"timestamp":6721896527090,"id":1413,"parentId":1395,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18823,"timestamp":6721896526455,"id":1395,"parentId":1245,"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":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":18221,"timestamp":6721896527079,"id":1410,"parentId":1409,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":18229,"timestamp":6721896527072,"id":1409,"parentId":1393,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19374,"timestamp":6721896526385,"id":1393,"parentId":1247,"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":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":281,"timestamp":6721896546977,"id":1425,"parentId":1423,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":312,"timestamp":6721896546978,"id":1426,"parentId":1424,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3887,"timestamp":6721896547263,"id":1437,"parentId":1423,"tags":{},"startTime":1776328843584,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3862,"timestamp":6721896547292,"id":1438,"parentId":1424,"tags":{},"startTime":1776328843584,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4468,"timestamp":6721896546890,"id":1423,"parentId":1318,"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":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4532,"timestamp":6721896546932,"id":1424,"parentId":1318,"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":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4486,"timestamp":6721896547167,"id":1434,"parentId":1433,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4497,"timestamp":6721896547156,"id":1433,"parentId":1419,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5205,"timestamp":6721896546814,"id":1419,"parentId":1289,"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":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4896,"timestamp":6721896547134,"id":1428,"parentId":1427,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4929,"timestamp":6721896547102,"id":1427,"parentId":1416,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5633,"timestamp":6721896546688,"id":1416,"parentId":1287,"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":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5152,"timestamp":6721896547177,"id":1436,"parentId":1435,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5162,"timestamp":6721896547167,"id":1435,"parentId":1422,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5768,"timestamp":6721896546861,"id":1422,"parentId":1319,"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":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5492,"timestamp":6721896547155,"id":1432,"parentId":1431,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5501,"timestamp":6721896547147,"id":1431,"parentId":1418,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7677,"timestamp":6721896546793,"id":1418,"parentId":1289,"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":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":7349,"timestamp":6721896547146,"id":1430,"parentId":1429,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":7360,"timestamp":6721896547136,"id":1429,"parentId":1417,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8357,"timestamp":6721896546765,"id":1417,"parentId":1287,"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":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31385,"timestamp":6721896526803,"id":1397,"parentId":1396,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31850,"timestamp":6721896526476,"id":1396,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31501,"timestamp":6721896526834,"id":1399,"parentId":1398,"tags":{},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31563,"timestamp":6721896526825,"id":1398,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776328843563,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3068,"timestamp":6721896556264,"id":1460,"parentId":1459,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3099,"timestamp":6721896556234,"id":1459,"parentId":1439,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4034,"timestamp":6721896555582,"id":1439,"parentId":1388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3332,"timestamp":6721896556294,"id":1466,"parentId":1465,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3340,"timestamp":6721896556286,"id":1465,"parentId":1442,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4193,"timestamp":6721896555693,"id":1442,"parentId":1322,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3612,"timestamp":6721896556285,"id":1464,"parentId":1463,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3621,"timestamp":6721896556277,"id":1463,"parentId":1441,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4588,"timestamp":6721896555671,"id":1441,"parentId":1322,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3954,"timestamp":6721896556314,"id":1470,"parentId":1469,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3962,"timestamp":6721896556307,"id":1469,"parentId":1444,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":4826,"timestamp":6721896555744,"id":1444,"parentId":1322,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4278,"timestamp":6721896556306,"id":1468,"parentId":1467,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4289,"timestamp":6721896556295,"id":1467,"parentId":1443,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5181,"timestamp":6721896555720,"id":1443,"parentId":1322,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4579,"timestamp":6721896556330,"id":1474,"parentId":1473,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4586,"timestamp":6721896556323,"id":1473,"parentId":1446,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5302,"timestamp":6721896555842,"id":1446,"parentId":1321,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4834,"timestamp":6721896556322,"id":1472,"parentId":1471,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4841,"timestamp":6721896556315,"id":1471,"parentId":1445,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5652,"timestamp":6721896555767,"id":1445,"parentId":1321,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5090,"timestamp":6721896556337,"id":1476,"parentId":1475,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5097,"timestamp":6721896556330,"id":1475,"parentId":1447,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5798,"timestamp":6721896555888,"id":1447,"parentId":1321,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5342,"timestamp":6721896556351,"id":1480,"parentId":1479,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5349,"timestamp":6721896556345,"id":1479,"parentId":1449,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5954,"timestamp":6721896555941,"id":1449,"parentId":1335,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5563,"timestamp":6721896556344,"id":1478,"parentId":1477,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5570,"timestamp":6721896556337,"id":1477,"parentId":1448,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6300,"timestamp":6721896555914,"id":1448,"parentId":1335,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5858,"timestamp":6721896556362,"id":1482,"parentId":1481,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5869,"timestamp":6721896556352,"id":1481,"parentId":1450,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6451,"timestamp":6721896555961,"id":1450,"parentId":1335,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":56,"timestamp":6721896563327,"id":1528,"parentId":1520,"tags":{},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1391,"timestamp":6721896563387,"id":1531,"parentId":1520,"tags":{},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1949,"timestamp":6721896563186,"id":1520,"parentId":1417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776328843599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":8781,"timestamp":6721896556369,"id":1484,"parentId":1483,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":8788,"timestamp":6721896556363,"id":1483,"parentId":1451,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9400,"timestamp":6721896555985,"id":1451,"parentId":1335,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9016,"timestamp":6721896556376,"id":1486,"parentId":1485,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9023,"timestamp":6721896556370,"id":1485,"parentId":1452,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9609,"timestamp":6721896556004,"id":1452,"parentId":1335,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":9386,"timestamp":6721896556276,"id":1462,"parentId":1461,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9397,"timestamp":6721896556266,"id":1461,"parentId":1440,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11063,"timestamp":6721896555640,"id":1440,"parentId":1323,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":10312,"timestamp":6721896556398,"id":1492,"parentId":1491,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10319,"timestamp":6721896556391,"id":1491,"parentId":1455,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11684,"timestamp":6721896556083,"id":1455,"parentId":1338,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11413,"timestamp":6721896556383,"id":1488,"parentId":1487,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11421,"timestamp":6721896556377,"id":1487,"parentId":1453,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12210,"timestamp":6721896556029,"id":1453,"parentId":1336,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":11830,"timestamp":6721896556419,"id":1498,"parentId":1497,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":11837,"timestamp":6721896556412,"id":1497,"parentId":1458,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12352,"timestamp":6721896556139,"id":1458,"parentId":1339,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":260212,"timestamp":6721896556412,"id":1496,"parentId":1495,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":260226,"timestamp":6721896556405,"id":1495,"parentId":1457,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":261112,"timestamp":6721896556122,"id":1457,"parentId":1339,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":260868,"timestamp":6721896556391,"id":1490,"parentId":1489,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":260876,"timestamp":6721896556384,"id":1489,"parentId":1454,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":261853,"timestamp":6721896556049,"id":1454,"parentId":1337,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":261518,"timestamp":6721896556405,"id":1494,"parentId":1493,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":261526,"timestamp":6721896556398,"id":1493,"parentId":1456,"tags":{},"startTime":1776328843593,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":262321,"timestamp":6721896556103,"id":1456,"parentId":1338,"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":1776328843592,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":259291,"timestamp":6721896559142,"id":1513,"parentId":1512,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":259300,"timestamp":6721896559135,"id":1512,"parentId":1502,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":259758,"timestamp":6721896558937,"id":1502,"parentId":1393,"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":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":259609,"timestamp":6721896559096,"id":1507,"parentId":1506,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":259628,"timestamp":6721896559077,"id":1506,"parentId":1499,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":260212,"timestamp":6721896558852,"id":1499,"parentId":1395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":259940,"timestamp":6721896559134,"id":1511,"parentId":1510,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":259949,"timestamp":6721896559126,"id":1510,"parentId":1501,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":260420,"timestamp":6721896558916,"id":1501,"parentId":1392,"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":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":260177,"timestamp":6721896559166,"id":1519,"parentId":1518,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":260185,"timestamp":6721896559159,"id":1518,"parentId":1505,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":260558,"timestamp":6721896558998,"id":1505,"parentId":1393,"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":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":260596,"timestamp":6721896559125,"id":1509,"parentId":1508,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":260624,"timestamp":6721896559097,"id":1508,"parentId":1500,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":261570,"timestamp":6721896558893,"id":1500,"parentId":1390,"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":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":261314,"timestamp":6721896559158,"id":1517,"parentId":1516,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":261322,"timestamp":6721896559151,"id":1516,"parentId":1504,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":261790,"timestamp":6721896558979,"id":1504,"parentId":1393,"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":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":261633,"timestamp":6721896559151,"id":1515,"parentId":1514,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":261642,"timestamp":6721896559143,"id":1514,"parentId":1503,"tags":{},"startTime":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":263233,"timestamp":6721896558958,"id":1503,"parentId":1394,"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":1776328843595,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":258879,"timestamp":6721896563365,"id":1530,"parentId":1529,"tags":{},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":258899,"timestamp":6721896563347,"id":1529,"parentId":1521,"tags":{},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":259358,"timestamp":6721896563244,"id":1521,"parentId":1417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":284817,"timestamp":6721896546846,"id":1421,"parentId":1420,"tags":{},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":285003,"timestamp":6721896546836,"id":1420,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776328843583,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":191,"timestamp":6721896835192,"id":1545,"parentId":1544,"tags":{},"startTime":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721896835389,"id":1558,"parentId":1544,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1402,"timestamp":6721896835108,"id":1544,"parentId":1454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":273855,"timestamp":6721896563315,"id":1527,"parentId":1526,"tags":{},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":273930,"timestamp":6721896563308,"id":1526,"parentId":966,"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":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":273962,"timestamp":6721896563282,"id":1523,"parentId":1522,"tags":{},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":274096,"timestamp":6721896563271,"id":1522,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":274069,"timestamp":6721896563302,"id":1525,"parentId":1524,"tags":{},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":274180,"timestamp":6721896563294,"id":1524,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776328843600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3395,"timestamp":6721896834217,"id":1537,"parentId":1536,"tags":{},"startTime":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3426,"timestamp":6721896834187,"id":1536,"parentId":1533,"tags":{},"startTime":1776328843870,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3932,"timestamp":6721896833995,"id":1533,"parentId":1448,"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":1776328843870,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2676,"timestamp":6721896835277,"id":1551,"parentId":1550,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2685,"timestamp":6721896835269,"id":1550,"parentId":1540,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3310,"timestamp":6721896834932,"id":1540,"parentId":1453,"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":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4808,"timestamp":6721896835284,"id":1553,"parentId":1552,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4817,"timestamp":6721896835278,"id":1552,"parentId":1541,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5462,"timestamp":6721896834993,"id":1541,"parentId":1454,"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":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":5218,"timestamp":6721896835252,"id":1547,"parentId":1546,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5275,"timestamp":6721896835195,"id":1546,"parentId":1538,"tags":{},"startTime":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5982,"timestamp":6721896834818,"id":1538,"parentId":1504,"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":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":31460,"timestamp":6721896835301,"id":1557,"parentId":1556,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31473,"timestamp":6721896835293,"id":1556,"parentId":1543,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":32444,"timestamp":6721896835068,"id":1543,"parentId":1504,"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":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":32259,"timestamp":6721896835292,"id":1555,"parentId":1554,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32266,"timestamp":6721896835285,"id":1554,"parentId":1542,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33079,"timestamp":6721896835043,"id":1542,"parentId":1505,"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":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"postcss-process","duration":218972,"timestamp":6721896735907,"id":1532,"parentId":1341,"tags":{},"startTime":1776328843772,"traceId":"6b0bec12f182cf2c"},{"name":"postcss-loader","duration":457872,"timestamp":6721896497946,"id":1341,"parentId":1328,"tags":{},"startTime":1776328843534,"traceId":"6b0bec12f182cf2c"},{"name":"css-loader","duration":26363,"timestamp":6721896955935,"id":1559,"parentId":1328,"tags":{"astUsed":"true"},"startTime":1776328843992,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":152272,"timestamp":6721896835267,"id":1549,"parentId":1548,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":152288,"timestamp":6721896835254,"id":1548,"parentId":1539,"tags":{},"startTime":1776328843872,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":159208,"timestamp":6721896834899,"id":1539,"parentId":1453,"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":1776328843871,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":160085,"timestamp":6721896834123,"id":1535,"parentId":1534,"tags":{},"startTime":1776328843870,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721896994219,"id":1566,"parentId":1534,"tags":{},"startTime":1776328844031,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":160365,"timestamp":6721896834071,"id":1534,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776328843870,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13,"timestamp":6721896999892,"id":1574,"parentId":1570,"tags":{},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":72,"timestamp":6721896999895,"id":1575,"parentId":1571,"tags":{},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":84,"timestamp":6721896999911,"id":1576,"parentId":1570,"tags":{},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721896999969,"id":1577,"parentId":1571,"tags":{},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2920,"timestamp":6721896999770,"id":1570,"parentId":1539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3159,"timestamp":6721896999824,"id":1571,"parentId":1539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4030,"timestamp":6721896999289,"id":1569,"parentId":1568,"tags":{},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4064,"timestamp":6721896999256,"id":1568,"parentId":1567,"tags":{},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4534,"timestamp":6721896999150,"id":1567,"parentId":1541,"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":1776328844035,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20743,"timestamp":6721896984631,"id":1561,"parentId":1560,"tags":{},"startTime":1776328844021,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22915,"timestamp":6721896984599,"id":1560,"parentId":1396,"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":1776328844021,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22933,"timestamp":6721896984673,"id":1565,"parentId":1564,"tags":{},"startTime":1776328844021,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30771,"timestamp":6721896984665,"id":1564,"parentId":1420,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776328844021,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":30885,"timestamp":6721896984658,"id":1563,"parentId":1562,"tags":{},"startTime":1776328844021,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32559,"timestamp":6721896984648,"id":1562,"parentId":1398,"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":1776328844021,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":687459,"timestamp":6721896331145,"id":891,"parentId":888,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776328843367,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":687399,"timestamp":6721896331211,"id":894,"parentId":888,"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":1776328843368,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20405,"timestamp":6721896999876,"id":1573,"parentId":1572,"tags":{},"startTime":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20552,"timestamp":6721896999866,"id":1572,"parentId":1526,"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":1776328844036,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-css","duration":526222,"timestamp":6721896494757,"id":1328,"parentId":1292,"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":1776328843531,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1314,"timestamp":6721897020057,"id":1581,"parentId":1580,"tags":{},"startTime":1776328844056,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721897021377,"id":1582,"parentId":1580,"tags":{},"startTime":1776328844058,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2383,"timestamp":6721897019947,"id":1580,"parentId":1534,"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":1776328844056,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":691328,"timestamp":6721896331041,"id":889,"parentId":888,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776328843367,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17708,"timestamp":6721897005340,"id":1579,"parentId":1578,"tags":{},"startTime":1776328844042,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":90021,"timestamp":6721897005300,"id":1578,"parentId":1522,"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":1776328844042,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":75844,"timestamp":6721897022400,"id":1584,"parentId":1583,"tags":{},"startTime":1776328844059,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":78565,"timestamp":6721897022377,"id":1583,"parentId":1572,"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":1776328844059,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":78958,"timestamp":6721897023037,"id":1586,"parentId":1585,"tags":{},"startTime":1776328844059,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79464,"timestamp":6721897022777,"id":1585,"parentId":1328,"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":1776328844059,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-css","duration":646728,"timestamp":6721896460905,"id":1292,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776328843497,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":56,"timestamp":6721897108026,"id":1587,"parentId":1292,"tags":{},"startTime":1776328844144,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":776983,"timestamp":6721896331191,"id":892,"parentId":888,"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%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&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":1776328843367,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":399,"timestamp":6721897110098,"id":1589,"parentId":1588,"tags":{},"startTime":1776328844146,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721897110505,"id":1590,"parentId":1588,"tags":{},"startTime":1776328844147,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":682,"timestamp":6721897110009,"id":1588,"parentId":1578,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776328844146,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":536,"timestamp":6721897111185,"id":1592,"parentId":1591,"tags":{},"startTime":1776328844147,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":48,"timestamp":6721897111730,"id":1593,"parentId":1591,"tags":{},"startTime":1776328844148,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1537,"timestamp":6721897111131,"id":1591,"parentId":1588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776328844147,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":781626,"timestamp":6721896331130,"id":890,"parentId":888,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776328843367,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":781560,"timestamp":6721896331202,"id":893,"parentId":888,"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":1776328843367,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":785799,"timestamp":6721896326974,"id":888,"parentId":887,"tags":{},"startTime":1776328843363,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":1757,"timestamp":6721897116009,"id":1595,"parentId":1594,"tags":{},"startTime":1776328844152,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":4,"timestamp":6721897117779,"id":1597,"parentId":1594,"tags":{},"startTime":1776328844154,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":40,"timestamp":6721897117791,"id":1598,"parentId":1594,"tags":{},"startTime":1776328844154,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":4,"timestamp":6721897117841,"id":1599,"parentId":1594,"tags":{},"startTime":1776328844154,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6721897117853,"id":1600,"parentId":1594,"tags":{},"startTime":1776328844154,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":728,"timestamp":6721897117774,"id":1596,"parentId":1594,"tags":{},"startTime":1776328844154,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":2838,"timestamp":6721897119593,"id":1601,"parentId":1594,"tags":{},"startTime":1776328844156,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":7678,"timestamp":6721897122439,"id":1602,"parentId":1594,"tags":{},"startTime":1776328844159,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":7514,"timestamp":6721897131276,"id":1603,"parentId":1594,"tags":{},"startTime":1776328844168,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":214,"timestamp":6721897138789,"id":1604,"parentId":1594,"tags":{},"startTime":1776328844175,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":44,"timestamp":6721897138992,"id":1605,"parentId":1594,"tags":{},"startTime":1776328844175,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":79148,"timestamp":6721897139039,"id":1606,"parentId":1594,"tags":{},"startTime":1776328844175,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-generateClientManifest","duration":59,"timestamp":6721897218735,"id":1608,"parentId":887,"tags":{},"startTime":1776328844255,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-createassets","duration":240,"timestamp":6721897218557,"id":1607,"parentId":887,"tags":{},"startTime":1776328844255,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":107652,"timestamp":6721897115367,"id":1594,"parentId":887,"tags":{},"startTime":1776328844152,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":896389,"timestamp":6721896326733,"id":887,"parentId":258,"tags":{"name":"client"},"startTime":1776328843363,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":17875,"timestamp":6721897223142,"id":1609,"parentId":258,"tags":{},"startTime":1776328844259,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-invalidated-client","duration":39,"timestamp":6721897241574,"id":1610,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776328844278,"traceId":"6b0bec12f182cf2c"},{"name":"client-success","duration":1,"timestamp":6721897245799,"id":1613,"parentId":3,"tags":{},"startTime":1776328844282,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":4966,"timestamp":6721897247654,"id":1615,"parentId":1612,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1776328844284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":4559,"timestamp":6721897250738,"id":1616,"parentId":1614,"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":1776328844287,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":8456,"timestamp":6721897247622,"id":1614,"parentId":1612,"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":1776328844284,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":19296,"timestamp":6721897244618,"id":1612,"parentId":1611,"tags":{},"startTime":1776328844281,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":1150,"timestamp":6721897265522,"id":1623,"parentId":1622,"tags":{},"startTime":1776328844302,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":2,"timestamp":6721897266686,"id":1625,"parentId":1622,"tags":{},"startTime":1776328844303,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":1172,"timestamp":6721897266698,"id":1626,"parentId":1622,"tags":{},"startTime":1776328844303,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":3,"timestamp":6721897267890,"id":1627,"parentId":1622,"tags":{},"startTime":1776328844304,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":20,"timestamp":6721897267903,"id":1628,"parentId":1622,"tags":{},"startTime":1776328844304,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":1807,"timestamp":6721897266682,"id":1624,"parentId":1622,"tags":{},"startTime":1776328844303,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":231,"timestamp":6721897269386,"id":1629,"parentId":1622,"tags":{},"startTime":1776328844306,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":1109,"timestamp":6721897269621,"id":1630,"parentId":1622,"tags":{},"startTime":1776328844306,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":800,"timestamp":6721897272093,"id":1631,"parentId":1622,"tags":{},"startTime":1776328844308,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":66,"timestamp":6721897272892,"id":1632,"parentId":1622,"tags":{},"startTime":1776328844309,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":33,"timestamp":6721897272953,"id":1633,"parentId":1622,"tags":{},"startTime":1776328844309,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":1395,"timestamp":6721897272988,"id":1634,"parentId":1622,"tags":{},"startTime":1776328844309,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":10697,"timestamp":6721897265025,"id":1622,"parentId":1611,"tags":{},"startTime":1776328844301,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":33103,"timestamp":6721897243562,"id":1611,"parentId":3,"tags":{"name":"server"},"startTime":1776328844280,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":3201,"timestamp":6721897276681,"id":1635,"parentId":3,"tags":{},"startTime":1776328844313,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":2704,"timestamp":6721897283765,"id":1643,"parentId":1637,"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":1776328844320,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":3097,"timestamp":6721897283712,"id":1638,"parentId":1637,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776328844320,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3,"timestamp":6721897287358,"id":1646,"parentId":1645,"tags":{},"startTime":1776328844324,"traceId":"6b0bec12f182cf2c"},{"name":"postcss-process","duration":39191,"timestamp":6721897287399,"id":1648,"parentId":1647,"tags":{},"startTime":1776328844324,"traceId":"6b0bec12f182cf2c"},{"name":"postcss-loader","duration":39438,"timestamp":6721897287390,"id":1647,"parentId":1645,"tags":{},"startTime":1776328844324,"traceId":"6b0bec12f182cf2c"},{"name":"css-loader","duration":8746,"timestamp":6721897326847,"id":1649,"parentId":1645,"tags":{"astUsed":"true"},"startTime":1776328844363,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-css","duration":49239,"timestamp":6721897287301,"id":1645,"parentId":1644,"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":1776328844324,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":55769,"timestamp":6721897283755,"id":1640,"parentId":1637,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776328844320,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-css","duration":57192,"timestamp":6721897285734,"id":1644,"parentId":1636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776328844322,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":59342,"timestamp":6721897283762,"id":1642,"parentId":1637,"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":1776328844320,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":28,"timestamp":6721897343171,"id":1650,"parentId":1644,"tags":{},"startTime":1776328844379,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":59461,"timestamp":6721897283742,"id":1639,"parentId":1637,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776328844320,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":59467,"timestamp":6721897283760,"id":1641,"parentId":1637,"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%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&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":1776328844320,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":61306,"timestamp":6721897281932,"id":1637,"parentId":1636,"tags":{},"startTime":1776328844318,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":1004,"timestamp":6721897344890,"id":1652,"parentId":1651,"tags":{},"startTime":1776328844381,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":2,"timestamp":6721897345921,"id":1654,"parentId":1651,"tags":{},"startTime":1776328844382,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":56,"timestamp":6721897345931,"id":1655,"parentId":1651,"tags":{},"startTime":1776328844382,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":8,"timestamp":6721897345999,"id":1656,"parentId":1651,"tags":{},"startTime":1776328844382,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6721897346026,"id":1657,"parentId":1651,"tags":{},"startTime":1776328844382,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":540,"timestamp":6721897345913,"id":1653,"parentId":1651,"tags":{},"startTime":1776328844382,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":237,"timestamp":6721897346971,"id":1658,"parentId":1651,"tags":{},"startTime":1776328844383,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":603,"timestamp":6721897347216,"id":1659,"parentId":1651,"tags":{},"startTime":1776328844384,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":1674,"timestamp":6721897348477,"id":1660,"parentId":1651,"tags":{},"startTime":1776328844385,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":64,"timestamp":6721897350152,"id":1661,"parentId":1651,"tags":{},"startTime":1776328844386,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":37,"timestamp":6721897350210,"id":1662,"parentId":1651,"tags":{},"startTime":1776328844387,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":1156,"timestamp":6721897350249,"id":1663,"parentId":1651,"tags":{},"startTime":1776328844387,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-generateClientManifest","duration":42,"timestamp":6721897352383,"id":1665,"parentId":1636,"tags":{},"startTime":1776328844389,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-createassets","duration":136,"timestamp":6721897352337,"id":1664,"parentId":1636,"tags":{},"startTime":1776328844389,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":9274,"timestamp":6721897344274,"id":1651,"parentId":1636,"tags":{},"startTime":1776328844381,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":72119,"timestamp":6721897281504,"id":1636,"parentId":3,"tags":{"name":"client"},"startTime":1776328844318,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":2694,"timestamp":6721897353655,"id":1666,"parentId":3,"tags":{},"startTime":1776328844390,"traceId":"6b0bec12f182cf2c"},{"name":"compile-path","duration":1347869,"timestamp":6721896009049,"id":301,"tags":{"trigger":"/_not-found","isTurbopack":false},"startTime":1776328843045,"traceId":"6b0bec12f182cf2c"}] +[{"name":"client-success","duration":1,"timestamp":6721897359651,"id":1667,"parentId":3,"tags":{},"startTime":1776328844396,"traceId":"6b0bec12f182cf2c"},{"name":"client-full-reload","duration":3,"timestamp":6721897512982,"id":1669,"parentId":3,"tags":{"stackTrace":""},"startTime":1776328844549,"traceId":"6b0bec12f182cf2c"},{"name":"handle-request","duration":1754652,"timestamp":6721895763123,"id":115,"tags":{"url":"/","isTurbopack":false},"startTime":1776328842799,"traceId":"6b0bec12f182cf2c"},{"name":"memory-usage","duration":0,"timestamp":6721897517808,"id":1670,"parentId":115,"tags":{"url":"/","memory.rss":"520863744","memory.heapUsed":"296416104","memory.heapTotal":"326008832"},"startTime":1776328844554,"traceId":"6b0bec12f182cf2c"},{"name":"handle-request","duration":1545104,"timestamp":6721895976561,"id":266,"tags":{"url":"/_next/static/webpack/35db3881dac8b3c8.webpack.hot-update.json","isTurbopack":false},"startTime":1776328843013,"traceId":"6b0bec12f182cf2c"},{"name":"memory-usage","duration":1,"timestamp":6721897521720,"id":1672,"parentId":266,"tags":{"url":"/_next/static/webpack/35db3881dac8b3c8.webpack.hot-update.json","memory.rss":"521175040","memory.heapUsed":"297134392","memory.heapTotal":"326008832"},"startTime":1776328844558,"traceId":"6b0bec12f182cf2c"},{"name":"handle-request","duration":24849,"timestamp":6721897503100,"id":1668,"tags":{"url":"/","isTurbopack":false},"startTime":1776328844539,"traceId":"6b0bec12f182cf2c"},{"name":"memory-usage","duration":1,"timestamp":6721897527980,"id":1673,"parentId":1668,"tags":{"url":"/","memory.rss":"521617408","memory.heapUsed":"298076968","memory.heapTotal":"326270976"},"startTime":1776328844564,"traceId":"6b0bec12f182cf2c"},{"name":"handle-request","duration":24689,"timestamp":6721897518355,"id":1671,"tags":{"url":"/","isTurbopack":false},"startTime":1776328844555,"traceId":"6b0bec12f182cf2c"},{"name":"memory-usage","duration":0,"timestamp":6721897543087,"id":1674,"parentId":1671,"tags":{"url":"/","memory.rss":"522125312","memory.heapUsed":"299976112","memory.heapTotal":"326533120"},"startTime":1776328844579,"traceId":"6b0bec12f182cf2c"},{"name":"client-success","duration":54,"timestamp":6721898057499,"id":1675,"parentId":3,"tags":{},"startTime":1776328845094,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":6384,"timestamp":6721899827836,"id":1682,"parentId":1680,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1776328846864,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":10461,"timestamp":6721899827792,"id":1681,"parentId":1680,"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":1776328846864,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":13045,"timestamp":6721899833270,"id":1684,"parentId":1683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fsectors%2Fpage&page=%2Fsectors%2Fpage&appPaths=%2Fsectors%2Fpage&pagePath=private-next-app-dir%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":1776328846870,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3013,"timestamp":6721899848528,"id":1687,"parentId":1686,"tags":{},"startTime":1776328846885,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3120,"timestamp":6721899848425,"id":1686,"parentId":1685,"tags":{},"startTime":1776328846885,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":3577,"timestamp":6721899848258,"id":1685,"parentId":1684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"rsc"},"startTime":1776328846885,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":25381,"timestamp":6721899827839,"id":1683,"parentId":1680,"tags":{"request":"next-app-loader?name=app%2Fsectors%2Fpage&page=%2Fsectors%2Fpage&appPaths=%2Fsectors%2Fpage&pagePath=private-next-app-dir%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":1776328846864,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":589,"timestamp":6721899858471,"id":1697,"parentId":1679,"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%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776328846895,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":3910,"timestamp":6721899861179,"id":1700,"parentId":1699,"tags":{},"startTime":1776328846897,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3978,"timestamp":6721899861114,"id":1699,"parentId":1698,"tags":{},"startTime":1776328846897,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":6960,"timestamp":6721899860953,"id":1698,"parentId":1697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"ssr"},"startTime":1776328846897,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1167,"timestamp":6721899877825,"id":1702,"parentId":1701,"tags":{},"startTime":1776328846914,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1007,"timestamp":6721899878377,"id":1704,"parentId":1703,"tags":{},"startTime":1776328846915,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":103,"timestamp":6721899879391,"id":1710,"parentId":1703,"tags":{},"startTime":1776328846916,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1899,"timestamp":6721899878307,"id":1703,"parentId":1698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"ssr"},"startTime":1776328846915,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":1308,"timestamp":6721899879284,"id":1709,"parentId":1708,"tags":{},"startTime":1776328846916,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1348,"timestamp":6721899879248,"id":1708,"parentId":1707,"tags":{},"startTime":1776328846916,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":1814,"timestamp":6721899879191,"id":1707,"parentId":1698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"ssr"},"startTime":1776328846915,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":4774,"timestamp":6721899879065,"id":1706,"parentId":1705,"tags":{},"startTime":1776328846915,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4838,"timestamp":6721899879004,"id":1705,"parentId":1701,"tags":{},"startTime":1776328846915,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7575,"timestamp":6721899877704,"id":1701,"parentId":1698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"ssr"},"startTime":1776328846914,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":751,"timestamp":6721899885933,"id":1721,"parentId":1715,"tags":{},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":50,"timestamp":6721899886701,"id":1723,"parentId":1715,"tags":{},"startTime":1776328846923,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1222,"timestamp":6721899885806,"id":1715,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"ssr"},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1159,"timestamp":6721899885927,"id":1720,"parentId":1714,"tags":{},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721899887091,"id":1724,"parentId":1714,"tags":{},"startTime":1776328846923,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1714,"timestamp":6721899885752,"id":1714,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"ssr"},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":4223,"timestamp":6721899885908,"id":1717,"parentId":1711,"tags":{},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721899890141,"id":1725,"parentId":1711,"tags":{},"startTime":1776328846926,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5096,"timestamp":6721899885549,"id":1711,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"ssr"},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":4764,"timestamp":6721899885923,"id":1719,"parentId":1713,"tags":{},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721899890697,"id":1726,"parentId":1713,"tags":{},"startTime":1776328846927,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5176,"timestamp":6721899885706,"id":1713,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"ssr"},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":5549,"timestamp":6721899885936,"id":1722,"parentId":1716,"tags":{},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721899891492,"id":1727,"parentId":1716,"tags":{},"startTime":1776328846928,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5768,"timestamp":6721899885865,"id":1716,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"ssr"},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":5766,"timestamp":6721899885918,"id":1718,"parentId":1712,"tags":{},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721899891688,"id":1728,"parentId":1712,"tags":{},"startTime":1776328846928,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6203,"timestamp":6721899885642,"id":1712,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"ssr"},"startTime":1776328846922,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12232,"timestamp":6721899897437,"id":1730,"parentId":1729,"tags":{},"startTime":1776328846934,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721899909685,"id":1855,"parentId":1729,"tags":{},"startTime":1776328846946,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12962,"timestamp":6721899897364,"id":1729,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"ssr"},"startTime":1776328846934,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6386,"timestamp":6721899905397,"id":1740,"parentId":1732,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899911789,"id":1856,"parentId":1732,"tags":{},"startTime":1776328846948,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7137,"timestamp":6721899904994,"id":1732,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"ssr"},"startTime":1776328846941,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6711,"timestamp":6721899905433,"id":1744,"parentId":1736,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721899912150,"id":1857,"parentId":1736,"tags":{},"startTime":1776328846948,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8604,"timestamp":6721899905149,"id":1736,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"ssr"},"startTime":1776328846941,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8374,"timestamp":6721899905389,"id":1739,"parentId":1731,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":102,"timestamp":6721899913769,"id":1858,"parentId":1731,"tags":{},"startTime":1776328846950,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14856,"timestamp":6721899904930,"id":1731,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"ssr"},"startTime":1776328846941,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15618,"timestamp":6721899905414,"id":1743,"parentId":1735,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":40,"timestamp":6721899921041,"id":1859,"parentId":1735,"tags":{},"startTime":1776328846957,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16610,"timestamp":6721899905110,"id":1735,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"ssr"},"startTime":1776328846941,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16294,"timestamp":6721899905436,"id":1745,"parentId":1737,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721899921735,"id":1860,"parentId":1737,"tags":{},"startTime":1776328846958,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16654,"timestamp":6721899905212,"id":1737,"parentId":1713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"ssr"},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16532,"timestamp":6721899905402,"id":1741,"parentId":1733,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":70,"timestamp":6721899921938,"id":1861,"parentId":1733,"tags":{},"startTime":1776328846958,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17190,"timestamp":6721899905034,"id":1733,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"ssr"},"startTime":1776328846941,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18366,"timestamp":6721899905440,"id":1746,"parentId":1738,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721899923815,"id":1862,"parentId":1738,"tags":{},"startTime":1776328846960,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18653,"timestamp":6721899905326,"id":1738,"parentId":1713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"ssr"},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18689,"timestamp":6721899905408,"id":1742,"parentId":1734,"tags":{},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721899924101,"id":1863,"parentId":1734,"tags":{},"startTime":1776328846960,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19537,"timestamp":6721899905073,"id":1734,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"ssr"},"startTime":1776328846941,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16381,"timestamp":6721899908433,"id":1803,"parentId":1749,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721899924823,"id":1864,"parentId":1749,"tags":{},"startTime":1776328846961,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18742,"timestamp":6721899906324,"id":1749,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16666,"timestamp":6721899908407,"id":1801,"parentId":1747,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721899925078,"id":1865,"parentId":1747,"tags":{},"startTime":1776328846961,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19119,"timestamp":6721899906136,"id":1747,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"ssr"},"startTime":1776328846942,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16855,"timestamp":6721899908425,"id":1802,"parentId":1748,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721899925284,"id":1866,"parentId":1748,"tags":{},"startTime":1776328846962,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19145,"timestamp":6721899906262,"id":1748,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18365,"timestamp":6721899908453,"id":1806,"parentId":1752,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899926826,"id":1867,"parentId":1752,"tags":{},"startTime":1776328846963,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20637,"timestamp":6721899906452,"id":1752,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18656,"timestamp":6721899908441,"id":1804,"parentId":1750,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721899927102,"id":1868,"parentId":1750,"tags":{},"startTime":1776328846963,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20920,"timestamp":6721899906364,"id":1750,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18831,"timestamp":6721899908458,"id":1807,"parentId":1753,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899927292,"id":1869,"parentId":1753,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20924,"timestamp":6721899906487,"id":1753,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18939,"timestamp":6721899908476,"id":1809,"parentId":1755,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899927419,"id":1870,"parentId":1755,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20965,"timestamp":6721899906558,"id":1755,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19079,"timestamp":6721899908447,"id":1805,"parentId":1751,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721899927529,"id":1871,"parentId":1751,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21211,"timestamp":6721899906414,"id":1751,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":19253,"timestamp":6721899908501,"id":1812,"parentId":1758,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721899927759,"id":1872,"parentId":1758,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21192,"timestamp":6721899906660,"id":1758,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19358,"timestamp":6721899908497,"id":1811,"parentId":1757,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721899927858,"id":1873,"parentId":1757,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21306,"timestamp":6721899906627,"id":1757,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19463,"timestamp":6721899908472,"id":1808,"parentId":1754,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721899927938,"id":1874,"parentId":1754,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21505,"timestamp":6721899906522,"id":1754,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19521,"timestamp":6721899908509,"id":1814,"parentId":1760,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899928034,"id":1875,"parentId":1760,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21400,"timestamp":6721899906737,"id":1760,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19635,"timestamp":6721899908506,"id":1813,"parentId":1759,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721899928143,"id":1876,"parentId":1759,"tags":{},"startTime":1776328846964,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21543,"timestamp":6721899906697,"id":1759,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19750,"timestamp":6721899908493,"id":1810,"parentId":1756,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721899928246,"id":1877,"parentId":1756,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21826,"timestamp":6721899906592,"id":1756,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19898,"timestamp":6721899908524,"id":1818,"parentId":1764,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721899928425,"id":1878,"parentId":1764,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21624,"timestamp":6721899906890,"id":1764,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19988,"timestamp":6721899908531,"id":1820,"parentId":1766,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":23,"timestamp":6721899928521,"id":1879,"parentId":1766,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21647,"timestamp":6721899906957,"id":1766,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20062,"timestamp":6721899908545,"id":1822,"parentId":1768,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721899928610,"id":1880,"parentId":1768,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21659,"timestamp":6721899907029,"id":1768,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20163,"timestamp":6721899908528,"id":1819,"parentId":1765,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721899928693,"id":1881,"parentId":1765,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21837,"timestamp":6721899906924,"id":1765,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20223,"timestamp":6721899908541,"id":1821,"parentId":1767,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721899928767,"id":1882,"parentId":1767,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21866,"timestamp":6721899906995,"id":1767,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20311,"timestamp":6721899908554,"id":1824,"parentId":1770,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":23,"timestamp":6721899928868,"id":1883,"parentId":1770,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21818,"timestamp":6721899907125,"id":1770,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20398,"timestamp":6721899908549,"id":1823,"parentId":1769,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899928949,"id":1884,"parentId":1769,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22079,"timestamp":6721899907087,"id":1769,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20613,"timestamp":6721899908557,"id":1825,"parentId":1771,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721899929173,"id":1885,"parentId":1771,"tags":{},"startTime":1776328846965,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22210,"timestamp":6721899907160,"id":1771,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20813,"timestamp":6721899908561,"id":1826,"parentId":1772,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":23,"timestamp":6721899929376,"id":1886,"parentId":1772,"tags":{},"startTime":1776328846966,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22276,"timestamp":6721899907195,"id":1772,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20907,"timestamp":6721899908567,"id":1828,"parentId":1774,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":23,"timestamp":6721899929477,"id":1887,"parentId":1774,"tags":{},"startTime":1776328846966,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22492,"timestamp":6721899907262,"id":1774,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21253,"timestamp":6721899908513,"id":1815,"parentId":1761,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721899929774,"id":1888,"parentId":1761,"tags":{},"startTime":1776328846966,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23167,"timestamp":6721899906787,"id":1761,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21443,"timestamp":6721899908520,"id":1817,"parentId":1763,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721899929967,"id":1889,"parentId":1763,"tags":{},"startTime":1776328846966,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23234,"timestamp":6721899906855,"id":1763,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21579,"timestamp":6721899908516,"id":1816,"parentId":1762,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899930098,"id":1890,"parentId":1762,"tags":{},"startTime":1776328846966,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23398,"timestamp":6721899906821,"id":1762,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"ssr"},"startTime":1776328846943,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21645,"timestamp":6721899908580,"id":1831,"parentId":1777,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899930229,"id":1891,"parentId":1777,"tags":{},"startTime":1776328846967,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22991,"timestamp":6721899907384,"id":1777,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21790,"timestamp":6721899908590,"id":1834,"parentId":1780,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899930385,"id":1892,"parentId":1780,"tags":{},"startTime":1776328846967,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23064,"timestamp":6721899907496,"id":1780,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21994,"timestamp":6721899908571,"id":1829,"parentId":1775,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899930568,"id":1893,"parentId":1775,"tags":{},"startTime":1776328846967,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23428,"timestamp":6721899907300,"id":1775,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22132,"timestamp":6721899908601,"id":1835,"parentId":1781,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":133,"timestamp":6721899930737,"id":1894,"parentId":1781,"tags":{},"startTime":1776328846967,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23612,"timestamp":6721899907533,"id":1781,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22593,"timestamp":6721899908564,"id":1827,"parentId":1773,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721899931162,"id":1895,"parentId":1773,"tags":{},"startTime":1776328846967,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24228,"timestamp":6721899907228,"id":1773,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22855,"timestamp":6721899908607,"id":1837,"parentId":1783,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721899931467,"id":1896,"parentId":1783,"tags":{},"startTime":1776328846968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23992,"timestamp":6721899907602,"id":1783,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23012,"timestamp":6721899908586,"id":1833,"parentId":1779,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899931602,"id":1897,"parentId":1779,"tags":{},"startTime":1776328846968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24249,"timestamp":6721899907461,"id":1779,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23100,"timestamp":6721899908614,"id":1839,"parentId":1785,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899931718,"id":1898,"parentId":1785,"tags":{},"startTime":1776328846968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24164,"timestamp":6721899907675,"id":1785,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23227,"timestamp":6721899908617,"id":1840,"parentId":1786,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899931847,"id":1899,"parentId":1786,"tags":{},"startTime":1776328846968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24234,"timestamp":6721899907712,"id":1786,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23330,"timestamp":6721899908620,"id":1841,"parentId":1787,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899931953,"id":1900,"parentId":1787,"tags":{},"startTime":1776328846968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24280,"timestamp":6721899907757,"id":1787,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23414,"timestamp":6721899908626,"id":1843,"parentId":1789,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899932044,"id":1901,"parentId":1789,"tags":{},"startTime":1776328846968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24306,"timestamp":6721899907830,"id":1789,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23557,"timestamp":6721899908583,"id":1832,"parentId":1778,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899932143,"id":1902,"parentId":1778,"tags":{},"startTime":1776328846968,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24838,"timestamp":6721899907427,"id":1778,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23640,"timestamp":6721899908629,"id":1844,"parentId":1790,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721899932272,"id":1903,"parentId":1790,"tags":{},"startTime":1776328846969,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24487,"timestamp":6721899907864,"id":1790,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23732,"timestamp":6721899908623,"id":1842,"parentId":1788,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899932357,"id":1904,"parentId":1788,"tags":{},"startTime":1776328846969,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24654,"timestamp":6721899907790,"id":1788,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23807,"timestamp":6721899908641,"id":1845,"parentId":1791,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899932452,"id":1905,"parentId":1791,"tags":{},"startTime":1776328846969,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":24703,"timestamp":6721899907901,"id":1791,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24005,"timestamp":6721899908604,"id":1836,"parentId":1782,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899932612,"id":1906,"parentId":1782,"tags":{},"startTime":1776328846969,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25548,"timestamp":6721899907569,"id":1782,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24479,"timestamp":6721899908645,"id":1846,"parentId":1792,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721899933131,"id":1907,"parentId":1792,"tags":{},"startTime":1776328846969,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25312,"timestamp":6721899907936,"id":1792,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24642,"timestamp":6721899908611,"id":1838,"parentId":1784,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899933256,"id":1908,"parentId":1784,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25733,"timestamp":6721899907638,"id":1784,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24802,"timestamp":6721899908574,"id":1830,"parentId":1776,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721899933385,"id":1909,"parentId":1776,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26124,"timestamp":6721899907349,"id":1776,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24818,"timestamp":6721899908658,"id":1850,"parentId":1796,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721899933480,"id":1910,"parentId":1796,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25471,"timestamp":6721899908092,"id":1796,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24896,"timestamp":6721899908670,"id":1851,"parentId":1797,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899933569,"id":1911,"parentId":1797,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25581,"timestamp":6721899908209,"id":1797,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"ssr"},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25121,"timestamp":6721899908673,"id":1852,"parentId":1798,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899933797,"id":1912,"parentId":1798,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25621,"timestamp":6721899908268,"id":1798,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"ssr"},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25228,"timestamp":6721899908678,"id":1854,"parentId":1800,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721899933909,"id":1913,"parentId":1800,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25713,"timestamp":6721899908354,"id":1800,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"ssr"},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25417,"timestamp":6721899908655,"id":1849,"parentId":1795,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899934075,"id":1914,"parentId":1795,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26114,"timestamp":6721899908049,"id":1795,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25515,"timestamp":6721899908652,"id":1848,"parentId":1794,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721899934170,"id":1915,"parentId":1794,"tags":{},"startTime":1776328846970,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26241,"timestamp":6721899908012,"id":1794,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25581,"timestamp":6721899908675,"id":1853,"parentId":1799,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721899934259,"id":1916,"parentId":1799,"tags":{},"startTime":1776328846971,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27436,"timestamp":6721899908314,"id":1799,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"ssr"},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":27256,"timestamp":6721899908649,"id":1847,"parentId":1793,"tags":{},"startTime":1776328846945,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721899935912,"id":1917,"parentId":1793,"tags":{},"startTime":1776328846972,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28102,"timestamp":6721899907978,"id":1793,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"ssr"},"startTime":1776328846944,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16964,"timestamp":6721900002644,"id":1968,"parentId":1921,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900019620,"id":2102,"parentId":1921,"tags":{},"startTime":1776328847056,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19455,"timestamp":6721900001051,"id":1921,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"ssr"},"startTime":1776328847037,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17887,"timestamp":6721900002648,"id":1969,"parentId":1922,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":71,"timestamp":6721900020546,"id":2103,"parentId":1922,"tags":{},"startTime":1776328847057,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20725,"timestamp":6721900001090,"id":1922,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"ssr"},"startTime":1776328847037,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19199,"timestamp":6721900002631,"id":1966,"parentId":1919,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900021838,"id":2104,"parentId":1919,"tags":{},"startTime":1776328847058,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23640,"timestamp":6721900000959,"id":1919,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"ssr"},"startTime":1776328847037,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22004,"timestamp":6721900002618,"id":1965,"parentId":1918,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":73,"timestamp":6721900024631,"id":2105,"parentId":1918,"tags":{},"startTime":1776328847061,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24519,"timestamp":6721900000858,"id":1918,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"ssr"},"startTime":1776328847037,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22732,"timestamp":6721900002660,"id":1973,"parentId":1926,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900025399,"id":2106,"parentId":1926,"tags":{},"startTime":1776328847062,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24665,"timestamp":6721900001246,"id":1926,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23265,"timestamp":6721900002654,"id":1971,"parentId":1924,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900025926,"id":2107,"parentId":1924,"tags":{},"startTime":1776328847062,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25104,"timestamp":6721900001172,"id":1924,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"ssr"},"startTime":1776328847037,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23615,"timestamp":6721900002666,"id":1975,"parentId":1928,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900026285,"id":2108,"parentId":1928,"tags":{},"startTime":1776328847063,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29848,"timestamp":6721900001321,"id":1928,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":28509,"timestamp":6721900002671,"id":1977,"parentId":1930,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900031186,"id":2109,"parentId":1930,"tags":{},"startTime":1776328847067,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31475,"timestamp":6721900001393,"id":1930,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":30202,"timestamp":6721900002676,"id":1979,"parentId":1932,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900032883,"id":2110,"parentId":1932,"tags":{},"startTime":1776328847069,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31542,"timestamp":6721900001463,"id":1932,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":30348,"timestamp":6721900002663,"id":1974,"parentId":1927,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900033014,"id":2111,"parentId":1927,"tags":{},"startTime":1776328847069,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32224,"timestamp":6721900001281,"id":1927,"parentId":1732,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":30839,"timestamp":6721900002679,"id":1980,"parentId":1933,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900033525,"id":2112,"parentId":1933,"tags":{},"startTime":1776328847070,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32194,"timestamp":6721900001498,"id":1933,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31041,"timestamp":6721900002657,"id":1972,"parentId":1925,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":52,"timestamp":6721900033702,"id":2113,"parentId":1925,"tags":{},"startTime":1776328847070,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34778,"timestamp":6721900001209,"id":1925,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33315,"timestamp":6721900002681,"id":1981,"parentId":1934,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900036002,"id":2114,"parentId":1934,"tags":{},"startTime":1776328847072,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34591,"timestamp":6721900001532,"id":1934,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33444,"timestamp":6721900002686,"id":1983,"parentId":1936,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900036134,"id":2115,"parentId":1936,"tags":{},"startTime":1776328847072,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34645,"timestamp":6721900001601,"id":1936,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33582,"timestamp":6721900002668,"id":1976,"parentId":1929,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900036255,"id":2116,"parentId":1929,"tags":{},"startTime":1776328847073,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35940,"timestamp":6721900001357,"id":1929,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":34664,"timestamp":6721900002651,"id":1970,"parentId":1923,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900037320,"id":2117,"parentId":1923,"tags":{},"startTime":1776328847074,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36790,"timestamp":6721900001134,"id":1923,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"ssr"},"startTime":1776328847037,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35245,"timestamp":6721900002684,"id":1982,"parentId":1935,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900037934,"id":2118,"parentId":1935,"tags":{},"startTime":1776328847074,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36473,"timestamp":6721900001567,"id":1935,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35353,"timestamp":6721900002691,"id":1985,"parentId":1938,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900038049,"id":2119,"parentId":1938,"tags":{},"startTime":1776328847074,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36822,"timestamp":6721900001666,"id":1938,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35801,"timestamp":6721900002693,"id":1986,"parentId":1939,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900038498,"id":2120,"parentId":1939,"tags":{},"startTime":1776328847075,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39061,"timestamp":6721900001701,"id":1939,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38072,"timestamp":6721900002702,"id":1989,"parentId":1942,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":331,"timestamp":6721900040779,"id":2121,"parentId":1942,"tags":{},"startTime":1776328847077,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":41944,"timestamp":6721900001799,"id":1942,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":41078,"timestamp":6721900002674,"id":1978,"parentId":1931,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900043757,"id":2122,"parentId":1931,"tags":{},"startTime":1776328847080,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":42885,"timestamp":6721900001428,"id":1931,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":41634,"timestamp":6721900002689,"id":1984,"parentId":1937,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":38,"timestamp":6721900044421,"id":2123,"parentId":1937,"tags":{},"startTime":1776328847081,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43486,"timestamp":6721900001633,"id":1937,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42454,"timestamp":6721900002699,"id":1988,"parentId":1941,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":68,"timestamp":6721900045166,"id":2124,"parentId":1941,"tags":{},"startTime":1776328847081,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":44065,"timestamp":6721900001766,"id":1941,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":43210,"timestamp":6721900002638,"id":1967,"parentId":1920,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":55,"timestamp":6721900045861,"id":2125,"parentId":1920,"tags":{},"startTime":1776328847082,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47064,"timestamp":6721900001008,"id":1920,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"ssr"},"startTime":1776328847037,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45367,"timestamp":6721900002716,"id":1990,"parentId":1943,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900048094,"id":2126,"parentId":1943,"tags":{},"startTime":1776328847084,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46518,"timestamp":6721900001834,"id":1943,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45636,"timestamp":6721900002722,"id":1992,"parentId":1945,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":40,"timestamp":6721900048363,"id":2127,"parentId":1945,"tags":{},"startTime":1776328847085,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":49712,"timestamp":6721900001899,"id":1945,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51441,"timestamp":6721900002726,"id":1994,"parentId":1947,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900054176,"id":2128,"parentId":1947,"tags":{},"startTime":1776328847090,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":52402,"timestamp":6721900001966,"id":1947,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51651,"timestamp":6721900002724,"id":1993,"parentId":1946,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900054380,"id":2129,"parentId":1946,"tags":{},"startTime":1776328847091,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":52746,"timestamp":6721900001932,"id":1946,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":52005,"timestamp":6721900002719,"id":1991,"parentId":1944,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900054729,"id":2130,"parentId":1944,"tags":{},"startTime":1776328847091,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":54476,"timestamp":6721900001866,"id":1944,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":53690,"timestamp":6721900002731,"id":1996,"parentId":1949,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900056426,"id":2131,"parentId":1949,"tags":{},"startTime":1776328847093,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":54707,"timestamp":6721900002035,"id":1949,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":54023,"timestamp":6721900002729,"id":1995,"parentId":1948,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900056757,"id":2132,"parentId":1948,"tags":{},"startTime":1776328847093,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":54868,"timestamp":6721900002002,"id":1948,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":54198,"timestamp":6721900002734,"id":1997,"parentId":1950,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":57,"timestamp":6721900056962,"id":2133,"parentId":1950,"tags":{},"startTime":1776328847093,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55383,"timestamp":6721900002068,"id":1950,"parentId":1735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":54776,"timestamp":6721900002696,"id":1987,"parentId":1940,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900057477,"id":2134,"parentId":1940,"tags":{},"startTime":1776328847094,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":56026,"timestamp":6721900001733,"id":1940,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":55021,"timestamp":6721900002745,"id":2002,"parentId":1955,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":49,"timestamp":6721900057771,"id":2135,"parentId":1955,"tags":{},"startTime":1776328847094,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":57552,"timestamp":6721900002238,"id":1955,"parentId":1747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":57055,"timestamp":6721900002743,"id":2001,"parentId":1954,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900059803,"id":2136,"parentId":1954,"tags":{},"startTime":1776328847096,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":57810,"timestamp":6721900002204,"id":1954,"parentId":1747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":57272,"timestamp":6721900002748,"id":2003,"parentId":1956,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900060024,"id":2137,"parentId":1956,"tags":{},"startTime":1776328847096,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":59049,"timestamp":6721900002272,"id":1956,"parentId":1748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":58573,"timestamp":6721900002754,"id":2006,"parentId":1959,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900061332,"id":2138,"parentId":1959,"tags":{},"startTime":1776328847098,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":59230,"timestamp":6721900002386,"id":1959,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":58865,"timestamp":6721900002757,"id":2007,"parentId":1960,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900061625,"id":2139,"parentId":1960,"tags":{},"startTime":1776328847098,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":59673,"timestamp":6721900002423,"id":1960,"parentId":1749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":59375,"timestamp":6721900002750,"id":2004,"parentId":1957,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900062130,"id":2140,"parentId":1957,"tags":{},"startTime":1776328847098,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60021,"timestamp":6721900002307,"id":1957,"parentId":1748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":59588,"timestamp":6721900002752,"id":2005,"parentId":1958,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900062344,"id":2141,"parentId":1958,"tags":{},"startTime":1776328847099,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":62026,"timestamp":6721900002349,"id":1958,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":61644,"timestamp":6721900002741,"id":2000,"parentId":1953,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":100,"timestamp":6721900064390,"id":2142,"parentId":1953,"tags":{},"startTime":1776328847101,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":67440,"timestamp":6721900002171,"id":1953,"parentId":1749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":66864,"timestamp":6721900002762,"id":2010,"parentId":1963,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":113,"timestamp":6721900069701,"id":2143,"parentId":1963,"tags":{},"startTime":1776328847106,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":67485,"timestamp":6721900002530,"id":1963,"parentId":1752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":67600,"timestamp":6721900002758,"id":2008,"parentId":1961,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900070365,"id":2144,"parentId":1961,"tags":{},"startTime":1776328847107,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":68155,"timestamp":6721900002457,"id":1961,"parentId":1752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":67884,"timestamp":6721900002739,"id":1999,"parentId":1952,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900070628,"id":2145,"parentId":1952,"tags":{},"startTime":1776328847107,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":69277,"timestamp":6721900002137,"id":1952,"parentId":1749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":66098,"timestamp":6721900010913,"id":2034,"parentId":2012,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900077022,"id":2146,"parentId":2012,"tags":{},"startTime":1776328847113,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":68228,"timestamp":6721900009284,"id":2012,"parentId":1752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":74760,"timestamp":6721900002760,"id":2009,"parentId":1962,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900077526,"id":2147,"parentId":1962,"tags":{},"startTime":1776328847114,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":75181,"timestamp":6721900002493,"id":1962,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":66754,"timestamp":6721900010926,"id":2035,"parentId":2013,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900077683,"id":2148,"parentId":2013,"tags":{},"startTime":1776328847114,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":69408,"timestamp":6721900009438,"id":2013,"parentId":1752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":67922,"timestamp":6721900010945,"id":2039,"parentId":2017,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900078877,"id":2149,"parentId":2017,"tags":{},"startTime":1776328847115,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":70032,"timestamp":6721900009842,"id":2017,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":68953,"timestamp":6721900010931,"id":2036,"parentId":2014,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":301,"timestamp":6721900079890,"id":2150,"parentId":2014,"tags":{},"startTime":1776328847116,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71964,"timestamp":6721900009571,"id":2014,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":78781,"timestamp":6721900002764,"id":2011,"parentId":1964,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900081553,"id":2151,"parentId":1964,"tags":{},"startTime":1776328847118,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79233,"timestamp":6721900002568,"id":1964,"parentId":1752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"ssr"},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":70879,"timestamp":6721900010949,"id":2040,"parentId":2018,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721900081833,"id":2152,"parentId":2018,"tags":{},"startTime":1776328847118,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":72589,"timestamp":6721900009883,"id":2018,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":71566,"timestamp":6721900010936,"id":2037,"parentId":2015,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900082507,"id":2153,"parentId":2015,"tags":{},"startTime":1776328847119,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":73936,"timestamp":6721900009635,"id":2015,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":72646,"timestamp":6721900010957,"id":2043,"parentId":2021,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":65,"timestamp":6721900083658,"id":2154,"parentId":2021,"tags":{},"startTime":1776328847120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":74003,"timestamp":6721900010106,"id":2021,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":73163,"timestamp":6721900010951,"id":2041,"parentId":2019,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900084119,"id":2155,"parentId":2019,"tags":{},"startTime":1776328847120,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":74362,"timestamp":6721900009921,"id":2019,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":73346,"timestamp":6721900010942,"id":2038,"parentId":2016,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900084291,"id":2156,"parentId":2016,"tags":{},"startTime":1776328847121,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":74822,"timestamp":6721900009775,"id":2016,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":73719,"timestamp":6721900010968,"id":2047,"parentId":2025,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900084692,"id":2157,"parentId":2025,"tags":{},"startTime":1776328847121,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":74736,"timestamp":6721900010317,"id":2025,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":74099,"timestamp":6721900010960,"id":2044,"parentId":2022,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900085064,"id":2158,"parentId":2022,"tags":{},"startTime":1776328847121,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":75135,"timestamp":6721900010168,"id":2022,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":74354,"timestamp":6721900010954,"id":2042,"parentId":2020,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900085313,"id":2159,"parentId":2020,"tags":{},"startTime":1776328847122,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":76729,"timestamp":6721900009966,"id":2020,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"ssr"},"startTime":1776328847046,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":83967,"timestamp":6721900002736,"id":1998,"parentId":1951,"tags":{},"startTime":1776328847039,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900086710,"id":2160,"parentId":1951,"tags":{},"startTime":1776328847123,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":85957,"timestamp":6721900002102,"id":1951,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"ssr"},"startTime":1776328847038,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":77136,"timestamp":6721900010966,"id":2046,"parentId":2024,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900088108,"id":2161,"parentId":2024,"tags":{},"startTime":1776328847124,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":77977,"timestamp":6721900010277,"id":2024,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":77286,"timestamp":6721900010973,"id":2049,"parentId":2027,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900088263,"id":2162,"parentId":2027,"tags":{},"startTime":1776328847125,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":78127,"timestamp":6721900010455,"id":2027,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":77615,"timestamp":6721900010975,"id":2050,"parentId":2028,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900088595,"id":2163,"parentId":2028,"tags":{},"startTime":1776328847125,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":78431,"timestamp":6721900010527,"id":2028,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":78002,"timestamp":6721900010963,"id":2045,"parentId":2023,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900088969,"id":2164,"parentId":2023,"tags":{},"startTime":1776328847125,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":78972,"timestamp":6721900010210,"id":2023,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":78289,"timestamp":6721900010971,"id":2048,"parentId":2026,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900089265,"id":2165,"parentId":2026,"tags":{},"startTime":1776328847126,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79053,"timestamp":6721900010382,"id":2026,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":78457,"timestamp":6721900010986,"id":2054,"parentId":2032,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900089448,"id":2166,"parentId":2032,"tags":{},"startTime":1776328847126,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":78882,"timestamp":6721900010784,"id":2032,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":78762,"timestamp":6721900010984,"id":2053,"parentId":2031,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900089751,"id":2167,"parentId":2031,"tags":{},"startTime":1776328847126,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79231,"timestamp":6721900010737,"id":2031,"parentId":1749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":79059,"timestamp":6721900010988,"id":2055,"parentId":2033,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721900090052,"id":2168,"parentId":2033,"tags":{},"startTime":1776328847126,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79730,"timestamp":6721900010844,"id":2033,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":79597,"timestamp":6721900010982,"id":2052,"parentId":2030,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900090583,"id":2169,"parentId":2030,"tags":{},"startTime":1776328847127,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":80790,"timestamp":6721900010647,"id":2030,"parentId":1747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":80462,"timestamp":6721900010980,"id":2051,"parentId":2029,"tags":{},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900091446,"id":2170,"parentId":2029,"tags":{},"startTime":1776328847128,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":80957,"timestamp":6721900010599,"id":2029,"parentId":1734,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"ssr"},"startTime":1776328847047,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":80973,"timestamp":6721900016823,"id":2078,"parentId":2059,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900097823,"id":2171,"parentId":2059,"tags":{},"startTime":1776328847134,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":84072,"timestamp":6721900014090,"id":2059,"parentId":1751,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"ssr"},"startTime":1776328847050,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":81379,"timestamp":6721900016789,"id":2075,"parentId":2056,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":91,"timestamp":6721900098173,"id":2172,"parentId":2056,"tags":{},"startTime":1776328847134,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":87951,"timestamp":6721900013946,"id":2056,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"ssr"},"startTime":1776328847050,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":85144,"timestamp":6721900016818,"id":2077,"parentId":2058,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3450,"timestamp":6721900101992,"id":2173,"parentId":2058,"tags":{},"startTime":1776328847138,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":96888,"timestamp":6721900014050,"id":2058,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"ssr"},"startTime":1776328847050,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":94194,"timestamp":6721900016840,"id":2082,"parentId":2063,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":257,"timestamp":6721900111107,"id":2174,"parentId":2063,"tags":{},"startTime":1776328847147,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":101162,"timestamp":6721900014246,"id":2063,"parentId":1758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"ssr"},"startTime":1776328847051,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":98605,"timestamp":6721900016836,"id":2081,"parentId":2062,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":71,"timestamp":6721900115456,"id":2175,"parentId":2062,"tags":{},"startTime":1776328847152,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":101957,"timestamp":6721900014208,"id":2062,"parentId":1758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"ssr"},"startTime":1776328847051,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":99363,"timestamp":6721900016827,"id":2079,"parentId":2060,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":45,"timestamp":6721900116203,"id":2176,"parentId":2060,"tags":{},"startTime":1776328847153,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":102561,"timestamp":6721900014129,"id":2060,"parentId":1751,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"ssr"},"startTime":1776328847050,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":99892,"timestamp":6721900016811,"id":2076,"parentId":2057,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900116709,"id":2177,"parentId":2057,"tags":{},"startTime":1776328847153,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":103157,"timestamp":6721900014008,"id":2057,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"ssr"},"startTime":1776328847050,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":100318,"timestamp":6721900016855,"id":2086,"parentId":2067,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900117179,"id":2178,"parentId":2067,"tags":{},"startTime":1776328847153,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":101980,"timestamp":6721900015567,"id":2067,"parentId":1754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"ssr"},"startTime":1776328847052,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":100706,"timestamp":6721900016851,"id":2085,"parentId":2066,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900117562,"id":2179,"parentId":2066,"tags":{},"startTime":1776328847154,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":104277,"timestamp":6721900015523,"id":2066,"parentId":1754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"ssr"},"startTime":1776328847052,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":103054,"timestamp":6721900016831,"id":2080,"parentId":2061,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":40,"timestamp":6721900119898,"id":2180,"parentId":2061,"tags":{},"startTime":1776328847156,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":108912,"timestamp":6721900014170,"id":2061,"parentId":1758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"ssr"},"startTime":1776328847050,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":106427,"timestamp":6721900016847,"id":2084,"parentId":2065,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":510,"timestamp":6721900123429,"id":2181,"parentId":2065,"tags":{},"startTime":1776328847160,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":109571,"timestamp":6721900015413,"id":2065,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"ssr"},"startTime":1776328847052,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":108596,"timestamp":6721900016865,"id":2089,"parentId":2070,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":56,"timestamp":6721900125478,"id":2182,"parentId":2070,"tags":{},"startTime":1776328847162,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":109656,"timestamp":6721900016060,"id":2070,"parentId":1754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"ssr"},"startTime":1776328847052,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":108864,"timestamp":6721900016872,"id":2091,"parentId":2072,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900125750,"id":2183,"parentId":2072,"tags":{},"startTime":1776328847162,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":112148,"timestamp":6721900016444,"id":2072,"parentId":1760,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"ssr"},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":111772,"timestamp":6721900016862,"id":2088,"parentId":2069,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":40,"timestamp":6721900128643,"id":2184,"parentId":2069,"tags":{},"startTime":1776328847165,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":113818,"timestamp":6721900015691,"id":2069,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"ssr"},"startTime":1776328847052,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":112684,"timestamp":6721900016844,"id":2083,"parentId":2064,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":51,"timestamp":6721900129535,"id":2185,"parentId":2064,"tags":{},"startTime":1776328847166,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":116741,"timestamp":6721900014284,"id":2064,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"ssr"},"startTime":1776328847051,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":114163,"timestamp":6721900016874,"id":2092,"parentId":2073,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721900131044,"id":2186,"parentId":2073,"tags":{},"startTime":1776328847167,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":116807,"timestamp":6721900016548,"id":2073,"parentId":1760,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"ssr"},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":116501,"timestamp":6721900016868,"id":2090,"parentId":2071,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900133376,"id":2187,"parentId":2071,"tags":{},"startTime":1776328847170,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":117187,"timestamp":6721900016376,"id":2071,"parentId":1754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"ssr"},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":116693,"timestamp":6721900016877,"id":2093,"parentId":2074,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900133574,"id":2188,"parentId":2074,"tags":{},"startTime":1776328847170,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":117028,"timestamp":6721900016727,"id":2074,"parentId":1760,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"ssr"},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":116903,"timestamp":6721900016858,"id":2087,"parentId":2068,"tags":{},"startTime":1776328847053,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900133765,"id":2189,"parentId":2068,"tags":{},"startTime":1776328847170,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":120885,"timestamp":6721900015653,"id":2068,"parentId":1754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"ssr"},"startTime":1776328847052,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":131560,"timestamp":6721900018198,"id":2096,"parentId":2094,"tags":{},"startTime":1776328847055,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900149778,"id":2190,"parentId":2094,"tags":{},"startTime":1776328847186,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":132521,"timestamp":6721900018093,"id":2094,"parentId":1759,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"ssr"},"startTime":1776328847054,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":132417,"timestamp":6721900018207,"id":2097,"parentId":2095,"tags":{},"startTime":1776328847055,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900150630,"id":2191,"parentId":2095,"tags":{},"startTime":1776328847187,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":132729,"timestamp":6721900018151,"id":2095,"parentId":1759,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"ssr"},"startTime":1776328847054,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":131395,"timestamp":6721900019491,"id":2100,"parentId":2098,"tags":{},"startTime":1776328847056,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900150892,"id":2192,"parentId":2098,"tags":{},"startTime":1776328847187,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":131889,"timestamp":6721900019391,"id":2098,"parentId":1760,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"ssr"},"startTime":1776328847056,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":131786,"timestamp":6721900019499,"id":2101,"parentId":2099,"tags":{},"startTime":1776328847056,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900151290,"id":2193,"parentId":2099,"tags":{},"startTime":1776328847188,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":131996,"timestamp":6721900019445,"id":2099,"parentId":1759,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"ssr"},"startTime":1776328847056,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":6869,"timestamp":6721900200325,"id":2242,"parentId":2194,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721900207209,"id":2320,"parentId":2194,"tags":{},"startTime":1776328847244,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9287,"timestamp":6721900198427,"id":2194,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7392,"timestamp":6721900200339,"id":2243,"parentId":2195,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900207737,"id":2321,"parentId":2195,"tags":{},"startTime":1776328847244,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9539,"timestamp":6721900198520,"id":2195,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7967,"timestamp":6721900200343,"id":2244,"parentId":2196,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900208315,"id":2322,"parentId":2196,"tags":{},"startTime":1776328847245,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9981,"timestamp":6721900198564,"id":2196,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8197,"timestamp":6721900200352,"id":2245,"parentId":2197,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900208553,"id":2323,"parentId":2197,"tags":{},"startTime":1776328847245,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10137,"timestamp":6721900198603,"id":2197,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8376,"timestamp":6721900200369,"id":2248,"parentId":2200,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900208752,"id":2324,"parentId":2200,"tags":{},"startTime":1776328847245,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10221,"timestamp":6721900198759,"id":2200,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8622,"timestamp":6721900200362,"id":2246,"parentId":2198,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900208987,"id":2325,"parentId":2198,"tags":{},"startTime":1776328847245,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10395,"timestamp":6721900198675,"id":2198,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8694,"timestamp":6721900200380,"id":2251,"parentId":2203,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900209076,"id":2326,"parentId":2203,"tags":{},"startTime":1776328847245,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10582,"timestamp":6721900198881,"id":2203,"parentId":1764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9094,"timestamp":6721900200375,"id":2249,"parentId":2201,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900209472,"id":2327,"parentId":2201,"tags":{},"startTime":1776328847246,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11194,"timestamp":6721900198804,"id":2201,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9624,"timestamp":6721900200377,"id":2250,"parentId":2202,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900210005,"id":2328,"parentId":2202,"tags":{},"startTime":1776328847246,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11569,"timestamp":6721900198839,"id":2202,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10046,"timestamp":6721900200366,"id":2247,"parentId":2199,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900210416,"id":2329,"parentId":2199,"tags":{},"startTime":1776328847247,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12031,"timestamp":6721900198723,"id":2199,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10376,"timestamp":6721900200382,"id":2252,"parentId":2204,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900210761,"id":2330,"parentId":2204,"tags":{},"startTime":1776328847247,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12699,"timestamp":6721900198920,"id":2204,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11248,"timestamp":6721900200384,"id":2253,"parentId":2205,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900211638,"id":2331,"parentId":2205,"tags":{},"startTime":1776328847248,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14158,"timestamp":6721900198952,"id":2205,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12743,"timestamp":6721900200386,"id":2254,"parentId":2206,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900213135,"id":2332,"parentId":2206,"tags":{},"startTime":1776328847249,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14516,"timestamp":6721900198985,"id":2206,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13120,"timestamp":6721900200392,"id":2256,"parentId":2208,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900213517,"id":2333,"parentId":2208,"tags":{},"startTime":1776328847250,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15045,"timestamp":6721900199060,"id":2208,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13724,"timestamp":6721900200389,"id":2255,"parentId":2207,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900214118,"id":2334,"parentId":2207,"tags":{},"startTime":1776328847250,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15552,"timestamp":6721900199028,"id":2207,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14193,"timestamp":6721900200394,"id":2257,"parentId":2209,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900214592,"id":2335,"parentId":2209,"tags":{},"startTime":1776328847251,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15826,"timestamp":6721900199091,"id":2209,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14527,"timestamp":6721900200396,"id":2258,"parentId":2210,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900214927,"id":2336,"parentId":2210,"tags":{},"startTime":1776328847251,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16663,"timestamp":6721900199123,"id":2210,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15393,"timestamp":6721900200399,"id":2259,"parentId":2211,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900215795,"id":2337,"parentId":2211,"tags":{},"startTime":1776328847252,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16996,"timestamp":6721900199163,"id":2211,"parentId":1731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"ssr"},"startTime":1776328847235,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15761,"timestamp":6721900200403,"id":2261,"parentId":2213,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900216168,"id":2338,"parentId":2213,"tags":{},"startTime":1776328847252,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18275,"timestamp":6721900199241,"id":2213,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17134,"timestamp":6721900200405,"id":2262,"parentId":2214,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":49,"timestamp":6721900217549,"id":2339,"parentId":2214,"tags":{},"startTime":1776328847254,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21018,"timestamp":6721900199277,"id":2214,"parentId":1738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19905,"timestamp":6721900200401,"id":2260,"parentId":2212,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900220313,"id":2340,"parentId":2212,"tags":{},"startTime":1776328847257,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22323,"timestamp":6721900199209,"id":2212,"parentId":1729,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21129,"timestamp":6721900200411,"id":2265,"parentId":2217,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900221544,"id":2341,"parentId":2217,"tags":{},"startTime":1776328847258,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22805,"timestamp":6721900199388,"id":2217,"parentId":1764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21791,"timestamp":6721900200407,"id":2263,"parentId":2215,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900222202,"id":2342,"parentId":2215,"tags":{},"startTime":1776328847259,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23641,"timestamp":6721900199308,"id":2215,"parentId":1737,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22556,"timestamp":6721900200413,"id":2266,"parentId":2218,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900222978,"id":2343,"parentId":2218,"tags":{},"startTime":1776328847259,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23910,"timestamp":6721900199420,"id":2218,"parentId":1764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22938,"timestamp":6721900200409,"id":2264,"parentId":2216,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900223354,"id":2344,"parentId":2216,"tags":{},"startTime":1776328847260,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24494,"timestamp":6721900199352,"id":2216,"parentId":1733,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23438,"timestamp":6721900200417,"id":2268,"parentId":2220,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900223860,"id":2345,"parentId":2220,"tags":{},"startTime":1776328847260,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24845,"timestamp":6721900199486,"id":2220,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23919,"timestamp":6721900200421,"id":2270,"parentId":2222,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900224346,"id":2346,"parentId":2222,"tags":{},"startTime":1776328847261,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25034,"timestamp":6721900199558,"id":2222,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24179,"timestamp":6721900200419,"id":2269,"parentId":2221,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900224603,"id":2347,"parentId":2221,"tags":{},"startTime":1776328847261,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25376,"timestamp":6721900199525,"id":2221,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24483,"timestamp":6721900200423,"id":2271,"parentId":2223,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900224911,"id":2348,"parentId":2223,"tags":{},"startTime":1776328847261,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25815,"timestamp":6721900199594,"id":2223,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24999,"timestamp":6721900200430,"id":2274,"parentId":2226,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900225434,"id":2349,"parentId":2226,"tags":{},"startTime":1776328847262,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26114,"timestamp":6721900199697,"id":2226,"parentId":1765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25374,"timestamp":6721900200445,"id":2275,"parentId":2227,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":47,"timestamp":6721900225909,"id":2350,"parentId":2227,"tags":{},"startTime":1776328847262,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26616,"timestamp":6721900199732,"id":2227,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25925,"timestamp":6721900200428,"id":2273,"parentId":2225,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900226357,"id":2351,"parentId":2225,"tags":{},"startTime":1776328847263,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27481,"timestamp":6721900199664,"id":2225,"parentId":1765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26739,"timestamp":6721900200415,"id":2267,"parentId":2219,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900227159,"id":2352,"parentId":2219,"tags":{},"startTime":1776328847263,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27864,"timestamp":6721900199454,"id":2219,"parentId":1764,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26896,"timestamp":6721900200426,"id":2272,"parentId":2224,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":46,"timestamp":6721900227325,"id":2353,"parentId":2224,"tags":{},"startTime":1776328847264,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29417,"timestamp":6721900199628,"id":2224,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":28606,"timestamp":6721900200447,"id":2276,"parentId":2228,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900229057,"id":2354,"parentId":2228,"tags":{},"startTime":1776328847265,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29778,"timestamp":6721900199765,"id":2228,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":29099,"timestamp":6721900200449,"id":2277,"parentId":2229,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900229552,"id":2355,"parentId":2229,"tags":{},"startTime":1776328847266,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30244,"timestamp":6721900199800,"id":2229,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":29599,"timestamp":6721900200451,"id":2278,"parentId":2230,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900230054,"id":2356,"parentId":2230,"tags":{},"startTime":1776328847266,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31594,"timestamp":6721900199856,"id":2230,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31010,"timestamp":6721900200453,"id":2279,"parentId":2231,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900231470,"id":2357,"parentId":2231,"tags":{},"startTime":1776328847268,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32118,"timestamp":6721900199891,"id":2231,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31556,"timestamp":6721900200460,"id":2283,"parentId":2235,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900232022,"id":2358,"parentId":2235,"tags":{},"startTime":1776328847268,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32410,"timestamp":6721900200038,"id":2235,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31999,"timestamp":6721900200458,"id":2282,"parentId":2234,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900232465,"id":2359,"parentId":2234,"tags":{},"startTime":1776328847269,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32971,"timestamp":6721900200006,"id":2234,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":32529,"timestamp":6721900200454,"id":2280,"parentId":2232,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900232988,"id":2360,"parentId":2232,"tags":{},"startTime":1776328847269,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33232,"timestamp":6721900199930,"id":2232,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":32781,"timestamp":6721900200462,"id":2284,"parentId":2236,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900233248,"id":2361,"parentId":2236,"tags":{},"startTime":1776328847270,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33618,"timestamp":6721900200083,"id":2236,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33242,"timestamp":6721900200464,"id":2285,"parentId":2237,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900233713,"id":2362,"parentId":2237,"tags":{},"startTime":1776328847270,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33871,"timestamp":6721900200123,"id":2237,"parentId":1774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33543,"timestamp":6721900200457,"id":2281,"parentId":2233,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900234004,"id":2363,"parentId":2233,"tags":{},"startTime":1776328847270,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34248,"timestamp":6721900199970,"id":2233,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37866,"timestamp":6721900200472,"id":2289,"parentId":2241,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900238346,"id":2364,"parentId":2241,"tags":{},"startTime":1776328847275,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38248,"timestamp":6721900200274,"id":2241,"parentId":1761,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"ssr"},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38151,"timestamp":6721900200466,"id":2286,"parentId":2238,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900238621,"id":2365,"parentId":2238,"tags":{},"startTime":1776328847275,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38620,"timestamp":6721900200156,"id":2238,"parentId":1761,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"ssr"},"startTime":1776328847236,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38417,"timestamp":6721900200470,"id":2288,"parentId":2240,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900238890,"id":2366,"parentId":2240,"tags":{},"startTime":1776328847275,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39014,"timestamp":6721900200242,"id":2240,"parentId":1761,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"ssr"},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38791,"timestamp":6721900200468,"id":2287,"parentId":2239,"tags":{},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900239263,"id":2367,"parentId":2239,"tags":{},"startTime":1776328847276,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39400,"timestamp":6721900200197,"id":2239,"parentId":1761,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"ssr"},"startTime":1776328847237,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37115,"timestamp":6721900202489,"id":2303,"parentId":2292,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900239608,"id":2368,"parentId":2292,"tags":{},"startTime":1776328847276,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38260,"timestamp":6721900202128,"id":2292,"parentId":1762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"ssr"},"startTime":1776328847238,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37917,"timestamp":6721900202476,"id":2301,"parentId":2290,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900240397,"id":2369,"parentId":2290,"tags":{},"startTime":1776328847277,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38573,"timestamp":6721900202024,"id":2290,"parentId":1763,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"ssr"},"startTime":1776328847238,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38100,"timestamp":6721900202502,"id":2305,"parentId":2294,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900240606,"id":2370,"parentId":2294,"tags":{},"startTime":1776328847277,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38485,"timestamp":6721900202219,"id":2294,"parentId":1762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"ssr"},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38222,"timestamp":6721900202485,"id":2302,"parentId":2291,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900240711,"id":2371,"parentId":2291,"tags":{},"startTime":1776328847277,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38776,"timestamp":6721900202082,"id":2291,"parentId":1763,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"ssr"},"startTime":1776328847238,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42637,"timestamp":6721900202493,"id":2304,"parentId":2293,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721900245147,"id":2372,"parentId":2293,"tags":{},"startTime":1776328847281,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43377,"timestamp":6721900202174,"id":2293,"parentId":1762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"ssr"},"startTime":1776328847238,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":43055,"timestamp":6721900202504,"id":2306,"parentId":2295,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900245565,"id":2373,"parentId":2295,"tags":{},"startTime":1776328847282,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43554,"timestamp":6721900202254,"id":2295,"parentId":1762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"ssr"},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":43304,"timestamp":6721900202509,"id":2308,"parentId":2297,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900245818,"id":2374,"parentId":2297,"tags":{},"startTime":1776328847282,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":44057,"timestamp":6721900202322,"id":2297,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"ssr"},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":43892,"timestamp":6721900202512,"id":2309,"parentId":2298,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900246408,"id":2375,"parentId":2298,"tags":{},"startTime":1776328847283,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":44900,"timestamp":6721900202363,"id":2298,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"ssr"},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44756,"timestamp":6721900202514,"id":2310,"parentId":2299,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900247275,"id":2376,"parentId":2299,"tags":{},"startTime":1776328847284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45159,"timestamp":6721900202396,"id":2299,"parentId":1780,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"ssr"},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45043,"timestamp":6721900202516,"id":2311,"parentId":2300,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900247562,"id":2377,"parentId":2300,"tags":{},"startTime":1776328847284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45250,"timestamp":6721900202437,"id":2300,"parentId":1780,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"ssr"},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45225,"timestamp":6721900202507,"id":2307,"parentId":2296,"tags":{},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900247736,"id":2378,"parentId":2296,"tags":{},"startTime":1776328847284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46017,"timestamp":6721900202288,"id":2296,"parentId":1762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"ssr"},"startTime":1776328847239,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44481,"timestamp":6721900203892,"id":2316,"parentId":2313,"tags":{},"startTime":1776328847240,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900248378,"id":2379,"parentId":2313,"tags":{},"startTime":1776328847285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45141,"timestamp":6721900203775,"id":2313,"parentId":1780,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"ssr"},"startTime":1776328847240,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50034,"timestamp":6721900203880,"id":2315,"parentId":2312,"tags":{},"startTime":1776328847240,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900253921,"id":2380,"parentId":2312,"tags":{},"startTime":1776328847290,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50454,"timestamp":6721900203668,"id":2312,"parentId":1780,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"ssr"},"startTime":1776328847240,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50231,"timestamp":6721900203895,"id":2317,"parentId":2314,"tags":{},"startTime":1776328847240,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900254129,"id":2381,"parentId":2314,"tags":{},"startTime":1776328847290,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51160,"timestamp":6721900203827,"id":2314,"parentId":1780,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"ssr"},"startTime":1776328847240,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50583,"timestamp":6721900204521,"id":2319,"parentId":2318,"tags":{},"startTime":1776328847241,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900255112,"id":2382,"parentId":2318,"tags":{},"startTime":1776328847291,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51050,"timestamp":6721900204423,"id":2318,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"ssr"},"startTime":1776328847241,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8227,"timestamp":6721900283500,"id":2413,"parentId":2388,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900291737,"id":2451,"parentId":2388,"tags":{},"startTime":1776328847328,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9614,"timestamp":6721900282696,"id":2388,"parentId":1773,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":8890,"timestamp":6721900283505,"id":2415,"parentId":2390,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900292400,"id":2452,"parentId":2390,"tags":{},"startTime":1776328847329,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9756,"timestamp":6721900282779,"id":2390,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9031,"timestamp":6721900283508,"id":2416,"parentId":2391,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900292542,"id":2453,"parentId":2391,"tags":{},"startTime":1776328847329,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9860,"timestamp":6721900282820,"id":2391,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9193,"timestamp":6721900283490,"id":2411,"parentId":2386,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":44,"timestamp":6721900292686,"id":2454,"parentId":2386,"tags":{},"startTime":1776328847329,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10744,"timestamp":6721900282497,"id":2386,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9743,"timestamp":6721900283503,"id":2414,"parentId":2389,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900293248,"id":2455,"parentId":2389,"tags":{},"startTime":1776328847330,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11027,"timestamp":6721900282737,"id":2389,"parentId":1773,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10258,"timestamp":6721900283511,"id":2417,"parentId":2392,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900293772,"id":2456,"parentId":2392,"tags":{},"startTime":1776328847330,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11810,"timestamp":6721900282860,"id":2392,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11208,"timestamp":6721900283466,"id":2408,"parentId":2383,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900294677,"id":2457,"parentId":2383,"tags":{},"startTime":1776328847331,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12776,"timestamp":6721900282064,"id":2383,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"ssr"},"startTime":1776328847318,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11325,"timestamp":6721900283519,"id":2420,"parentId":2395,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900294847,"id":2458,"parentId":2395,"tags":{},"startTime":1776328847331,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13647,"timestamp":6721900282977,"id":2395,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13131,"timestamp":6721900283516,"id":2419,"parentId":2394,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":47,"timestamp":6721900296659,"id":2459,"parentId":2394,"tags":{},"startTime":1776328847333,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14200,"timestamp":6721900282934,"id":2394,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13635,"timestamp":6721900283514,"id":2418,"parentId":2393,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900297153,"id":2460,"parentId":2393,"tags":{},"startTime":1776328847333,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14930,"timestamp":6721900282897,"id":2393,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14312,"timestamp":6721900283522,"id":2421,"parentId":2396,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900297839,"id":2461,"parentId":2396,"tags":{},"startTime":1776328847334,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15354,"timestamp":6721900283015,"id":2396,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14883,"timestamp":6721900283497,"id":2412,"parentId":2387,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900298386,"id":2462,"parentId":2387,"tags":{},"startTime":1776328847335,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15920,"timestamp":6721900282641,"id":2387,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15033,"timestamp":6721900283535,"id":2426,"parentId":2401,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900298572,"id":2463,"parentId":2401,"tags":{},"startTime":1776328847335,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15576,"timestamp":6721900283196,"id":2401,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15244,"timestamp":6721900283532,"id":2425,"parentId":2400,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900298779,"id":2464,"parentId":2400,"tags":{},"startTime":1776328847335,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15753,"timestamp":6721900283160,"id":2400,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15438,"timestamp":6721900283479,"id":2409,"parentId":2384,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900298919,"id":2465,"parentId":2384,"tags":{},"startTime":1776328847335,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16885,"timestamp":6721900282267,"id":2384,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15671,"timestamp":6721900283485,"id":2410,"parentId":2385,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900299158,"id":2466,"parentId":2385,"tags":{},"startTime":1776328847335,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17036,"timestamp":6721900282338,"id":2385,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15854,"timestamp":6721900283524,"id":2422,"parentId":2397,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900299382,"id":2467,"parentId":2397,"tags":{},"startTime":1776328847336,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16617,"timestamp":6721900283051,"id":2397,"parentId":1774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16136,"timestamp":6721900283537,"id":2427,"parentId":2402,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900299676,"id":2468,"parentId":2402,"tags":{},"startTime":1776328847336,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16767,"timestamp":6721900283230,"id":2402,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"ssr"},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16459,"timestamp":6721900283543,"id":2430,"parentId":2405,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900300005,"id":2469,"parentId":2405,"tags":{},"startTime":1776328847336,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16804,"timestamp":6721900283337,"id":2405,"parentId":1774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"ssr"},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16608,"timestamp":6721900283538,"id":2428,"parentId":2403,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900300149,"id":2470,"parentId":2403,"tags":{},"startTime":1776328847336,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17131,"timestamp":6721900283267,"id":2403,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"ssr"},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16874,"timestamp":6721900283527,"id":2423,"parentId":2398,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900300404,"id":2471,"parentId":2398,"tags":{},"startTime":1776328847337,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17630,"timestamp":6721900283088,"id":2398,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17181,"timestamp":6721900283540,"id":2429,"parentId":2404,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900300728,"id":2472,"parentId":2404,"tags":{},"startTime":1776328847337,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17960,"timestamp":6721900283302,"id":2404,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"ssr"},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17730,"timestamp":6721900283545,"id":2431,"parentId":2406,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900301281,"id":2473,"parentId":2406,"tags":{},"startTime":1776328847338,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18126,"timestamp":6721900283373,"id":2406,"parentId":1774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"ssr"},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20542,"timestamp":6721900283529,"id":2424,"parentId":2399,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900304078,"id":2474,"parentId":2399,"tags":{},"startTime":1776328847340,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21144,"timestamp":6721900283124,"id":2399,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"ssr"},"startTime":1776328847319,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20726,"timestamp":6721900283547,"id":2432,"parentId":2407,"tags":{},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900304277,"id":2475,"parentId":2407,"tags":{},"startTime":1776328847341,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21124,"timestamp":6721900283408,"id":2407,"parentId":1773,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"ssr"},"startTime":1776328847320,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19255,"timestamp":6721900285388,"id":2440,"parentId":2434,"tags":{},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900304648,"id":2476,"parentId":2434,"tags":{},"startTime":1776328847341,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19733,"timestamp":6721900285126,"id":2434,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"ssr"},"startTime":1776328847321,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19485,"timestamp":6721900285377,"id":2439,"parentId":2433,"tags":{},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900304866,"id":2477,"parentId":2433,"tags":{},"startTime":1776328847341,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19962,"timestamp":6721900285072,"id":2433,"parentId":1773,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"ssr"},"startTime":1776328847321,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19636,"timestamp":6721900285403,"id":2444,"parentId":2438,"tags":{},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900305042,"id":2478,"parentId":2438,"tags":{},"startTime":1776328847341,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19894,"timestamp":6721900285331,"id":2438,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"ssr"},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19859,"timestamp":6721900285393,"id":2441,"parentId":2435,"tags":{},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900305256,"id":2479,"parentId":2435,"tags":{},"startTime":1776328847342,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21346,"timestamp":6721900285167,"id":2435,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"ssr"},"startTime":1776328847321,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21120,"timestamp":6721900285401,"id":2443,"parentId":2437,"tags":{},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900306524,"id":2480,"parentId":2437,"tags":{},"startTime":1776328847343,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21456,"timestamp":6721900285289,"id":2437,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"ssr"},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21353,"timestamp":6721900285397,"id":2442,"parentId":2436,"tags":{},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900306753,"id":2481,"parentId":2436,"tags":{},"startTime":1776328847343,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21660,"timestamp":6721900285230,"id":2436,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"ssr"},"startTime":1776328847322,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26568,"timestamp":6721900289531,"id":2450,"parentId":2449,"tags":{},"startTime":1776328847326,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900316105,"id":2482,"parentId":2449,"tags":{},"startTime":1776328847352,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26869,"timestamp":6721900289445,"id":2449,"parentId":1785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"ssr"},"startTime":1776328847326,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26943,"timestamp":6721900289375,"id":2448,"parentId":2446,"tags":{},"startTime":1776328847326,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900316322,"id":2483,"parentId":2446,"tags":{},"startTime":1776328847353,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27112,"timestamp":6721900289322,"id":2446,"parentId":1785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"ssr"},"startTime":1776328847326,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":27070,"timestamp":6721900289369,"id":2447,"parentId":2445,"tags":{},"startTime":1776328847326,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721900316441,"id":2484,"parentId":2445,"tags":{},"startTime":1776328847353,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28728,"timestamp":6721900289256,"id":2445,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"ssr"},"startTime":1776328847326,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9597,"timestamp":6721900348642,"id":2563,"parentId":2487,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":50,"timestamp":6721900358255,"id":2683,"parentId":2487,"tags":{},"startTime":1776328847395,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":13972,"timestamp":6721900344822,"id":2487,"parentId":1786,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10464,"timestamp":6721900348608,"id":2561,"parentId":2485,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900359077,"id":2684,"parentId":2485,"tags":{},"startTime":1776328847395,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15489,"timestamp":6721900344662,"id":2485,"parentId":1785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11531,"timestamp":6721900348633,"id":2562,"parentId":2486,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900360170,"id":2685,"parentId":2486,"tags":{},"startTime":1776328847396,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16268,"timestamp":6721900344771,"id":2486,"parentId":1786,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12374,"timestamp":6721900348672,"id":2569,"parentId":2493,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900361051,"id":2686,"parentId":2493,"tags":{},"startTime":1776328847397,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16126,"timestamp":6721900345124,"id":2493,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12587,"timestamp":6721900348668,"id":2568,"parentId":2492,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900361259,"id":2687,"parentId":2492,"tags":{},"startTime":1776328847398,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16296,"timestamp":6721900345085,"id":2492,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12722,"timestamp":6721900348664,"id":2567,"parentId":2491,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900361390,"id":2688,"parentId":2491,"tags":{},"startTime":1776328847398,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16466,"timestamp":6721900345046,"id":2491,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12861,"timestamp":6721900348656,"id":2565,"parentId":2489,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900361520,"id":2689,"parentId":2489,"tags":{},"startTime":1776328847398,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17624,"timestamp":6721900344954,"id":2489,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13924,"timestamp":6721900348660,"id":2566,"parentId":2490,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900362588,"id":2690,"parentId":2490,"tags":{},"startTime":1776328847399,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17780,"timestamp":6721900344996,"id":2490,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14103,"timestamp":6721900348677,"id":2570,"parentId":2494,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900362784,"id":2691,"parentId":2494,"tags":{},"startTime":1776328847399,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18186,"timestamp":6721900345161,"id":2494,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14703,"timestamp":6721900348649,"id":2564,"parentId":2488,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900363356,"id":2692,"parentId":2488,"tags":{},"startTime":1776328847400,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18883,"timestamp":6721900344903,"id":2488,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"ssr"},"startTime":1776328847381,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15104,"timestamp":6721900348686,"id":2573,"parentId":2497,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900363794,"id":2693,"parentId":2497,"tags":{},"startTime":1776328847400,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19779,"timestamp":6721900345279,"id":2497,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16386,"timestamp":6721900348683,"id":2572,"parentId":2496,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900365076,"id":2694,"parentId":2496,"tags":{},"startTime":1776328847401,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20020,"timestamp":6721900345240,"id":2496,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16585,"timestamp":6721900348680,"id":2571,"parentId":2495,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900365268,"id":2695,"parentId":2495,"tags":{},"startTime":1776328847402,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20230,"timestamp":6721900345201,"id":2495,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":16838,"timestamp":6721900348689,"id":2574,"parentId":2498,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900365531,"id":2696,"parentId":2498,"tags":{},"startTime":1776328847402,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20435,"timestamp":6721900345319,"id":2498,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17067,"timestamp":6721900348692,"id":2575,"parentId":2499,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900365764,"id":2697,"parentId":2499,"tags":{},"startTime":1776328847402,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20631,"timestamp":6721900345362,"id":2499,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17302,"timestamp":6721900348695,"id":2576,"parentId":2500,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900366001,"id":2698,"parentId":2500,"tags":{},"startTime":1776328847402,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20903,"timestamp":6721900345399,"id":2500,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17600,"timestamp":6721900348706,"id":2579,"parentId":2503,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900366309,"id":2699,"parentId":2503,"tags":{},"startTime":1776328847403,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20923,"timestamp":6721900345510,"id":2503,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":17738,"timestamp":6721900348698,"id":2577,"parentId":2501,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900366439,"id":2700,"parentId":2501,"tags":{},"startTime":1776328847403,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21802,"timestamp":6721900345438,"id":2501,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18543,"timestamp":6721900348703,"id":2578,"parentId":2502,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900367249,"id":2701,"parentId":2502,"tags":{},"startTime":1776328847404,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22126,"timestamp":6721900345473,"id":2502,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18886,"timestamp":6721900348717,"id":2583,"parentId":2507,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900367608,"id":2702,"parentId":2507,"tags":{},"startTime":1776328847404,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22590,"timestamp":6721900345680,"id":2507,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":19563,"timestamp":6721900348712,"id":2581,"parentId":2505,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900368278,"id":2703,"parentId":2505,"tags":{},"startTime":1776328847405,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23828,"timestamp":6721900345584,"id":2505,"parentId":1782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20728,"timestamp":6721900348720,"id":2584,"parentId":2508,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":48,"timestamp":6721900369463,"id":2704,"parentId":2508,"tags":{},"startTime":1776328847406,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24133,"timestamp":6721900345716,"id":2508,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21145,"timestamp":6721900348714,"id":2582,"parentId":2506,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900369864,"id":2705,"parentId":2506,"tags":{},"startTime":1776328847406,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25029,"timestamp":6721900345644,"id":2506,"parentId":1782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21958,"timestamp":6721900348726,"id":2586,"parentId":2510,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900370690,"id":2706,"parentId":2510,"tags":{},"startTime":1776328847407,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25049,"timestamp":6721900345792,"id":2510,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22137,"timestamp":6721900348709,"id":2580,"parentId":2504,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900370849,"id":2707,"parentId":2504,"tags":{},"startTime":1776328847407,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25751,"timestamp":6721900345549,"id":2504,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22581,"timestamp":6721900348723,"id":2585,"parentId":2509,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900371308,"id":2708,"parentId":2509,"tags":{},"startTime":1776328847408,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25646,"timestamp":6721900345756,"id":2509,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22681,"timestamp":6721900348729,"id":2587,"parentId":2511,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900371413,"id":2709,"parentId":2511,"tags":{},"startTime":1776328847408,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25991,"timestamp":6721900345832,"id":2511,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23084,"timestamp":6721900348742,"id":2589,"parentId":2513,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900371830,"id":2710,"parentId":2513,"tags":{},"startTime":1776328847408,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26023,"timestamp":6721900345903,"id":2513,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23184,"timestamp":6721900348747,"id":2590,"parentId":2514,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900371934,"id":2711,"parentId":2514,"tags":{},"startTime":1776328847408,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26365,"timestamp":6721900345941,"id":2514,"parentId":1799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23557,"timestamp":6721900348753,"id":2592,"parentId":2516,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900372314,"id":2712,"parentId":2516,"tags":{},"startTime":1776328847409,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26731,"timestamp":6721900346011,"id":2516,"parentId":1799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24026,"timestamp":6721900348732,"id":2588,"parentId":2512,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":54,"timestamp":6721900372765,"id":2713,"parentId":2512,"tags":{},"startTime":1776328847409,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27440,"timestamp":6721900345868,"id":2512,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24549,"timestamp":6721900348765,"id":2596,"parentId":2520,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900373319,"id":2714,"parentId":2520,"tags":{},"startTime":1776328847410,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27335,"timestamp":6721900346155,"id":2520,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24744,"timestamp":6721900348750,"id":2591,"parentId":2515,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900373497,"id":2715,"parentId":2515,"tags":{},"startTime":1776328847410,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28244,"timestamp":6721900345977,"id":2515,"parentId":1800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25470,"timestamp":6721900348755,"id":2593,"parentId":2517,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900374229,"id":2716,"parentId":2517,"tags":{},"startTime":1776328847411,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28550,"timestamp":6721900346047,"id":2517,"parentId":1799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25842,"timestamp":6721900348762,"id":2595,"parentId":2519,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":24,"timestamp":6721900374675,"id":2717,"parentId":2519,"tags":{},"startTime":1776328847411,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28667,"timestamp":6721900346120,"id":2519,"parentId":1797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26034,"timestamp":6721900348759,"id":2594,"parentId":2518,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900374796,"id":2718,"parentId":2518,"tags":{},"startTime":1776328847411,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30222,"timestamp":6721900346086,"id":2518,"parentId":1796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":27562,"timestamp":6721900348768,"id":2597,"parentId":2521,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":105,"timestamp":6721900376340,"id":2719,"parentId":2521,"tags":{},"startTime":1776328847413,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32242,"timestamp":6721900346189,"id":2521,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"ssr"},"startTime":1776328847382,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":29670,"timestamp":6721900348771,"id":2598,"parentId":2522,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900378446,"id":2720,"parentId":2522,"tags":{},"startTime":1776328847415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32376,"timestamp":6721900346224,"id":2522,"parentId":1784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":29829,"timestamp":6721900348776,"id":2600,"parentId":2524,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900378609,"id":2721,"parentId":2524,"tags":{},"startTime":1776328847415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32829,"timestamp":6721900346295,"id":2524,"parentId":1784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":30359,"timestamp":6721900348773,"id":2599,"parentId":2523,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":49,"timestamp":6721900379138,"id":2722,"parentId":2523,"tags":{},"startTime":1776328847415,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33886,"timestamp":6721900346258,"id":2523,"parentId":1776,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31365,"timestamp":6721900348787,"id":2604,"parentId":2528,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":52,"timestamp":6721900380157,"id":2723,"parentId":2528,"tags":{},"startTime":1776328847416,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34638,"timestamp":6721900346440,"id":2528,"parentId":1795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":32305,"timestamp":6721900348779,"id":2601,"parentId":2525,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900381089,"id":2724,"parentId":2525,"tags":{},"startTime":1776328847417,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34938,"timestamp":6721900346328,"id":2525,"parentId":1796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":32492,"timestamp":6721900348782,"id":2602,"parentId":2526,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":44,"timestamp":6721900381279,"id":2725,"parentId":2526,"tags":{},"startTime":1776328847418,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35137,"timestamp":6721900346366,"id":2526,"parentId":1798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":32721,"timestamp":6721900348785,"id":2603,"parentId":2527,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900381509,"id":2726,"parentId":2527,"tags":{},"startTime":1776328847418,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35428,"timestamp":6721900346401,"id":2527,"parentId":1798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33038,"timestamp":6721900348795,"id":2607,"parentId":2531,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900381837,"id":2727,"parentId":2531,"tags":{},"startTime":1776328847418,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35650,"timestamp":6721900346634,"id":2531,"parentId":1794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33489,"timestamp":6721900348800,"id":2609,"parentId":2533,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900382292,"id":2728,"parentId":2533,"tags":{},"startTime":1776328847419,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36296,"timestamp":6721900346761,"id":2533,"parentId":1799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":34266,"timestamp":6721900348798,"id":2608,"parentId":2532,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":75,"timestamp":6721900383066,"id":2729,"parentId":2532,"tags":{},"startTime":1776328847419,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37840,"timestamp":6721900346716,"id":2532,"parentId":1794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35772,"timestamp":6721900348790,"id":2605,"parentId":2529,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900384566,"id":2730,"parentId":2529,"tags":{},"startTime":1776328847421,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38479,"timestamp":6721900346491,"id":2529,"parentId":1795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":36160,"timestamp":6721900348814,"id":2613,"parentId":2537,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":70,"timestamp":6721900384986,"id":2731,"parentId":2537,"tags":{},"startTime":1776328847421,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39064,"timestamp":6721900347695,"id":2537,"parentId":1928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37974,"timestamp":6721900348809,"id":2611,"parentId":2535,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721900386796,"id":2732,"parentId":2535,"tags":{},"startTime":1776328847423,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40287,"timestamp":6721900346837,"id":2535,"parentId":1776,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38320,"timestamp":6721900348812,"id":2612,"parentId":2536,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900387137,"id":2733,"parentId":2536,"tags":{},"startTime":1776328847423,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40347,"timestamp":6721900347642,"id":2536,"parentId":1776,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":39186,"timestamp":6721900348816,"id":2614,"parentId":2538,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900388008,"id":2734,"parentId":2538,"tags":{},"startTime":1776328847424,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40483,"timestamp":6721900347734,"id":2538,"parentId":1918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":39397,"timestamp":6721900348826,"id":2618,"parentId":2542,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900388226,"id":2735,"parentId":2542,"tags":{},"startTime":1776328847425,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":41119,"timestamp":6721900347880,"id":2542,"parentId":1925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":40188,"timestamp":6721900348819,"id":2615,"parentId":2539,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900389011,"id":2736,"parentId":2539,"tags":{},"startTime":1776328847425,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":41372,"timestamp":6721900347771,"id":2539,"parentId":1918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":40342,"timestamp":6721900348806,"id":2610,"parentId":2534,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900389152,"id":2737,"parentId":2534,"tags":{},"startTime":1776328847425,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43107,"timestamp":6721900346800,"id":2534,"parentId":1799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":41097,"timestamp":6721900348821,"id":2616,"parentId":2540,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900389924,"id":2738,"parentId":2540,"tags":{},"startTime":1776328847426,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":42263,"timestamp":6721900347808,"id":2540,"parentId":1918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":41249,"timestamp":6721900348830,"id":2620,"parentId":2544,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900390083,"id":2739,"parentId":2544,"tags":{},"startTime":1776328847426,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":42786,"timestamp":6721900347951,"id":2544,"parentId":1924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":41953,"timestamp":6721900348792,"id":2606,"parentId":2530,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900390749,"id":2740,"parentId":2530,"tags":{},"startTime":1776328847427,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":44328,"timestamp":6721900346561,"id":2530,"parentId":1795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"ssr"},"startTime":1776328847383,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42072,"timestamp":6721900348823,"id":2617,"parentId":2541,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900390898,"id":2741,"parentId":2541,"tags":{},"startTime":1776328847427,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43166,"timestamp":6721900347843,"id":2541,"parentId":1918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42184,"timestamp":6721900348828,"id":2619,"parentId":2543,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900391015,"id":2742,"parentId":2543,"tags":{},"startTime":1776328847427,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43832,"timestamp":6721900347917,"id":2543,"parentId":1932,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42916,"timestamp":6721900348838,"id":2623,"parentId":2547,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":46,"timestamp":6721900391757,"id":2743,"parentId":2547,"tags":{},"startTime":1776328847428,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45326,"timestamp":6721900348070,"id":2547,"parentId":1925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44568,"timestamp":6721900348833,"id":2621,"parentId":2545,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900393405,"id":2744,"parentId":2545,"tags":{},"startTime":1776328847430,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45523,"timestamp":6721900347993,"id":2545,"parentId":1925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44680,"timestamp":6721900348840,"id":2624,"parentId":2548,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900393524,"id":2745,"parentId":2548,"tags":{},"startTime":1776328847430,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45701,"timestamp":6721900348107,"id":2548,"parentId":1925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44962,"timestamp":6721900348853,"id":2628,"parentId":2552,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900393817,"id":2746,"parentId":2552,"tags":{},"startTime":1776328847430,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46007,"timestamp":6721900348256,"id":2552,"parentId":1929,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45434,"timestamp":6721900348836,"id":2622,"parentId":2546,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900394273,"id":2747,"parentId":2546,"tags":{},"startTime":1776328847431,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46743,"timestamp":6721900348036,"id":2546,"parentId":1925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45941,"timestamp":6721900348843,"id":2625,"parentId":2549,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900394787,"id":2748,"parentId":2549,"tags":{},"startTime":1776328847431,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46985,"timestamp":6721900348143,"id":2549,"parentId":1925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":46285,"timestamp":6721900348848,"id":2626,"parentId":2550,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900395136,"id":2749,"parentId":2550,"tags":{},"startTime":1776328847431,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47598,"timestamp":6721900348184,"id":2550,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"ssr"},"startTime":1776328847384,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":47213,"timestamp":6721900348850,"id":2627,"parentId":2551,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900396070,"id":2750,"parentId":2551,"tags":{},"startTime":1776328847432,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":49699,"timestamp":6721900348219,"id":2551,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":49205,"timestamp":6721900348860,"id":2631,"parentId":2555,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":45,"timestamp":6721900398073,"id":2751,"parentId":2555,"tags":{},"startTime":1776328847434,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50923,"timestamp":6721900348366,"id":2555,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50427,"timestamp":6721900348868,"id":2634,"parentId":2558,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900399299,"id":2752,"parentId":2558,"tags":{},"startTime":1776328847436,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50925,"timestamp":6721900348474,"id":2558,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50550,"timestamp":6721900348855,"id":2629,"parentId":2553,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900399408,"id":2753,"parentId":2553,"tags":{},"startTime":1776328847436,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51623,"timestamp":6721900348293,"id":2553,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51060,"timestamp":6721900348865,"id":2633,"parentId":2557,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900399929,"id":2754,"parentId":2557,"tags":{},"startTime":1776328847436,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":52089,"timestamp":6721900348438,"id":2557,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51662,"timestamp":6721900348873,"id":2636,"parentId":2560,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900400538,"id":2755,"parentId":2560,"tags":{},"startTime":1776328847437,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":52587,"timestamp":6721900348546,"id":2560,"parentId":1920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":52281,"timestamp":6721900348858,"id":2630,"parentId":2554,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900401142,"id":2756,"parentId":2554,"tags":{},"startTime":1776328847437,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":53004,"timestamp":6721900348328,"id":2554,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":52474,"timestamp":6721900348863,"id":2632,"parentId":2556,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900401340,"id":2757,"parentId":2556,"tags":{},"startTime":1776328847438,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":53578,"timestamp":6721900348401,"id":2556,"parentId":1937,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":62298,"timestamp":6721900348871,"id":2635,"parentId":2559,"tags":{},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900411182,"id":2758,"parentId":2559,"tags":{},"startTime":1776328847447,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":63465,"timestamp":6721900348512,"id":2559,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"ssr"},"startTime":1776328847385,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":58588,"timestamp":6721900353400,"id":2656,"parentId":2638,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900411993,"id":2759,"parentId":2638,"tags":{},"startTime":1776328847448,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60027,"timestamp":6721900352701,"id":2638,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":59323,"timestamp":6721900353413,"id":2658,"parentId":2640,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900412742,"id":2760,"parentId":2640,"tags":{},"startTime":1776328847449,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60106,"timestamp":6721900352786,"id":2640,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":59490,"timestamp":6721900353408,"id":2657,"parentId":2639,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900412901,"id":2761,"parentId":2639,"tags":{},"startTime":1776328847449,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60497,"timestamp":6721900352746,"id":2639,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":59832,"timestamp":6721900353418,"id":2659,"parentId":2641,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900413254,"id":2762,"parentId":2641,"tags":{},"startTime":1776328847450,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60774,"timestamp":6721900352826,"id":2641,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":60178,"timestamp":6721900353427,"id":2662,"parentId":2644,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900413610,"id":2763,"parentId":2644,"tags":{},"startTime":1776328847450,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60973,"timestamp":6721900352939,"id":2644,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":60500,"timestamp":6721900353421,"id":2660,"parentId":2642,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900413926,"id":2764,"parentId":2642,"tags":{},"startTime":1776328847450,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":61245,"timestamp":6721900352864,"id":2642,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":60688,"timestamp":6721900353424,"id":2661,"parentId":2643,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900414116,"id":2765,"parentId":2643,"tags":{},"startTime":1776328847450,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":61533,"timestamp":6721900352900,"id":2643,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":61051,"timestamp":6721900353387,"id":2655,"parentId":2637,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900414443,"id":2766,"parentId":2637,"tags":{},"startTime":1776328847451,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":62099,"timestamp":6721900352605,"id":2637,"parentId":1931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":61281,"timestamp":6721900353430,"id":2663,"parentId":2645,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900414715,"id":2767,"parentId":2645,"tags":{},"startTime":1776328847451,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":61853,"timestamp":6721900352994,"id":2645,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":69483,"timestamp":6721900353434,"id":2664,"parentId":2646,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900422926,"id":2768,"parentId":2646,"tags":{},"startTime":1776328847459,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":70132,"timestamp":6721900353032,"id":2646,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":69727,"timestamp":6721900353442,"id":2667,"parentId":2649,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900423174,"id":2769,"parentId":2649,"tags":{},"startTime":1776328847459,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":70155,"timestamp":6721900353158,"id":2649,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":69868,"timestamp":6721900353448,"id":2669,"parentId":2651,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900423321,"id":2770,"parentId":2651,"tags":{},"startTime":1776328847460,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":70279,"timestamp":6721900353231,"id":2651,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"ssr"},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":70211,"timestamp":6721900353436,"id":2665,"parentId":2647,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900423659,"id":2771,"parentId":2647,"tags":{},"startTime":1776328847460,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":70940,"timestamp":6721900353075,"id":2647,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":70610,"timestamp":6721900353451,"id":2670,"parentId":2652,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900424067,"id":2772,"parentId":2652,"tags":{},"startTime":1776328847460,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71042,"timestamp":6721900353266,"id":2652,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"ssr"},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":70873,"timestamp":6721900353445,"id":2668,"parentId":2650,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900424322,"id":2773,"parentId":2650,"tags":{},"startTime":1776328847461,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71341,"timestamp":6721900353194,"id":2650,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":71086,"timestamp":6721900353456,"id":2672,"parentId":2654,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900424553,"id":2774,"parentId":2654,"tags":{},"startTime":1776328847461,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71374,"timestamp":6721900353337,"id":2654,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"ssr"},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":71277,"timestamp":6721900353439,"id":2666,"parentId":2648,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900424725,"id":2775,"parentId":2648,"tags":{},"startTime":1776328847461,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71764,"timestamp":6721900353111,"id":2648,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"ssr"},"startTime":1776328847389,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":71425,"timestamp":6721900353453,"id":2671,"parentId":2653,"tags":{},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900424883,"id":2776,"parentId":2653,"tags":{},"startTime":1776328847461,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71853,"timestamp":6721900353300,"id":2653,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"ssr"},"startTime":1776328847390,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":70892,"timestamp":6721900354744,"id":2676,"parentId":2673,"tags":{},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900425641,"id":2777,"parentId":2673,"tags":{},"startTime":1776328847462,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71326,"timestamp":6721900354514,"id":2673,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"ssr"},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":71090,"timestamp":6721900354755,"id":2677,"parentId":2674,"tags":{},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900425848,"id":2778,"parentId":2674,"tags":{},"startTime":1776328847462,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71367,"timestamp":6721900354646,"id":2674,"parentId":1920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"ssr"},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":71260,"timestamp":6721900354758,"id":2678,"parentId":2675,"tags":{},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900426025,"id":2779,"parentId":2675,"tags":{},"startTime":1776328847462,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":71479,"timestamp":6721900354694,"id":2675,"parentId":1920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"ssr"},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":81513,"timestamp":6721900355229,"id":2682,"parentId":2680,"tags":{},"startTime":1776328847392,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900436753,"id":2780,"parentId":2680,"tags":{},"startTime":1776328847473,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":82119,"timestamp":6721900355184,"id":2680,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"ssr"},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":82091,"timestamp":6721900355224,"id":2681,"parentId":2679,"tags":{},"startTime":1776328847392,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":53,"timestamp":6721900437321,"id":2781,"parentId":2679,"tags":{},"startTime":1776328847474,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":82344,"timestamp":6721900355139,"id":2679,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"ssr"},"startTime":1776328847391,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8808,"timestamp":6721900463821,"id":2827,"parentId":2783,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900472643,"id":2942,"parentId":2783,"tags":{},"startTime":1776328847509,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11040,"timestamp":6721900462160,"id":2783,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"ssr"},"startTime":1776328847498,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9373,"timestamp":6721900463842,"id":2830,"parentId":2786,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900473221,"id":2943,"parentId":2786,"tags":{},"startTime":1776328847510,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11164,"timestamp":6721900462299,"id":2786,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9667,"timestamp":6721900463803,"id":2826,"parentId":2782,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":56,"timestamp":6721900473475,"id":2944,"parentId":2782,"tags":{},"startTime":1776328847510,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":11943,"timestamp":6721900462048,"id":2782,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"ssr"},"startTime":1776328847498,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10305,"timestamp":6721900463845,"id":2831,"parentId":2787,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":126,"timestamp":6721900474156,"id":2945,"parentId":2787,"tags":{},"startTime":1776328847510,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12688,"timestamp":6721900462402,"id":2787,"parentId":1953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11288,"timestamp":6721900463851,"id":2833,"parentId":2789,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900475143,"id":2946,"parentId":2789,"tags":{},"startTime":1776328847511,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13439,"timestamp":6721900462504,"id":2789,"parentId":1953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12105,"timestamp":6721900463848,"id":2832,"parentId":2788,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900475959,"id":2947,"parentId":2788,"tags":{},"startTime":1776328847512,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14017,"timestamp":6721900462465,"id":2788,"parentId":1954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12630,"timestamp":6721900463857,"id":2835,"parentId":2791,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900476492,"id":2948,"parentId":2791,"tags":{},"startTime":1776328847513,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14638,"timestamp":6721900462577,"id":2791,"parentId":1953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13368,"timestamp":6721900463854,"id":2834,"parentId":2790,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":58,"timestamp":6721900477225,"id":2949,"parentId":2790,"tags":{},"startTime":1776328847514,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15024,"timestamp":6721900462540,"id":2790,"parentId":1953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13741,"timestamp":6721900463827,"id":2828,"parentId":2784,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900477573,"id":2950,"parentId":2784,"tags":{},"startTime":1776328847514,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15540,"timestamp":6721900462207,"id":2784,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13891,"timestamp":6721900463860,"id":2836,"parentId":2792,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900477755,"id":2951,"parentId":2792,"tags":{},"startTime":1776328847514,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15333,"timestamp":6721900462611,"id":2792,"parentId":1953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18487,"timestamp":6721900463866,"id":2838,"parentId":2794,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900482360,"id":2952,"parentId":2794,"tags":{},"startTime":1776328847519,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19907,"timestamp":6721900462680,"id":2794,"parentId":1949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18722,"timestamp":6721900463871,"id":2840,"parentId":2796,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900482598,"id":2953,"parentId":2796,"tags":{},"startTime":1776328847519,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20007,"timestamp":6721900462746,"id":2796,"parentId":2012,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18887,"timestamp":6721900463873,"id":2841,"parentId":2797,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":64,"timestamp":6721900482763,"id":2954,"parentId":2797,"tags":{},"startTime":1776328847519,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21167,"timestamp":6721900462781,"id":2797,"parentId":2015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":20087,"timestamp":6721900463868,"id":2839,"parentId":2795,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900483959,"id":2955,"parentId":2795,"tags":{},"startTime":1776328847520,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22654,"timestamp":6721900462713,"id":2795,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21536,"timestamp":6721900463863,"id":2837,"parentId":2793,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":51,"timestamp":6721900485408,"id":2956,"parentId":2793,"tags":{},"startTime":1776328847522,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22992,"timestamp":6721900462646,"id":2793,"parentId":1949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":21770,"timestamp":6721900463875,"id":2842,"parentId":2798,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900485655,"id":2957,"parentId":2798,"tags":{},"startTime":1776328847522,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23059,"timestamp":6721900462815,"id":2798,"parentId":2021,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22002,"timestamp":6721900463879,"id":2844,"parentId":2800,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900485885,"id":2958,"parentId":2800,"tags":{},"startTime":1776328847522,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23967,"timestamp":6721900462889,"id":2800,"parentId":2015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22982,"timestamp":6721900463881,"id":2845,"parentId":2801,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":41,"timestamp":6721900486869,"id":2959,"parentId":2801,"tags":{},"startTime":1776328847523,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25398,"timestamp":6721900462923,"id":2801,"parentId":2014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24446,"timestamp":6721900463886,"id":2847,"parentId":2803,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900488338,"id":2960,"parentId":2803,"tags":{},"startTime":1776328847525,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25989,"timestamp":6721900462989,"id":2803,"parentId":2024,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25110,"timestamp":6721900463883,"id":2846,"parentId":2802,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900488998,"id":2961,"parentId":2802,"tags":{},"startTime":1776328847525,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26753,"timestamp":6721900462955,"id":2802,"parentId":1958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25843,"timestamp":6721900463877,"id":2843,"parentId":2799,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900489726,"id":2962,"parentId":2799,"tags":{},"startTime":1776328847526,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27279,"timestamp":6721900462849,"id":2799,"parentId":2012,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26233,"timestamp":6721900463907,"id":2850,"parentId":2806,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900490145,"id":2963,"parentId":2806,"tags":{},"startTime":1776328847526,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27286,"timestamp":6721900463087,"id":2806,"parentId":2032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26546,"timestamp":6721900463834,"id":2829,"parentId":2785,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900490385,"id":2964,"parentId":2785,"tags":{},"startTime":1776328847527,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28259,"timestamp":6721900462249,"id":2785,"parentId":1953,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26620,"timestamp":6721900463910,"id":2851,"parentId":2807,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900490535,"id":2965,"parentId":2807,"tags":{},"startTime":1776328847527,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27555,"timestamp":6721900463121,"id":2807,"parentId":2033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26794,"timestamp":6721900463888,"id":2848,"parentId":2804,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900490687,"id":2966,"parentId":2804,"tags":{},"startTime":1776328847527,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28323,"timestamp":6721900463021,"id":2804,"parentId":2033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":27442,"timestamp":6721900463913,"id":2852,"parentId":2808,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900491361,"id":2967,"parentId":2808,"tags":{},"startTime":1776328847528,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28618,"timestamp":6721900463158,"id":2808,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":27892,"timestamp":6721900463890,"id":2849,"parentId":2805,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900491786,"id":2968,"parentId":2805,"tags":{},"startTime":1776328847528,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29359,"timestamp":6721900463053,"id":2805,"parentId":1951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":28509,"timestamp":6721900463916,"id":2853,"parentId":2809,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":47,"timestamp":6721900492431,"id":2969,"parentId":2809,"tags":{},"startTime":1776328847529,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30413,"timestamp":6721900463192,"id":2809,"parentId":2017,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"ssr"},"startTime":1776328847499,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":29693,"timestamp":6721900463923,"id":2856,"parentId":2812,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900493621,"id":2970,"parentId":2812,"tags":{},"startTime":1776328847530,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31547,"timestamp":6721900463292,"id":2812,"parentId":2057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":30927,"timestamp":6721900463921,"id":2855,"parentId":2811,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900494853,"id":2971,"parentId":2811,"tags":{},"startTime":1776328847531,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31784,"timestamp":6721900463260,"id":2811,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31130,"timestamp":6721900463918,"id":2854,"parentId":2810,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900495053,"id":2972,"parentId":2810,"tags":{},"startTime":1776328847531,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32687,"timestamp":6721900463225,"id":2810,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":31996,"timestamp":6721900463925,"id":2857,"parentId":2813,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900495925,"id":2973,"parentId":2813,"tags":{},"startTime":1776328847532,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35310,"timestamp":6721900463326,"id":2813,"parentId":2060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":34731,"timestamp":6721900463932,"id":2860,"parentId":2816,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900498670,"id":2974,"parentId":2816,"tags":{},"startTime":1776328847535,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35406,"timestamp":6721900463423,"id":2816,"parentId":2066,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":34908,"timestamp":6721900463927,"id":2858,"parentId":2814,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721900498840,"id":2975,"parentId":2814,"tags":{},"startTime":1776328847535,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36023,"timestamp":6721900463358,"id":2814,"parentId":2066,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35459,"timestamp":6721900463930,"id":2859,"parentId":2815,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900499395,"id":2976,"parentId":2815,"tags":{},"startTime":1776328847536,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36173,"timestamp":6721900463390,"id":2815,"parentId":2066,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35631,"timestamp":6721900463939,"id":2863,"parentId":2819,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900499574,"id":2977,"parentId":2819,"tags":{},"startTime":1776328847536,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36191,"timestamp":6721900463519,"id":2819,"parentId":2068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35777,"timestamp":6721900463937,"id":2862,"parentId":2818,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":31,"timestamp":6721900499799,"id":2978,"parentId":2818,"tags":{},"startTime":1776328847536,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36509,"timestamp":6721900463487,"id":2818,"parentId":2064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":36058,"timestamp":6721900463943,"id":2865,"parentId":2821,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900500004,"id":2979,"parentId":2821,"tags":{},"startTime":1776328847536,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36878,"timestamp":6721900463587,"id":2821,"parentId":2203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":36538,"timestamp":6721900463934,"id":2861,"parentId":2817,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900500476,"id":2980,"parentId":2817,"tags":{},"startTime":1776328847537,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37498,"timestamp":6721900463456,"id":2817,"parentId":2066,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37029,"timestamp":6721900463941,"id":2864,"parentId":2820,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900500974,"id":2981,"parentId":2820,"tags":{},"startTime":1776328847537,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37647,"timestamp":6721900463553,"id":2820,"parentId":2098,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37255,"timestamp":6721900463950,"id":2869,"parentId":2825,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900501210,"id":2982,"parentId":2825,"tags":{},"startTime":1776328847538,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37730,"timestamp":6721900463738,"id":2825,"parentId":2203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37556,"timestamp":6721900463947,"id":2867,"parentId":2823,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900501507,"id":2983,"parentId":2823,"tags":{},"startTime":1776328847538,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38218,"timestamp":6721900463653,"id":2823,"parentId":2198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37953,"timestamp":6721900463944,"id":2866,"parentId":2822,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900501913,"id":2984,"parentId":2822,"tags":{},"startTime":1776328847538,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38443,"timestamp":6721900463621,"id":2822,"parentId":2197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38123,"timestamp":6721900463949,"id":2868,"parentId":2824,"tags":{},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900502075,"id":2985,"parentId":2824,"tags":{},"startTime":1776328847538,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38576,"timestamp":6721900463694,"id":2824,"parentId":2203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"ssr"},"startTime":1776328847500,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":41528,"timestamp":6721900468140,"id":2895,"parentId":2871,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900509677,"id":2986,"parentId":2871,"tags":{},"startTime":1776328847546,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43010,"timestamp":6721900467218,"id":2871,"parentId":2203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42084,"timestamp":6721900468150,"id":2897,"parentId":2873,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900510238,"id":2987,"parentId":2873,"tags":{},"startTime":1776328847547,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43320,"timestamp":6721900467317,"id":2873,"parentId":2201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42482,"timestamp":6721900468160,"id":2899,"parentId":2875,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900510646,"id":2988,"parentId":2875,"tags":{},"startTime":1776328847547,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":44446,"timestamp":6721900467402,"id":2875,"parentId":2202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":43709,"timestamp":6721900468163,"id":2900,"parentId":2876,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":48,"timestamp":6721900511883,"id":2989,"parentId":2876,"tags":{},"startTime":1776328847548,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":44891,"timestamp":6721900467444,"id":2876,"parentId":2199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44199,"timestamp":6721900468144,"id":2896,"parentId":2872,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900512347,"id":2990,"parentId":2872,"tags":{},"startTime":1776328847549,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45588,"timestamp":6721900467269,"id":2872,"parentId":2203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44715,"timestamp":6721900468157,"id":2898,"parentId":2874,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900512875,"id":2991,"parentId":2874,"tags":{},"startTime":1776328847549,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45632,"timestamp":6721900467361,"id":2874,"parentId":2201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44869,"timestamp":6721900468128,"id":2894,"parentId":2870,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900513001,"id":2992,"parentId":2870,"tags":{},"startTime":1776328847549,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46628,"timestamp":6721900467142,"id":2870,"parentId":2203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"ssr"},"startTime":1776328847503,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45582,"timestamp":6721900468193,"id":2905,"parentId":2881,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900513779,"id":2993,"parentId":2881,"tags":{},"startTime":1776328847550,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46297,"timestamp":6721900467623,"id":2881,"parentId":2213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45741,"timestamp":6721900468184,"id":2903,"parentId":2879,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721900513928,"id":2994,"parentId":2879,"tags":{},"startTime":1776328847550,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46476,"timestamp":6721900467554,"id":2879,"parentId":2204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45868,"timestamp":6721900468166,"id":2901,"parentId":2877,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900514037,"id":2995,"parentId":2877,"tags":{},"startTime":1776328847550,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47342,"timestamp":6721900467480,"id":2877,"parentId":2204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":46661,"timestamp":6721900468170,"id":2902,"parentId":2878,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900514837,"id":2996,"parentId":2878,"tags":{},"startTime":1776328847551,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47715,"timestamp":6721900467515,"id":2878,"parentId":2204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":47040,"timestamp":6721900468196,"id":2906,"parentId":2882,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900515240,"id":2997,"parentId":2882,"tags":{},"startTime":1776328847552,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47665,"timestamp":6721900467656,"id":2882,"parentId":2213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":47135,"timestamp":6721900468191,"id":2904,"parentId":2880,"tags":{},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900515329,"id":2998,"parentId":2880,"tags":{},"startTime":1776328847552,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47939,"timestamp":6721900467587,"id":2880,"parentId":2213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":47330,"timestamp":6721900468200,"id":2908,"parentId":2884,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900515534,"id":2999,"parentId":2884,"tags":{},"startTime":1776328847552,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":48042,"timestamp":6721900467754,"id":2884,"parentId":2213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":47517,"timestamp":6721900468283,"id":2909,"parentId":2885,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":23,"timestamp":6721900515804,"id":3000,"parentId":2885,"tags":{},"startTime":1776328847552,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":48178,"timestamp":6721900467797,"id":2885,"parentId":2213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":47651,"timestamp":6721900468329,"id":2910,"parentId":2886,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721900515982,"id":3001,"parentId":2886,"tags":{},"startTime":1776328847552,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":49919,"timestamp":6721900467838,"id":2886,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":49429,"timestamp":6721900468334,"id":2911,"parentId":2887,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900517766,"id":3002,"parentId":2887,"tags":{},"startTime":1776328847554,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50112,"timestamp":6721900467874,"id":2887,"parentId":2212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":49651,"timestamp":6721900468340,"id":2913,"parentId":2889,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900517994,"id":3003,"parentId":2889,"tags":{},"startTime":1776328847554,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50339,"timestamp":6721900467943,"id":2889,"parentId":2215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50087,"timestamp":6721900468198,"id":2907,"parentId":2883,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900518289,"id":3004,"parentId":2883,"tags":{},"startTime":1776328847555,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51136,"timestamp":6721900467710,"id":2883,"parentId":2214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50490,"timestamp":6721900468360,"id":2915,"parentId":2891,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900518854,"id":3005,"parentId":2891,"tags":{},"startTime":1776328847555,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51342,"timestamp":6721900468018,"id":2891,"parentId":2215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51038,"timestamp":6721900468342,"id":2914,"parentId":2890,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900519383,"id":3006,"parentId":2890,"tags":{},"startTime":1776328847556,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51821,"timestamp":6721900467982,"id":2890,"parentId":2215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51505,"timestamp":6721900468363,"id":2916,"parentId":2892,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900519872,"id":3007,"parentId":2892,"tags":{},"startTime":1776328847556,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":53181,"timestamp":6721900468049,"id":2892,"parentId":2204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":52912,"timestamp":6721900468337,"id":2912,"parentId":2888,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":51,"timestamp":6721900521259,"id":3008,"parentId":2888,"tags":{},"startTime":1776328847558,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":54716,"timestamp":6721900467911,"id":2888,"parentId":2215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":54274,"timestamp":6721900468365,"id":2917,"parentId":2893,"tags":{},"startTime":1776328847505,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900522646,"id":3009,"parentId":2893,"tags":{},"startTime":1776328847559,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55023,"timestamp":6721900468081,"id":2893,"parentId":2204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"ssr"},"startTime":1776328847504,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":62210,"timestamp":6721900470694,"id":2928,"parentId":2920,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900532914,"id":3010,"parentId":2920,"tags":{},"startTime":1776328847569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":63041,"timestamp":6721900470331,"id":2920,"parentId":2225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":62682,"timestamp":6721900470697,"id":2929,"parentId":2921,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900533384,"id":3011,"parentId":2921,"tags":{},"startTime":1776328847570,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64222,"timestamp":6721900470374,"id":2921,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":63985,"timestamp":6721900470702,"id":2931,"parentId":2923,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900534692,"id":3012,"parentId":2923,"tags":{},"startTime":1776328847571,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64370,"timestamp":6721900470473,"id":2923,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":64164,"timestamp":6721900470684,"id":2926,"parentId":2918,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900534852,"id":3013,"parentId":2918,"tags":{},"startTime":1776328847571,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64761,"timestamp":6721900470199,"id":2918,"parentId":2214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":64312,"timestamp":6721900470704,"id":2932,"parentId":2924,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900535022,"id":3014,"parentId":2924,"tags":{},"startTime":1776328847571,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64836,"timestamp":6721900470512,"id":2924,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":64698,"timestamp":6721900470706,"id":2933,"parentId":2925,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900535408,"id":3015,"parentId":2925,"tags":{},"startTime":1776328847572,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64951,"timestamp":6721900470608,"id":2925,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":64872,"timestamp":6721900470691,"id":2927,"parentId":2919,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900535566,"id":3016,"parentId":2919,"tags":{},"startTime":1776328847572,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":65818,"timestamp":6721900470283,"id":2919,"parentId":2227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":75678,"timestamp":6721900471131,"id":2939,"parentId":2935,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900546826,"id":3027,"parentId":2935,"tags":{},"startTime":1776328847583,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":76272,"timestamp":6721900470919,"id":2935,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":76500,"timestamp":6721900470700,"id":2930,"parentId":2922,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":40,"timestamp":6721900547204,"id":3028,"parentId":2922,"tags":{},"startTime":1776328847584,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79714,"timestamp":6721900470427,"id":2922,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":79039,"timestamp":6721900471119,"id":2938,"parentId":2934,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721900550167,"id":3029,"parentId":2934,"tags":{},"startTime":1776328847586,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79535,"timestamp":6721900470871,"id":2934,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":79279,"timestamp":6721900471134,"id":2940,"parentId":2936,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900550418,"id":3030,"parentId":2936,"tags":{},"startTime":1776328847587,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79540,"timestamp":6721900470989,"id":2936,"parentId":2224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":79396,"timestamp":6721900471138,"id":2941,"parentId":2937,"tags":{},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":52,"timestamp":6721900550537,"id":3031,"parentId":2937,"tags":{},"startTime":1776328847587,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":80231,"timestamp":6721900471066,"id":2937,"parentId":2235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"ssr"},"startTime":1776328847507,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25086,"timestamp":6721900538329,"id":3022,"parentId":3017,"tags":{},"startTime":1776328847575,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900563422,"id":3212,"parentId":3017,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26105,"timestamp":6721900538003,"id":3017,"parentId":2235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"ssr"},"startTime":1776328847574,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25768,"timestamp":6721900538350,"id":3024,"parentId":3019,"tags":{},"startTime":1776328847575,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900564122,"id":3213,"parentId":3019,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26235,"timestamp":6721900538148,"id":3019,"parentId":2233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"ssr"},"startTime":1776328847574,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26033,"timestamp":6721900538354,"id":3025,"parentId":3020,"tags":{},"startTime":1776328847575,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900564391,"id":3214,"parentId":3020,"tags":{},"startTime":1776328847601,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26326,"timestamp":6721900538187,"id":3020,"parentId":2233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"ssr"},"startTime":1776328847574,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26159,"timestamp":6721900538360,"id":3026,"parentId":3021,"tags":{},"startTime":1776328847575,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900564523,"id":3215,"parentId":3021,"tags":{},"startTime":1776328847601,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26475,"timestamp":6721900538224,"id":3021,"parentId":2237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"ssr"},"startTime":1776328847575,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26358,"timestamp":6721900538345,"id":3023,"parentId":3018,"tags":{},"startTime":1776328847575,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":39,"timestamp":6721900564707,"id":3216,"parentId":3018,"tags":{},"startTime":1776328847601,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27686,"timestamp":6721900538100,"id":3018,"parentId":2235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"ssr"},"startTime":1776328847574,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10156,"timestamp":6721900557266,"id":3097,"parentId":3032,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900567436,"id":3217,"parentId":3032,"tags":{},"startTime":1776328847604,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13390,"timestamp":6721900554452,"id":3032,"parentId":2241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10531,"timestamp":6721900557322,"id":3102,"parentId":3037,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":34,"timestamp":6721900567859,"id":3218,"parentId":3037,"tags":{},"startTime":1776328847604,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13500,"timestamp":6721900554712,"id":3037,"parentId":2312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10920,"timestamp":6721900557300,"id":3099,"parentId":3034,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900568224,"id":3219,"parentId":3034,"tags":{},"startTime":1776328847605,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13967,"timestamp":6721900554582,"id":3034,"parentId":2238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11269,"timestamp":6721900557286,"id":3098,"parentId":3033,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900568559,"id":3220,"parentId":3033,"tags":{},"startTime":1776328847605,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14212,"timestamp":6721900554537,"id":3033,"parentId":2233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11418,"timestamp":6721900557335,"id":3103,"parentId":3038,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900568758,"id":3221,"parentId":3038,"tags":{},"startTime":1776328847605,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14223,"timestamp":6721900554750,"id":3038,"parentId":2314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":11671,"timestamp":6721900557307,"id":3100,"parentId":3035,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900568982,"id":3222,"parentId":3035,"tags":{},"startTime":1776328847605,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14777,"timestamp":6721900554626,"id":3035,"parentId":2290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12096,"timestamp":6721900557313,"id":3101,"parentId":3036,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900569412,"id":3223,"parentId":3036,"tags":{},"startTime":1776328847606,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15064,"timestamp":6721900554675,"id":3036,"parentId":2299,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12405,"timestamp":6721900557340,"id":3104,"parentId":3039,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900569749,"id":3224,"parentId":3039,"tags":{},"startTime":1776328847606,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15381,"timestamp":6721900554789,"id":3039,"parentId":2386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":12822,"timestamp":6721900557354,"id":3107,"parentId":3042,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900570179,"id":3225,"parentId":3042,"tags":{},"startTime":1776328847606,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15715,"timestamp":6721900554901,"id":3042,"parentId":2389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13275,"timestamp":6721900557346,"id":3105,"parentId":3040,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":45,"timestamp":6721900570623,"id":3226,"parentId":3040,"tags":{},"startTime":1776328847607,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16112,"timestamp":6721900554827,"id":3040,"parentId":2386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13589,"timestamp":6721900557357,"id":3108,"parentId":3043,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900570950,"id":3227,"parentId":3043,"tags":{},"startTime":1776328847607,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16327,"timestamp":6721900554937,"id":3043,"parentId":2392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13905,"timestamp":6721900557363,"id":3110,"parentId":3045,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900571277,"id":3228,"parentId":3045,"tags":{},"startTime":1776328847608,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16420,"timestamp":6721900555019,"id":3045,"parentId":2392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14094,"timestamp":6721900557350,"id":3106,"parentId":3041,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900571447,"id":3229,"parentId":3041,"tags":{},"startTime":1776328847608,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17245,"timestamp":6721900554862,"id":3041,"parentId":2386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":14752,"timestamp":6721900557360,"id":3109,"parentId":3044,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900572115,"id":3230,"parentId":3044,"tags":{},"startTime":1776328847608,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17526,"timestamp":6721900554978,"id":3044,"parentId":2392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15136,"timestamp":6721900557371,"id":3112,"parentId":3047,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900572511,"id":3231,"parentId":3047,"tags":{},"startTime":1776328847609,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17678,"timestamp":6721900555098,"id":3047,"parentId":2392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15414,"timestamp":6721900557367,"id":3111,"parentId":3046,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900572784,"id":3232,"parentId":3046,"tags":{},"startTime":1776328847609,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17936,"timestamp":6721900555062,"id":3046,"parentId":2393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15614,"timestamp":6721900557388,"id":3117,"parentId":3052,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900573006,"id":3233,"parentId":3052,"tags":{},"startTime":1776328847609,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17722,"timestamp":6721900555379,"id":3052,"parentId":2404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":15730,"timestamp":6721900557375,"id":3113,"parentId":3048,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900573108,"id":3234,"parentId":3048,"tags":{},"startTime":1776328847609,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20361,"timestamp":6721900555133,"id":3048,"parentId":2384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":18125,"timestamp":6721900557382,"id":3115,"parentId":3050,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900575514,"id":3235,"parentId":3050,"tags":{},"startTime":1776328847612,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":20883,"timestamp":6721900555211,"id":3050,"parentId":2404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22064,"timestamp":6721900557391,"id":3118,"parentId":3053,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900579464,"id":3236,"parentId":3053,"tags":{},"startTime":1776328847616,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24508,"timestamp":6721900555425,"id":3053,"parentId":2406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22556,"timestamp":6721900557385,"id":3116,"parentId":3051,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900579946,"id":3237,"parentId":3051,"tags":{},"startTime":1776328847616,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24854,"timestamp":6721900555264,"id":3051,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":22728,"timestamp":6721900557395,"id":3119,"parentId":3054,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900580127,"id":3238,"parentId":3054,"tags":{},"startTime":1776328847616,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25052,"timestamp":6721900555464,"id":3054,"parentId":2434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23147,"timestamp":6721900557379,"id":3114,"parentId":3049,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900580531,"id":3239,"parentId":3049,"tags":{},"startTime":1776328847617,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25760,"timestamp":6721900555176,"id":3049,"parentId":2402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"ssr"},"startTime":1776328847591,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23523,"timestamp":6721900557419,"id":3123,"parentId":3058,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900580945,"id":3240,"parentId":3058,"tags":{},"startTime":1776328847617,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25458,"timestamp":6721900555610,"id":3058,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23668,"timestamp":6721900557404,"id":3122,"parentId":3057,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900581075,"id":3241,"parentId":3057,"tags":{},"startTime":1776328847617,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25597,"timestamp":6721900555576,"id":3057,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":23778,"timestamp":6721900557398,"id":3120,"parentId":3055,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900581179,"id":3242,"parentId":3055,"tags":{},"startTime":1776328847617,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26064,"timestamp":6721900555505,"id":3055,"parentId":2433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24171,"timestamp":6721900557401,"id":3121,"parentId":3056,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900581575,"id":3243,"parentId":3056,"tags":{},"startTime":1776328847618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26273,"timestamp":6721900555540,"id":3056,"parentId":2433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24391,"timestamp":6721900557426,"id":3125,"parentId":3060,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":57,"timestamp":6721900581820,"id":3244,"parentId":3060,"tags":{},"startTime":1776328847618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27057,"timestamp":6721900555678,"id":3060,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25298,"timestamp":6721900557442,"id":3126,"parentId":3061,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900582743,"id":3245,"parentId":3061,"tags":{},"startTime":1776328847619,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27367,"timestamp":6721900555711,"id":3061,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25637,"timestamp":6721900557446,"id":3127,"parentId":3062,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900583087,"id":3246,"parentId":3062,"tags":{},"startTime":1776328847619,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27646,"timestamp":6721900555745,"id":3062,"parentId":2449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":25945,"timestamp":6721900557452,"id":3129,"parentId":3064,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900583400,"id":3247,"parentId":3064,"tags":{},"startTime":1776328847620,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28472,"timestamp":6721900555815,"id":3064,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":26845,"timestamp":6721900557449,"id":3128,"parentId":3063,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900584301,"id":3248,"parentId":3063,"tags":{},"startTime":1776328847621,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31634,"timestamp":6721900555781,"id":3063,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":30007,"timestamp":6721900557423,"id":3124,"parentId":3059,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":58,"timestamp":6721900587438,"id":3249,"parentId":3059,"tags":{},"startTime":1776328847624,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34557,"timestamp":6721900555645,"id":3059,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":32781,"timestamp":6721900557458,"id":3131,"parentId":3066,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":45,"timestamp":6721900590250,"id":3250,"parentId":3066,"tags":{},"startTime":1776328847627,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34737,"timestamp":6721900555881,"id":3066,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":33171,"timestamp":6721900557455,"id":3130,"parentId":3065,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900590639,"id":3251,"parentId":3065,"tags":{},"startTime":1776328847627,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36697,"timestamp":6721900555848,"id":3065,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35104,"timestamp":6721900557462,"id":3133,"parentId":3068,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900592574,"id":3252,"parentId":3068,"tags":{},"startTime":1776328847629,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36935,"timestamp":6721900555948,"id":3068,"parentId":2485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35434,"timestamp":6721900557460,"id":3132,"parentId":3067,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900592899,"id":3253,"parentId":3067,"tags":{},"startTime":1776328847629,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37448,"timestamp":6721900555915,"id":3067,"parentId":2485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":35922,"timestamp":6721900557468,"id":3135,"parentId":3070,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900593395,"id":3254,"parentId":3070,"tags":{},"startTime":1776328847630,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37592,"timestamp":6721900556014,"id":3070,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":36145,"timestamp":6721900557466,"id":3134,"parentId":3069,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900593625,"id":3255,"parentId":3069,"tags":{},"startTime":1776328847630,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37840,"timestamp":6721900555981,"id":3069,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":36353,"timestamp":6721900557474,"id":3137,"parentId":3072,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900593832,"id":3256,"parentId":3072,"tags":{},"startTime":1776328847630,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38564,"timestamp":6721900556083,"id":3072,"parentId":2496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37184,"timestamp":6721900557471,"id":3136,"parentId":3071,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900594660,"id":3257,"parentId":3071,"tags":{},"startTime":1776328847631,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38778,"timestamp":6721900556048,"id":3071,"parentId":2489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37332,"timestamp":6721900557500,"id":3140,"parentId":3075,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900594837,"id":3258,"parentId":3075,"tags":{},"startTime":1776328847631,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38769,"timestamp":6721900556183,"id":3075,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37451,"timestamp":6721900557506,"id":3142,"parentId":3077,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900594962,"id":3259,"parentId":3077,"tags":{},"startTime":1776328847631,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38824,"timestamp":6721900556248,"id":3077,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":37578,"timestamp":6721900557498,"id":3139,"parentId":3074,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900595079,"id":3260,"parentId":3074,"tags":{},"startTime":1776328847631,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39629,"timestamp":6721900556149,"id":3074,"parentId":2510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38270,"timestamp":6721900557513,"id":3145,"parentId":3080,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900595789,"id":3261,"parentId":3080,"tags":{},"startTime":1776328847632,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39729,"timestamp":6721900556362,"id":3080,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38619,"timestamp":6721900557477,"id":3138,"parentId":3073,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900596100,"id":3262,"parentId":3073,"tags":{},"startTime":1776328847632,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40089,"timestamp":6721900556117,"id":3073,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"ssr"},"startTime":1776328847592,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":38707,"timestamp":6721900557503,"id":3141,"parentId":3076,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900596214,"id":3263,"parentId":3076,"tags":{},"startTime":1776328847633,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40494,"timestamp":6721900556216,"id":3076,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":39209,"timestamp":6721900557511,"id":3144,"parentId":3079,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900596726,"id":3264,"parentId":3079,"tags":{},"startTime":1776328847633,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40656,"timestamp":6721900556315,"id":3079,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":39453,"timestamp":6721900557524,"id":3149,"parentId":3084,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900596983,"id":3265,"parentId":3084,"tags":{},"startTime":1776328847633,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":41829,"timestamp":6721900556548,"id":3084,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":40868,"timestamp":6721900557516,"id":3146,"parentId":3081,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":38,"timestamp":6721900598389,"id":3266,"parentId":3081,"tags":{},"startTime":1776328847635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43345,"timestamp":6721900556395,"id":3081,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42220,"timestamp":6721900557526,"id":3150,"parentId":3085,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900599750,"id":3267,"parentId":3085,"tags":{},"startTime":1776328847636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43284,"timestamp":6721900556608,"id":3085,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":42377,"timestamp":6721900557519,"id":3147,"parentId":3082,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":59,"timestamp":6721900599899,"id":3268,"parentId":3082,"tags":{},"startTime":1776328847636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45040,"timestamp":6721900556443,"id":3082,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":43987,"timestamp":6721900557508,"id":3143,"parentId":3078,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":35,"timestamp":6721900601583,"id":3269,"parentId":3078,"tags":{},"startTime":1776328847638,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":45590,"timestamp":6721900556281,"id":3078,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":44348,"timestamp":6721900557529,"id":3151,"parentId":3086,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900601881,"id":3270,"parentId":3086,"tags":{},"startTime":1776328847638,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46042,"timestamp":6721900556652,"id":3086,"parentId":2526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45213,"timestamp":6721900557531,"id":3152,"parentId":3087,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900602748,"id":3271,"parentId":3087,"tags":{},"startTime":1776328847639,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":46399,"timestamp":6721900556702,"id":3087,"parentId":2512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":45573,"timestamp":6721900557533,"id":3153,"parentId":3088,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":51,"timestamp":6721900603110,"id":3272,"parentId":3088,"tags":{},"startTime":1776328847639,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":49928,"timestamp":6721900556760,"id":3088,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":49178,"timestamp":6721900557521,"id":3148,"parentId":3083,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900606711,"id":3273,"parentId":3083,"tags":{},"startTime":1776328847643,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50653,"timestamp":6721900556501,"id":3083,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":49614,"timestamp":6721900557550,"id":3154,"parentId":3089,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900607177,"id":3274,"parentId":3089,"tags":{},"startTime":1776328847643,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50457,"timestamp":6721900556814,"id":3089,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":49718,"timestamp":6721900557560,"id":3156,"parentId":3091,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900607282,"id":3275,"parentId":3091,"tags":{},"startTime":1776328847644,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":50722,"timestamp":6721900556888,"id":3091,"parentId":2532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50060,"timestamp":6721900557558,"id":3155,"parentId":3090,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900607622,"id":3276,"parentId":3090,"tags":{},"startTime":1776328847644,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51485,"timestamp":6721900556852,"id":3090,"parentId":2533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50778,"timestamp":6721900557564,"id":3157,"parentId":3092,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900608346,"id":3277,"parentId":3092,"tags":{},"startTime":1776328847645,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51582,"timestamp":6721900556944,"id":3092,"parentId":2532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50957,"timestamp":6721900557573,"id":3161,"parentId":3096,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900608533,"id":3278,"parentId":3096,"tags":{},"startTime":1776328847645,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51600,"timestamp":6721900557147,"id":3096,"parentId":2551,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51204,"timestamp":6721900557568,"id":3159,"parentId":3094,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900608776,"id":3279,"parentId":3094,"tags":{},"startTime":1776328847645,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":51942,"timestamp":6721900557030,"id":3094,"parentId":2530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51404,"timestamp":6721900557571,"id":3160,"parentId":3095,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900608978,"id":3280,"parentId":3095,"tags":{},"startTime":1776328847645,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":52002,"timestamp":6721900557102,"id":3095,"parentId":2530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":51550,"timestamp":6721900557566,"id":3158,"parentId":3093,"tags":{},"startTime":1776328847594,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900609119,"id":3281,"parentId":3093,"tags":{},"startTime":1776328847645,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":52222,"timestamp":6721900556987,"id":3093,"parentId":2530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"ssr"},"startTime":1776328847593,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":56952,"timestamp":6721900562295,"id":3182,"parentId":3163,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721900619295,"id":3282,"parentId":3163,"tags":{},"startTime":1776328847656,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":58410,"timestamp":6721900561543,"id":3163,"parentId":2557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":57642,"timestamp":6721900562323,"id":3185,"parentId":3166,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900619971,"id":3283,"parentId":3166,"tags":{},"startTime":1776328847656,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":59818,"timestamp":6721900561667,"id":3166,"parentId":2639,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":59281,"timestamp":6721900562317,"id":3184,"parentId":3165,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900621605,"id":3284,"parentId":3165,"tags":{},"startTime":1776328847658,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60098,"timestamp":6721900561628,"id":3165,"parentId":2640,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":59398,"timestamp":6721900562334,"id":3188,"parentId":3169,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900621736,"id":3285,"parentId":3169,"tags":{},"startTime":1776328847658,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":61675,"timestamp":6721900561790,"id":3169,"parentId":2650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":61217,"timestamp":6721900562256,"id":3181,"parentId":3162,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900623479,"id":3286,"parentId":3162,"tags":{},"startTime":1776328847660,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":62192,"timestamp":6721900561468,"id":3162,"parentId":2557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":61366,"timestamp":6721900562311,"id":3183,"parentId":3164,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900623681,"id":3287,"parentId":3164,"tags":{},"startTime":1776328847660,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":62612,"timestamp":6721900561586,"id":3164,"parentId":2557,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":61897,"timestamp":6721900562327,"id":3186,"parentId":3167,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":40,"timestamp":6721900624235,"id":3288,"parentId":3167,"tags":{},"startTime":1776328847661,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":62748,"timestamp":6721900561704,"id":3167,"parentId":2550,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":62129,"timestamp":6721900562330,"id":3187,"parentId":3168,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900624464,"id":3289,"parentId":3168,"tags":{},"startTime":1776328847661,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":63535,"timestamp":6721900561742,"id":3168,"parentId":2653,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":62937,"timestamp":6721900562348,"id":3192,"parentId":3173,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900625290,"id":3290,"parentId":3173,"tags":{},"startTime":1776328847662,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":63529,"timestamp":6721900561945,"id":3173,"parentId":2803,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":63142,"timestamp":6721900562337,"id":3189,"parentId":3170,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900625482,"id":3291,"parentId":3170,"tags":{},"startTime":1776328847662,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":63850,"timestamp":6721900561827,"id":3170,"parentId":2652,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":63323,"timestamp":6721900562359,"id":3195,"parentId":3176,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900625686,"id":3292,"parentId":3176,"tags":{},"startTime":1776328847662,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64391,"timestamp":6721900562066,"id":3176,"parentId":2820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":64113,"timestamp":6721900562351,"id":3193,"parentId":3174,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":32,"timestamp":6721900626468,"id":3293,"parentId":3174,"tags":{},"startTime":1776328847663,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64741,"timestamp":6721900561988,"id":3174,"parentId":2804,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":64377,"timestamp":6721900562357,"id":3194,"parentId":3175,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900626737,"id":3294,"parentId":3175,"tags":{},"startTime":1776328847663,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":64914,"timestamp":6721900562031,"id":3175,"parentId":2877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":64607,"timestamp":6721900562341,"id":3190,"parentId":3171,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":37,"timestamp":6721900626952,"id":3295,"parentId":3171,"tags":{},"startTime":1776328847663,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":65658,"timestamp":6721900561871,"id":3171,"parentId":2648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":65198,"timestamp":6721900562345,"id":3191,"parentId":3172,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900627546,"id":3296,"parentId":3172,"tags":{},"startTime":1776328847664,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":66615,"timestamp":6721900561909,"id":3172,"parentId":2216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":66171,"timestamp":6721900562366,"id":3197,"parentId":3178,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900628541,"id":3297,"parentId":3178,"tags":{},"startTime":1776328847665,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":66602,"timestamp":6721900562142,"id":3178,"parentId":2870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":66443,"timestamp":6721900562371,"id":3199,"parentId":3180,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900628818,"id":3298,"parentId":3180,"tags":{},"startTime":1776328847665,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":66716,"timestamp":6721900562212,"id":3180,"parentId":2872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"ssr"},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":66619,"timestamp":6721900562362,"id":3196,"parentId":3177,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":29,"timestamp":6721900628984,"id":3299,"parentId":3177,"tags":{},"startTime":1776328847665,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":67847,"timestamp":6721900562103,"id":3177,"parentId":2810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":67589,"timestamp":6721900562368,"id":3198,"parentId":3179,"tags":{},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900629961,"id":3300,"parentId":3179,"tags":{},"startTime":1776328847666,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":67920,"timestamp":6721900562178,"id":3179,"parentId":2872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"ssr"},"startTime":1776328847598,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":78009,"timestamp":6721900563338,"id":3206,"parentId":3200,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":44,"timestamp":6721900641357,"id":3301,"parentId":3200,"tags":{},"startTime":1776328847678,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":79850,"timestamp":6721900563085,"id":3200,"parentId":2886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"ssr"},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":79614,"timestamp":6721900563344,"id":3208,"parentId":3202,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":42,"timestamp":6721900642969,"id":3302,"parentId":3202,"tags":{},"startTime":1776328847679,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":80345,"timestamp":6721900563189,"id":3202,"parentId":2888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"ssr"},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":80393,"timestamp":6721900563342,"id":3207,"parentId":3201,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900643740,"id":3303,"parentId":3201,"tags":{},"startTime":1776328847680,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":80806,"timestamp":6721900563144,"id":3201,"parentId":2891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"ssr"},"startTime":1776328847599,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":80609,"timestamp":6721900563346,"id":3209,"parentId":3203,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900643964,"id":3304,"parentId":3203,"tags":{},"startTime":1776328847680,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":81560,"timestamp":6721900563226,"id":3203,"parentId":2888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"ssr"},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":81507,"timestamp":6721900563348,"id":3210,"parentId":3204,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900644860,"id":3305,"parentId":3204,"tags":{},"startTime":1776328847681,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":81875,"timestamp":6721900563263,"id":3204,"parentId":2888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"ssr"},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":81793,"timestamp":6721900563350,"id":3211,"parentId":3205,"tags":{},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900645147,"id":3306,"parentId":3205,"tags":{},"startTime":1776328847681,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":82038,"timestamp":6721900563299,"id":3205,"parentId":2888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"ssr"},"startTime":1776328847600,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3620,"timestamp":6721900656415,"id":3314,"parentId":3307,"tags":{},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900660042,"id":3353,"parentId":3307,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4273,"timestamp":6721900656084,"id":3307,"parentId":2877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"ssr"},"startTime":1776328847692,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3920,"timestamp":6721900656443,"id":3318,"parentId":3311,"tags":{},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900660366,"id":3354,"parentId":3311,"tags":{},"startTime":1776328847697,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4316,"timestamp":6721900656299,"id":3311,"parentId":3049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"ssr"},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":4186,"timestamp":6721900656433,"id":3316,"parentId":3309,"tags":{},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900660622,"id":3355,"parentId":3309,"tags":{},"startTime":1776328847697,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4529,"timestamp":6721900656211,"id":3309,"parentId":3053,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"ssr"},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":4315,"timestamp":6721900656428,"id":3315,"parentId":3308,"tags":{},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":28,"timestamp":6721900660745,"id":3356,"parentId":3308,"tags":{},"startTime":1776328847697,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4705,"timestamp":6721900656168,"id":3308,"parentId":3044,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"ssr"},"startTime":1776328847692,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":4431,"timestamp":6721900656446,"id":3319,"parentId":3312,"tags":{},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":36,"timestamp":6721900660879,"id":3357,"parentId":3312,"tags":{},"startTime":1776328847697,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5836,"timestamp":6721900656338,"id":3312,"parentId":3055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"ssr"},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":5730,"timestamp":6721900656449,"id":3320,"parentId":3313,"tags":{},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900662181,"id":3358,"parentId":3313,"tags":{},"startTime":1776328847698,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5921,"timestamp":6721900656372,"id":3313,"parentId":3055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"ssr"},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":5859,"timestamp":6721900656437,"id":3317,"parentId":3310,"tags":{},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":25,"timestamp":6721900662299,"id":3359,"parentId":3310,"tags":{},"startTime":1776328847699,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6163,"timestamp":6721900656255,"id":3310,"parentId":3049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"ssr"},"startTime":1776328847693,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":7927,"timestamp":6721900659126,"id":3325,"parentId":3321,"tags":{},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":43,"timestamp":6721900667069,"id":3360,"parentId":3321,"tags":{},"startTime":1776328847703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8737,"timestamp":6721900658960,"id":3321,"parentId":3080,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"ssr"},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8579,"timestamp":6721900659141,"id":3328,"parentId":3324,"tags":{},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":31,"timestamp":6721900667727,"id":3361,"parentId":3324,"tags":{},"startTime":1776328847704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8872,"timestamp":6721900659088,"id":3324,"parentId":3072,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"ssr"},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":8832,"timestamp":6721900659134,"id":3326,"parentId":3322,"tags":{},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900667970,"id":3362,"parentId":3322,"tags":{},"startTime":1776328847704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9501,"timestamp":6721900659016,"id":3322,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"ssr"},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9385,"timestamp":6721900659137,"id":3327,"parentId":3323,"tags":{},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900668525,"id":3363,"parentId":3323,"tags":{},"startTime":1776328847705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10180,"timestamp":6721900659053,"id":3323,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"ssr"},"startTime":1776328847695,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9448,"timestamp":6721900659820,"id":3341,"parentId":3329,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":30,"timestamp":6721900669272,"id":3364,"parentId":3329,"tags":{},"startTime":1776328847706,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10280,"timestamp":6721900659391,"id":3329,"parentId":3056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":9850,"timestamp":6721900659833,"id":3343,"parentId":3331,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":35,"timestamp":6721900669690,"id":3365,"parentId":3331,"tags":{},"startTime":1776328847706,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10365,"timestamp":6721900659466,"id":3331,"parentId":3056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10006,"timestamp":6721900659830,"id":3342,"parentId":3330,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":27,"timestamp":6721900669839,"id":3366,"parentId":3330,"tags":{},"startTime":1776328847706,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10520,"timestamp":6721900659430,"id":3330,"parentId":3056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10132,"timestamp":6721900659837,"id":3344,"parentId":3332,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900669972,"id":3367,"parentId":3332,"tags":{},"startTime":1776328847706,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10601,"timestamp":6721900659501,"id":3332,"parentId":3090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10300,"timestamp":6721900659848,"id":3346,"parentId":3334,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721900670152,"id":3368,"parentId":3334,"tags":{},"startTime":1776328847706,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10716,"timestamp":6721900659571,"id":3334,"parentId":3090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10445,"timestamp":6721900659845,"id":3345,"parentId":3333,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721900670293,"id":3369,"parentId":3333,"tags":{},"startTime":1776328847707,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10851,"timestamp":6721900659535,"id":3333,"parentId":3090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10539,"timestamp":6721900659851,"id":3347,"parentId":3335,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721900670393,"id":3370,"parentId":3335,"tags":{},"startTime":1776328847707,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10961,"timestamp":6721900659607,"id":3335,"parentId":3200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10717,"timestamp":6721900659856,"id":3349,"parentId":3337,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":22,"timestamp":6721900670575,"id":3371,"parentId":3337,"tags":{},"startTime":1776328847707,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11039,"timestamp":6721900659682,"id":3337,"parentId":3200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":10872,"timestamp":6721900659853,"id":3348,"parentId":3336,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":24,"timestamp":6721900670728,"id":3372,"parentId":3336,"tags":{},"startTime":1776328847707,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11395,"timestamp":6721900659641,"id":3336,"parentId":3200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13205,"timestamp":6721900659862,"id":3352,"parentId":3340,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721900673072,"id":3373,"parentId":3340,"tags":{},"startTime":1776328847709,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13538,"timestamp":6721900659785,"id":3340,"parentId":3169,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13493,"timestamp":6721900659858,"id":3350,"parentId":3338,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":23,"timestamp":6721900673355,"id":3374,"parentId":3338,"tags":{},"startTime":1776328847710,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13708,"timestamp":6721900659716,"id":3338,"parentId":3203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":13567,"timestamp":6721900659860,"id":3351,"parentId":3339,"tags":{},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":33,"timestamp":6721900673431,"id":3375,"parentId":3339,"tags":{},"startTime":1776328847710,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14247,"timestamp":6721900659753,"id":3339,"parentId":3078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"ssr"},"startTime":1776328847696,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":852136,"timestamp":6721899826863,"id":1680,"parentId":1679,"tags":{},"startTime":1776328846863,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":5547,"timestamp":6721900699083,"id":3377,"parentId":3376,"tags":{},"startTime":1776328847735,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":3,"timestamp":6721900704648,"id":3379,"parentId":3376,"tags":{},"startTime":1776328847741,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":2401,"timestamp":6721900704661,"id":3380,"parentId":3376,"tags":{},"startTime":1776328847741,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":5,"timestamp":6721900707080,"id":3381,"parentId":3376,"tags":{},"startTime":1776328847743,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6721900707098,"id":3382,"parentId":3376,"tags":{},"startTime":1776328847743,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":4101,"timestamp":6721900704643,"id":3378,"parentId":3376,"tags":{},"startTime":1776328847741,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":6608,"timestamp":6721900711495,"id":3383,"parentId":3376,"tags":{},"startTime":1776328847748,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":44932,"timestamp":6721900718115,"id":3384,"parentId":3376,"tags":{},"startTime":1776328847754,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":995,"timestamp":6721900765058,"id":3385,"parentId":3376,"tags":{},"startTime":1776328847801,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":49,"timestamp":6721900766053,"id":3386,"parentId":3376,"tags":{},"startTime":1776328847802,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":88,"timestamp":6721900766097,"id":3387,"parentId":3376,"tags":{},"startTime":1776328847802,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":108035,"timestamp":6721900766187,"id":3388,"parentId":3376,"tags":{},"startTime":1776328847802,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":184848,"timestamp":6721900692525,"id":3376,"parentId":1679,"tags":{},"startTime":1776328847729,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":1053379,"timestamp":6721899826586,"id":1679,"parentId":1677,"tags":{"name":"server"},"startTime":1776328846863,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":80226,"timestamp":6721900879992,"id":3389,"parentId":1677,"tags":{},"startTime":1776328847916,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-invalidated-server","duration":1135662,"timestamp":6721899825215,"id":1677,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776328846862,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":20202,"timestamp":6721900971305,"id":3398,"parentId":3391,"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":1776328848008,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":21968,"timestamp":6721900971250,"id":3392,"parentId":3391,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776328848008,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":29660,"timestamp":6721900971293,"id":3394,"parentId":3391,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776328848008,"traceId":"6b0bec12f182cf2c"}] +[{"name":"add-entry","duration":48865,"timestamp":6721900971299,"id":3396,"parentId":3391,"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":1776328848008,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":48958,"timestamp":6721900971288,"id":3393,"parentId":3391,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776328848008,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":48954,"timestamp":6721900971296,"id":3395,"parentId":3391,"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%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&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":1776328848008,"traceId":"6b0bec12f182cf2c"},{"name":"build-module","duration":1174,"timestamp":6721901031896,"id":3399,"parentId":3397,"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%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776328848068,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":20828,"timestamp":6721901034346,"id":3402,"parentId":3401,"tags":{},"startTime":1776328848071,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":20931,"timestamp":6721901034251,"id":3401,"parentId":3400,"tags":{},"startTime":1776328848071,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":23609,"timestamp":6721901034149,"id":3400,"parentId":3399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776328848070,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":104,"timestamp":6721901064992,"id":3406,"parentId":3404,"tags":{},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":159,"timestamp":6721901064998,"id":3407,"parentId":3405,"tags":{},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":26,"timestamp":6721901065160,"id":3412,"parentId":3405,"tags":{},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":772,"timestamp":6721901064855,"id":3405,"parentId":3400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"app-pages-browser"},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":2320,"timestamp":6721901065053,"id":3409,"parentId":3408,"tags":{},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2374,"timestamp":6721901065001,"id":3408,"parentId":3403,"tags":{},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-tsx","duration":3163,"timestamp":6721901064690,"id":3403,"parentId":3400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"app-pages-browser"},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-transform","duration":16222,"timestamp":6721901065155,"id":3411,"parentId":3410,"tags":{},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":16274,"timestamp":6721901065105,"id":3410,"parentId":3404,"tags":{},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17303,"timestamp":6721901064809,"id":3404,"parentId":3400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"app-pages-browser"},"startTime":1776328848101,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":24,"timestamp":6721901082526,"id":3419,"parentId":3413,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":50,"timestamp":6721901082530,"id":3420,"parentId":3414,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":71,"timestamp":6721901082532,"id":3421,"parentId":3415,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":91,"timestamp":6721901082533,"id":3422,"parentId":3416,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":112,"timestamp":6721901082534,"id":3423,"parentId":3417,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":136,"timestamp":6721901082535,"id":3424,"parentId":3418,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":307,"timestamp":6721901082554,"id":3425,"parentId":3413,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":286,"timestamp":6721901082582,"id":3426,"parentId":3414,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":265,"timestamp":6721901082604,"id":3427,"parentId":3415,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":244,"timestamp":6721901082625,"id":3428,"parentId":3416,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":221,"timestamp":6721901082649,"id":3429,"parentId":3417,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":198,"timestamp":6721901082673,"id":3430,"parentId":3418,"tags":{},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1225,"timestamp":6721901082261,"id":3413,"parentId":3405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"app-pages-browser"},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1290,"timestamp":6721901082333,"id":3414,"parentId":3405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"app-pages-browser"},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1361,"timestamp":6721901082373,"id":3415,"parentId":3405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"app-pages-browser"},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1569,"timestamp":6721901082409,"id":3416,"parentId":3405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"app-pages-browser"},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1736,"timestamp":6721901082444,"id":3417,"parentId":3405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"app-pages-browser"},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1754,"timestamp":6721901082487,"id":3418,"parentId":3405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"app-pages-browser"},"startTime":1776328848119,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":164,"timestamp":6721901104924,"id":3494,"parentId":3431,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":245,"timestamp":6721901104931,"id":3495,"parentId":3432,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":282,"timestamp":6721901104936,"id":3496,"parentId":3433,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":309,"timestamp":6721901104939,"id":3497,"parentId":3434,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":333,"timestamp":6721901104942,"id":3498,"parentId":3435,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":364,"timestamp":6721901104945,"id":3499,"parentId":3436,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":385,"timestamp":6721901104948,"id":3500,"parentId":3437,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":407,"timestamp":6721901104951,"id":3501,"parentId":3438,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":431,"timestamp":6721901104954,"id":3502,"parentId":3439,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":456,"timestamp":6721901104956,"id":3503,"parentId":3440,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":478,"timestamp":6721901104959,"id":3504,"parentId":3441,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":516,"timestamp":6721901104962,"id":3505,"parentId":3442,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":538,"timestamp":6721901104965,"id":3506,"parentId":3443,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":560,"timestamp":6721901104967,"id":3507,"parentId":3444,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":582,"timestamp":6721901104970,"id":3508,"parentId":3445,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":603,"timestamp":6721901104973,"id":3509,"parentId":3446,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":623,"timestamp":6721901104975,"id":3510,"parentId":3447,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":644,"timestamp":6721901104978,"id":3511,"parentId":3448,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":664,"timestamp":6721901104981,"id":3512,"parentId":3449,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":686,"timestamp":6721901104983,"id":3513,"parentId":3450,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":707,"timestamp":6721901104986,"id":3514,"parentId":3451,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":728,"timestamp":6721901104988,"id":3515,"parentId":3452,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":748,"timestamp":6721901104991,"id":3516,"parentId":3453,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":757,"timestamp":6721901105006,"id":3517,"parentId":3454,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":787,"timestamp":6721901105009,"id":3518,"parentId":3455,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":813,"timestamp":6721901105012,"id":3519,"parentId":3456,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":837,"timestamp":6721901105014,"id":3520,"parentId":3457,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":859,"timestamp":6721901105017,"id":3521,"parentId":3458,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":880,"timestamp":6721901105020,"id":3522,"parentId":3459,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":901,"timestamp":6721901105023,"id":3523,"parentId":3460,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":923,"timestamp":6721901105026,"id":3524,"parentId":3461,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":944,"timestamp":6721901105028,"id":3525,"parentId":3462,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":966,"timestamp":6721901105031,"id":3526,"parentId":3463,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":987,"timestamp":6721901105033,"id":3527,"parentId":3464,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1015,"timestamp":6721901105035,"id":3528,"parentId":3465,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1038,"timestamp":6721901105037,"id":3529,"parentId":3466,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1095,"timestamp":6721901105039,"id":3530,"parentId":3467,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1124,"timestamp":6721901105042,"id":3531,"parentId":3468,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1149,"timestamp":6721901105044,"id":3532,"parentId":3469,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1174,"timestamp":6721901105046,"id":3533,"parentId":3470,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1198,"timestamp":6721901105048,"id":3534,"parentId":3471,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1223,"timestamp":6721901105050,"id":3535,"parentId":3472,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1246,"timestamp":6721901105052,"id":3536,"parentId":3473,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1269,"timestamp":6721901105055,"id":3537,"parentId":3474,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1292,"timestamp":6721901105057,"id":3538,"parentId":3475,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1316,"timestamp":6721901105059,"id":3539,"parentId":3476,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1341,"timestamp":6721901105061,"id":3540,"parentId":3477,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1515,"timestamp":6721901105063,"id":3541,"parentId":3478,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1564,"timestamp":6721901105065,"id":3542,"parentId":3479,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1590,"timestamp":6721901105067,"id":3543,"parentId":3480,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1616,"timestamp":6721901105069,"id":3544,"parentId":3481,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1643,"timestamp":6721901105070,"id":3545,"parentId":3482,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1667,"timestamp":6721901105072,"id":3546,"parentId":3483,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1694,"timestamp":6721901105074,"id":3547,"parentId":3484,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1726,"timestamp":6721901105076,"id":3548,"parentId":3485,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1750,"timestamp":6721901105077,"id":3549,"parentId":3486,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1775,"timestamp":6721901105079,"id":3550,"parentId":3487,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1799,"timestamp":6721901105080,"id":3551,"parentId":3488,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1823,"timestamp":6721901105082,"id":3552,"parentId":3489,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1848,"timestamp":6721901105083,"id":3553,"parentId":3490,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1873,"timestamp":6721901105084,"id":3554,"parentId":3491,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1896,"timestamp":6721901105085,"id":3555,"parentId":3492,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1922,"timestamp":6721901105087,"id":3556,"parentId":3493,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1980,"timestamp":6721901105098,"id":3557,"parentId":3431,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1953,"timestamp":6721901105182,"id":3558,"parentId":3432,"tags":{},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1929,"timestamp":6721901105220,"id":3559,"parentId":3433,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":2051,"timestamp":6721901105250,"id":3560,"parentId":3434,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2026,"timestamp":6721901105278,"id":3561,"parentId":3435,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1993,"timestamp":6721901105311,"id":3562,"parentId":3436,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1971,"timestamp":6721901105335,"id":3563,"parentId":3437,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1946,"timestamp":6721901105360,"id":3564,"parentId":3438,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1918,"timestamp":6721901105389,"id":3565,"parentId":3439,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1909,"timestamp":6721901105414,"id":3566,"parentId":3440,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1891,"timestamp":6721901105439,"id":3567,"parentId":3441,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1852,"timestamp":6721901105480,"id":3568,"parentId":3442,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1828,"timestamp":6721901105505,"id":3569,"parentId":3443,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1805,"timestamp":6721901105529,"id":3570,"parentId":3444,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1782,"timestamp":6721901105553,"id":3571,"parentId":3445,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1760,"timestamp":6721901105577,"id":3572,"parentId":3446,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1738,"timestamp":6721901105600,"id":3573,"parentId":3447,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1717,"timestamp":6721901105624,"id":3574,"parentId":3448,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1695,"timestamp":6721901105647,"id":3575,"parentId":3449,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1673,"timestamp":6721901105671,"id":3576,"parentId":3450,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1650,"timestamp":6721901105695,"id":3577,"parentId":3451,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1662,"timestamp":6721901105718,"id":3578,"parentId":3452,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1640,"timestamp":6721901105740,"id":3579,"parentId":3453,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1607,"timestamp":6721901105773,"id":3580,"parentId":3454,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1583,"timestamp":6721901105798,"id":3581,"parentId":3455,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1553,"timestamp":6721901105829,"id":3582,"parentId":3456,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1549,"timestamp":6721901105853,"id":3583,"parentId":3457,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1526,"timestamp":6721901105878,"id":3584,"parentId":3458,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1502,"timestamp":6721901105902,"id":3585,"parentId":3459,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1480,"timestamp":6721901105925,"id":3586,"parentId":3460,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1455,"timestamp":6721901105950,"id":3587,"parentId":3461,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1432,"timestamp":6721901105974,"id":3588,"parentId":3462,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1408,"timestamp":6721901105999,"id":3589,"parentId":3463,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1387,"timestamp":6721901106022,"id":3590,"parentId":3464,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1357,"timestamp":6721901106052,"id":3591,"parentId":3465,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1333,"timestamp":6721901106077,"id":3592,"parentId":3466,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1273,"timestamp":6721901106137,"id":3593,"parentId":3467,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1243,"timestamp":6721901106168,"id":3594,"parentId":3468,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1217,"timestamp":6721901106195,"id":3595,"parentId":3469,"tags":{},"startTime":1776328848142,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1190,"timestamp":6721901106222,"id":3596,"parentId":3470,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1165,"timestamp":6721901106248,"id":3597,"parentId":3471,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1138,"timestamp":6721901106275,"id":3598,"parentId":3472,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1113,"timestamp":6721901106300,"id":3599,"parentId":3473,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1089,"timestamp":6721901106325,"id":3600,"parentId":3474,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1064,"timestamp":6721901106351,"id":3601,"parentId":3475,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1038,"timestamp":6721901106377,"id":3602,"parentId":3476,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1012,"timestamp":6721901106404,"id":3603,"parentId":3477,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":819,"timestamp":6721901106597,"id":3604,"parentId":3478,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":785,"timestamp":6721901106632,"id":3605,"parentId":3479,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":757,"timestamp":6721901106659,"id":3606,"parentId":3480,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":730,"timestamp":6721901106688,"id":3607,"parentId":3481,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":712,"timestamp":6721901106715,"id":3608,"parentId":3482,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":686,"timestamp":6721901106743,"id":3609,"parentId":3483,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":659,"timestamp":6721901106770,"id":3610,"parentId":3484,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":625,"timestamp":6721901106804,"id":3611,"parentId":3485,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":600,"timestamp":6721901106829,"id":3612,"parentId":3486,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":575,"timestamp":6721901106856,"id":3613,"parentId":3487,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":549,"timestamp":6721901106881,"id":3614,"parentId":3488,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":524,"timestamp":6721901106907,"id":3615,"parentId":3489,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":498,"timestamp":6721901106933,"id":3616,"parentId":3490,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":473,"timestamp":6721901106959,"id":3617,"parentId":3491,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":449,"timestamp":6721901106984,"id":3618,"parentId":3492,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":422,"timestamp":6721901107011,"id":3619,"parentId":3493,"tags":{},"startTime":1776328848143,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12155,"timestamp":6721901101888,"id":3431,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"app-pages-browser"},"startTime":1776328848138,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12300,"timestamp":6721901102009,"id":3432,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"app-pages-browser"},"startTime":1776328848138,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12664,"timestamp":6721901102056,"id":3433,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"app-pages-browser"},"startTime":1776328848138,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12962,"timestamp":6721901102100,"id":3434,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"app-pages-browser"},"startTime":1776328848138,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13842,"timestamp":6721901102138,"id":3435,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"app-pages-browser"},"startTime":1776328848138,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13959,"timestamp":6721901102180,"id":3436,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"app-pages-browser"},"startTime":1776328848138,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14224,"timestamp":6721901102218,"id":3437,"parentId":3414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14280,"timestamp":6721901102257,"id":3438,"parentId":3414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14306,"timestamp":6721901102294,"id":3439,"parentId":3415,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14312,"timestamp":6721901102332,"id":3440,"parentId":3415,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15251,"timestamp":6721901102372,"id":3441,"parentId":3418,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15303,"timestamp":6721901102409,"id":3442,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15371,"timestamp":6721901102446,"id":3443,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15418,"timestamp":6721901102481,"id":3444,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15442,"timestamp":6721901102518,"id":3445,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15466,"timestamp":6721901102557,"id":3446,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15496,"timestamp":6721901102593,"id":3447,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15518,"timestamp":6721901102628,"id":3448,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15539,"timestamp":6721901102663,"id":3449,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15624,"timestamp":6721901102697,"id":3450,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15620,"timestamp":6721901102754,"id":3451,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15629,"timestamp":6721901102799,"id":3452,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15585,"timestamp":6721901102906,"id":3453,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15572,"timestamp":6721901102986,"id":3454,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15581,"timestamp":6721901103029,"id":3455,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15599,"timestamp":6721901103067,"id":3456,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15610,"timestamp":6721901103105,"id":3457,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15621,"timestamp":6721901103144,"id":3458,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15626,"timestamp":6721901103180,"id":3459,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"app-pages-browser"},"startTime":1776328848139,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15649,"timestamp":6721901103216,"id":3460,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15661,"timestamp":6721901103252,"id":3461,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15690,"timestamp":6721901103289,"id":3462,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15695,"timestamp":6721901103325,"id":3463,"parentId":3416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15793,"timestamp":6721901103362,"id":3464,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15810,"timestamp":6721901103397,"id":3465,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15908,"timestamp":6721901103432,"id":3466,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15932,"timestamp":6721901103468,"id":3467,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16059,"timestamp":6721901103507,"id":3468,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16130,"timestamp":6721901103543,"id":3469,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16174,"timestamp":6721901103580,"id":3470,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16185,"timestamp":6721901103616,"id":3471,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":16130,"timestamp":6721901103816,"id":3472,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16140,"timestamp":6721901103878,"id":3473,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16163,"timestamp":6721901103914,"id":3474,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16202,"timestamp":6721901103975,"id":3475,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16172,"timestamp":6721901104093,"id":3476,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18037,"timestamp":6721901104164,"id":3477,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"app-pages-browser"},"startTime":1776328848140,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18993,"timestamp":6721901104208,"id":3478,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19057,"timestamp":6721901104248,"id":3479,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19083,"timestamp":6721901104290,"id":3480,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19110,"timestamp":6721901104329,"id":3481,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19889,"timestamp":6721901104367,"id":3482,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19978,"timestamp":6721901104406,"id":3483,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20013,"timestamp":6721901104445,"id":3484,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20034,"timestamp":6721901104484,"id":3485,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20032,"timestamp":6721901104544,"id":3486,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20020,"timestamp":6721901104610,"id":3487,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20142,"timestamp":6721901104655,"id":3488,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20260,"timestamp":6721901104694,"id":3489,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20449,"timestamp":6721901104733,"id":3490,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20473,"timestamp":6721901104773,"id":3491,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20494,"timestamp":6721901104809,"id":3492,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20727,"timestamp":6721901104844,"id":3493,"parentId":3417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"app-pages-browser"},"startTime":1776328848141,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":277,"timestamp":6721901180492,"id":3621,"parentId":3620,"tags":{},"startTime":1776328848217,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5652,"timestamp":6721901180779,"id":3622,"parentId":3620,"tags":{},"startTime":1776328848217,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7138,"timestamp":6721901180386,"id":3620,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"app-pages-browser"},"startTime":1776328848217,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":371,"timestamp":6721901190846,"id":3683,"parentId":3623,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":409,"timestamp":6721901190852,"id":3684,"parentId":3624,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":450,"timestamp":6721901190856,"id":3685,"parentId":3625,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":471,"timestamp":6721901190859,"id":3686,"parentId":3626,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":492,"timestamp":6721901190861,"id":3687,"parentId":3627,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":521,"timestamp":6721901190863,"id":3688,"parentId":3628,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":548,"timestamp":6721901190866,"id":3689,"parentId":3629,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":572,"timestamp":6721901190869,"id":3690,"parentId":3630,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":604,"timestamp":6721901190871,"id":3691,"parentId":3631,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":627,"timestamp":6721901190874,"id":3692,"parentId":3632,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":659,"timestamp":6721901190877,"id":3693,"parentId":3633,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":700,"timestamp":6721901190879,"id":3694,"parentId":3634,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":723,"timestamp":6721901190881,"id":3695,"parentId":3635,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":747,"timestamp":6721901190884,"id":3696,"parentId":3636,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":764,"timestamp":6721901190891,"id":3697,"parentId":3637,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":795,"timestamp":6721901190893,"id":3698,"parentId":3638,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":817,"timestamp":6721901190895,"id":3699,"parentId":3639,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":838,"timestamp":6721901190897,"id":3700,"parentId":3640,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":864,"timestamp":6721901190898,"id":3701,"parentId":3641,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":888,"timestamp":6721901190900,"id":3702,"parentId":3642,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":909,"timestamp":6721901190902,"id":3703,"parentId":3643,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":930,"timestamp":6721901190904,"id":3704,"parentId":3644,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":952,"timestamp":6721901190906,"id":3705,"parentId":3645,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":974,"timestamp":6721901190907,"id":3706,"parentId":3646,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":994,"timestamp":6721901190909,"id":3707,"parentId":3647,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1015,"timestamp":6721901190911,"id":3708,"parentId":3648,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1035,"timestamp":6721901190912,"id":3709,"parentId":3649,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1055,"timestamp":6721901190914,"id":3710,"parentId":3650,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1081,"timestamp":6721901190915,"id":3711,"parentId":3651,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1108,"timestamp":6721901190917,"id":3712,"parentId":3652,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1130,"timestamp":6721901190918,"id":3713,"parentId":3653,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1162,"timestamp":6721901190920,"id":3714,"parentId":3654,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1203,"timestamp":6721901190921,"id":3715,"parentId":3655,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1227,"timestamp":6721901190923,"id":3716,"parentId":3656,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1256,"timestamp":6721901190925,"id":3717,"parentId":3657,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1279,"timestamp":6721901190927,"id":3718,"parentId":3658,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1302,"timestamp":6721901190928,"id":3719,"parentId":3659,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1331,"timestamp":6721901190929,"id":3720,"parentId":3660,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1361,"timestamp":6721901190931,"id":3721,"parentId":3661,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1386,"timestamp":6721901190932,"id":3722,"parentId":3662,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1409,"timestamp":6721901190933,"id":3723,"parentId":3663,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1429,"timestamp":6721901190937,"id":3724,"parentId":3664,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1450,"timestamp":6721901190938,"id":3725,"parentId":3665,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1471,"timestamp":6721901190939,"id":3726,"parentId":3666,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1497,"timestamp":6721901190940,"id":3727,"parentId":3667,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1517,"timestamp":6721901190942,"id":3728,"parentId":3668,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1538,"timestamp":6721901190942,"id":3729,"parentId":3669,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1559,"timestamp":6721901190944,"id":3730,"parentId":3670,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1587,"timestamp":6721901190945,"id":3731,"parentId":3671,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1609,"timestamp":6721901190946,"id":3732,"parentId":3672,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1630,"timestamp":6721901190947,"id":3733,"parentId":3673,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1652,"timestamp":6721901190948,"id":3734,"parentId":3674,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1673,"timestamp":6721901190950,"id":3735,"parentId":3675,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1694,"timestamp":6721901190951,"id":3736,"parentId":3676,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1722,"timestamp":6721901190952,"id":3737,"parentId":3677,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1754,"timestamp":6721901190953,"id":3738,"parentId":3678,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1786,"timestamp":6721901190954,"id":3739,"parentId":3679,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1813,"timestamp":6721901190955,"id":3740,"parentId":3680,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1838,"timestamp":6721901190956,"id":3741,"parentId":3681,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1864,"timestamp":6721901190957,"id":3742,"parentId":3682,"tags":{},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2567,"timestamp":6721901191225,"id":3743,"parentId":3623,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2530,"timestamp":6721901191264,"id":3744,"parentId":3624,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2487,"timestamp":6721901191307,"id":3745,"parentId":3625,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2464,"timestamp":6721901191331,"id":3746,"parentId":3626,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2440,"timestamp":6721901191355,"id":3747,"parentId":3627,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2409,"timestamp":6721901191386,"id":3748,"parentId":3628,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2379,"timestamp":6721901191416,"id":3749,"parentId":3629,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2353,"timestamp":6721901191443,"id":3750,"parentId":3630,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2317,"timestamp":6721901191479,"id":3751,"parentId":3631,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2295,"timestamp":6721901191502,"id":3752,"parentId":3632,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2259,"timestamp":6721901191538,"id":3753,"parentId":3633,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2216,"timestamp":6721901191581,"id":3754,"parentId":3634,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2192,"timestamp":6721901191606,"id":3755,"parentId":3635,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2166,"timestamp":6721901191632,"id":3756,"parentId":3636,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2143,"timestamp":6721901191657,"id":3757,"parentId":3637,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2110,"timestamp":6721901191690,"id":3758,"parentId":3638,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":2182,"timestamp":6721901191713,"id":3759,"parentId":3639,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2159,"timestamp":6721901191737,"id":3760,"parentId":3640,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2132,"timestamp":6721901191764,"id":3761,"parentId":3641,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2107,"timestamp":6721901191790,"id":3762,"parentId":3642,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2084,"timestamp":6721901191813,"id":3763,"parentId":3643,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2062,"timestamp":6721901191836,"id":3764,"parentId":3644,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2039,"timestamp":6721901191859,"id":3765,"parentId":3645,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2016,"timestamp":6721901191882,"id":3766,"parentId":3646,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1993,"timestamp":6721901191905,"id":3767,"parentId":3647,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1972,"timestamp":6721901191927,"id":3768,"parentId":3648,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1951,"timestamp":6721901191948,"id":3769,"parentId":3649,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1929,"timestamp":6721901191970,"id":3770,"parentId":3650,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1902,"timestamp":6721901191998,"id":3771,"parentId":3651,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1874,"timestamp":6721901192026,"id":3772,"parentId":3652,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1847,"timestamp":6721901192054,"id":3773,"parentId":3653,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1817,"timestamp":6721901192083,"id":3774,"parentId":3654,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1775,"timestamp":6721901192126,"id":3775,"parentId":3655,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1750,"timestamp":6721901192152,"id":3776,"parentId":3656,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1719,"timestamp":6721901192183,"id":3777,"parentId":3657,"tags":{},"startTime":1776328848228,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1695,"timestamp":6721901192208,"id":3778,"parentId":3658,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1671,"timestamp":6721901192231,"id":3779,"parentId":3659,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1641,"timestamp":6721901192262,"id":3780,"parentId":3660,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1611,"timestamp":6721901192293,"id":3781,"parentId":3661,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1584,"timestamp":6721901192319,"id":3782,"parentId":3662,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1561,"timestamp":6721901192343,"id":3783,"parentId":3663,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1537,"timestamp":6721901192368,"id":3784,"parentId":3664,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1515,"timestamp":6721901192390,"id":3785,"parentId":3665,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1488,"timestamp":6721901192417,"id":3786,"parentId":3666,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1467,"timestamp":6721901192439,"id":3787,"parentId":3667,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1445,"timestamp":6721901192460,"id":3788,"parentId":3668,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1424,"timestamp":6721901192482,"id":3789,"parentId":3669,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1403,"timestamp":6721901192504,"id":3790,"parentId":3670,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1373,"timestamp":6721901192533,"id":3791,"parentId":3671,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1350,"timestamp":6721901192557,"id":3792,"parentId":3672,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1329,"timestamp":6721901192579,"id":3793,"parentId":3673,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1305,"timestamp":6721901192602,"id":3794,"parentId":3674,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1284,"timestamp":6721901192624,"id":3795,"parentId":3675,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1262,"timestamp":6721901192646,"id":3796,"parentId":3676,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1234,"timestamp":6721901192675,"id":3797,"parentId":3677,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1200,"timestamp":6721901192709,"id":3798,"parentId":3678,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1167,"timestamp":6721901192742,"id":3799,"parentId":3679,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1140,"timestamp":6721901192770,"id":3800,"parentId":3680,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1114,"timestamp":6721901192796,"id":3801,"parentId":3681,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1087,"timestamp":6721901192823,"id":3802,"parentId":3682,"tags":{},"startTime":1776328848229,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":6898,"timestamp":6721901188362,"id":3623,"parentId":3413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8761,"timestamp":6721901188479,"id":3624,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8960,"timestamp":6721901188529,"id":3625,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9067,"timestamp":6721901188579,"id":3626,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9720,"timestamp":6721901188624,"id":3627,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10214,"timestamp":6721901188662,"id":3628,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10384,"timestamp":6721901188706,"id":3629,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11123,"timestamp":6721901188744,"id":3630,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11175,"timestamp":6721901188785,"id":3631,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12321,"timestamp":6721901188822,"id":3632,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13547,"timestamp":6721901188866,"id":3633,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13853,"timestamp":6721901188912,"id":3634,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14221,"timestamp":6721901188948,"id":3635,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14386,"timestamp":6721901188984,"id":3636,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15126,"timestamp":6721901189019,"id":3637,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15153,"timestamp":6721901189058,"id":3638,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15205,"timestamp":6721901189126,"id":3639,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15563,"timestamp":6721901189188,"id":3640,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"app-pages-browser"},"startTime":1776328848225,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15728,"timestamp":6721901189229,"id":3641,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15854,"timestamp":6721901189266,"id":3642,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15955,"timestamp":6721901189302,"id":3643,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16198,"timestamp":6721901189336,"id":3644,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16367,"timestamp":6721901189370,"id":3645,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16485,"timestamp":6721901189405,"id":3646,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16509,"timestamp":6721901189439,"id":3647,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16552,"timestamp":6721901189472,"id":3648,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16576,"timestamp":6721901189505,"id":3649,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16808,"timestamp":6721901189539,"id":3650,"parentId":3432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17196,"timestamp":6721901189572,"id":3651,"parentId":3433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17418,"timestamp":6721901189603,"id":3652,"parentId":3434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19046,"timestamp":6721901189636,"id":3653,"parentId":3434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20841,"timestamp":6721901189669,"id":3654,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21260,"timestamp":6721901189704,"id":3655,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21898,"timestamp":6721901189738,"id":3656,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21878,"timestamp":6721901189844,"id":3657,"parentId":3433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21976,"timestamp":6721901189918,"id":3658,"parentId":3435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22202,"timestamp":6721901189998,"id":3659,"parentId":3435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22664,"timestamp":6721901190043,"id":3660,"parentId":3435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22835,"timestamp":6721901190082,"id":3661,"parentId":3435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22958,"timestamp":6721901190122,"id":3662,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23155,"timestamp":6721901190157,"id":3663,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23186,"timestamp":6721901190191,"id":3664,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"app-pages-browser"},"startTime":1776328848226,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23196,"timestamp":6721901190224,"id":3665,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23233,"timestamp":6721901190257,"id":3666,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23240,"timestamp":6721901190296,"id":3667,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23256,"timestamp":6721901190333,"id":3668,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23433,"timestamp":6721901190367,"id":3669,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24221,"timestamp":6721901190399,"id":3670,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24489,"timestamp":6721901190431,"id":3671,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24651,"timestamp":6721901190464,"id":3672,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24960,"timestamp":6721901190496,"id":3673,"parentId":3432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25177,"timestamp":6721901190528,"id":3674,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25441,"timestamp":6721901190560,"id":3675,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26346,"timestamp":6721901190591,"id":3676,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28209,"timestamp":6721901190623,"id":3677,"parentId":3437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29100,"timestamp":6721901190655,"id":3678,"parentId":3438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29479,"timestamp":6721901190688,"id":3679,"parentId":3441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":29901,"timestamp":6721901190728,"id":3680,"parentId":3441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30280,"timestamp":6721901190761,"id":3681,"parentId":3441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30451,"timestamp":6721901190793,"id":3682,"parentId":3442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"app-pages-browser"},"startTime":1776328848227,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":216,"timestamp":6721901249708,"id":3859,"parentId":3803,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":252,"timestamp":6721901249712,"id":3860,"parentId":3804,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":283,"timestamp":6721901249714,"id":3861,"parentId":3805,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":306,"timestamp":6721901249716,"id":3862,"parentId":3806,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":328,"timestamp":6721901249717,"id":3863,"parentId":3807,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":352,"timestamp":6721901249718,"id":3864,"parentId":3808,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":395,"timestamp":6721901249720,"id":3865,"parentId":3809,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":422,"timestamp":6721901249721,"id":3866,"parentId":3810,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":460,"timestamp":6721901249723,"id":3867,"parentId":3811,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":495,"timestamp":6721901249724,"id":3868,"parentId":3812,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":525,"timestamp":6721901249725,"id":3869,"parentId":3813,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":571,"timestamp":6721901249727,"id":3870,"parentId":3814,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":599,"timestamp":6721901249728,"id":3871,"parentId":3815,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":622,"timestamp":6721901249731,"id":3872,"parentId":3816,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":645,"timestamp":6721901249732,"id":3873,"parentId":3817,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":668,"timestamp":6721901249733,"id":3874,"parentId":3818,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":694,"timestamp":6721901249734,"id":3875,"parentId":3819,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":717,"timestamp":6721901249736,"id":3876,"parentId":3820,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":742,"timestamp":6721901249737,"id":3877,"parentId":3821,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":778,"timestamp":6721901249738,"id":3878,"parentId":3822,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":810,"timestamp":6721901249740,"id":3879,"parentId":3823,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":845,"timestamp":6721901249742,"id":3880,"parentId":3824,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":870,"timestamp":6721901249743,"id":3881,"parentId":3825,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":892,"timestamp":6721901249744,"id":3882,"parentId":3826,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":917,"timestamp":6721901249745,"id":3883,"parentId":3827,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":950,"timestamp":6721901249746,"id":3884,"parentId":3828,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":977,"timestamp":6721901249747,"id":3885,"parentId":3829,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1000,"timestamp":6721901249748,"id":3886,"parentId":3830,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1034,"timestamp":6721901249750,"id":3887,"parentId":3831,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1062,"timestamp":6721901249751,"id":3888,"parentId":3832,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1085,"timestamp":6721901249752,"id":3889,"parentId":3833,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1107,"timestamp":6721901249753,"id":3890,"parentId":3834,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1129,"timestamp":6721901249754,"id":3891,"parentId":3835,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1149,"timestamp":6721901249759,"id":3892,"parentId":3836,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1188,"timestamp":6721901249760,"id":3893,"parentId":3837,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1273,"timestamp":6721901249761,"id":3894,"parentId":3838,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1299,"timestamp":6721901249762,"id":3895,"parentId":3839,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1353,"timestamp":6721901249764,"id":3896,"parentId":3840,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1376,"timestamp":6721901249765,"id":3897,"parentId":3841,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1401,"timestamp":6721901249765,"id":3898,"parentId":3842,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1423,"timestamp":6721901249767,"id":3899,"parentId":3843,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1446,"timestamp":6721901249768,"id":3900,"parentId":3844,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1469,"timestamp":6721901249769,"id":3901,"parentId":3845,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1496,"timestamp":6721901249770,"id":3902,"parentId":3846,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1519,"timestamp":6721901249771,"id":3903,"parentId":3847,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1545,"timestamp":6721901249771,"id":3904,"parentId":3848,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1571,"timestamp":6721901249773,"id":3905,"parentId":3849,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1605,"timestamp":6721901249773,"id":3906,"parentId":3850,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1639,"timestamp":6721901249774,"id":3907,"parentId":3851,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1664,"timestamp":6721901249776,"id":3908,"parentId":3852,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1691,"timestamp":6721901249777,"id":3909,"parentId":3853,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1721,"timestamp":6721901249778,"id":3910,"parentId":3854,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1748,"timestamp":6721901249779,"id":3911,"parentId":3855,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1771,"timestamp":6721901249780,"id":3912,"parentId":3856,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1794,"timestamp":6721901249781,"id":3913,"parentId":3857,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1823,"timestamp":6721901249782,"id":3914,"parentId":3858,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5470,"timestamp":6721901249933,"id":3915,"parentId":3803,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5440,"timestamp":6721901249966,"id":3916,"parentId":3804,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5407,"timestamp":6721901249999,"id":3917,"parentId":3805,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5383,"timestamp":6721901250023,"id":3918,"parentId":3806,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5360,"timestamp":6721901250046,"id":3919,"parentId":3807,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5335,"timestamp":6721901250071,"id":3920,"parentId":3808,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5290,"timestamp":6721901250117,"id":3921,"parentId":3809,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5263,"timestamp":6721901250144,"id":3922,"parentId":3810,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5223,"timestamp":6721901250184,"id":3923,"parentId":3811,"tags":{},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5188,"timestamp":6721901250220,"id":3924,"parentId":3812,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5156,"timestamp":6721901250252,"id":3925,"parentId":3813,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5108,"timestamp":6721901250301,"id":3926,"parentId":3814,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5080,"timestamp":6721901250329,"id":3927,"parentId":3815,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5055,"timestamp":6721901250354,"id":3928,"parentId":3816,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5030,"timestamp":6721901250379,"id":3929,"parentId":3817,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5007,"timestamp":6721901250403,"id":3930,"parentId":3818,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4980,"timestamp":6721901250430,"id":3931,"parentId":3819,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4956,"timestamp":6721901250454,"id":3932,"parentId":3820,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4929,"timestamp":6721901250481,"id":3933,"parentId":3821,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4892,"timestamp":6721901250518,"id":3934,"parentId":3822,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4859,"timestamp":6721901250552,"id":3935,"parentId":3823,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4823,"timestamp":6721901250588,"id":3936,"parentId":3824,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4797,"timestamp":6721901250614,"id":3937,"parentId":3825,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4774,"timestamp":6721901250637,"id":3938,"parentId":3826,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4748,"timestamp":6721901250664,"id":3939,"parentId":3827,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4715,"timestamp":6721901250698,"id":3940,"parentId":3828,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4686,"timestamp":6721901250726,"id":3941,"parentId":3829,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4662,"timestamp":6721901250751,"id":3942,"parentId":3830,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4628,"timestamp":6721901250785,"id":3943,"parentId":3831,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4599,"timestamp":6721901250814,"id":3944,"parentId":3832,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4575,"timestamp":6721901250839,"id":3945,"parentId":3833,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4552,"timestamp":6721901250862,"id":3946,"parentId":3834,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4529,"timestamp":6721901250885,"id":3947,"parentId":3835,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4505,"timestamp":6721901250909,"id":3948,"parentId":3836,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4465,"timestamp":6721901250950,"id":3949,"parentId":3837,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4379,"timestamp":6721901251036,"id":3950,"parentId":3838,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4352,"timestamp":6721901251063,"id":3951,"parentId":3839,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4297,"timestamp":6721901251118,"id":3952,"parentId":3840,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4274,"timestamp":6721901251142,"id":3953,"parentId":3841,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4248,"timestamp":6721901251168,"id":3954,"parentId":3842,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4225,"timestamp":6721901251192,"id":3955,"parentId":3843,"tags":{},"startTime":1776328848287,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4201,"timestamp":6721901251215,"id":3956,"parentId":3844,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":4413,"timestamp":6721901251239,"id":3957,"parentId":3845,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4387,"timestamp":6721901251267,"id":3958,"parentId":3846,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4363,"timestamp":6721901251291,"id":3959,"parentId":3847,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4336,"timestamp":6721901251318,"id":3960,"parentId":3848,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4309,"timestamp":6721901251345,"id":3961,"parentId":3849,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4275,"timestamp":6721901251380,"id":3962,"parentId":3850,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4241,"timestamp":6721901251415,"id":3963,"parentId":3851,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4215,"timestamp":6721901251441,"id":3964,"parentId":3852,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4187,"timestamp":6721901251469,"id":3965,"parentId":3853,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4156,"timestamp":6721901251500,"id":3966,"parentId":3854,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4128,"timestamp":6721901251528,"id":3967,"parentId":3855,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4104,"timestamp":6721901251553,"id":3968,"parentId":3856,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4080,"timestamp":6721901251577,"id":3969,"parentId":3857,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4050,"timestamp":6721901251607,"id":3970,"parentId":3858,"tags":{},"startTime":1776328848288,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8431,"timestamp":6721901247765,"id":3803,"parentId":3442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9328,"timestamp":6721901247859,"id":3804,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9388,"timestamp":6721901247901,"id":3805,"parentId":3444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9427,"timestamp":6721901247937,"id":3806,"parentId":3444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9662,"timestamp":6721901247973,"id":3807,"parentId":3442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12206,"timestamp":6721901248014,"id":3808,"parentId":3442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12356,"timestamp":6721901248048,"id":3809,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13837,"timestamp":6721901248082,"id":3810,"parentId":3443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14259,"timestamp":6721901248116,"id":3811,"parentId":3444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14696,"timestamp":6721901248149,"id":3812,"parentId":3444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14895,"timestamp":6721901248182,"id":3813,"parentId":3444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"app-pages-browser"},"startTime":1776328848284,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15007,"timestamp":6721901248214,"id":3814,"parentId":3445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15785,"timestamp":6721901248252,"id":3815,"parentId":3445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15884,"timestamp":6721901248285,"id":3816,"parentId":3446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16016,"timestamp":6721901248319,"id":3817,"parentId":3446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16664,"timestamp":6721901248351,"id":3818,"parentId":3446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16913,"timestamp":6721901248384,"id":3819,"parentId":3446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17559,"timestamp":6721901248417,"id":3820,"parentId":3439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18721,"timestamp":6721901248449,"id":3821,"parentId":3440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19380,"timestamp":6721901248481,"id":3822,"parentId":3441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19933,"timestamp":6721901248513,"id":3823,"parentId":3441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20254,"timestamp":6721901248546,"id":3824,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20337,"timestamp":6721901248577,"id":3825,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20551,"timestamp":6721901248608,"id":3826,"parentId":3447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20852,"timestamp":6721901248640,"id":3827,"parentId":3447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20999,"timestamp":6721901248672,"id":3828,"parentId":3447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21077,"timestamp":6721901248705,"id":3829,"parentId":3447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22098,"timestamp":6721901248737,"id":3830,"parentId":3448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22320,"timestamp":6721901248769,"id":3831,"parentId":3448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22537,"timestamp":6721901248800,"id":3832,"parentId":3448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22578,"timestamp":6721901248834,"id":3833,"parentId":3448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22644,"timestamp":6721901248866,"id":3834,"parentId":3448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22703,"timestamp":6721901248897,"id":3835,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23123,"timestamp":6721901248931,"id":3836,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25824,"timestamp":6721901248964,"id":3837,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26264,"timestamp":6721901248996,"id":3838,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27137,"timestamp":6721901249028,"id":3839,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27214,"timestamp":6721901249070,"id":3840,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27328,"timestamp":6721901249103,"id":3841,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27463,"timestamp":6721901249135,"id":3842,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27556,"timestamp":6721901249167,"id":3843,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"app-pages-browser"},"startTime":1776328848285,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27583,"timestamp":6721901249198,"id":3844,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27880,"timestamp":6721901249235,"id":3845,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28020,"timestamp":6721901249266,"id":3846,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28488,"timestamp":6721901249298,"id":3847,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28847,"timestamp":6721901249330,"id":3848,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30090,"timestamp":6721901249363,"id":3849,"parentId":3451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30299,"timestamp":6721901249394,"id":3850,"parentId":3451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30613,"timestamp":6721901249427,"id":3851,"parentId":3452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30934,"timestamp":6721901249458,"id":3852,"parentId":3452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31635,"timestamp":6721901249494,"id":3853,"parentId":3452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32127,"timestamp":6721901249526,"id":3854,"parentId":3453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32288,"timestamp":6721901249558,"id":3855,"parentId":3453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32354,"timestamp":6721901249591,"id":3856,"parentId":3453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32942,"timestamp":6721901249623,"id":3857,"parentId":3454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33239,"timestamp":6721901249656,"id":3858,"parentId":3454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"app-pages-browser"},"startTime":1776328848286,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":283,"timestamp":6721901332661,"id":4038,"parentId":3971,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":342,"timestamp":6721901332665,"id":4039,"parentId":3972,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":366,"timestamp":6721901332668,"id":4040,"parentId":3973,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":389,"timestamp":6721901332671,"id":4041,"parentId":3974,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":416,"timestamp":6721901332675,"id":4042,"parentId":3975,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":441,"timestamp":6721901332677,"id":4043,"parentId":3976,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":463,"timestamp":6721901332680,"id":4044,"parentId":3977,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":492,"timestamp":6721901332682,"id":4045,"parentId":3978,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":526,"timestamp":6721901332686,"id":4046,"parentId":3979,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":526,"timestamp":6721901332710,"id":4047,"parentId":3980,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":548,"timestamp":6721901332712,"id":4048,"parentId":3981,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":574,"timestamp":6721901332714,"id":4049,"parentId":3982,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":608,"timestamp":6721901332716,"id":4050,"parentId":3983,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":641,"timestamp":6721901332718,"id":4051,"parentId":3984,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":677,"timestamp":6721901332720,"id":4052,"parentId":3985,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":715,"timestamp":6721901332722,"id":4053,"parentId":3986,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":739,"timestamp":6721901332724,"id":4054,"parentId":3987,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":761,"timestamp":6721901332726,"id":4055,"parentId":3988,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":791,"timestamp":6721901332728,"id":4056,"parentId":3989,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":813,"timestamp":6721901332729,"id":4057,"parentId":3990,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":858,"timestamp":6721901332731,"id":4058,"parentId":3991,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":881,"timestamp":6721901332734,"id":4059,"parentId":3992,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":904,"timestamp":6721901332737,"id":4060,"parentId":3993,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":930,"timestamp":6721901332738,"id":4061,"parentId":3994,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":955,"timestamp":6721901332740,"id":4062,"parentId":3995,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":984,"timestamp":6721901332742,"id":4063,"parentId":3996,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1006,"timestamp":6721901332744,"id":4064,"parentId":3997,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1031,"timestamp":6721901332746,"id":4065,"parentId":3998,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1056,"timestamp":6721901332748,"id":4066,"parentId":3999,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1086,"timestamp":6721901332750,"id":4067,"parentId":4000,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1113,"timestamp":6721901332752,"id":4068,"parentId":4001,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":1236,"timestamp":6721901332754,"id":4069,"parentId":4002,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1261,"timestamp":6721901332755,"id":4070,"parentId":4003,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1286,"timestamp":6721901332757,"id":4071,"parentId":4004,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1336,"timestamp":6721901332759,"id":4072,"parentId":4005,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1358,"timestamp":6721901332761,"id":4073,"parentId":4006,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1381,"timestamp":6721901332763,"id":4074,"parentId":4007,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1415,"timestamp":6721901332764,"id":4075,"parentId":4008,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1442,"timestamp":6721901332766,"id":4076,"parentId":4009,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1464,"timestamp":6721901332768,"id":4077,"parentId":4010,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1489,"timestamp":6721901332770,"id":4078,"parentId":4011,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1512,"timestamp":6721901332772,"id":4079,"parentId":4012,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1535,"timestamp":6721901332773,"id":4080,"parentId":4013,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1560,"timestamp":6721901332775,"id":4081,"parentId":4014,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1590,"timestamp":6721901332776,"id":4082,"parentId":4015,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1615,"timestamp":6721901332778,"id":4083,"parentId":4016,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1640,"timestamp":6721901332779,"id":4084,"parentId":4017,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1678,"timestamp":6721901332781,"id":4085,"parentId":4018,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1703,"timestamp":6721901332782,"id":4086,"parentId":4019,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1730,"timestamp":6721901332784,"id":4087,"parentId":4020,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1756,"timestamp":6721901332785,"id":4088,"parentId":4021,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1783,"timestamp":6721901332787,"id":4089,"parentId":4022,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1808,"timestamp":6721901332789,"id":4090,"parentId":4023,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1833,"timestamp":6721901332790,"id":4091,"parentId":4024,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1858,"timestamp":6721901332791,"id":4092,"parentId":4025,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1883,"timestamp":6721901332792,"id":4093,"parentId":4026,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1907,"timestamp":6721901332793,"id":4094,"parentId":4027,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1931,"timestamp":6721901332795,"id":4095,"parentId":4028,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1956,"timestamp":6721901332796,"id":4096,"parentId":4029,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1980,"timestamp":6721901332797,"id":4097,"parentId":4030,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2003,"timestamp":6721901332798,"id":4098,"parentId":4031,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2028,"timestamp":6721901332800,"id":4099,"parentId":4032,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2051,"timestamp":6721901332801,"id":4100,"parentId":4033,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2074,"timestamp":6721901332802,"id":4101,"parentId":4034,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2100,"timestamp":6721901332803,"id":4102,"parentId":4035,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2123,"timestamp":6721901332804,"id":4103,"parentId":4036,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2147,"timestamp":6721901332806,"id":4104,"parentId":4037,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5514,"timestamp":6721901332954,"id":4105,"parentId":3971,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5463,"timestamp":6721901333009,"id":4106,"parentId":3972,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5437,"timestamp":6721901333036,"id":4107,"parentId":3973,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5411,"timestamp":6721901333062,"id":4108,"parentId":3974,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5381,"timestamp":6721901333092,"id":4109,"parentId":3975,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5353,"timestamp":6721901333120,"id":4110,"parentId":3976,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5329,"timestamp":6721901333145,"id":4111,"parentId":3977,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5289,"timestamp":6721901333186,"id":4112,"parentId":3978,"tags":{},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5261,"timestamp":6721901333214,"id":4113,"parentId":3979,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5238,"timestamp":6721901333237,"id":4114,"parentId":3980,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5213,"timestamp":6721901333262,"id":4115,"parentId":3981,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5186,"timestamp":6721901333290,"id":4116,"parentId":3982,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5148,"timestamp":6721901333327,"id":4117,"parentId":3983,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5114,"timestamp":6721901333362,"id":4118,"parentId":3984,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5076,"timestamp":6721901333400,"id":4119,"parentId":3985,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5036,"timestamp":6721901333440,"id":4120,"parentId":3986,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5011,"timestamp":6721901333465,"id":4121,"parentId":3987,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4988,"timestamp":6721901333489,"id":4122,"parentId":3988,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4957,"timestamp":6721901333520,"id":4123,"parentId":3989,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4933,"timestamp":6721901333544,"id":4124,"parentId":3990,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4886,"timestamp":6721901333591,"id":4125,"parentId":3991,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4862,"timestamp":6721901333616,"id":4126,"parentId":3992,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4835,"timestamp":6721901333643,"id":4127,"parentId":3993,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4808,"timestamp":6721901333670,"id":4128,"parentId":3994,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4781,"timestamp":6721901333697,"id":4129,"parentId":3995,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4751,"timestamp":6721901333728,"id":4130,"parentId":3996,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4727,"timestamp":6721901333752,"id":4131,"parentId":3997,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4700,"timestamp":6721901333779,"id":4132,"parentId":3998,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4674,"timestamp":6721901333806,"id":4133,"parentId":3999,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4641,"timestamp":6721901333839,"id":4134,"parentId":4000,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4515,"timestamp":6721901333965,"id":4135,"parentId":4001,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4489,"timestamp":6721901333992,"id":4136,"parentId":4002,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4462,"timestamp":6721901334019,"id":4137,"parentId":4003,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4436,"timestamp":6721901334045,"id":4138,"parentId":4004,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4384,"timestamp":6721901334097,"id":4139,"parentId":4005,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4360,"timestamp":6721901334122,"id":4140,"parentId":4006,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4337,"timestamp":6721901334145,"id":4141,"parentId":4007,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4301,"timestamp":6721901334181,"id":4142,"parentId":4008,"tags":{},"startTime":1776328848370,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4273,"timestamp":6721901334210,"id":4143,"parentId":4009,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4248,"timestamp":6721901334235,"id":4144,"parentId":4010,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4221,"timestamp":6721901334261,"id":4145,"parentId":4011,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4198,"timestamp":6721901334285,"id":4146,"parentId":4012,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4173,"timestamp":6721901334310,"id":4147,"parentId":4013,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4145,"timestamp":6721901334338,"id":4148,"parentId":4014,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4116,"timestamp":6721901334368,"id":4149,"parentId":4015,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4088,"timestamp":6721901334396,"id":4150,"parentId":4016,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4063,"timestamp":6721901334421,"id":4151,"parentId":4017,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4024,"timestamp":6721901334461,"id":4152,"parentId":4018,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3997,"timestamp":6721901334487,"id":4153,"parentId":4019,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3970,"timestamp":6721901334515,"id":4154,"parentId":4020,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3942,"timestamp":6721901334543,"id":4155,"parentId":4021,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3914,"timestamp":6721901334572,"id":4156,"parentId":4022,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3887,"timestamp":6721901334599,"id":4157,"parentId":4023,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3861,"timestamp":6721901334625,"id":4158,"parentId":4024,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3835,"timestamp":6721901334651,"id":4159,"parentId":4025,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3808,"timestamp":6721901334678,"id":4160,"parentId":4026,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3784,"timestamp":6721901334703,"id":4161,"parentId":4027,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3759,"timestamp":6721901334728,"id":4162,"parentId":4028,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3733,"timestamp":6721901334754,"id":4163,"parentId":4029,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3709,"timestamp":6721901334778,"id":4164,"parentId":4030,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3684,"timestamp":6721901334804,"id":4165,"parentId":4031,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3658,"timestamp":6721901334829,"id":4166,"parentId":4032,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3634,"timestamp":6721901334853,"id":4167,"parentId":4033,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3609,"timestamp":6721901334879,"id":4168,"parentId":4034,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3583,"timestamp":6721901334905,"id":4169,"parentId":4035,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":3648,"timestamp":6721901334929,"id":4170,"parentId":4036,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3626,"timestamp":6721901334955,"id":4171,"parentId":4037,"tags":{},"startTime":1776328848371,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9574,"timestamp":6721901330300,"id":3971,"parentId":3454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9813,"timestamp":6721901330385,"id":3972,"parentId":3454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9996,"timestamp":6721901330428,"id":3973,"parentId":3455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10301,"timestamp":6721901330466,"id":3974,"parentId":3455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10608,"timestamp":6721901330502,"id":3975,"parentId":3455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10699,"timestamp":6721901330537,"id":3976,"parentId":3455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11262,"timestamp":6721901330571,"id":3977,"parentId":3456,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11343,"timestamp":6721901330606,"id":3978,"parentId":3456,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11381,"timestamp":6721901330639,"id":3979,"parentId":3456,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11473,"timestamp":6721901330673,"id":3980,"parentId":3456,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11817,"timestamp":6721901330706,"id":3981,"parentId":3456,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11940,"timestamp":6721901330739,"id":3982,"parentId":3457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12019,"timestamp":6721901330772,"id":3983,"parentId":3457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12313,"timestamp":6721901330806,"id":3984,"parentId":3458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12850,"timestamp":6721901330838,"id":3985,"parentId":3458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13009,"timestamp":6721901330870,"id":3986,"parentId":3458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13099,"timestamp":6721901330902,"id":3987,"parentId":3458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13634,"timestamp":6721901330940,"id":3988,"parentId":3459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13711,"timestamp":6721901330975,"id":3989,"parentId":3459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14767,"timestamp":6721901331008,"id":3990,"parentId":3460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15664,"timestamp":6721901331040,"id":3991,"parentId":3460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16101,"timestamp":6721901331073,"id":3992,"parentId":3461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16553,"timestamp":6721901331106,"id":3993,"parentId":3461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16767,"timestamp":6721901331138,"id":3994,"parentId":3461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17753,"timestamp":6721901331172,"id":3995,"parentId":3431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776328848367,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17922,"timestamp":6721901331204,"id":3996,"parentId":3464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18430,"timestamp":6721901331236,"id":3997,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19544,"timestamp":6721901331268,"id":3998,"parentId":3462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20120,"timestamp":6721901331300,"id":3999,"parentId":3462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22521,"timestamp":6721901331331,"id":4000,"parentId":3462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22636,"timestamp":6721901331364,"id":4001,"parentId":3462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23129,"timestamp":6721901331397,"id":4002,"parentId":3462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23927,"timestamp":6721901331429,"id":4003,"parentId":3463,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28287,"timestamp":6721901331460,"id":4004,"parentId":3463,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28371,"timestamp":6721901331493,"id":4005,"parentId":3464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28456,"timestamp":6721901331524,"id":4006,"parentId":3464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29539,"timestamp":6721901331557,"id":4007,"parentId":3464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30050,"timestamp":6721901331587,"id":4008,"parentId":3464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30235,"timestamp":6721901331619,"id":4009,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30504,"timestamp":6721901331651,"id":4010,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30574,"timestamp":6721901331683,"id":4011,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":30680,"timestamp":6721901331715,"id":4012,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31160,"timestamp":6721901331746,"id":4013,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31962,"timestamp":6721901331777,"id":4014,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32963,"timestamp":6721901331808,"id":4015,"parentId":3466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33207,"timestamp":6721901331840,"id":4016,"parentId":3467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35243,"timestamp":6721901331872,"id":4017,"parentId":3477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35812,"timestamp":6721901331905,"id":4018,"parentId":3477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36178,"timestamp":6721901331936,"id":4019,"parentId":3467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36531,"timestamp":6721901331968,"id":4020,"parentId":3467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36766,"timestamp":6721901332000,"id":4021,"parentId":3468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37162,"timestamp":6721901332032,"id":4022,"parentId":3468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37304,"timestamp":6721901332064,"id":4023,"parentId":3468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37392,"timestamp":6721901332096,"id":4024,"parentId":3468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37610,"timestamp":6721901332131,"id":4025,"parentId":3469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37678,"timestamp":6721901332166,"id":4026,"parentId":3469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"app-pages-browser"},"startTime":1776328848368,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37736,"timestamp":6721901332200,"id":4027,"parentId":3469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38253,"timestamp":6721901332234,"id":4028,"parentId":3469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38324,"timestamp":6721901332271,"id":4029,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38633,"timestamp":6721901332323,"id":4030,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38785,"timestamp":6721901332357,"id":4031,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38843,"timestamp":6721901332392,"id":4032,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38930,"timestamp":6721901332462,"id":4033,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39197,"timestamp":6721901332499,"id":4034,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39238,"timestamp":6721901332533,"id":4035,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39364,"timestamp":6721901332570,"id":4036,"parentId":3471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40151,"timestamp":6721901332604,"id":4037,"parentId":3471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"app-pages-browser"},"startTime":1776328848369,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":209,"timestamp":6721901420449,"id":4255,"parentId":4172,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":239,"timestamp":6721901420465,"id":4256,"parentId":4173,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":266,"timestamp":6721901420467,"id":4257,"parentId":4174,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":299,"timestamp":6721901420469,"id":4258,"parentId":4175,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":322,"timestamp":6721901420471,"id":4259,"parentId":4176,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":343,"timestamp":6721901420473,"id":4260,"parentId":4177,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":372,"timestamp":6721901420474,"id":4261,"parentId":4178,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":396,"timestamp":6721901420476,"id":4262,"parentId":4179,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":419,"timestamp":6721901420478,"id":4263,"parentId":4180,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":472,"timestamp":6721901420480,"id":4264,"parentId":4181,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":497,"timestamp":6721901420482,"id":4265,"parentId":4182,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":521,"timestamp":6721901420483,"id":4266,"parentId":4183,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":545,"timestamp":6721901420484,"id":4267,"parentId":4184,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":573,"timestamp":6721901420486,"id":4268,"parentId":4185,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":604,"timestamp":6721901420488,"id":4269,"parentId":4186,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":626,"timestamp":6721901420489,"id":4270,"parentId":4187,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":651,"timestamp":6721901420491,"id":4271,"parentId":4188,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":674,"timestamp":6721901420492,"id":4272,"parentId":4189,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":717,"timestamp":6721901420494,"id":4273,"parentId":4190,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":748,"timestamp":6721901420495,"id":4274,"parentId":4191,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":786,"timestamp":6721901420497,"id":4275,"parentId":4192,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":808,"timestamp":6721901420498,"id":4276,"parentId":4193,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":830,"timestamp":6721901420500,"id":4277,"parentId":4194,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":852,"timestamp":6721901420501,"id":4278,"parentId":4195,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":874,"timestamp":6721901420503,"id":4279,"parentId":4196,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":905,"timestamp":6721901420505,"id":4280,"parentId":4197,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":931,"timestamp":6721901420506,"id":4281,"parentId":4198,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":961,"timestamp":6721901420507,"id":4282,"parentId":4199,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":983,"timestamp":6721901420508,"id":4283,"parentId":4200,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1009,"timestamp":6721901420510,"id":4284,"parentId":4201,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1034,"timestamp":6721901420511,"id":4285,"parentId":4202,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1059,"timestamp":6721901420512,"id":4286,"parentId":4203,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":1169,"timestamp":6721901420514,"id":4287,"parentId":4204,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1201,"timestamp":6721901420515,"id":4288,"parentId":4205,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1223,"timestamp":6721901420517,"id":4289,"parentId":4206,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1252,"timestamp":6721901420518,"id":4290,"parentId":4207,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1273,"timestamp":6721901420520,"id":4291,"parentId":4208,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1305,"timestamp":6721901420521,"id":4292,"parentId":4209,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1329,"timestamp":6721901420522,"id":4293,"parentId":4210,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1362,"timestamp":6721901420524,"id":4294,"parentId":4211,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1384,"timestamp":6721901420525,"id":4295,"parentId":4212,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1410,"timestamp":6721901420526,"id":4296,"parentId":4213,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1445,"timestamp":6721901420527,"id":4297,"parentId":4214,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2181,"timestamp":6721901420528,"id":4298,"parentId":4215,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2233,"timestamp":6721901420530,"id":4299,"parentId":4216,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2261,"timestamp":6721901420531,"id":4300,"parentId":4217,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2291,"timestamp":6721901420532,"id":4301,"parentId":4218,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2321,"timestamp":6721901420533,"id":4302,"parentId":4219,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2348,"timestamp":6721901420534,"id":4303,"parentId":4220,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2373,"timestamp":6721901420535,"id":4304,"parentId":4221,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2459,"timestamp":6721901420536,"id":4305,"parentId":4222,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2488,"timestamp":6721901420537,"id":4306,"parentId":4223,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2561,"timestamp":6721901420538,"id":4307,"parentId":4224,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2584,"timestamp":6721901420540,"id":4308,"parentId":4225,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2627,"timestamp":6721901420541,"id":4309,"parentId":4226,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2652,"timestamp":6721901420542,"id":4310,"parentId":4227,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2675,"timestamp":6721901420543,"id":4311,"parentId":4228,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2698,"timestamp":6721901420544,"id":4312,"parentId":4229,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2723,"timestamp":6721901420546,"id":4313,"parentId":4230,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2752,"timestamp":6721901420547,"id":4314,"parentId":4231,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2775,"timestamp":6721901420548,"id":4315,"parentId":4232,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2795,"timestamp":6721901420549,"id":4316,"parentId":4233,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2820,"timestamp":6721901420551,"id":4317,"parentId":4234,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2848,"timestamp":6721901420552,"id":4318,"parentId":4235,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2876,"timestamp":6721901420553,"id":4319,"parentId":4236,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2899,"timestamp":6721901420554,"id":4320,"parentId":4237,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2943,"timestamp":6721901420556,"id":4321,"parentId":4238,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2966,"timestamp":6721901420557,"id":4322,"parentId":4239,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2996,"timestamp":6721901420558,"id":4323,"parentId":4240,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3024,"timestamp":6721901420559,"id":4324,"parentId":4241,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3048,"timestamp":6721901420560,"id":4325,"parentId":4242,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3079,"timestamp":6721901420562,"id":4326,"parentId":4243,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3113,"timestamp":6721901420563,"id":4327,"parentId":4244,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3137,"timestamp":6721901420564,"id":4328,"parentId":4245,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3159,"timestamp":6721901420565,"id":4329,"parentId":4246,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3183,"timestamp":6721901420566,"id":4330,"parentId":4247,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3212,"timestamp":6721901420567,"id":4331,"parentId":4248,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3237,"timestamp":6721901420569,"id":4332,"parentId":4249,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3268,"timestamp":6721901420570,"id":4333,"parentId":4250,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3294,"timestamp":6721901420571,"id":4334,"parentId":4251,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3320,"timestamp":6721901420573,"id":4335,"parentId":4252,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3348,"timestamp":6721901420574,"id":4336,"parentId":4253,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":3370,"timestamp":6721901420575,"id":4337,"parentId":4254,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3859,"timestamp":6721901420666,"id":4338,"parentId":4172,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3821,"timestamp":6721901420706,"id":4339,"parentId":4173,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3793,"timestamp":6721901420735,"id":4340,"parentId":4174,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3758,"timestamp":6721901420770,"id":4341,"parentId":4175,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3734,"timestamp":6721901420794,"id":4342,"parentId":4176,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3711,"timestamp":6721901420818,"id":4343,"parentId":4177,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3679,"timestamp":6721901420850,"id":4344,"parentId":4178,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3655,"timestamp":6721901420874,"id":4345,"parentId":4179,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3631,"timestamp":6721901420899,"id":4346,"parentId":4180,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3576,"timestamp":6721901420954,"id":4347,"parentId":4181,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3549,"timestamp":6721901420981,"id":4348,"parentId":4182,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3525,"timestamp":6721901421005,"id":4349,"parentId":4183,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3500,"timestamp":6721901421031,"id":4350,"parentId":4184,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3470,"timestamp":6721901421061,"id":4351,"parentId":4185,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3438,"timestamp":6721901421093,"id":4352,"parentId":4186,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3413,"timestamp":6721901421119,"id":4353,"parentId":4187,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3388,"timestamp":6721901421144,"id":4354,"parentId":4188,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3364,"timestamp":6721901421168,"id":4355,"parentId":4189,"tags":{},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3320,"timestamp":6721901421212,"id":4356,"parentId":4190,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3288,"timestamp":6721901421244,"id":4357,"parentId":4191,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3249,"timestamp":6721901421284,"id":4358,"parentId":4192,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3225,"timestamp":6721901421308,"id":4359,"parentId":4193,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3201,"timestamp":6721901421332,"id":4360,"parentId":4194,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3178,"timestamp":6721901421355,"id":4361,"parentId":4195,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3155,"timestamp":6721901421378,"id":4362,"parentId":4196,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3123,"timestamp":6721901421410,"id":4363,"parentId":4197,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3096,"timestamp":6721901421438,"id":4364,"parentId":4198,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3065,"timestamp":6721901421469,"id":4365,"parentId":4199,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3042,"timestamp":6721901421493,"id":4366,"parentId":4200,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3015,"timestamp":6721901421520,"id":4367,"parentId":4201,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2988,"timestamp":6721901421547,"id":4368,"parentId":4202,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2875,"timestamp":6721901421661,"id":4369,"parentId":4203,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2852,"timestamp":6721901421685,"id":4370,"parentId":4204,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2819,"timestamp":6721901421718,"id":4371,"parentId":4205,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2796,"timestamp":6721901421741,"id":4372,"parentId":4206,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2766,"timestamp":6721901421772,"id":4373,"parentId":4207,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2743,"timestamp":6721901421795,"id":4374,"parentId":4208,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2710,"timestamp":6721901421828,"id":4375,"parentId":4209,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2686,"timestamp":6721901421853,"id":4376,"parentId":4210,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2651,"timestamp":6721901421887,"id":4377,"parentId":4211,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2628,"timestamp":6721901421911,"id":4378,"parentId":4212,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2601,"timestamp":6721901421938,"id":4379,"parentId":4213,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2565,"timestamp":6721901421974,"id":4380,"parentId":4214,"tags":{},"startTime":1776328848458,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1811,"timestamp":6721901422729,"id":4381,"parentId":4215,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1773,"timestamp":6721901422767,"id":4382,"parentId":4216,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1746,"timestamp":6721901422794,"id":4383,"parentId":4217,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1716,"timestamp":6721901422825,"id":4384,"parentId":4218,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1685,"timestamp":6721901422856,"id":4385,"parentId":4219,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1657,"timestamp":6721901422884,"id":4386,"parentId":4220,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1631,"timestamp":6721901422911,"id":4387,"parentId":4221,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":1647,"timestamp":6721901422998,"id":4388,"parentId":4222,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1620,"timestamp":6721901423027,"id":4389,"parentId":4223,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1546,"timestamp":6721901423101,"id":4390,"parentId":4224,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1522,"timestamp":6721901423126,"id":4391,"parentId":4225,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1479,"timestamp":6721901423170,"id":4392,"parentId":4226,"tags":{},"startTime":1776328848459,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1453,"timestamp":6721901423196,"id":4393,"parentId":4227,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1429,"timestamp":6721901423220,"id":4394,"parentId":4228,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1405,"timestamp":6721901423244,"id":4395,"parentId":4229,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1380,"timestamp":6721901423270,"id":4396,"parentId":4230,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1350,"timestamp":6721901423301,"id":4397,"parentId":4231,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1325,"timestamp":6721901423326,"id":4398,"parentId":4232,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1305,"timestamp":6721901423347,"id":4399,"parentId":4233,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1280,"timestamp":6721901423373,"id":4400,"parentId":4234,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1251,"timestamp":6721901423402,"id":4401,"parentId":4235,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1221,"timestamp":6721901423432,"id":4402,"parentId":4236,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1198,"timestamp":6721901423456,"id":4403,"parentId":4237,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1153,"timestamp":6721901423501,"id":4404,"parentId":4238,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1129,"timestamp":6721901423526,"id":4405,"parentId":4239,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1099,"timestamp":6721901423557,"id":4406,"parentId":4240,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1070,"timestamp":6721901423586,"id":4407,"parentId":4241,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1047,"timestamp":6721901423610,"id":4408,"parentId":4242,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1015,"timestamp":6721901423642,"id":4409,"parentId":4243,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":979,"timestamp":6721901423678,"id":4410,"parentId":4244,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":955,"timestamp":6721901423703,"id":4411,"parentId":4245,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":932,"timestamp":6721901423726,"id":4412,"parentId":4246,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":907,"timestamp":6721901423751,"id":4413,"parentId":4247,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":877,"timestamp":6721901423782,"id":4414,"parentId":4248,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":851,"timestamp":6721901423808,"id":4415,"parentId":4249,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":821,"timestamp":6721901423839,"id":4416,"parentId":4250,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":794,"timestamp":6721901423867,"id":4417,"parentId":4251,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":766,"timestamp":6721901423895,"id":4418,"parentId":4252,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":737,"timestamp":6721901423924,"id":4419,"parentId":4253,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":715,"timestamp":6721901423947,"id":4420,"parentId":4254,"tags":{},"startTime":1776328848460,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8218,"timestamp":6721901417625,"id":4172,"parentId":3471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8654,"timestamp":6721901417711,"id":4173,"parentId":3472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9358,"timestamp":6721901417753,"id":4174,"parentId":3472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9390,"timestamp":6721901417791,"id":4175,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9486,"timestamp":6721901417829,"id":4176,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10015,"timestamp":6721901417865,"id":4177,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10049,"timestamp":6721901417900,"id":4178,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10113,"timestamp":6721901417935,"id":4179,"parentId":3474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11835,"timestamp":6721901417970,"id":4180,"parentId":3474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12211,"timestamp":6721901418005,"id":4181,"parentId":3475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12324,"timestamp":6721901418042,"id":4182,"parentId":3475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12421,"timestamp":6721901418078,"id":4183,"parentId":3475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12949,"timestamp":6721901418113,"id":4184,"parentId":3475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13601,"timestamp":6721901418149,"id":4185,"parentId":3475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13702,"timestamp":6721901418183,"id":4186,"parentId":3476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"app-pages-browser"},"startTime":1776328848454,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13845,"timestamp":6721901418217,"id":4187,"parentId":3476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14122,"timestamp":6721901418251,"id":4188,"parentId":3476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14643,"timestamp":6721901418286,"id":4189,"parentId":3476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15782,"timestamp":6721901418318,"id":4190,"parentId":3478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17392,"timestamp":6721901418353,"id":4191,"parentId":3478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17495,"timestamp":6721901418386,"id":4192,"parentId":3478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17638,"timestamp":6721901418418,"id":4193,"parentId":3478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17679,"timestamp":6721901418451,"id":4194,"parentId":3479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17741,"timestamp":6721901418485,"id":4195,"parentId":3479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17983,"timestamp":6721901418517,"id":4196,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18303,"timestamp":6721901418550,"id":4197,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19019,"timestamp":6721901418582,"id":4198,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19085,"timestamp":6721901418615,"id":4199,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19445,"timestamp":6721901418647,"id":4200,"parentId":3473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19584,"timestamp":6721901418679,"id":4201,"parentId":3476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19937,"timestamp":6721901418712,"id":4202,"parentId":3491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19987,"timestamp":6721901418743,"id":4203,"parentId":3493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20314,"timestamp":6721901418773,"id":4204,"parentId":3479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20368,"timestamp":6721901418806,"id":4205,"parentId":3480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21376,"timestamp":6721901418837,"id":4206,"parentId":3480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21517,"timestamp":6721901418869,"id":4207,"parentId":3481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22336,"timestamp":6721901418901,"id":4208,"parentId":3481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22527,"timestamp":6721901418935,"id":4209,"parentId":3483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23198,"timestamp":6721901418969,"id":4210,"parentId":3483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23232,"timestamp":6721901419002,"id":4211,"parentId":3483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23618,"timestamp":6721901419035,"id":4212,"parentId":3484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24489,"timestamp":6721901419068,"id":4213,"parentId":3484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24530,"timestamp":6721901419101,"id":4214,"parentId":3484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24643,"timestamp":6721901419133,"id":4215,"parentId":3484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24689,"timestamp":6721901419165,"id":4216,"parentId":3486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"app-pages-browser"},"startTime":1776328848455,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25702,"timestamp":6721901419198,"id":4217,"parentId":3486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26236,"timestamp":6721901419232,"id":4218,"parentId":3486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26465,"timestamp":6721901419265,"id":4219,"parentId":3486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26633,"timestamp":6721901419298,"id":4220,"parentId":3487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29118,"timestamp":6721901419331,"id":4221,"parentId":3487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29633,"timestamp":6721901419365,"id":4222,"parentId":3489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34240,"timestamp":6721901419398,"id":4223,"parentId":3489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":34515,"timestamp":6721901419431,"id":4224,"parentId":3489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":36166,"timestamp":6721901419464,"id":4225,"parentId":3490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37637,"timestamp":6721901419496,"id":4226,"parentId":3490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37740,"timestamp":6721901419529,"id":4227,"parentId":3491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38107,"timestamp":6721901419562,"id":4228,"parentId":3492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":38420,"timestamp":6721901419594,"id":4229,"parentId":3492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39060,"timestamp":6721901419627,"id":4230,"parentId":3620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":39921,"timestamp":6721901419660,"id":4231,"parentId":3620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40510,"timestamp":6721901419692,"id":4232,"parentId":3620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":40781,"timestamp":6721901419722,"id":4233,"parentId":3620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":42614,"timestamp":6721901419754,"id":4234,"parentId":3620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":43434,"timestamp":6721901419786,"id":4235,"parentId":3624,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":44035,"timestamp":6721901419818,"id":4236,"parentId":3624,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":47842,"timestamp":6721901419850,"id":4237,"parentId":3629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":48463,"timestamp":6721901419881,"id":4238,"parentId":3646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":49006,"timestamp":6721901419913,"id":4239,"parentId":3646,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"}] +[{"name":"build-module-js","duration":52080,"timestamp":6721901419944,"id":4240,"parentId":3648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":52445,"timestamp":6721901419975,"id":4241,"parentId":3654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":54258,"timestamp":6721901420007,"id":4242,"parentId":3624,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55029,"timestamp":6721901420039,"id":4243,"parentId":3628,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55135,"timestamp":6721901420072,"id":4244,"parentId":3635,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55206,"timestamp":6721901420109,"id":4245,"parentId":3635,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55262,"timestamp":6721901420141,"id":4246,"parentId":3635,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55302,"timestamp":6721901420173,"id":4247,"parentId":3652,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"app-pages-browser"},"startTime":1776328848456,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":55414,"timestamp":6721901420205,"id":4248,"parentId":3652,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"app-pages-browser"},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":56067,"timestamp":6721901420238,"id":4249,"parentId":3654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"app-pages-browser"},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":56290,"timestamp":6721901420272,"id":4250,"parentId":3654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"app-pages-browser"},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":57045,"timestamp":6721901420308,"id":4251,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"app-pages-browser"},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":58363,"timestamp":6721901420341,"id":4252,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"app-pages-browser"},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":59229,"timestamp":6721901420374,"id":4253,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"app-pages-browser"},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":60619,"timestamp":6721901420407,"id":4254,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"app-pages-browser"},"startTime":1776328848457,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":255,"timestamp":6721901532923,"id":4467,"parentId":4421,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":288,"timestamp":6721901532928,"id":4468,"parentId":4422,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":309,"timestamp":6721901532931,"id":4469,"parentId":4423,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":330,"timestamp":6721901532933,"id":4470,"parentId":4424,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":352,"timestamp":6721901532935,"id":4471,"parentId":4425,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":376,"timestamp":6721901532937,"id":4472,"parentId":4426,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":399,"timestamp":6721901532939,"id":4473,"parentId":4427,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":422,"timestamp":6721901532941,"id":4474,"parentId":4428,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":442,"timestamp":6721901532944,"id":4475,"parentId":4429,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":461,"timestamp":6721901532946,"id":4476,"parentId":4430,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":481,"timestamp":6721901532948,"id":4477,"parentId":4431,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":500,"timestamp":6721901532950,"id":4478,"parentId":4432,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":523,"timestamp":6721901532953,"id":4479,"parentId":4433,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":548,"timestamp":6721901532955,"id":4480,"parentId":4434,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":569,"timestamp":6721901532957,"id":4481,"parentId":4435,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":592,"timestamp":6721901532959,"id":4482,"parentId":4436,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":614,"timestamp":6721901532961,"id":4483,"parentId":4437,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":634,"timestamp":6721901532962,"id":4484,"parentId":4438,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":656,"timestamp":6721901532964,"id":4485,"parentId":4439,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":703,"timestamp":6721901532966,"id":4486,"parentId":4440,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":735,"timestamp":6721901532967,"id":4487,"parentId":4441,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":776,"timestamp":6721901532969,"id":4488,"parentId":4442,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":810,"timestamp":6721901532971,"id":4489,"parentId":4443,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":835,"timestamp":6721901532972,"id":4490,"parentId":4444,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":873,"timestamp":6721901532974,"id":4491,"parentId":4445,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":901,"timestamp":6721901532975,"id":4492,"parentId":4446,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":923,"timestamp":6721901532977,"id":4493,"parentId":4447,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":948,"timestamp":6721901532978,"id":4494,"parentId":4448,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":977,"timestamp":6721901532979,"id":4495,"parentId":4449,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1003,"timestamp":6721901532981,"id":4496,"parentId":4450,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1030,"timestamp":6721901532982,"id":4497,"parentId":4451,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1058,"timestamp":6721901532983,"id":4498,"parentId":4452,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1087,"timestamp":6721901532984,"id":4499,"parentId":4453,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1115,"timestamp":6721901532985,"id":4500,"parentId":4454,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1148,"timestamp":6721901532986,"id":4501,"parentId":4455,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1174,"timestamp":6721901532988,"id":4502,"parentId":4456,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1195,"timestamp":6721901532989,"id":4503,"parentId":4457,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1219,"timestamp":6721901532990,"id":4504,"parentId":4458,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1239,"timestamp":6721901532992,"id":4505,"parentId":4459,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1259,"timestamp":6721901532993,"id":4506,"parentId":4460,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1330,"timestamp":6721901532994,"id":4507,"parentId":4461,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1357,"timestamp":6721901532995,"id":4508,"parentId":4462,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1378,"timestamp":6721901532996,"id":4509,"parentId":4463,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1399,"timestamp":6721901532997,"id":4510,"parentId":4464,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1420,"timestamp":6721901532999,"id":4511,"parentId":4465,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1459,"timestamp":6721901533000,"id":4512,"parentId":4466,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6831,"timestamp":6721901533188,"id":4513,"parentId":4421,"tags":{},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6805,"timestamp":6721901533219,"id":4514,"parentId":4422,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6782,"timestamp":6721901533242,"id":4515,"parentId":4423,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6760,"timestamp":6721901533264,"id":4516,"parentId":4424,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6736,"timestamp":6721901533289,"id":4517,"parentId":4425,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6711,"timestamp":6721901533314,"id":4518,"parentId":4426,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6686,"timestamp":6721901533340,"id":4519,"parentId":4427,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6661,"timestamp":6721901533365,"id":4520,"parentId":4428,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6640,"timestamp":6721901533387,"id":4521,"parentId":4429,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6618,"timestamp":6721901533409,"id":4522,"parentId":4430,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6597,"timestamp":6721901533430,"id":4523,"parentId":4431,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6576,"timestamp":6721901533452,"id":4524,"parentId":4432,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6551,"timestamp":6721901533477,"id":4525,"parentId":4433,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6524,"timestamp":6721901533504,"id":4526,"parentId":4434,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6500,"timestamp":6721901533528,"id":4527,"parentId":4435,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6477,"timestamp":6721901533552,"id":4528,"parentId":4436,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6453,"timestamp":6721901533576,"id":4529,"parentId":4437,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6432,"timestamp":6721901533598,"id":4530,"parentId":4438,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6409,"timestamp":6721901533621,"id":4531,"parentId":4439,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6359,"timestamp":6721901533671,"id":4532,"parentId":4440,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6327,"timestamp":6721901533704,"id":4533,"parentId":4441,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6285,"timestamp":6721901533746,"id":4534,"parentId":4442,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6249,"timestamp":6721901533783,"id":4535,"parentId":4443,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6223,"timestamp":6721901533809,"id":4536,"parentId":4444,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6184,"timestamp":6721901533848,"id":4537,"parentId":4445,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6155,"timestamp":6721901533878,"id":4538,"parentId":4446,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6132,"timestamp":6721901533901,"id":4539,"parentId":4447,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6106,"timestamp":6721901533928,"id":4540,"parentId":4448,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6076,"timestamp":6721901533958,"id":4541,"parentId":4449,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6049,"timestamp":6721901533985,"id":4542,"parentId":4450,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":6021,"timestamp":6721901534014,"id":4543,"parentId":4451,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5991,"timestamp":6721901534043,"id":4544,"parentId":4452,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5962,"timestamp":6721901534072,"id":4545,"parentId":4453,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5933,"timestamp":6721901534103,"id":4546,"parentId":4454,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5899,"timestamp":6721901534136,"id":4547,"parentId":4455,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5873,"timestamp":6721901534163,"id":4548,"parentId":4456,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5850,"timestamp":6721901534186,"id":4549,"parentId":4457,"tags":{},"startTime":1776328848570,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5826,"timestamp":6721901534210,"id":4550,"parentId":4458,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5805,"timestamp":6721901534232,"id":4551,"parentId":4459,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5784,"timestamp":6721901534253,"id":4552,"parentId":4460,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":5870,"timestamp":6721901534325,"id":4553,"parentId":4461,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5846,"timestamp":6721901534354,"id":4554,"parentId":4462,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5825,"timestamp":6721901534376,"id":4555,"parentId":4463,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5803,"timestamp":6721901534398,"id":4556,"parentId":4464,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5781,"timestamp":6721901534420,"id":4557,"parentId":4465,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":5741,"timestamp":6721901534460,"id":4558,"parentId":4466,"tags":{},"startTime":1776328848571,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9834,"timestamp":6721901530949,"id":4421,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"app-pages-browser"},"startTime":1776328848567,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9893,"timestamp":6721901531082,"id":4422,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"app-pages-browser"},"startTime":1776328848567,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9970,"timestamp":6721901531127,"id":4423,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"app-pages-browser"},"startTime":1776328848567,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10563,"timestamp":6721901531166,"id":4424,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"app-pages-browser"},"startTime":1776328848567,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10930,"timestamp":6721901531203,"id":4425,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11172,"timestamp":6721901531240,"id":4426,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11391,"timestamp":6721901531274,"id":4427,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11418,"timestamp":6721901531354,"id":4428,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11418,"timestamp":6721901531464,"id":4429,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11469,"timestamp":6721901531512,"id":4430,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11520,"timestamp":6721901531552,"id":4431,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11554,"timestamp":6721901531591,"id":4432,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11609,"timestamp":6721901531626,"id":4433,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11762,"timestamp":6721901531665,"id":4434,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11902,"timestamp":6721901531705,"id":4435,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12116,"timestamp":6721901531749,"id":4436,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12204,"timestamp":6721901531786,"id":4437,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12304,"timestamp":6721901531852,"id":4438,"parentId":3630,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14103,"timestamp":6721901531894,"id":4439,"parentId":3673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14584,"timestamp":6721901531932,"id":4440,"parentId":3654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17710,"timestamp":6721901531967,"id":4441,"parentId":3654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18450,"timestamp":6721901532001,"id":4442,"parentId":3655,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18654,"timestamp":6721901532041,"id":4443,"parentId":3676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20870,"timestamp":6721901532080,"id":4444,"parentId":3677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21512,"timestamp":6721901532122,"id":4445,"parentId":3662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21562,"timestamp":6721901532157,"id":4446,"parentId":3662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23055,"timestamp":6721901532193,"id":4447,"parentId":3662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"app-pages-browser"},"startTime":1776328848568,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26081,"timestamp":6721901532227,"id":4448,"parentId":3665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26704,"timestamp":6721901532260,"id":4449,"parentId":3654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27073,"timestamp":6721901532295,"id":4450,"parentId":3656,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27767,"timestamp":6721901532331,"id":4451,"parentId":3661,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28065,"timestamp":6721901532365,"id":4452,"parentId":3662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28263,"timestamp":6721901532402,"id":4453,"parentId":3662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28780,"timestamp":6721901532437,"id":4454,"parentId":3662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29319,"timestamp":6721901532472,"id":4455,"parentId":3663,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29542,"timestamp":6721901532506,"id":4456,"parentId":3677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29673,"timestamp":6721901532539,"id":4457,"parentId":3677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29794,"timestamp":6721901532572,"id":4458,"parentId":3677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29813,"timestamp":6721901532604,"id":4459,"parentId":3677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33190,"timestamp":6721901532636,"id":4460,"parentId":3678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35464,"timestamp":6721901532670,"id":4461,"parentId":3678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35536,"timestamp":6721901532704,"id":4462,"parentId":3682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35688,"timestamp":6721901532736,"id":4463,"parentId":3677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":35719,"timestamp":6721901532768,"id":4464,"parentId":3678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37400,"timestamp":6721901532801,"id":4465,"parentId":3679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":37435,"timestamp":6721901532833,"id":4466,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776328848569,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":240,"timestamp":6721901581791,"id":4566,"parentId":4559,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":285,"timestamp":6721901581797,"id":4567,"parentId":4560,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":309,"timestamp":6721901581801,"id":4568,"parentId":4561,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":340,"timestamp":6721901581803,"id":4569,"parentId":4562,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":370,"timestamp":6721901581804,"id":4570,"parentId":4563,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":404,"timestamp":6721901581805,"id":4571,"parentId":4564,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":432,"timestamp":6721901581806,"id":4572,"parentId":4565,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10673,"timestamp":6721901582040,"id":4573,"parentId":4559,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10639,"timestamp":6721901582085,"id":4574,"parentId":4560,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10614,"timestamp":6721901582112,"id":4575,"parentId":4561,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10581,"timestamp":6721901582145,"id":4576,"parentId":4562,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10550,"timestamp":6721901582176,"id":4577,"parentId":4563,"tags":{},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10515,"timestamp":6721901582211,"id":4578,"parentId":4564,"tags":{},"startTime":1776328848619,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10487,"timestamp":6721901582240,"id":4579,"parentId":4565,"tags":{},"startTime":1776328848619,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12048,"timestamp":6721901581355,"id":4559,"parentId":3810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"app-pages-browser"},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12063,"timestamp":6721901581500,"id":4560,"parentId":3813,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"app-pages-browser"},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12436,"timestamp":6721901581553,"id":4561,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"app-pages-browser"},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13051,"timestamp":6721901581595,"id":4562,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"app-pages-browser"},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13379,"timestamp":6721901581632,"id":4563,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"app-pages-browser"},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14839,"timestamp":6721901581670,"id":4564,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"app-pages-browser"},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15108,"timestamp":6721901581706,"id":4565,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"app-pages-browser"},"startTime":1776328848618,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":244,"timestamp":6721901600894,"id":4651,"parentId":4580,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":287,"timestamp":6721901600900,"id":4652,"parentId":4581,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":311,"timestamp":6721901600902,"id":4653,"parentId":4582,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":334,"timestamp":6721901600905,"id":4654,"parentId":4583,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":359,"timestamp":6721901600908,"id":4655,"parentId":4584,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":380,"timestamp":6721901600911,"id":4656,"parentId":4585,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":415,"timestamp":6721901600914,"id":4657,"parentId":4586,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":438,"timestamp":6721901600916,"id":4658,"parentId":4587,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":474,"timestamp":6721901600918,"id":4659,"parentId":4588,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":502,"timestamp":6721901600920,"id":4660,"parentId":4589,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":531,"timestamp":6721901600922,"id":4661,"parentId":4590,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":556,"timestamp":6721901600925,"id":4662,"parentId":4591,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":577,"timestamp":6721901600927,"id":4663,"parentId":4592,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":603,"timestamp":6721901600929,"id":4664,"parentId":4593,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":629,"timestamp":6721901600930,"id":4665,"parentId":4594,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":650,"timestamp":6721901600932,"id":4666,"parentId":4595,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":676,"timestamp":6721901600934,"id":4667,"parentId":4596,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":702,"timestamp":6721901600935,"id":4668,"parentId":4597,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":750,"timestamp":6721901600937,"id":4669,"parentId":4598,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":786,"timestamp":6721901600938,"id":4670,"parentId":4599,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":808,"timestamp":6721901600940,"id":4671,"parentId":4600,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":834,"timestamp":6721901600942,"id":4672,"parentId":4601,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":860,"timestamp":6721901600944,"id":4673,"parentId":4602,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":884,"timestamp":6721901600946,"id":4674,"parentId":4603,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":907,"timestamp":6721901600948,"id":4675,"parentId":4604,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":937,"timestamp":6721901600949,"id":4676,"parentId":4605,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":961,"timestamp":6721901600951,"id":4677,"parentId":4606,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":984,"timestamp":6721901600953,"id":4678,"parentId":4607,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":1131,"timestamp":6721901600955,"id":4679,"parentId":4608,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1160,"timestamp":6721901600957,"id":4680,"parentId":4609,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1184,"timestamp":6721901600958,"id":4681,"parentId":4610,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1218,"timestamp":6721901600960,"id":4682,"parentId":4611,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1242,"timestamp":6721901600962,"id":4683,"parentId":4612,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1271,"timestamp":6721901600963,"id":4684,"parentId":4613,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1295,"timestamp":6721901600965,"id":4685,"parentId":4614,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1327,"timestamp":6721901600967,"id":4686,"parentId":4615,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1349,"timestamp":6721901600968,"id":4687,"parentId":4616,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1372,"timestamp":6721901600970,"id":4688,"parentId":4617,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1394,"timestamp":6721901600972,"id":4689,"parentId":4618,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1422,"timestamp":6721901600974,"id":4690,"parentId":4619,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1450,"timestamp":6721901600975,"id":4691,"parentId":4620,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1474,"timestamp":6721901600976,"id":4692,"parentId":4621,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1507,"timestamp":6721901600978,"id":4693,"parentId":4622,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1532,"timestamp":6721901600979,"id":4694,"parentId":4623,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1561,"timestamp":6721901600980,"id":4695,"parentId":4624,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1585,"timestamp":6721901600982,"id":4696,"parentId":4625,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1609,"timestamp":6721901600983,"id":4697,"parentId":4626,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1637,"timestamp":6721901600984,"id":4698,"parentId":4627,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1666,"timestamp":6721901600985,"id":4699,"parentId":4628,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1699,"timestamp":6721901600987,"id":4700,"parentId":4629,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1721,"timestamp":6721901600988,"id":4701,"parentId":4630,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1754,"timestamp":6721901600989,"id":4702,"parentId":4631,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1790,"timestamp":6721901600990,"id":4703,"parentId":4632,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1814,"timestamp":6721901600991,"id":4704,"parentId":4633,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1840,"timestamp":6721901600993,"id":4705,"parentId":4634,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1863,"timestamp":6721901600994,"id":4706,"parentId":4635,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1894,"timestamp":6721901600995,"id":4707,"parentId":4636,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1917,"timestamp":6721901600996,"id":4708,"parentId":4637,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1939,"timestamp":6721901600997,"id":4709,"parentId":4638,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1963,"timestamp":6721901600999,"id":4710,"parentId":4639,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1986,"timestamp":6721901601000,"id":4711,"parentId":4640,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2008,"timestamp":6721901601002,"id":4712,"parentId":4641,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2044,"timestamp":6721901601003,"id":4713,"parentId":4642,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2077,"timestamp":6721901601004,"id":4714,"parentId":4643,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2103,"timestamp":6721901601005,"id":4715,"parentId":4644,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2148,"timestamp":6721901601006,"id":4716,"parentId":4645,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2173,"timestamp":6721901601007,"id":4717,"parentId":4646,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2220,"timestamp":6721901601008,"id":4718,"parentId":4647,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2251,"timestamp":6721901601009,"id":4719,"parentId":4648,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2282,"timestamp":6721901601010,"id":4720,"parentId":4649,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2309,"timestamp":6721901601011,"id":4721,"parentId":4650,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4111,"timestamp":6721901601144,"id":4722,"parentId":4580,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4068,"timestamp":6721901601189,"id":4723,"parentId":4581,"tags":{},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4043,"timestamp":6721901601215,"id":4724,"parentId":4582,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4017,"timestamp":6721901601241,"id":4725,"parentId":4583,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3991,"timestamp":6721901601269,"id":4726,"parentId":4584,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3968,"timestamp":6721901601293,"id":4727,"parentId":4585,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3931,"timestamp":6721901601331,"id":4728,"parentId":4586,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3906,"timestamp":6721901601356,"id":4729,"parentId":4587,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3868,"timestamp":6721901601395,"id":4730,"parentId":4588,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3839,"timestamp":6721901601424,"id":4731,"parentId":4589,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3808,"timestamp":6721901601456,"id":4732,"parentId":4590,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3783,"timestamp":6721901601482,"id":4733,"parentId":4591,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3760,"timestamp":6721901601506,"id":4734,"parentId":4592,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3732,"timestamp":6721901601534,"id":4735,"parentId":4593,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3706,"timestamp":6721901601561,"id":4736,"parentId":4594,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3684,"timestamp":6721901601583,"id":4737,"parentId":4595,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3657,"timestamp":6721901601612,"id":4738,"parentId":4596,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3631,"timestamp":6721901601639,"id":4739,"parentId":4597,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3582,"timestamp":6721901601688,"id":4740,"parentId":4598,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3545,"timestamp":6721901601726,"id":4741,"parentId":4599,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3522,"timestamp":6721901601749,"id":4742,"parentId":4600,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3492,"timestamp":6721901601780,"id":4743,"parentId":4601,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3468,"timestamp":6721901601805,"id":4744,"parentId":4602,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3443,"timestamp":6721901601831,"id":4745,"parentId":4603,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3418,"timestamp":6721901601856,"id":4746,"parentId":4604,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3387,"timestamp":6721901601888,"id":4747,"parentId":4605,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3362,"timestamp":6721901601914,"id":4748,"parentId":4606,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3226,"timestamp":6721901602051,"id":4749,"parentId":4607,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3190,"timestamp":6721901602088,"id":4750,"parentId":4608,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3160,"timestamp":6721901602119,"id":4751,"parentId":4609,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3135,"timestamp":6721901602144,"id":4752,"parentId":4610,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3100,"timestamp":6721901602179,"id":4753,"parentId":4611,"tags":{},"startTime":1776328848638,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3075,"timestamp":6721901602205,"id":4754,"parentId":4612,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3045,"timestamp":6721901602236,"id":4755,"parentId":4613,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3020,"timestamp":6721901602262,"id":4756,"parentId":4614,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2987,"timestamp":6721901602295,"id":4757,"parentId":4615,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2964,"timestamp":6721901602319,"id":4758,"parentId":4616,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2940,"timestamp":6721901602344,"id":4759,"parentId":4617,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2916,"timestamp":6721901602368,"id":4760,"parentId":4618,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2887,"timestamp":6721901602398,"id":4761,"parentId":4619,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2859,"timestamp":6721901602427,"id":4762,"parentId":4620,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2834,"timestamp":6721901602453,"id":4763,"parentId":4621,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2801,"timestamp":6721901602486,"id":4764,"parentId":4622,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2775,"timestamp":6721901602513,"id":4765,"parentId":4623,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2744,"timestamp":6721901602544,"id":4766,"parentId":4624,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2721,"timestamp":6721901602568,"id":4767,"parentId":4625,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2696,"timestamp":6721901602594,"id":4768,"parentId":4626,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2668,"timestamp":6721901602622,"id":4769,"parentId":4627,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2638,"timestamp":6721901602653,"id":4770,"parentId":4628,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2604,"timestamp":6721901602688,"id":4771,"parentId":4629,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2582,"timestamp":6721901602711,"id":4772,"parentId":4630,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2548,"timestamp":6721901602745,"id":4773,"parentId":4631,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2512,"timestamp":6721901602782,"id":4774,"parentId":4632,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2487,"timestamp":6721901602807,"id":4775,"parentId":4633,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2461,"timestamp":6721901602834,"id":4776,"parentId":4634,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2436,"timestamp":6721901602859,"id":4777,"parentId":4635,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2406,"timestamp":6721901602891,"id":4778,"parentId":4636,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2382,"timestamp":6721901602915,"id":4779,"parentId":4637,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":2412,"timestamp":6721901602939,"id":4780,"parentId":4638,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2388,"timestamp":6721901602964,"id":4781,"parentId":4639,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2364,"timestamp":6721901602988,"id":4782,"parentId":4640,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2340,"timestamp":6721901603012,"id":4783,"parentId":4641,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2304,"timestamp":6721901603049,"id":4784,"parentId":4642,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2270,"timestamp":6721901603084,"id":4785,"parentId":4643,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2243,"timestamp":6721901603111,"id":4786,"parentId":4644,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2198,"timestamp":6721901603157,"id":4787,"parentId":4645,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2172,"timestamp":6721901603182,"id":4788,"parentId":4646,"tags":{},"startTime":1776328848639,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2125,"timestamp":6721901603231,"id":4789,"parentId":4647,"tags":{},"startTime":1776328848640,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2094,"timestamp":6721901603263,"id":4790,"parentId":4648,"tags":{},"startTime":1776328848640,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2063,"timestamp":6721901603294,"id":4791,"parentId":4649,"tags":{},"startTime":1776328848640,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2035,"timestamp":6721901603322,"id":4792,"parentId":4650,"tags":{},"startTime":1776328848640,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7423,"timestamp":6721901598325,"id":4580,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7514,"timestamp":6721901598396,"id":4581,"parentId":3808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7767,"timestamp":6721901598435,"id":4582,"parentId":3809,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7911,"timestamp":6721901598472,"id":4583,"parentId":3810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":7957,"timestamp":6721901598507,"id":4584,"parentId":3810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10139,"timestamp":6721901598542,"id":4585,"parentId":3812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10217,"timestamp":6721901598577,"id":4586,"parentId":3813,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10694,"timestamp":6721901598615,"id":4587,"parentId":3815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":11651,"timestamp":6721901598650,"id":4588,"parentId":3673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12615,"timestamp":6721901598684,"id":4589,"parentId":3820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12853,"timestamp":6721901598720,"id":4590,"parentId":3820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13273,"timestamp":6721901598754,"id":4591,"parentId":3820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13729,"timestamp":6721901598789,"id":4592,"parentId":3820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14270,"timestamp":6721901598823,"id":4593,"parentId":3821,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14313,"timestamp":6721901598857,"id":4594,"parentId":3821,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14903,"timestamp":6721901598891,"id":4595,"parentId":3822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15306,"timestamp":6721901598929,"id":4596,"parentId":3831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16258,"timestamp":6721901598967,"id":4597,"parentId":3826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16577,"timestamp":6721901599002,"id":4598,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16639,"timestamp":6721901599037,"id":4599,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16971,"timestamp":6721901599082,"id":4600,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17000,"timestamp":6721901599116,"id":4601,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17094,"timestamp":6721901599149,"id":4602,"parentId":3831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17306,"timestamp":6721901599182,"id":4603,"parentId":3832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"app-pages-browser"},"startTime":1776328848635,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17352,"timestamp":6721901599216,"id":4604,"parentId":3836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18489,"timestamp":6721901599253,"id":4605,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18744,"timestamp":6721901599286,"id":4606,"parentId":3837,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19603,"timestamp":6721901599320,"id":4607,"parentId":3838,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19913,"timestamp":6721901599352,"id":4608,"parentId":3837,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20003,"timestamp":6721901599387,"id":4609,"parentId":3843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20284,"timestamp":6721901599421,"id":4610,"parentId":3844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20522,"timestamp":6721901599455,"id":4611,"parentId":3845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20764,"timestamp":6721901599488,"id":4612,"parentId":3845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21292,"timestamp":6721901599521,"id":4613,"parentId":3847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21824,"timestamp":6721901599554,"id":4614,"parentId":3847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":21928,"timestamp":6721901599589,"id":4615,"parentId":3847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22124,"timestamp":6721901599626,"id":4616,"parentId":3848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22256,"timestamp":6721901599663,"id":4617,"parentId":3849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22352,"timestamp":6721901599724,"id":4618,"parentId":3996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22546,"timestamp":6721901599757,"id":4619,"parentId":3973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22663,"timestamp":6721901599796,"id":4620,"parentId":3976,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22976,"timestamp":6721901599829,"id":4621,"parentId":3982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23421,"timestamp":6721901599872,"id":4622,"parentId":3984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24267,"timestamp":6721901599904,"id":4623,"parentId":3984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24457,"timestamp":6721901599936,"id":4624,"parentId":3984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24652,"timestamp":6721901599972,"id":4625,"parentId":3984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25068,"timestamp":6721901600006,"id":4626,"parentId":3984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25274,"timestamp":6721901600043,"id":4627,"parentId":3988,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25390,"timestamp":6721901600077,"id":4628,"parentId":3996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25400,"timestamp":6721901600115,"id":4629,"parentId":3996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25996,"timestamp":6721901600146,"id":4630,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26749,"timestamp":6721901600190,"id":4631,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"app-pages-browser"},"startTime":1776328848636,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26936,"timestamp":6721901600224,"id":4632,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27103,"timestamp":6721901600264,"id":4633,"parentId":4007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27319,"timestamp":6721901600295,"id":4634,"parentId":4007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28651,"timestamp":6721901600328,"id":4635,"parentId":3998,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28751,"timestamp":6721901600360,"id":4636,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28859,"timestamp":6721901600394,"id":4637,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29047,"timestamp":6721901600426,"id":4638,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29192,"timestamp":6721901600458,"id":4639,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29243,"timestamp":6721901600493,"id":4640,"parentId":4004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29631,"timestamp":6721901600525,"id":4641,"parentId":4007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29749,"timestamp":6721901600558,"id":4642,"parentId":4007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29983,"timestamp":6721901600590,"id":4643,"parentId":4007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31016,"timestamp":6721901600623,"id":4644,"parentId":4008,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31191,"timestamp":6721901600656,"id":4645,"parentId":4008,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":31831,"timestamp":6721901600690,"id":4646,"parentId":4010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32152,"timestamp":6721901600723,"id":4647,"parentId":4010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32525,"timestamp":6721901600762,"id":4648,"parentId":4013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":32644,"timestamp":6721901600798,"id":4649,"parentId":4018,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":33054,"timestamp":6721901600831,"id":4650,"parentId":4020,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"app-pages-browser"},"startTime":1776328848637,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":333,"timestamp":6721901669041,"id":4857,"parentId":4793,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":367,"timestamp":6721901669048,"id":4858,"parentId":4794,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":391,"timestamp":6721901669052,"id":4859,"parentId":4795,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":443,"timestamp":6721901669060,"id":4860,"parentId":4796,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":477,"timestamp":6721901669064,"id":4861,"parentId":4797,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":504,"timestamp":6721901669067,"id":4862,"parentId":4798,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":526,"timestamp":6721901669071,"id":4863,"parentId":4799,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":562,"timestamp":6721901669075,"id":4864,"parentId":4800,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":612,"timestamp":6721901669078,"id":4865,"parentId":4801,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":644,"timestamp":6721901669081,"id":4866,"parentId":4802,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":653,"timestamp":6721901669105,"id":4867,"parentId":4803,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":708,"timestamp":6721901669113,"id":4868,"parentId":4804,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":746,"timestamp":6721901669116,"id":4869,"parentId":4805,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":770,"timestamp":6721901669119,"id":4870,"parentId":4806,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":825,"timestamp":6721901669124,"id":4871,"parentId":4807,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":849,"timestamp":6721901669127,"id":4872,"parentId":4808,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":871,"timestamp":6721901669130,"id":4873,"parentId":4809,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":1058,"timestamp":6721901669132,"id":4874,"parentId":4810,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1098,"timestamp":6721901669134,"id":4875,"parentId":4811,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1128,"timestamp":6721901669136,"id":4876,"parentId":4812,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1151,"timestamp":6721901669139,"id":4877,"parentId":4813,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1175,"timestamp":6721901669142,"id":4878,"parentId":4814,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1199,"timestamp":6721901669144,"id":4879,"parentId":4815,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1228,"timestamp":6721901669146,"id":4880,"parentId":4816,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1272,"timestamp":6721901669148,"id":4881,"parentId":4817,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1300,"timestamp":6721901669150,"id":4882,"parentId":4818,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1322,"timestamp":6721901669152,"id":4883,"parentId":4819,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1343,"timestamp":6721901669155,"id":4884,"parentId":4820,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1374,"timestamp":6721901669156,"id":4885,"parentId":4821,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1399,"timestamp":6721901669159,"id":4886,"parentId":4822,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1424,"timestamp":6721901669161,"id":4887,"parentId":4823,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1446,"timestamp":6721901669163,"id":4888,"parentId":4824,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1468,"timestamp":6721901669166,"id":4889,"parentId":4825,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1494,"timestamp":6721901669168,"id":4890,"parentId":4826,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1522,"timestamp":6721901669170,"id":4891,"parentId":4827,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1543,"timestamp":6721901669172,"id":4892,"parentId":4828,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1573,"timestamp":6721901669174,"id":4893,"parentId":4829,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1612,"timestamp":6721901669176,"id":4894,"parentId":4830,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1638,"timestamp":6721901669178,"id":4895,"parentId":4831,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1671,"timestamp":6721901669180,"id":4896,"parentId":4832,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1695,"timestamp":6721901669182,"id":4897,"parentId":4833,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1716,"timestamp":6721901669184,"id":4898,"parentId":4834,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1760,"timestamp":6721901669186,"id":4899,"parentId":4835,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1791,"timestamp":6721901669188,"id":4900,"parentId":4836,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1814,"timestamp":6721901669190,"id":4901,"parentId":4837,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1836,"timestamp":6721901669192,"id":4902,"parentId":4838,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1859,"timestamp":6721901669194,"id":4903,"parentId":4839,"tags":{},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1881,"timestamp":6721901669195,"id":4904,"parentId":4840,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1904,"timestamp":6721901669198,"id":4905,"parentId":4841,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1925,"timestamp":6721901669200,"id":4906,"parentId":4842,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1980,"timestamp":6721901669201,"id":4907,"parentId":4843,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2002,"timestamp":6721901669203,"id":4908,"parentId":4844,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2022,"timestamp":6721901669205,"id":4909,"parentId":4845,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2042,"timestamp":6721901669206,"id":4910,"parentId":4846,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2067,"timestamp":6721901669208,"id":4911,"parentId":4847,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2089,"timestamp":6721901669209,"id":4912,"parentId":4848,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2112,"timestamp":6721901669210,"id":4913,"parentId":4849,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2138,"timestamp":6721901669212,"id":4914,"parentId":4850,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2166,"timestamp":6721901669214,"id":4915,"parentId":4851,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2190,"timestamp":6721901669215,"id":4916,"parentId":4852,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2218,"timestamp":6721901669217,"id":4917,"parentId":4853,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2243,"timestamp":6721901669219,"id":4918,"parentId":4854,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2263,"timestamp":6721901669221,"id":4919,"parentId":4855,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":2284,"timestamp":6721901669223,"id":4920,"parentId":4856,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4101,"timestamp":6721901669383,"id":4921,"parentId":4793,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4069,"timestamp":6721901669418,"id":4922,"parentId":4794,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":4040,"timestamp":6721901669447,"id":4923,"parentId":4795,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3982,"timestamp":6721901669506,"id":4924,"parentId":4796,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3945,"timestamp":6721901669543,"id":4925,"parentId":4797,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3916,"timestamp":6721901669573,"id":4926,"parentId":4798,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3891,"timestamp":6721901669599,"id":4927,"parentId":4799,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3851,"timestamp":6721901669640,"id":4928,"parentId":4800,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3799,"timestamp":6721901669693,"id":4929,"parentId":4801,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3755,"timestamp":6721901669737,"id":4930,"parentId":4802,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3733,"timestamp":6721901669760,"id":4931,"parentId":4803,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3669,"timestamp":6721901669824,"id":4932,"parentId":4804,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3629,"timestamp":6721901669865,"id":4933,"parentId":4805,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3604,"timestamp":6721901669891,"id":4934,"parentId":4806,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3542,"timestamp":6721901669953,"id":4935,"parentId":4807,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3517,"timestamp":6721901669979,"id":4936,"parentId":4808,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3333,"timestamp":6721901670164,"id":4937,"parentId":4809,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3305,"timestamp":6721901670193,"id":4938,"parentId":4810,"tags":{},"startTime":1776328848706,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3264,"timestamp":6721901670234,"id":4939,"parentId":4811,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3233,"timestamp":6721901670266,"id":4940,"parentId":4812,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3208,"timestamp":6721901670292,"id":4941,"parentId":4813,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3181,"timestamp":6721901670319,"id":4942,"parentId":4814,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3155,"timestamp":6721901670345,"id":4943,"parentId":4815,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3125,"timestamp":6721901670376,"id":4944,"parentId":4816,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3080,"timestamp":6721901670422,"id":4945,"parentId":4817,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3050,"timestamp":6721901670452,"id":4946,"parentId":4818,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3027,"timestamp":6721901670476,"id":4947,"parentId":4819,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":3004,"timestamp":6721901670499,"id":4948,"parentId":4820,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2972,"timestamp":6721901670532,"id":4949,"parentId":4821,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2944,"timestamp":6721901670560,"id":4950,"parentId":4822,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2919,"timestamp":6721901670586,"id":4951,"parentId":4823,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2894,"timestamp":6721901670611,"id":4952,"parentId":4824,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2870,"timestamp":6721901670636,"id":4953,"parentId":4825,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2843,"timestamp":6721901670663,"id":4954,"parentId":4826,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2813,"timestamp":6721901670694,"id":4955,"parentId":4827,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2787,"timestamp":6721901670720,"id":4956,"parentId":4828,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2756,"timestamp":6721901670752,"id":4957,"parentId":4829,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2718,"timestamp":6721901670790,"id":4958,"parentId":4830,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2691,"timestamp":6721901670818,"id":4959,"parentId":4831,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2657,"timestamp":6721901670853,"id":4960,"parentId":4832,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2632,"timestamp":6721901670878,"id":4961,"parentId":4833,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2609,"timestamp":6721901670902,"id":4962,"parentId":4834,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2564,"timestamp":6721901670947,"id":4963,"parentId":4835,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2531,"timestamp":6721901670981,"id":4964,"parentId":4836,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2507,"timestamp":6721901671006,"id":4965,"parentId":4837,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2483,"timestamp":6721901671030,"id":4966,"parentId":4838,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2459,"timestamp":6721901671055,"id":4967,"parentId":4839,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2436,"timestamp":6721901671078,"id":4968,"parentId":4840,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2411,"timestamp":6721901671104,"id":4969,"parentId":4841,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2388,"timestamp":6721901671127,"id":4970,"parentId":4842,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2332,"timestamp":6721901671184,"id":4971,"parentId":4843,"tags":{},"startTime":1776328848707,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2309,"timestamp":6721901671206,"id":4972,"parentId":4844,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2288,"timestamp":6721901671228,"id":4973,"parentId":4845,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2267,"timestamp":6721901671250,"id":4974,"parentId":4846,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"}] +[{"name":"next-swc-loader","duration":2288,"timestamp":6721901671277,"id":4975,"parentId":4847,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2266,"timestamp":6721901671299,"id":4976,"parentId":4848,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2242,"timestamp":6721901671324,"id":4977,"parentId":4849,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2215,"timestamp":6721901671351,"id":4978,"parentId":4850,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2185,"timestamp":6721901671382,"id":4979,"parentId":4851,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2160,"timestamp":6721901671407,"id":4980,"parentId":4852,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2130,"timestamp":6721901671437,"id":4981,"parentId":4853,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2104,"timestamp":6721901671464,"id":4982,"parentId":4854,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2082,"timestamp":6721901671486,"id":4983,"parentId":4855,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":2059,"timestamp":6721901671510,"id":4984,"parentId":4856,"tags":{},"startTime":1776328848708,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8455,"timestamp":6721901665398,"id":4793,"parentId":4020,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":8838,"timestamp":6721901665494,"id":4794,"parentId":4022,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9175,"timestamp":6721901665542,"id":4795,"parentId":4024,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9391,"timestamp":6721901665578,"id":4796,"parentId":4024,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9486,"timestamp":6721901665614,"id":4797,"parentId":4025,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":9762,"timestamp":6721901665658,"id":4798,"parentId":4027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":10780,"timestamp":6721901665695,"id":4799,"parentId":4032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13063,"timestamp":6721901665729,"id":4800,"parentId":4034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13213,"timestamp":6721901665762,"id":4801,"parentId":4034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13457,"timestamp":6721901665795,"id":4802,"parentId":4018,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14519,"timestamp":6721901665827,"id":4803,"parentId":4018,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":14822,"timestamp":6721901665869,"id":4804,"parentId":4188,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15092,"timestamp":6721901665906,"id":4805,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":15969,"timestamp":6721901665938,"id":4806,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16019,"timestamp":6721901665971,"id":4807,"parentId":4175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16065,"timestamp":6721901666005,"id":4808,"parentId":4175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":16156,"timestamp":6721901666040,"id":4809,"parentId":4177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17187,"timestamp":6721901666073,"id":4810,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":17702,"timestamp":6721901666107,"id":4811,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18014,"timestamp":6721901666163,"id":4812,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"app-pages-browser"},"startTime":1776328848702,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18224,"timestamp":6721901666198,"id":4813,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18348,"timestamp":6721901666232,"id":4814,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":18701,"timestamp":6721901666266,"id":4815,"parentId":4189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19358,"timestamp":6721901666300,"id":4816,"parentId":4189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19579,"timestamp":6721901666335,"id":4817,"parentId":4190,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19621,"timestamp":6721901666369,"id":4818,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19662,"timestamp":6721901666402,"id":4819,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":19959,"timestamp":6721901666436,"id":4820,"parentId":4177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20192,"timestamp":6721901666468,"id":4821,"parentId":4195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20508,"timestamp":6721901666501,"id":4822,"parentId":4204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20611,"timestamp":6721901666551,"id":4823,"parentId":4204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"app-pages-browser"},"startTime":1776328848703,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20068,"timestamp":6721901667231,"id":4824,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20097,"timestamp":6721901667360,"id":4825,"parentId":4200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20332,"timestamp":6721901667401,"id":4826,"parentId":4198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20385,"timestamp":6721901667442,"id":4827,"parentId":4225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":20750,"timestamp":6721901667486,"id":4828,"parentId":4228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22179,"timestamp":6721901667525,"id":4829,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22398,"timestamp":6721901667589,"id":4830,"parentId":4217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22673,"timestamp":6721901667670,"id":4831,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22854,"timestamp":6721901667721,"id":4832,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":22912,"timestamp":6721901667760,"id":4833,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23540,"timestamp":6721901667855,"id":4834,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23852,"timestamp":6721901667926,"id":4835,"parentId":4223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23959,"timestamp":6721901667974,"id":4836,"parentId":4223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":23980,"timestamp":6721901668014,"id":4837,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24090,"timestamp":6721901668055,"id":4838,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24091,"timestamp":6721901668154,"id":4839,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"app-pages-browser"},"startTime":1776328848704,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24356,"timestamp":6721901668198,"id":4840,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":24590,"timestamp":6721901668233,"id":4841,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25855,"timestamp":6721901668269,"id":4842,"parentId":4233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":25993,"timestamp":6721901668316,"id":4843,"parentId":4251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26018,"timestamp":6721901668394,"id":4844,"parentId":4240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26029,"timestamp":6721901668437,"id":4845,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26650,"timestamp":6721901668473,"id":4846,"parentId":4444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":26746,"timestamp":6721901668508,"id":4847,"parentId":4445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27232,"timestamp":6721901668542,"id":4848,"parentId":4445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":27672,"timestamp":6721901668577,"id":4849,"parentId":4445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28308,"timestamp":6721901668612,"id":4850,"parentId":4465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28697,"timestamp":6721901668653,"id":4851,"parentId":4465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":28830,"timestamp":6721901668771,"id":4852,"parentId":4452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29320,"timestamp":6721901668825,"id":4853,"parentId":4430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29420,"timestamp":6721901668872,"id":4854,"parentId":4432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29545,"timestamp":6721901668915,"id":4855,"parentId":4434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":29577,"timestamp":6721901668971,"id":4856,"parentId":4455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"app-pages-browser"},"startTime":1776328848705,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":846,"timestamp":6721901713746,"id":4993,"parentId":4985,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":885,"timestamp":6721901713750,"id":4994,"parentId":4986,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":908,"timestamp":6721901713751,"id":4995,"parentId":4987,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":940,"timestamp":6721901713752,"id":4996,"parentId":4988,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":962,"timestamp":6721901713753,"id":4997,"parentId":4989,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":983,"timestamp":6721901713754,"id":4998,"parentId":4990,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1004,"timestamp":6721901713756,"id":4999,"parentId":4991,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":1023,"timestamp":6721901713757,"id":5000,"parentId":4992,"tags":{},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":10022,"timestamp":6721901714601,"id":5001,"parentId":4985,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9994,"timestamp":6721901714637,"id":5002,"parentId":4986,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9970,"timestamp":6721901714661,"id":5003,"parentId":4987,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9937,"timestamp":6721901714695,"id":5004,"parentId":4988,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9915,"timestamp":6721901714718,"id":5005,"parentId":4989,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9893,"timestamp":6721901714739,"id":5006,"parentId":4990,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9872,"timestamp":6721901714761,"id":5007,"parentId":4991,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":9850,"timestamp":6721901714783,"id":5008,"parentId":4992,"tags":{},"startTime":1776328848751,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12021,"timestamp":6721901713325,"id":4985,"parentId":4589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":12315,"timestamp":6721901713420,"id":4986,"parentId":4589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13063,"timestamp":6721901713460,"id":4987,"parentId":4589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13258,"timestamp":6721901713495,"id":4988,"parentId":4589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13345,"timestamp":6721901713530,"id":4989,"parentId":4592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13406,"timestamp":6721901713563,"id":4990,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13480,"timestamp":6721901713596,"id":4991,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":13523,"timestamp":6721901713628,"id":4992,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"app-pages-browser"},"startTime":1776328848750,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":83,"timestamp":6721901729172,"id":5018,"parentId":5009,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":112,"timestamp":6721901729175,"id":5019,"parentId":5010,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":133,"timestamp":6721901729176,"id":5020,"parentId":5011,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"}] +[{"name":"read-resource","duration":327,"timestamp":6721901729177,"id":5021,"parentId":5012,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":353,"timestamp":6721901729179,"id":5022,"parentId":5013,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":381,"timestamp":6721901729180,"id":5023,"parentId":5014,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":404,"timestamp":6721901729181,"id":5024,"parentId":5015,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":430,"timestamp":6721901729182,"id":5025,"parentId":5016,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":452,"timestamp":6721901729183,"id":5026,"parentId":5017,"tags":{},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1004,"timestamp":6721901729262,"id":5027,"parentId":5009,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":979,"timestamp":6721901729288,"id":5028,"parentId":5010,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":798,"timestamp":6721901729470,"id":5029,"parentId":5011,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":761,"timestamp":6721901729507,"id":5030,"parentId":5012,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":735,"timestamp":6721901729534,"id":5031,"parentId":5013,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":706,"timestamp":6721901729563,"id":5032,"parentId":5014,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":682,"timestamp":6721901729586,"id":5033,"parentId":5015,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":655,"timestamp":6721901729614,"id":5034,"parentId":5016,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":632,"timestamp":6721901729637,"id":5035,"parentId":5017,"tags":{},"startTime":1776328848766,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1650,"timestamp":6721901728785,"id":5009,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1661,"timestamp":6721901728851,"id":5010,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2300,"timestamp":6721901728890,"id":5011,"parentId":4616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2468,"timestamp":6721901728926,"id":5012,"parentId":4596,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2527,"timestamp":6721901728965,"id":5013,"parentId":4600,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2644,"timestamp":6721901729002,"id":5014,"parentId":4623,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2694,"timestamp":6721901729036,"id":5015,"parentId":4641,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2736,"timestamp":6721901729070,"id":5016,"parentId":4648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2850,"timestamp":6721901729106,"id":5017,"parentId":4648,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"app-pages-browser"},"startTime":1776328848765,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":47,"timestamp":6721901734363,"id":5049,"parentId":5036,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":74,"timestamp":6721901734365,"id":5050,"parentId":5037,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":96,"timestamp":6721901734367,"id":5051,"parentId":5038,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":117,"timestamp":6721901734368,"id":5052,"parentId":5039,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":138,"timestamp":6721901734369,"id":5053,"parentId":5040,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":161,"timestamp":6721901734371,"id":5054,"parentId":5041,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":183,"timestamp":6721901734372,"id":5055,"parentId":5042,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":213,"timestamp":6721901734373,"id":5056,"parentId":5043,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":236,"timestamp":6721901734374,"id":5057,"parentId":5044,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":262,"timestamp":6721901734375,"id":5058,"parentId":5045,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":285,"timestamp":6721901734376,"id":5059,"parentId":5046,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":309,"timestamp":6721901734377,"id":5060,"parentId":5047,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":353,"timestamp":6721901734378,"id":5061,"parentId":5048,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":888,"timestamp":6721901734414,"id":5062,"parentId":5036,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":862,"timestamp":6721901734441,"id":5063,"parentId":5037,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":839,"timestamp":6721901734464,"id":5064,"parentId":5038,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":816,"timestamp":6721901734487,"id":5065,"parentId":5039,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":795,"timestamp":6721901734509,"id":5066,"parentId":5040,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":771,"timestamp":6721901734533,"id":5067,"parentId":5041,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":747,"timestamp":6721901734557,"id":5068,"parentId":5042,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":717,"timestamp":6721901734587,"id":5069,"parentId":5043,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":694,"timestamp":6721901734611,"id":5070,"parentId":5044,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":668,"timestamp":6721901734638,"id":5071,"parentId":5045,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":644,"timestamp":6721901734662,"id":5072,"parentId":5046,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":620,"timestamp":6721901734687,"id":5073,"parentId":5047,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":574,"timestamp":6721901734732,"id":5074,"parentId":5048,"tags":{},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1733,"timestamp":6721901733857,"id":5036,"parentId":4802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1843,"timestamp":6721901733922,"id":5037,"parentId":4842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2312,"timestamp":6721901733962,"id":5038,"parentId":4842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2526,"timestamp":6721901733998,"id":5039,"parentId":4842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2627,"timestamp":6721901734033,"id":5040,"parentId":4798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":2688,"timestamp":6721901734069,"id":5041,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3270,"timestamp":6721901734104,"id":5042,"parentId":4832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4073,"timestamp":6721901734138,"id":5043,"parentId":4854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4312,"timestamp":6721901734173,"id":5044,"parentId":4796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"app-pages-browser"},"startTime":1776328848770,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4366,"timestamp":6721901734205,"id":5045,"parentId":4796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"app-pages-browser"},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":4412,"timestamp":6721901734238,"id":5046,"parentId":4796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"app-pages-browser"},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5710,"timestamp":6721901734271,"id":5047,"parentId":4795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"app-pages-browser"},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":5770,"timestamp":6721901734304,"id":5048,"parentId":4795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"app-pages-browser"},"startTime":1776328848771,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":54,"timestamp":6721901742395,"id":5076,"parentId":5075,"tags":{},"startTime":1776328848779,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":1792,"timestamp":6721901742452,"id":5077,"parentId":5075,"tags":{},"startTime":1776328848779,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":1984,"timestamp":6721901742337,"id":5075,"parentId":4987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"app-pages-browser"},"startTime":1776328848779,"traceId":"6b0bec12f182cf2c"},{"name":"read-resource","duration":442,"timestamp":6721901766564,"id":5079,"parentId":5078,"tags":{},"startTime":1776328848803,"traceId":"6b0bec12f182cf2c"},{"name":"next-swc-loader","duration":50,"timestamp":6721901767019,"id":5080,"parentId":5078,"tags":{},"startTime":1776328848803,"traceId":"6b0bec12f182cf2c"},{"name":"build-module-js","duration":3967,"timestamp":6721901766469,"id":5078,"parentId":4591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/buffer/index.js","layer":"app-pages-browser"},"startTime":1776328848803,"traceId":"6b0bec12f182cf2c"},{"name":"add-entry","duration":801318,"timestamp":6721900971302,"id":3397,"parentId":3391,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776328848008,"traceId":"6b0bec12f182cf2c"},{"name":"make","duration":808126,"timestamp":6721900964561,"id":3391,"parentId":3390,"tags":{},"startTime":1776328848001,"traceId":"6b0bec12f182cf2c"},{"name":"chunk-graph","duration":5673,"timestamp":6721901798551,"id":5082,"parentId":5081,"tags":{},"startTime":1776328848835,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-modules","duration":3,"timestamp":6721901804251,"id":5084,"parentId":5081,"tags":{},"startTime":1776328848841,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunks","duration":70,"timestamp":6721901804264,"id":5085,"parentId":5081,"tags":{},"startTime":1776328848841,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-tree","duration":5,"timestamp":6721901804358,"id":5086,"parentId":5081,"tags":{},"startTime":1776328848841,"traceId":"6b0bec12f182cf2c"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6721901804381,"id":5087,"parentId":5081,"tags":{},"startTime":1776328848841,"traceId":"6b0bec12f182cf2c"},{"name":"optimize","duration":1995,"timestamp":6721901804243,"id":5083,"parentId":5081,"tags":{},"startTime":1776328848841,"traceId":"6b0bec12f182cf2c"},{"name":"module-hash","duration":6621,"timestamp":6721901811356,"id":5088,"parentId":5081,"tags":{},"startTime":1776328848848,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation","duration":39867,"timestamp":6721901818005,"id":5089,"parentId":5081,"tags":{},"startTime":1776328848854,"traceId":"6b0bec12f182cf2c"},{"name":"hash","duration":19564,"timestamp":6721901862000,"id":5090,"parentId":5081,"tags":{},"startTime":1776328848898,"traceId":"6b0bec12f182cf2c"},{"name":"code-generation-jobs","duration":124,"timestamp":6721901881562,"id":5091,"parentId":5081,"tags":{},"startTime":1776328848918,"traceId":"6b0bec12f182cf2c"},{"name":"module-assets","duration":137,"timestamp":6721901881679,"id":5092,"parentId":5081,"tags":{},"startTime":1776328848918,"traceId":"6b0bec12f182cf2c"},{"name":"create-chunk-assets","duration":110768,"timestamp":6721901881819,"id":5093,"parentId":5081,"tags":{},"startTime":1776328848918,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-generateClientManifest","duration":82,"timestamp":6721901993948,"id":5095,"parentId":3390,"tags":{},"startTime":1776328849030,"traceId":"6b0bec12f182cf2c"},{"name":"NextJsBuildManifest-createassets","duration":190,"timestamp":6721901993843,"id":5094,"parentId":3390,"tags":{},"startTime":1776328849030,"traceId":"6b0bec12f182cf2c"},{"name":"seal","duration":203102,"timestamp":6721901793241,"id":5081,"parentId":3390,"tags":{},"startTime":1776328848830,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-compilation","duration":1032157,"timestamp":6721900964228,"id":3390,"parentId":1696,"tags":{"name":"client"},"startTime":1776328848001,"traceId":"6b0bec12f182cf2c"},{"name":"emit","duration":52759,"timestamp":6721901996408,"id":5096,"parentId":1696,"tags":{},"startTime":1776328849033,"traceId":"6b0bec12f182cf2c"},{"name":"compile-path","duration":2225723,"timestamp":6721899825240,"id":1678,"tags":{"trigger":"/sectors","isTurbopack":false},"startTime":1776328846862,"traceId":"6b0bec12f182cf2c"},{"name":"webpack-invalidated-client","duration":2197809,"timestamp":6721899854640,"id":1696,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776328846891,"traceId":"6b0bec12f182cf2c"}] diff --git a/frontend/src/app/monitor/page.tsx b/frontend/src/app/monitor/page.tsx deleted file mode 100644 index b66a8182..00000000 --- a/frontend/src/app/monitor/page.tsx +++ /dev/null @@ -1,274 +0,0 @@ -"use client"; - -import { useEffect, useState, useCallback } from "react"; -import { fetchAPI } from "@/lib/api"; -import type { LimitsData, UnusualStock } from "@/lib/api"; -import { ErrorBoundary } from "@/components/error-boundary"; - -export default function MonitorPage() { - const [tab, setTab] = useState<"limits" | "unusual">("limits"); - const [limitsData, setLimitsData] = useState(null); - const [unusualStocks, setUnusualStocks] = useState([]); - const [tradeDate, setTradeDate] = useState(""); - const [loading, setLoading] = useState(true); - - const loadData = useCallback(async () => { - try { - if (tab === "limits") { - const data = await fetchAPI("/api/monitor/limits"); - setLimitsData(data); - setTradeDate(data.trade_date); - } else { - const data = await fetchAPI<{ trade_date: string; stocks: UnusualStock[] }>("/api/monitor/unusual"); - setUnusualStocks(data.stocks); - setTradeDate(data.trade_date); - } - } catch (e) { - console.error("加载监控数据失败:", e); - } finally { - setLoading(false); - } - }, [tab]); - - useEffect(() => { - loadData(); - }, [loadData]); - - const isInTradingHours = useCallback(() => { - const now = new Date(); - const hour = now.getHours(); - const minute = now.getMinutes(); - const day = now.getDay(); // 0=Sunday - if (day === 0 || day === 6) return false; - if ((hour === 9 && minute >= 30) || hour === 10 || (hour === 11 && minute <= 30)) return true; - if (hour === 13 || hour === 14 || (hour === 15 && minute === 0)) return true; - return false; - }, []); - - useEffect(() => { - if (!isInTradingHours()) return; - const interval = setInterval(loadData, 30000); - return () => clearInterval(interval); - }, [loadData, isInTradingHours]); - - return ( - -
- {/* Header */} -
-
-

涨跌停 / 异动监控

-

- {tradeDate && {tradeDate}} - {limitsData?.is_realtime && · 实时} -

-
-
- - {/* Tabs */} -
- - -
- - {loading ? ( -
- {[1, 2, 3].map((i) => ( -
- ))} -
- ) : tab === "limits" ? ( - - ) : ( - - )} -
- - ); -} - -function LimitsView({ data }: { data: LimitsData | null }) { - if (!data) return
暂无数据
; - - return ( -
- {/* Stats bar */} -
-
-
- - - -
-
-
{data.limit_up.length}
-
涨停
-
-
-
-
- - - -
-
-
{data.limit_down.length}
-
跌停
-
-
-
- - {/* Limit Up List */} - {data.limit_up.length > 0 && ( -
-

涨停板

-
- {data.limit_up.map((stock, i) => ( - - ))} -
-
- )} - - {/* Limit Down List */} - {data.limit_down.length > 0 && ( -
-

跌停板

-
- {data.limit_down.map((stock, i) => ( - - ))} -
-
- )} -
- ); -} - -function LimitStockRow({ stock, index, type }: { stock: LimitsData["limit_up"][0]; index: number; type: "up" | "down" }) { - const isUp = type === "up"; - return ( - - - {index + 1} - -
-
- {stock.name} - {stock.ts_code} -
-
- - 封板{stock.limit_times}次 - - {stock.open_times > 0 && ( - - 开板{stock.open_times}次 - - )} - {stock.up_stat && ( - {stock.up_stat} - )} - {stock.first_time && ( - - 首封 {stock.first_time} - - )} -
-
-
-
- {stock.close.toFixed(2)} -
-
- {stock.pct_chg > 0 ? "+" : ""}{stock.pct_chg.toFixed(2)}% -
-
-
- ); -} - -function UnusualView({ stocks }: { stocks: UnusualStock[] }) { - if (!stocks.length) { - return
暂无异动数据
; - } - - return ( - - ); -} diff --git a/frontend/src/components/nav.tsx b/frontend/src/components/nav.tsx index 02191f45..11cc0e2b 100644 --- a/frontend/src/components/nav.tsx +++ b/frontend/src/components/nav.tsx @@ -34,15 +34,6 @@ function FireIcon() { ); } -function MonitorIcon() { - return ( - - - - - - ); -} function DiagnoseIcon() { return ( @@ -98,10 +89,8 @@ export function SidebarNav() {
); diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts index c9fbe57a..2e935144 100644 --- a/frontend/src/lib/api.ts +++ b/frontend/src/lib/api.ts @@ -186,44 +186,6 @@ export interface TrackedRecommendation { track_date: string; } -// ---------- Monitor ---------- - -export interface LimitStock { - ts_code: string; - name: string; - close: number; - pct_chg: number; - limit_times: number; - first_time: string; - last_time: string; - open_times: number; - fd_amount: number; - up_stat: string; -} - -export interface LimitsData { - trade_date: string; - is_realtime: boolean; - limit_up: LimitStock[]; - limit_down: LimitStock[]; -} - -export interface UnusualStock { - ts_code: string; - name: string; - close: number; - pct_chg: number; - amplitude: number; - volume_ratio: number; - turnover_rate: number; - tags: string[]; -} - -export interface UnusualData { - trade_date: string; - stocks: UnusualStock[]; -} - // ---------- Daily Review ---------- export interface DailyReview {