diff --git a/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc b/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc index e63adc7b..092c70d8 100644 Binary files a/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc and b/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc differ diff --git a/backend/app/analysis/__pycache__/signals.cpython-313.pyc b/backend/app/analysis/__pycache__/signals.cpython-313.pyc index da8fb2c3..a77336c8 100644 Binary files a/backend/app/analysis/__pycache__/signals.cpython-313.pyc and b/backend/app/analysis/__pycache__/signals.cpython-313.pyc differ diff --git a/backend/app/analysis/sector_scanner.py b/backend/app/analysis/sector_scanner.py index 8fbf47aa..46982020 100644 --- a/backend/app/analysis/sector_scanner.py +++ b/backend/app/analysis/sector_scanner.py @@ -225,15 +225,16 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]: if not sectors: return [] - # ── 板块阶段判定 ── + # ── 板块阶段判定(结合连续天数与累计涨幅)── for s in sectors: - if s.days_continuous <= 2: + cumulative_pct = round(sum(s.pct_trend), 2) + if s.days_continuous <= 2 or (s.days_continuous <= 3 and cumulative_pct < 5): s.stage = "early" - elif s.days_continuous == 3: + elif s.days_continuous == 3 and cumulative_pct >= 5 or (s.days_continuous == 4 and cumulative_pct < 8): s.stage = "mid" - elif s.days_continuous == 4: + elif (s.days_continuous == 4 and cumulative_pct >= 8) or (s.days_continuous == 5 and cumulative_pct < 10): s.stage = "late" - else: + elif (s.days_continuous >= 5 and cumulative_pct >= 10) or s.days_continuous >= 6: s.stage = "end" # ── 综合评分 ── diff --git a/backend/app/analysis/signals.py b/backend/app/analysis/signals.py index cedf2cda..19787a59 100644 --- a/backend/app/analysis/signals.py +++ b/backend/app/analysis/signals.py @@ -254,20 +254,24 @@ def generate_signals(ts_code: str, name: str = "") -> TechnicalSignal: # 计算分数 score = 0 signal_count = 0 - signals = { - ma_bullish: 15, - volume_breakout: 20, - macd_golden: 15, - rsi_healthy: 10, - pullback_support: 15, - big_yang: 15, - boll_support: 10, - } - for is_true, points in signals.items(): + signal_map = [ + (ma_bullish, 15), + (volume_breakout, 20), + (macd_golden, 15), + (rsi_healthy, 10), + (pullback_support, 15), + (big_yang, 15), + (boll_support, 10), + ] + for is_true, points in signal_map: if is_true: score += points signal_count += 1 + # 趋势评分(与推荐体系一致) + from app.engine.screener import _score_trend + trend_score = round(_score_trend(df), 1) + # 支撑压力位 support, resist = _calc_support_resist(df) last_close = float(df.iloc[-1]["close"]) @@ -287,6 +291,7 @@ def generate_signals(ts_code: str, name: str = "") -> TechnicalSignal: big_yang=big_yang, boll_support=boll_support, score=score, + trend_score=trend_score, signal_count=signal_count, rally_pct_5d=rally_5d, rally_pct_10d=rally_10d, diff --git a/backend/app/api/__pycache__/recommendations.cpython-313.pyc b/backend/app/api/__pycache__/recommendations.cpython-313.pyc index 0c60dbf0..9d1e1a47 100644 Binary files a/backend/app/api/__pycache__/recommendations.cpython-313.pyc and b/backend/app/api/__pycache__/recommendations.cpython-313.pyc differ diff --git a/backend/app/api/__pycache__/sectors.cpython-313.pyc b/backend/app/api/__pycache__/sectors.cpython-313.pyc index 7e0dfd7a..62e75367 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 b16e30bb..0a572188 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 index 807f9d5c..9ad8a873 100644 --- a/backend/app/api/monitor.py +++ b/backend/app/api/monitor.py @@ -1,4 +1,8 @@ -"""涨跌停/异动监控 API""" +"""涨跌停/异动监控 API + +盘后:使用 Tushare 涨跌停列表和日级数据(完整准确) +盘中:涨跌停仍用 Tushare,异动股用腾讯实时行情(量比/振幅/急涨急跌) +""" from fastapi import APIRouter @@ -12,10 +16,12 @@ router = APIRouter(prefix="/api/monitor", tags=["monitor"]) 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, "limit_up": [], "limit_down": []} + 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) @@ -40,7 +46,7 @@ async def get_limits(): return { "trade_date": trade_date, - "is_realtime": is_market_session(), + "is_realtime": is_realtime, "limit_up": _parse(up_df), "limit_down": _parse(down_df), } @@ -48,13 +54,22 @@ async def get_limits(): @router.get("/unusual") async def get_unusual(): - """获取异动股(量比>3、振幅>8%、快速拉升)""" - trade_date = tushare_client.get_latest_trade_date() + """获取异动股(量比>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, "stocks": []} + return {"trade_date": trade_date, "is_realtime": False, "stocks": []} basic = tushare_client.get_daily_basic(trade_date) if not basic.empty: @@ -66,7 +81,6 @@ async def get_unusual(): for _, r in stock_basic.iterrows(): name_map[r["ts_code"]] = r["name"] - # 筛选异动条件 unusual = [] for _, r in daily.iterrows(): ts = r.get("ts_code", "") @@ -103,4 +117,55 @@ async def get_unusual(): }) unusual.sort(key=lambda x: abs(x["pct_chg"]), reverse=True) - return {"trade_date": trade_date, "stocks": unusual[:50]} + 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/recommendations.py b/backend/app/api/recommendations.py index 288b59e1..d4dcace3 100644 --- a/backend/app/api/recommendations.py +++ b/backend/app/api/recommendations.py @@ -43,6 +43,8 @@ async def get_latest(): "sector_score": r.sector_score, "capital_score": r.capital_score, "technical_score": r.technical_score, + "supply_demand_score": r.supply_demand_score, + "price_action_score": r.price_action_score, "position_score": r.position_score, "valuation_score": r.valuation_score, "entry_price": r.entry_price, @@ -79,6 +81,20 @@ async def refresh(scan_session: str = "manual"): } +@router.post("/update-tracking") +async def update_tracking(): + """独立更新推荐跟踪数据(不触发新扫描,盘中可单独调用)""" + from app.engine.recommender import _update_tracking + await _update_tracking() + stats = await get_performance_stats() + return { + "status": "ok", + "tracked": stats.get("tracked", 0), + "win_rate": stats.get("win_rate", 0), + "avg_return": stats.get("avg_return", 0), + } + + @router.get("/status") async def get_scan_status(): """获取当前扫描状态信息""" diff --git a/backend/app/api/sectors.py b/backend/app/api/sectors.py index 5c9b8fc3..b6ebfcbb 100644 --- a/backend/app/api/sectors.py +++ b/backend/app/api/sectors.py @@ -7,6 +7,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.cache import cache from app.engine.recommender import get_latest_sectors logger = logging.getLogger(__name__) @@ -122,6 +123,12 @@ async def get_hot_sectors(limit: int = 10): @router.get("/rotation") async def get_sector_rotation(days: int = 5): """获取近N日板块轮动数据(用于热力图)""" + # 检查缓存 + cache_key = f"sector_rotation:{days}" + cached = cache.get(cache_key) + if cached is not None: + return cached + trade_date = tushare_client.get_latest_trade_date() # 获取交易日历 @@ -190,4 +197,9 @@ async def get_sector_rotation(days: int = 5): reverse=True, )[:20] - return {"trade_date": trade_date, "dates": recent_dates, "sectors": sorted_sectors} + result = {"trade_date": trade_date, "dates": recent_dates, "sectors": sorted_sectors} + + # 写入缓存,TTL 300秒(5分钟) + cache.set(cache_key, result, ttl=300) + + return result diff --git a/backend/app/api/stocks.py b/backend/app/api/stocks.py index 4232f02b..b4cf4b0f 100644 --- a/backend/app/api/stocks.py +++ b/backend/app/api/stocks.py @@ -1,12 +1,20 @@ """个股分析 API""" +import json +import logging +from datetime import datetime, timedelta + from fastapi import APIRouter +from starlette.responses import StreamingResponse from app.data.tushare_client import tushare_client from app.data import tencent_client from app.analysis.technical import add_all_indicators from app.analysis.signals import generate_signals +from app.db.database import get_db +from app.db import tables +logger = logging.getLogger(__name__) router = APIRouter(prefix="/api/stocks", tags=["stocks"]) @@ -91,35 +99,115 @@ async def search_stock(keyword: str): return matches[["ts_code", "name", "industry"]].to_dict(orient="records") +@router.get("/{ts_code}/diagnose/history") +async def get_diagnose_history(ts_code: str): + """获取个股最近5次诊断历史""" + try: + from sqlalchemy import text + async with get_db() as db: + result = await db.execute( + text( + "SELECT id, ts_code, name, diagnosis, created_at " + "FROM stock_diagnoses " + "WHERE ts_code = :code " + "ORDER BY created_at DESC LIMIT 5" + ), + {"code": ts_code}, + ) + rows = result.fetchall() + history = [] + for row in rows: + r = row._mapping + history.append({ + "id": r["id"], + "ts_code": r["ts_code"], + "name": r["name"], + "diagnosis": r["diagnosis"], + "created_at": str(r["created_at"]), + }) + return history + except Exception as e: + logger.error(f"获取诊断历史失败: {e}") + return [] + + @router.post("/{ts_code}/diagnose") async def diagnose_stock(ts_code: str): - """AI 诊断个股""" + """AI 诊断个股(SSE 流式返回)""" from app.config import settings if not settings.deepseek_api_key: return {"status": "error", "message": "未配置 LLM API Key"} from app.llm.client import get_client + from sqlalchemy import text - # 收集数据 + # ── 检查是否有最近30分钟内的诊断记录,若有则直接返回 ── + try: + async with get_db() as db: + result = await db.execute( + text( + "SELECT id, ts_code, name, diagnosis, created_at " + "FROM stock_diagnoses " + "WHERE ts_code = :code " + "AND created_at >= datetime('now', '-30 minutes', 'localtime') " + "ORDER BY created_at DESC LIMIT 1" + ), + {"code": ts_code}, + ) + recent_row = result.fetchone() + if recent_row: + r = recent_row._mapping + # 直接返回缓存结果 + async def _cached_stream(): + yield f"data: {json.dumps({'cached': True, 'diagnosis': r['diagnosis']}, ensure_ascii=False)}\n\n" + yield f"data: {json.dumps({'done': True, 'ts_code': ts_code})}\n\n" + return StreamingResponse(_cached_stream(), media_type="text/event-stream") + except Exception as e: + logger.warning(f"检查诊断缓存失败: {e}") + + # ── 收集数据 ── quote = await tencent_client.get_realtime_quote(ts_code) signals = generate_signals(ts_code) - df_daily = tushare_client.get_stock_daily(ts_code, days=30) + df_daily = tushare_client.get_stock_daily(ts_code, days=120) df_flow = tushare_client.get_stock_moneyflow(ts_code, days=10) + # ── 数据新鲜度检查 ── + freshness_note = "" + data_stale = False + current_price_source = "" + + if not df_daily.empty: + df_daily = df_daily.sort_values("trade_date") + latest_kline_date = str(df_daily.iloc[-1]["trade_date"]) + # 检查 K 线数据是否超过 10 天未更新 + cutoff_date = (datetime.now() - timedelta(days=10)).strftime("%Y%m%d") + if latest_kline_date < cutoff_date: + logger.warning(f"K线数据过时 {ts_code}: 最新={latest_kline_date}, 10天前阈值={cutoff_date}") + data_stale = True + + # 如果最新 K 线日期不是今天,添加新鲜度提示 + today_str = datetime.now().strftime("%Y%m%d") + if latest_kline_date != today_str: + freshness_note = f"\n\n注意:K线数据最新日期为{latest_kline_date},非当日数据,部分分析可能滞后。" + + # 数据过时时,使用实时报价价格作为"当前价"替代 + if data_stale and quote and quote.price > 0: + current_price_source = f"(实时报价价 {quote.price},K线收盘价 {df_daily.iloc[-1]['close']} 可能滞后)" + # 构建数据摘要 quote_str = "" if quote: quote_str = ( - f"当前价: {quote.price}, 涨跌幅: {quote.pct_chg}%, " + f"当前价: {quote.price}{current_price_source}, 涨跌幅: {quote.pct_chg}%, " f"换手率: {quote.turnover_rate}%, 量比: {quote.volume_ratio}, " f"PE: {quote.pe}, PB: {quote.pb}, " f"总市值: {quote.total_mv}亿, 流通市值: {quote.circ_mv}亿" ) signal_str = ( - f"技术评分: {signals.score}/100(基于7项技术信号触发计分,触发少不代表一定差,可能处于蓄势阶段), " - f"信号数: {signals.signal_count}/7, " + f"推荐体系评分: 趋势评分={signals.trend_score}/100(均线排列+高低点结构+MA20方向,主评分10%权重), " + f"辅助信号计数={signals.signal_count}/7(触发计分,仅供参考不参与主评分), " f"均线多头: {signals.ma_bullish}, " f"放量突破: {signals.volume_breakout}, " f"MACD金叉: {signals.macd_golden}, " @@ -142,7 +230,6 @@ async def diagnose_stock(ts_code: str): trend_str = "" ma_info = "" if not df_daily.empty: - df_daily = df_daily.sort_values("trade_date") latest = df_daily.iloc[-1] if len(df_daily) >= 5: pct_5d = (latest["close"] - df_daily.iloc[-5]["close"]) / df_daily.iloc[-5]["close"] * 100 @@ -171,6 +258,7 @@ async def diagnose_stock(ts_code: str): flow_str = "" if not df_flow.empty: df_flow = df_flow.sort_values("trade_date") + latest_flow_date = str(df_flow.iloc[-1]["trade_date"]) recent_3 = df_flow.tail(3) total_main = 0 for _, r in recent_3.iterrows(): @@ -180,15 +268,78 @@ async def diagnose_stock(ts_code: str): ) total_main += main_net flow_str = f"近3日主力净流入: {total_main:.0f}万" + # 资金流向数据新鲜度标注 + today_str = datetime.now().strftime("%Y%m%d") + if latest_flow_date != today_str: + flow_str += f"(数据截至{latest_flow_date},盘中可能滞后一日)" # 基本信息 basic_info = "" + stock_name = "" + industry = "" basic_df = tushare_client.get_stock_basic() if not basic_df.empty: row = basic_df[basic_df["ts_code"] == ts_code] if not row.empty: r = row.iloc[0] - basic_info = f"名称: {r['name']}, 行业: {r.get('industry', '未知')}" + stock_name = r["name"] + industry = r.get("industry", "") or "" + basic_info = f"名称: {r['name']}, 行业: {industry}" + + # 推荐体系评分(如果该股票在推荐列表中) + rec_score_str = "" + try: + async with get_db() as db: + rec_result = await db.execute( + text( + "SELECT score, supply_demand_score, price_action_score, " + "technical_score, position_score, sector, signal " + "FROM recommendations " + "WHERE ts_code = :code AND score >= 60 " + "ORDER BY created_at DESC LIMIT 1" + ), + {"code": ts_code}, + ) + rec_row = rec_result.fetchone() + if rec_row: + rm = rec_row._mapping + rec_score_str = ( + f"\n推荐体系评分: 综合={rm['score']}, " + f"供需={rm['supply_demand_score']}(50%权重), " + f"形态={rm['price_action_score']}(40%权重), " + f"趋势={rm['technical_score']}(10%权重), " + f"位置安全={rm['position_score']}, " + f"板块={rm['sector']}, " + f"信号={rm['signal']}" + ) + except Exception: + pass + + # 板块热度(如果有该行业板块数据) + sector_str = "" + if industry: + try: + async with get_db() as db: + sector_result = await db.execute( + text( + "SELECT sector_name, pct_change, heat_score, stage, " + "days_continuous, limit_up_count " + "FROM sector_heat " + "WHERE sector_name LIKE :industry " + "ORDER BY created_at DESC LIMIT 1" + ), + {"industry": f"%{industry}%"}, + ) + s_row = sector_result.fetchone() + if s_row: + sm = s_row._mapping + sector_str = ( + f"板块热度: {sm['sector_name']} 涨幅={sm['pct_change']}%, " + f"热度={sm['heat_score']}, 阶段={sm['stage']}, " + f"连续{sm['days_continuous']}天, 涨停数={sm['limit_up_count']}" + ) + except Exception: + pass user_msg = f"""请对以下A股进行全面诊断分析: @@ -202,34 +353,73 @@ async def diagnose_stock(ts_code: str): 趋势: {trend_str} {ma_info} 资金面: {flow_str} +{rec_score_str} +{sector_str} -重要提示:技术评分基于7项信号触发计分,分数低不代表股票差,可能处于蓄势阶段。位置安全评分高(>80)表示股价处于相对低位。请综合技术评分和位置安全评分一起判断。 +重要提示: +1. 趋势评分是推荐体系的技术面核心分数(均线排列40+高低点结构35+MA20方向25=满分100),辅助信号计数仅供参考不参与主评分。 +2. 位置安全评分高(>80)表示股价处于相对低位,低(<40)表示可能追高。 +3. 如果有推荐体系评分,请作为主要分析依据;趋势评分和信号计数从不同维度描述技术面状态。 +{freshness_note} 请从以下维度分析(Markdown格式,简洁专业): ## 综合评级 -(给出1-5星评级和一句话总结,综合技术面和位置安全评分) +(给出1-5星评级和一句话总结,综合趋势评分、位置安全和供需形态) ## 技术面分析 -(趋势方向、均线关系、支撑压力、量价配合,注意区分"技术信号未触发"和"技术面恶化") +(趋势方向、均线关系、支撑压力、量价配合,优先参考趋势评分而非信号计数) ## 资金面分析 -(主力资金态度、筹码集中度推测) +(主力资金态度、板块联动效应) ## 操作建议 (适合什么类型的投资者、入场时机、风险提示)""" - try: - client = get_client() - response = await client.chat.completions.create( - model=settings.deepseek_model, - messages=[ - {"role": "system", "content": "你是一位专业的A股分析师,擅长技术面和资金面分析。回复使用Markdown格式,简洁专业,客观理性。"}, - {"role": "user", "content": user_msg}, - ], - max_tokens=1500, - temperature=0.5, - ) - content = response.choices[0].message.content.strip() - return {"status": "ok", "ts_code": ts_code, "diagnosis": content} - except Exception as e: - return {"status": "error", "message": str(e)} + # ── SSE 流式返回 ── + async def _stream_diagnosis(): + full_content = "" + try: + client = get_client() + stream = await client.chat.completions.create( + model=settings.deepseek_model, + messages=[ + {"role": "system", "content": "你是一位专业的A股分析师,擅长技术面和资金面分析。回复使用Markdown格式,简洁专业,客观理性。"}, + {"role": "user", "content": user_msg}, + ], + max_tokens=1500, + temperature=0.5, + stream=True, + ) + async for chunk in stream: + if chunk.choices and chunk.choices[0].delta: + token = chunk.choices[0].delta.content or "" + if token: + full_content += token + yield f"data: {json.dumps({'token': token}, ensure_ascii=False)}\n\n" + + # 流式完成后,保存到数据库 + full_content = full_content.strip() + if full_content: + try: + async with get_db() as db: + await db.execute( + tables.stock_diagnoses_table.insert().values( + ts_code=ts_code, + name=stock_name or ts_code, + diagnosis=full_content, + ) + ) + await db.commit() + logger.info(f"已保存诊断结果到数据库: {ts_code}") + except Exception as e: + logger.error(f"保存诊断结果到数据库失败: {e}") + + yield f"data: {json.dumps({'done': True, 'ts_code': ts_code}, ensure_ascii=False)}\n\n" + + except Exception as e: + error_msg = str(e) + logger.error(f"诊断流式调用失败: {error_msg}") + yield f"data: {json.dumps({'error': error_msg}, ensure_ascii=False)}\n\n" + yield f"data: {json.dumps({'done': True, 'ts_code': ts_code}, ensure_ascii=False)}\n\n" + + return StreamingResponse(_stream_diagnosis(), media_type="text/event-stream") \ No newline at end of file diff --git a/backend/app/data/__pycache__/models.cpython-313.pyc b/backend/app/data/__pycache__/models.cpython-313.pyc index 2cb1255c..cd9d5d97 100644 Binary files a/backend/app/data/__pycache__/models.cpython-313.pyc and b/backend/app/data/__pycache__/models.cpython-313.pyc differ diff --git a/backend/app/data/models.py b/backend/app/data/models.py index 74fc5965..a788b3a4 100644 --- a/backend/app/data/models.py +++ b/backend/app/data/models.py @@ -94,7 +94,8 @@ class TechnicalSignal(BaseModel): pullback_support: bool = False # 缩量回踩支撑 big_yang: bool = False # 底部放量长阳 boll_support: bool = False # 布林带下轨支撑 - score: float = 0 # 技术面总分 + score: float = 0 # 信号触发计数分 + trend_score: float = 0 # 趋势评分(推荐体系用的技术面分数) signal_count: int = 0 # 满足的信号数量 # 位置安全评估(防追高) @@ -118,6 +119,8 @@ class Recommendation(BaseModel): sector_score: float capital_score: float technical_score: float + supply_demand_score: float = 0 # 供需评分(主评分50%权重) + price_action_score: float = 0 # 价格行为评分(主评分40%权重) position_score: float = 50 # 位置安全得分 valuation_score: float = 50 # 估值安全得分 signal: str # BUY / SELL / HOLD diff --git a/backend/app/db/__pycache__/database.cpython-313.pyc b/backend/app/db/__pycache__/database.cpython-313.pyc index 3c2917aa..fd614406 100644 Binary files a/backend/app/db/__pycache__/database.cpython-313.pyc and b/backend/app/db/__pycache__/database.cpython-313.pyc differ diff --git a/backend/app/db/__pycache__/tables.cpython-313.pyc b/backend/app/db/__pycache__/tables.cpython-313.pyc index 749dddc4..ae062132 100644 Binary files a/backend/app/db/__pycache__/tables.cpython-313.pyc and b/backend/app/db/__pycache__/tables.cpython-313.pyc differ diff --git a/backend/app/db/database.py b/backend/app/db/database.py index dcbb3d44..099f7c6c 100644 --- a/backend/app/db/database.py +++ b/backend/app/db/database.py @@ -34,6 +34,13 @@ async def init_db(): "ALTER TABLE market_temperature ADD COLUMN max_streak INTEGER", "ALTER TABLE market_temperature ADD COLUMN broken_rate REAL", "ALTER TABLE recommendations ADD COLUMN entry_signal_type TEXT DEFAULT 'none'", + "ALTER TABLE sector_heat ADD COLUMN stage TEXT", + "ALTER TABLE sector_heat ADD COLUMN days_continuous INTEGER", + "ALTER TABLE sector_heat ADD COLUMN member_count INTEGER", + "ALTER TABLE sector_heat ADD COLUMN leading_stocks TEXT", + "ALTER TABLE sector_heat ADD COLUMN pct_trend TEXT", + "ALTER TABLE sector_heat ADD COLUMN turnover_avg REAL", + "ALTER TABLE sector_heat ADD COLUMN main_force_ratio REAL", ]: try: await conn.execute( diff --git a/backend/app/db/tables.py b/backend/app/db/tables.py index 6c3a7d82..6188f9b9 100644 --- a/backend/app/db/tables.py +++ b/backend/app/db/tables.py @@ -18,6 +18,8 @@ recommendations_table = Table( Column("sector_score", Float), Column("capital_score", Float), Column("technical_score", Float), + Column("supply_demand_score", Float, default=0), + Column("price_action_score", Float, default=0), Column("position_score", Float), Column("valuation_score", Float), Column("signal", Text), @@ -42,6 +44,13 @@ sector_heat_table = Table( Column("capital_inflow", Float), Column("limit_up_count", Integer), Column("heat_score", Float), + Column("stage", Text), + Column("days_continuous", Integer), + Column("member_count", Integer), + Column("leading_stocks", Text), # JSON string + Column("pct_trend", Text), # JSON string + Column("turnover_avg", Float), + Column("main_force_ratio", Float), Column("trade_date", Text, nullable=False), Column("created_at", DateTime, server_default=func.now()), ) @@ -91,3 +100,12 @@ daily_reviews_table = Table( Column("content", Text, default=""), Column("created_at", DateTime, server_default=func.now()), ) + +stock_diagnoses_table = Table( + "stock_diagnoses", metadata, + Column("id", Integer, primary_key=True, autoincrement=True), + Column("ts_code", Text, nullable=False), + Column("name", Text, nullable=False), + Column("diagnosis", Text, nullable=False), + Column("created_at", DateTime, server_default=func.now()), +) diff --git a/backend/app/engine/__pycache__/recommender.cpython-313.pyc b/backend/app/engine/__pycache__/recommender.cpython-313.pyc index 1e1e0177..c21aac7b 100644 Binary files a/backend/app/engine/__pycache__/recommender.cpython-313.pyc and b/backend/app/engine/__pycache__/recommender.cpython-313.pyc differ diff --git a/backend/app/engine/__pycache__/screener.cpython-313.pyc b/backend/app/engine/__pycache__/screener.cpython-313.pyc index d5327571..5a7872ed 100644 Binary files a/backend/app/engine/__pycache__/screener.cpython-313.pyc and b/backend/app/engine/__pycache__/screener.cpython-313.pyc differ diff --git a/backend/app/engine/recommender.py b/backend/app/engine/recommender.py index 925952b6..7fddcc20 100644 --- a/backend/app/engine/recommender.py +++ b/backend/app/engine/recommender.py @@ -5,6 +5,7 @@ """ import logging +import json from datetime import datetime from app.engine.screener import run_screening from app.data.models import Recommendation, MarketTemperature, SectorInfo @@ -138,29 +139,31 @@ async def get_performance_stats() -> dict: ) tracked = result.scalar() or 0 - # 盈利(pct_from_entry > 0)的推荐数 + # 胜率基于最新跟踪日的最终 pct(正值=盈利,负值=亏损) result = await db.execute( text( "SELECT COUNT(*) FROM (" - " SELECT t.recommendation_id, MAX(t.pct_from_entry) as max_pct " + " SELECT t.recommendation_id, t.pct_from_entry as latest_pct " " FROM recommendation_tracking t " - " GROUP BY t.recommendation_id" - ") WHERE max_pct > 0" + " INNER JOIN (" + " SELECT recommendation_id, MAX(id) as max_id " + " FROM recommendation_tracking GROUP BY recommendation_id" + " ) latest ON t.id = latest.max_id" + ") WHERE latest_pct > 0" ) ) winning = result.scalar() or 0 - # 平均收益 + # 平均收益(基于最新跟踪日的 pct) result = await db.execute( text( "SELECT AVG(latest_pct) FROM (" - " SELECT t.recommendation_id, t.pct_from_entry as latest_pct " + " SELECT t.pct_from_entry as latest_pct " " FROM recommendation_tracking t " " INNER JOIN (" - " SELECT recommendation_id, MAX(track_date) as max_date " + " SELECT recommendation_id, MAX(id) as max_id " " FROM recommendation_tracking GROUP BY recommendation_id" - " ) latest ON t.recommendation_id = latest.recommendation_id " - " AND t.track_date = latest.max_date" + " ) latest ON t.id = latest.max_id" ")" ) ) @@ -185,7 +188,7 @@ async def get_performance_stats() -> dict: ) hit_stop_count = result.scalar() or 0 - # 最近5条有跟踪的推荐详情 + # 最近跟踪的推荐详情 result = await db.execute( text( "SELECT r.ts_code, r.name, r.signal, r.entry_price, " @@ -195,10 +198,9 @@ async def get_performance_stats() -> dict: "FROM recommendations r " "INNER JOIN recommendation_tracking t ON t.recommendation_id = r.id " "INNER JOIN (" - " SELECT recommendation_id, MAX(track_date) as max_date " + " SELECT recommendation_id, MAX(id) as max_id " " FROM recommendation_tracking GROUP BY recommendation_id" - ") latest ON t.recommendation_id = latest.recommendation_id " - " AND t.track_date = latest.max_date " + ") latest ON t.id = latest.max_id " "ORDER BY r.created_at DESC LIMIT 20" ) ) @@ -306,6 +308,8 @@ async def get_recommendation_history(days: int = 7) -> list[dict]: "sector_score": r["sector_score"] or 0, "capital_score": r["capital_score"] or 0, "technical_score": r["technical_score"] or 0, + "supply_demand_score": r.get("supply_demand_score") or 0, + "price_action_score": r.get("price_action_score") or 0, "position_score": r.get("position_score") or 50, "valuation_score": r.get("valuation_score") or 50, "entry_price": r["entry_price"], @@ -395,18 +399,24 @@ async def _save_to_db(result: dict): capital_inflow=sector.capital_inflow, limit_up_count=sector.limit_up_count, heat_score=sector.heat_score, + stage=sector.stage, + days_continuous=sector.days_continuous, + member_count=sector.member_count, + leading_stocks=json.dumps(sector.leading_stocks, ensure_ascii=False), + pct_trend=json.dumps(sector.pct_trend, ensure_ascii=False), + turnover_avg=sector.turnover_avg, + main_force_ratio=sector.main_force_ratio, trade_date=trade_date_val, ) await db.execute(stmt) - # 保存推荐(先清除今日旧推荐,避免重复) + # 保存推荐(按 ts_code 清除当日旧记录,避免同一天多次扫描产生重复) today_str = datetime.now().strftime("%Y-%m-%d") - await db.execute( - text("DELETE FROM recommendations WHERE date(created_at) = :today"), - {"today": today_str}, - ) - import json for rec in result.get("recommendations", []): + await db.execute( + text("DELETE FROM recommendations WHERE date(created_at) = :today AND ts_code = :code"), + {"today": today_str, "code": rec.ts_code}, + ) stmt = tables.recommendations_table.insert().values( ts_code=rec.ts_code, name=rec.name, @@ -416,6 +426,8 @@ async def _save_to_db(result: dict): sector_score=rec.sector_score, capital_score=rec.capital_score, technical_score=rec.technical_score, + supply_demand_score=rec.supply_demand_score, + price_action_score=rec.price_action_score, position_score=rec.position_score, valuation_score=rec.valuation_score, signal=rec.signal, @@ -464,10 +476,11 @@ async def _load_today_from_db() -> dict: temperature=m["temperature"], ) - # 加载推荐(取最近一个有数据的日期,按 ts_code 去重) + # 加载推荐(取最近一个有数据的日期,按 ts_code 去重,只取 >= 60 分) result = await db.execute( text("SELECT * FROM recommendations " "WHERE date(created_at) = (SELECT date(created_at) FROM recommendations ORDER BY created_at DESC LIMIT 1) " + "AND score >= 60 " "AND id IN (SELECT MAX(id) FROM recommendations " " WHERE date(created_at) = (SELECT date(created_at) FROM recommendations ORDER BY created_at DESC LIMIT 1) " " GROUP BY ts_code) " @@ -486,6 +499,8 @@ async def _load_today_from_db() -> dict: sector_score=r["sector_score"] or 0, capital_score=r["capital_score"] or 0, technical_score=r["technical_score"] or 0, + supply_demand_score=r.get("supply_demand_score") or 0, + price_action_score=r.get("price_action_score") or 0, position_score=r.get("position_score") or 50, valuation_score=r.get("valuation_score") or 50, signal=r["signal"] or "HOLD", @@ -532,14 +547,23 @@ async def _load_sectors_from_db() -> list[SectorInfo]: sectors = [] for row in rows: r = row._mapping + # Parse JSON fields with fallback + leading_stocks = json.loads(r.get("leading_stocks") or "[]") + pct_trend = json.loads(r.get("pct_trend") or "[]") sectors.append(SectorInfo( sector_code=r["sector_code"], sector_name=r["sector_name"], pct_change=r["pct_change"] or 0, capital_inflow=r["capital_inflow"] or 0, limit_up_count=r["limit_up_count"] or 0, - days_continuous=0, + days_continuous=r.get("days_continuous") or 0, heat_score=r["heat_score"] or 0, + stage=r.get("stage") or "mid", + member_count=r.get("member_count") or 0, + leading_stocks=leading_stocks, + pct_trend=pct_trend, + turnover_avg=r.get("turnover_avg") or 0, + main_force_ratio=r.get("main_force_ratio") or 0, )) return sectors except Exception as e: diff --git a/backend/app/engine/screener.py b/backend/app/engine/screener.py index ee192281..8ec7eee4 100644 --- a/backend/app/engine/screener.py +++ b/backend/app/engine/screener.py @@ -124,8 +124,8 @@ async def run_screening(trade_date: str = None) -> dict: candidates, market_temp, hot_sectors, market_temp_score, intraday, ) - # 过滤低质量推荐 - recommendations = [r for r in recommendations if r.score >= 40] + # 过滤低质量推荐(低于60分不推荐) + recommendations = [r for r in recommendations if r.score >= 60] logger.info(f"=== 筛选完成: {len(recommendations)} 只股票 ({scan_mode}) ===") for r in recommendations[:5]: @@ -562,6 +562,8 @@ async def _build_recommendations( sector_score=round(_get_sector_heat(sector, hot_sectors), 1), capital_score=round(_score_capital_simple(stock), 1), technical_score=round(trend_score, 1), + supply_demand_score=round(supply_demand_score, 1), + price_action_score=round(price_action_score, 1), position_score=round(position_score, 1), valuation_score=round(valuation_score, 1), signal=signal, diff --git a/backend/app/llm/enhancer.py b/backend/app/llm/enhancer.py index cbb10de1..1d45eade 100644 --- a/backend/app/llm/enhancer.py +++ b/backend/app/llm/enhancer.py @@ -1,135 +1,15 @@ """推荐结果 LLM 增强 -扫描完成后异步调用 LLM,为每只推荐股票生成深度分析。 +现在统一使用 analysis_agent 模块进行深度分析。 +此文件保留为兼容入口,内部直接调用 analysis_agent。 """ -import asyncio -import json import logging -from app.llm.client import chat_completion -from app.llm.prompts import ENHANCE_SYSTEM_PROMPT, ENHANCE_USER_TEMPLATE -from app.config import settings logger = logging.getLogger(__name__) async def enhance_recommendations(result: dict) -> None: - """对推荐结果进行 LLM 增强分析(fire-and-forget)""" - if not settings.deepseek_api_key: - return - - recommendations = result.get("recommendations", []) - if not recommendations: - return - - market_temp = result.get("market_temp") - hot_sectors = result.get("hot_sectors", []) - - # 构建板块文本 - sectors_text = "\n".join( - f"- {s.sector_name}: 涨幅{s.pct_change}%, 资金流入{s.capital_inflow}万, " - f"涨停{s.limit_up_count}家, 热度{s.heat_score}分, 阶段={s.stage}" - for s in hot_sectors[:5] - ) if hot_sectors else "暂无板块数据" - - # 温度等级 - temp_val = market_temp.temperature if market_temp else 0 - if temp_val >= 60: - temp_level = "积极" - elif temp_val >= 30: - temp_level = "谨慎" - else: - temp_level = "低迷" - - enhanced_count = 0 - for rec in recommendations: - try: - user_msg = ENHANCE_USER_TEMPLATE.format( - temperature=market_temp.temperature if market_temp else "N/A", - temp_level=temp_level, - up_count=market_temp.up_count if market_temp else 0, - down_count=market_temp.down_count if market_temp else 0, - limit_up_count=market_temp.limit_up_count if market_temp else 0, - max_streak=market_temp.max_streak if market_temp else 0, - broken_rate=market_temp.broken_rate if market_temp else 0, - sectors_text=sectors_text, - name=rec.name, - ts_code=rec.ts_code, - sector=rec.sector, - score=rec.score, - level=rec.level, - market_temp_score=rec.market_temp_score, - sector_score=rec.sector_score, - capital_score=rec.capital_score, - technical_score=rec.technical_score, - position_score=rec.position_score, - valuation_score=rec.valuation_score, - signal=rec.signal, - entry_price=rec.entry_price or "N/A", - target_price=rec.target_price or "N/A", - stop_loss=rec.stop_loss or "N/A", - reasons=";".join(rec.reasons) if rec.reasons else "无", - ) - - messages = [ - {"role": "system", "content": ENHANCE_SYSTEM_PROMPT}, - {"role": "user", "content": user_msg}, - ] - - resp = await chat_completion(messages) - if resp and resp.content: - rec.llm_analysis = resp.content.strip() - enhanced_count += 1 - - except asyncio.CancelledError: - logger.warning(f"LLM 增强 {rec.ts_code} 被取消") - break - except Exception as e: - logger.error(f"LLM 增强 {rec.ts_code} 失败: {e}") - - if enhanced_count > 0: - # 更新数据库 - await _save_llm_analysis_to_db(recommendations) - # 通过 WebSocket 通知前端 - await _broadcast_llm_ready(recommendations) - - logger.info(f"LLM 增强完成: {enhanced_count}/{len(recommendations)} 条") - - -async def _save_llm_analysis_to_db(recommendations: list) -> None: - """将 LLM 分析结果更新到数据库""" - try: - from app.db.database import get_db - from sqlalchemy import text - - async with get_db() as db: - for rec in recommendations: - if not rec.llm_analysis: - continue - await db.execute( - text( - "UPDATE recommendations SET llm_analysis = :analysis " - "WHERE ts_code = :code AND date(created_at) = date('now', 'localtime') " - "AND scan_session = :session" - ), - { - "analysis": rec.llm_analysis, - "code": rec.ts_code, - "session": rec.scan_session, - }, - ) - await db.commit() - except Exception as e: - logger.error(f"保存 LLM 分析到数据库失败: {e}") - - -async def _broadcast_llm_ready(recommendations: list) -> None: - """通过 WebSocket 广播 LLM 分析完成事件""" - try: - from app.api.websocket import broadcast_update - await broadcast_update({ - "type": "llm_analysis_ready", - "count": len([r for r in recommendations if r.llm_analysis]), - }) - except Exception as e: - logger.error(f"广播 LLM 分析完成失败: {e}") + """对推荐结果进行 LLM 增强分析(兼容入口,委托给 analysis_agent)""" + from app.llm.analysis_agent import analyze_recommendations + await analyze_recommendations(result) \ No newline at end of file diff --git a/backend/astock.db b/backend/astock.db index 7f397e52..3f6b4d01 100644 Binary files a/backend/astock.db and b/backend/astock.db differ diff --git a/frontend/.next/app-build-manifest.json b/frontend/.next/app-build-manifest.json index eec5e525..e43b4628 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -10,31 +10,6 @@ "static/chunks/main-app.js", "static/css/app/layout.css", "static/chunks/app/layout.js" - ], - "/stock/[code]/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/stock/[code]/page.js" - ], - "/monitor/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/monitor/page.js" - ], - "/recommendations/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/recommendations/page.js" - ], - "/sectors/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/sectors/page.js" - ], - "/diagnose/page": [ - "static/chunks/webpack.js", - "static/chunks/main-app.js", - "static/chunks/app/diagnose/page.js" ] } } \ No newline at end of file diff --git a/frontend/.next/build-manifest.json b/frontend/.next/build-manifest.json index b4e9156a..018cb67f 100644 --- a/frontend/.next/build-manifest.json +++ b/frontend/.next/build-manifest.json @@ -2,9 +2,7 @@ "polyfillFiles": [ "static/chunks/polyfills.js" ], - "devFiles": [ - "static/chunks/react-refresh.js" - ], + "devFiles": [], "ampDevFiles": [], "lowPriorityFiles": [ "static/development/_buildManifest.js", @@ -15,16 +13,7 @@ "static/chunks/main-app.js" ], "pages": { - "/_app": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_app.js" - ], - "/_error": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_error.js" - ] + "/_app": [] }, "ampFirstPages": [] } \ No newline at end of file diff --git a/frontend/.next/cache/.tsbuildinfo b/frontend/.next/cache/.tsbuildinfo index b1e8ee87..07fdf3b8 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/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/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/components/score-radar.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.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,428],[99,145,360,429],[99,145,360,430],[99,145,360,431],[99,145,360,427],[99,145,360,432],[99,145,360,435],[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,433],[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,419],[99,145,408,416,417,419,421,422],[87,99,145,395,416],[87,99,145,414],[87,99,145,413,414,416,424,425,426],[87,99,145,413,414,425],[87,99,145,413,414,415,434],[87,99,145,395,414,415,436,437,438],[87,99,145,414,416],[87,99,145,419,434],[99,145,414,415],[99,145,389,395,416,420],[87,99,145,414,415],[87,99,145,419],[87,99,145,416,418,420]],"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":"8849c270a045799bc72a03daf90f670b67878f3dfc9ef1c58e15e96dd643bbed","signature":false},{"version":"d0634a8add0a386d286536bdfe2fbc98b65f265ff75884e5f542968041f6b1c7","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":"ec1e0c0f5fe729fdd25441d9a3ccff32c43aa78b6e1ea90dd69f4a38ea5dd4da","signature":false},{"version":"a644de050a39f1628968a6bc4c9c975a5129d0e3874a3c033f7e9b0847d92c3e","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"2e87be2174db7f3dc23def8af6bb2a25be2a50105ab4df1ec6b3fe142047bf0c","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"409cd8ea243ab82225b9bb1f30de96bb9981b894d99098223dc5b39dd090a730","signature":false},{"version":"ddd23d17a92e54a602f9b47508510206bdbc54bc0e1e09ed573adad431ddd6b2","signature":false},{"version":"5b01ea432d2703377f3c679b046279267b3a8fb299da865743509988f082b749","signature":false},{"version":"d5876e27f72a8708c4c6705699a5ca0c42e3133bee3b670ef559c6b645851c1e","signature":false},{"version":"a9533618ff4fa52d1c88ac3e7edd8c3b69d73236402238a2dbec45d07a3a8b6a","signature":false},{"version":"a310dbab8f03db9f5ca68d6d1000a3d544902a63543670453de0bbc74c348279","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"7fc125cc151fdc111711d52e1591eb681842815298fc6c64b0ed7001af04f3a5","signature":false},{"version":"c4a2749596e97dc7174bde4dca54085306370d069fe3e1d14fc093e27ac4a597","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"f57282ec51e1e56bd695a5c8a9fca946d48704196cc473eafbe063ab1d3e3913","signature":false},{"version":"7ecbfcab0d7422a8fba7e8b0afb98ab1f6076e129fb4647bcab89ba05ca80931","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,418],[420,432],[435,450]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[442,1],[443,2],[444,3],[445,4],[446,5],[441,6],[447,7],[448,8],[449,9],[450,10],[410,11],[363,12],[451,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],[434,70],[433,12],[419,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],[428,233],[429,233],[423,234],[430,235],[431,236],[427,237],[432,238],[435,239],[439,240],[440,241],[417,235],[437,242],[418,236],[436,242],[424,243],[422,244],[438,242],[426,243],[425,245],[420,246],[421,247],[416,236],[413,66],[414,12],[415,12],[411,12]],"changeFileSet":[442,443,444,445,446,441,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,434,433,419,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,428,429,423,430,431,427,432,435,439,440,417,437,418,436,424,422,438,426,425,420,421,416,413,414,415,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/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 diff --git a/frontend/.next/react-loadable-manifest.json b/frontend/.next/react-loadable-manifest.json index 66dd3f39..9e26dfee 100644 --- a/frontend/.next/react-loadable-manifest.json +++ b/frontend/.next/react-loadable-manifest.json @@ -1,20 +1 @@ -{ - "app/sectors/page.tsx -> echarts": { - "id": "app/sectors/page.tsx -> echarts", - "files": [ - "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js" - ] - }, - "components/capital-flow.tsx -> echarts": { - "id": "components/capital-flow.tsx -> echarts", - "files": [ - "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js" - ] - }, - "components/kline-chart.tsx -> echarts": { - "id": "components/kline-chart.tsx -> echarts", - "files": [ - "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js" - ] - } -} \ No newline at end of file +{} \ No newline at end of file diff --git a/frontend/.next/server/app-paths-manifest.json b/frontend/.next/server/app-paths-manifest.json index 1ab20832..e234c2ed 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,8 +1,3 @@ { - "/page": "app/page.js", - "/stock/[code]/page": "app/stock/[code]/page.js", - "/monitor/page": "app/monitor/page.js", - "/recommendations/page": "app/recommendations/page.js", - "/sectors/page": "app/sectors/page.js", - "/diagnose/page": "app/diagnose/page.js" + "/page": "app/page.js" } \ No newline at end of file diff --git a/frontend/.next/server/middleware-build-manifest.js b/frontend/.next/server/middleware-build-manifest.js index 424a1a19..36489d8c 100644 --- a/frontend/.next/server/middleware-build-manifest.js +++ b/frontend/.next/server/middleware-build-manifest.js @@ -2,9 +2,7 @@ self.__BUILD_MANIFEST = { "polyfillFiles": [ "static/chunks/polyfills.js" ], - "devFiles": [ - "static/chunks/react-refresh.js" - ], + "devFiles": [], "ampDevFiles": [], "lowPriorityFiles": [], "rootMainFiles": [ @@ -12,16 +10,7 @@ self.__BUILD_MANIFEST = { "static/chunks/main-app.js" ], "pages": { - "/_app": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_app.js" - ], - "/_error": [ - "static/chunks/webpack.js", - "static/chunks/main.js", - "static/chunks/pages/_error.js" - ] + "/_app": [] }, "ampFirstPages": [] }; diff --git a/frontend/.next/server/middleware-react-loadable-manifest.js b/frontend/.next/server/middleware-react-loadable-manifest.js index 80efb87b..ca34f09f 100644 --- a/frontend/.next/server/middleware-react-loadable-manifest.js +++ b/frontend/.next/server/middleware-react-loadable-manifest.js @@ -1 +1 @@ -self.__REACT_LOADABLE_MANIFEST="{\"app/sectors/page.tsx -> echarts\":{\"id\":\"app/sectors/page.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]},\"components/capital-flow.tsx -> echarts\":{\"id\":\"components/capital-flow.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]},\"components/kline-chart.tsx -> echarts\":{\"id\":\"components/kline-chart.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]}}" \ No newline at end of file +self.__REACT_LOADABLE_MANIFEST="{}" \ No newline at end of file diff --git a/frontend/.next/server/pages-manifest.json b/frontend/.next/server/pages-manifest.json index a679766a..9e26dfee 100644 --- a/frontend/.next/server/pages-manifest.json +++ b/frontend/.next/server/pages-manifest.json @@ -1,5 +1 @@ -{ - "/_app": "pages/_app.js", - "/_error": "pages/_error.js", - "/_document": "pages/_document.js" -} \ No newline at end of file +{} \ No newline at end of file diff --git a/frontend/.next/server/server-reference-manifest.json b/frontend/.next/server/server-reference-manifest.json index 753a45b3..b9f34565 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1,5 +1,5 @@ { "node": {}, "edge": {}, - "encryptionKey": "ivfiGgdCRmC7fJWUxiqW3o7IY5TIF27ivPa+HF5AgdE=" + "encryptionKey": "s33pKc3VjlvggFQFOCpPXrHp6MilpQP7rFdwHOWbtO8=" } \ No newline at end of file diff --git a/frontend/.next/server/webpack-runtime.js b/frontend/.next/server/webpack-runtime.js index ca641afd..08cbdf9e 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 = () => ("53866692304f1888") +/******/ __webpack_require__.h = () => ("668607dc222a6966") /******/ })(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ diff --git a/frontend/.next/trace b/frontend/.next/trace index de124074..809b9cfd 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,63 +1,17 @@ -[{"name":"hot-reloader","duration":26,"timestamp":6656639738885,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776263586823,"traceId":"c730e3ac75d31d11"},{"name":"start","duration":1,"timestamp":6656639739715,"id":4,"parentId":3,"tags":{},"startTime":1776263586824,"traceId":"c730e3ac75d31d11"},{"name":"get-version-info","duration":679381,"timestamp":6656639739868,"id":5,"parentId":4,"tags":{},"startTime":1776263586824,"traceId":"c730e3ac75d31d11"},{"name":"clean","duration":18612,"timestamp":6656640419295,"id":6,"parentId":4,"tags":{},"startTime":1776263587504,"traceId":"c730e3ac75d31d11"},{"name":"create-pages-mapping","duration":127,"timestamp":6656640438982,"id":8,"parentId":7,"tags":{},"startTime":1776263587523,"traceId":"c730e3ac75d31d11"},{"name":"create-entrypoints","duration":247114,"timestamp":6656640439225,"id":9,"parentId":7,"tags":{},"startTime":1776263587524,"traceId":"c730e3ac75d31d11"},{"name":"generate-webpack-config","duration":66997,"timestamp":6656640686378,"id":10,"parentId":7,"tags":{},"startTime":1776263587771,"traceId":"c730e3ac75d31d11"},{"name":"get-webpack-config","duration":314472,"timestamp":6656640438914,"id":7,"parentId":4,"tags":{},"startTime":1776263587523,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":521,"timestamp":6656640792155,"id":12,"parentId":11,"tags":{},"startTime":1776263587877,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":395,"timestamp":6656640793632,"id":14,"parentId":13,"tags":{},"startTime":1776263587878,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":9,"timestamp":6656640794086,"id":16,"parentId":13,"tags":{},"startTime":1776263587878,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":59,"timestamp":6656640794182,"id":17,"parentId":13,"tags":{},"startTime":1776263587879,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":9,"timestamp":6656640794267,"id":18,"parentId":13,"tags":{},"startTime":1776263587879,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":10,"timestamp":6656640794360,"id":19,"parentId":13,"tags":{},"startTime":1776263587879,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":346,"timestamp":6656640794065,"id":15,"parentId":13,"tags":{},"startTime":1776263587878,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":47,"timestamp":6656640794695,"id":20,"parentId":13,"tags":{},"startTime":1776263587879,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":77,"timestamp":6656640794751,"id":21,"parentId":13,"tags":{},"startTime":1776263587879,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":209,"timestamp":6656640794960,"id":22,"parentId":13,"tags":{},"startTime":1776263587879,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":27,"timestamp":6656640795168,"id":23,"parentId":13,"tags":{},"startTime":1776263587880,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":33,"timestamp":6656640795185,"id":24,"parentId":13,"tags":{},"startTime":1776263587880,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":123,"timestamp":6656640795222,"id":25,"parentId":13,"tags":{},"startTime":1776263587880,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":761,"timestamp":6656640824181,"id":27,"parentId":11,"tags":{},"startTime":1776263587909,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":998,"timestamp":6656640823956,"id":26,"parentId":11,"tags":{},"startTime":1776263587908,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":32088,"timestamp":6656640793539,"id":13,"parentId":11,"tags":{},"startTime":1776263587878,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":35342,"timestamp":6656640790419,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776263587875,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":2907,"timestamp":6656640825963,"id":28,"parentId":3,"tags":{},"startTime":1776263587910,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":690,"timestamp":6656640833161,"id":30,"parentId":29,"tags":{},"startTime":1776263587918,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":14,"timestamp":6656640834054,"id":32,"parentId":31,"tags":{},"startTime":1776263587918,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":2,"timestamp":6656640834079,"id":34,"parentId":31,"tags":{},"startTime":1776263587918,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":36,"timestamp":6656640834109,"id":35,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":4,"timestamp":6656640834161,"id":36,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6656640834184,"id":37,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":156,"timestamp":6656640834076,"id":33,"parentId":31,"tags":{},"startTime":1776263587918,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":4,"timestamp":6656640834289,"id":38,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":4,"timestamp":6656640834298,"id":39,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":46,"timestamp":6656640834321,"id":40,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":18,"timestamp":6656640834367,"id":41,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":6,"timestamp":6656640834382,"id":42,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":6,"timestamp":6656640834391,"id":43,"parentId":31,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":782,"timestamp":6656640834005,"id":31,"parentId":29,"tags":{},"startTime":1776263587918,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":2266,"timestamp":6656640832581,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776263587917,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":4118,"timestamp":6656640834876,"id":44,"parentId":3,"tags":{},"startTime":1776263587919,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":87,"timestamp":6656640841190,"id":46,"parentId":45,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":11,"timestamp":6656640841526,"id":48,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":2,"timestamp":6656640841545,"id":50,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":4,"timestamp":6656640841571,"id":51,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":2,"timestamp":6656640841582,"id":52,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6656640841593,"id":53,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":61,"timestamp":6656640841543,"id":49,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":3,"timestamp":6656640841649,"id":54,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":3,"timestamp":6656640841656,"id":55,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":35,"timestamp":6656640841680,"id":56,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":13,"timestamp":6656640841715,"id":57,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":4,"timestamp":6656640841726,"id":58,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":5,"timestamp":6656640841732,"id":59,"parentId":47,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":482,"timestamp":6656640841511,"id":47,"parentId":45,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":1515,"timestamp":6656640840494,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776263587925,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":600,"timestamp":6656640842026,"id":60,"parentId":3,"tags":{},"startTime":1776263587926,"traceId":"c730e3ac75d31d11"}] -[{"name":"make","duration":182,"timestamp":6656641059567,"id":65,"parentId":64,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":12,"timestamp":6656641059843,"id":67,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":2,"timestamp":6656641059864,"id":69,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":4,"timestamp":6656641059873,"id":70,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":2,"timestamp":6656641059883,"id":71,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6656641059893,"id":72,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":55,"timestamp":6656641059861,"id":68,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":4,"timestamp":6656641059962,"id":73,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":6,"timestamp":6656641059970,"id":74,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":28,"timestamp":6656641059991,"id":75,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":8,"timestamp":6656641060018,"id":76,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":3,"timestamp":6656641060024,"id":77,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":6,"timestamp":6656641060030,"id":78,"parentId":66,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":261,"timestamp":6656641060245,"id":80,"parentId":64,"tags":{},"startTime":1776263588145,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":298,"timestamp":6656641060217,"id":79,"parentId":64,"tags":{},"startTime":1776263588145,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":849,"timestamp":6656641059827,"id":66,"parentId":64,"tags":{},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":1508,"timestamp":6656641059201,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776263588144,"traceId":"c730e3ac75d31d11"},{"name":"setup-dev-bundler","duration":1461759,"timestamp":6656639622415,"id":2,"parentId":1,"tags":{},"startTime":1776263586707,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":23942,"timestamp":6656641060729,"id":81,"parentId":61,"tags":{},"startTime":1776263588145,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":28685,"timestamp":6656641056509,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776263588141,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":293,"timestamp":6656641086216,"id":83,"parentId":82,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":13,"timestamp":6656641086582,"id":85,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":2,"timestamp":6656641086605,"id":87,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":67,"timestamp":6656641086637,"id":88,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":2,"timestamp":6656641086712,"id":89,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6656641086722,"id":90,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":134,"timestamp":6656641086602,"id":86,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":4,"timestamp":6656641086851,"id":91,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":5,"timestamp":6656641086859,"id":92,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":27,"timestamp":6656641086878,"id":93,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":8,"timestamp":6656641086906,"id":94,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":6,"timestamp":6656641086912,"id":95,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":7,"timestamp":6656641086920,"id":96,"parentId":84,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":679,"timestamp":6656641086567,"id":84,"parentId":82,"tags":{},"startTime":1776263588171,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":1388,"timestamp":6656641085881,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776263588170,"traceId":"c730e3ac75d31d11"},{"name":"run-instrumentation-hook","duration":22,"timestamp":6656641103605,"id":98,"parentId":1,"tags":{},"startTime":1776263588188,"traceId":"c730e3ac75d31d11"},{"name":"start-dev-server","duration":1745446,"timestamp":6656639367579,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"140427264","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"206471168","memory.heapTotal":"104906752","memory.heapUsed":"81575960"},"startTime":1776263586452,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":27338,"timestamp":6656641087283,"id":97,"parentId":62,"tags":{},"startTime":1776263588172,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":58343,"timestamp":6656641056624,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776263588141,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":157,"timestamp":6656641116333,"id":100,"parentId":99,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":13,"timestamp":6656641116680,"id":102,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":2,"timestamp":6656641116704,"id":104,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":10,"timestamp":6656641116714,"id":105,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":3,"timestamp":6656641116731,"id":106,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":5,"timestamp":6656641116743,"id":107,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":57,"timestamp":6656641116701,"id":103,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":4,"timestamp":6656641116821,"id":108,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":4,"timestamp":6656641116831,"id":109,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":30,"timestamp":6656641116850,"id":110,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":10,"timestamp":6656641116880,"id":111,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":4,"timestamp":6656641116888,"id":112,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":8,"timestamp":6656641116894,"id":113,"parentId":101,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":437,"timestamp":6656641116646,"id":101,"parentId":99,"tags":{},"startTime":1776263588201,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":1181,"timestamp":6656641115917,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776263588200,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":10324,"timestamp":6656641117110,"id":114,"parentId":63,"tags":{},"startTime":1776263588202,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-edge-server","duration":71470,"timestamp":6656641056652,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776263588141,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module","duration":21978,"timestamp":6656641148505,"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":1776263588233,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":55433,"timestamp":6656641183635,"id":133,"parentId":132,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":55877,"timestamp":6656641183204,"id":132,"parentId":122,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":59463,"timestamp":6656641180926,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"rsc"},"startTime":1776263588265,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":56627,"timestamp":6656641183793,"id":137,"parentId":136,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":56664,"timestamp":6656641183758,"id":136,"parentId":127,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58670,"timestamp":6656641182972,"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":1776263588267,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":57923,"timestamp":6656641183756,"id":135,"parentId":134,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":58024,"timestamp":6656641183656,"id":134,"parentId":123,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":62651,"timestamp":6656641182167,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776263588267,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":61046,"timestamp":6656641183823,"id":139,"parentId":138,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":61075,"timestamp":6656641183796,"id":138,"parentId":128,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":63856,"timestamp":6656641183028,"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":1776263588267,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":67943,"timestamp":6656641183170,"id":129,"parentId":124,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":77,"timestamp":6656641251146,"id":140,"parentId":124,"tags":{},"startTime":1776263588336,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":71705,"timestamp":6656641182372,"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":1776263588267,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":70895,"timestamp":6656641183197,"id":131,"parentId":126,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":48,"timestamp":6656641254102,"id":141,"parentId":126,"tags":{},"startTime":1776263588338,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":72154,"timestamp":6656641182891,"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":1776263588267,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":74552,"timestamp":6656641183191,"id":130,"parentId":125,"tags":{},"startTime":1776263588268,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6656641257763,"id":142,"parentId":125,"tags":{},"startTime":1776263588342,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":75551,"timestamp":6656641182726,"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":1776263588267,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":304,"timestamp":6656641260008,"id":143,"parentId":126,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776263588344,"traceId":"c730e3ac75d31d11"},{"name":"build-module-external","duration":17,"timestamp":6656641266927,"id":149,"parentId":124,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"build-module-external","duration":5,"timestamp":6656641266953,"id":150,"parentId":124,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"build-module-external","duration":5,"timestamp":6656641266965,"id":151,"parentId":124,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2696,"timestamp":6656641267312,"id":163,"parentId":162,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2727,"timestamp":6656641267286,"id":162,"parentId":152,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3468,"timestamp":6656641266973,"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":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3311,"timestamp":6656641267284,"id":161,"parentId":160,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3338,"timestamp":6656641267258,"id":160,"parentId":148,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3915,"timestamp":6656641266891,"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":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3559,"timestamp":6656641267256,"id":159,"parentId":158,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3589,"timestamp":6656641267227,"id":158,"parentId":147,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4212,"timestamp":6656641266810,"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":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3806,"timestamp":6656641267224,"id":157,"parentId":156,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3922,"timestamp":6656641267109,"id":156,"parentId":146,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4451,"timestamp":6656641266700,"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":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4020,"timestamp":6656641267528,"id":165,"parentId":164,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4160,"timestamp":6656641267389,"id":164,"parentId":153,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5818,"timestamp":6656641267010,"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":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5281,"timestamp":6656641267570,"id":167,"parentId":166,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5322,"timestamp":6656641267531,"id":166,"parentId":154,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6855,"timestamp":6656641267037,"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":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7395,"timestamp":6656641267596,"id":169,"parentId":168,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7421,"timestamp":6656641267573,"id":168,"parentId":155,"tags":{},"startTime":1776263588352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8184,"timestamp":6656641267076,"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":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11113,"timestamp":6656641266597,"id":145,"parentId":144,"tags":{},"startTime":1776263588351,"traceId":"c730e3ac75d31d11"},{"name":"build-module-css","duration":12012,"timestamp":6656641265982,"id":144,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776263588350,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5028,"timestamp":6656641274529,"id":175,"parentId":171,"tags":{},"startTime":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6656641279565,"id":178,"parentId":171,"tags":{},"startTime":1776263588364,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5893,"timestamp":6656641274250,"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":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5682,"timestamp":6656641274547,"id":177,"parentId":173,"tags":{},"startTime":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6656641280237,"id":179,"parentId":173,"tags":{},"startTime":1776263588365,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6794,"timestamp":6656641274403,"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":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6692,"timestamp":6656641274515,"id":174,"parentId":170,"tags":{},"startTime":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6656641281213,"id":180,"parentId":170,"tags":{},"startTime":1776263588366,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15927,"timestamp":6656641274145,"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":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15552,"timestamp":6656641274537,"id":176,"parentId":172,"tags":{},"startTime":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6656641290097,"id":181,"parentId":172,"tags":{},"startTime":1776263588374,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15990,"timestamp":6656641274350,"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":1776263588359,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4062,"timestamp":6656641291523,"id":183,"parentId":182,"tags":{},"startTime":1776263588376,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6656641295594,"id":184,"parentId":182,"tags":{},"startTime":1776263588380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5756,"timestamp":6656641291414,"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":1776263588376,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":7910,"timestamp":6656641297641,"id":190,"parentId":187,"tags":{},"startTime":1776263588382,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6656641305564,"id":201,"parentId":187,"tags":{},"startTime":1776263588390,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8455,"timestamp":6656641297561,"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":1776263588382,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8443,"timestamp":6656641297634,"id":189,"parentId":186,"tags":{},"startTime":1776263588382,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6656641306083,"id":202,"parentId":186,"tags":{},"startTime":1776263588390,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9472,"timestamp":6656641297510,"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":1776263588382,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9366,"timestamp":6656641297621,"id":188,"parentId":185,"tags":{},"startTime":1776263588382,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656641306992,"id":203,"parentId":185,"tags":{},"startTime":1776263588391,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9752,"timestamp":6656641297412,"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":1776263588382,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2024,"timestamp":6656641307653,"id":212,"parentId":211,"tags":{},"startTime":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2057,"timestamp":6656641307623,"id":211,"parentId":207,"tags":{},"startTime":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2839,"timestamp":6656641307439,"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":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":7921,"timestamp":6656641303778,"id":197,"parentId":192,"tags":{},"startTime":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6656641311709,"id":215,"parentId":192,"tags":{},"startTime":1776263588396,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9290,"timestamp":6656641303554,"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":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9085,"timestamp":6656641303765,"id":196,"parentId":191,"tags":{},"startTime":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6656641312855,"id":216,"parentId":191,"tags":{},"startTime":1776263588397,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9733,"timestamp":6656641303461,"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":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9413,"timestamp":6656641303786,"id":198,"parentId":193,"tags":{},"startTime":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6656641313204,"id":217,"parentId":193,"tags":{},"startTime":1776263588398,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11952,"timestamp":6656641303609,"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":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11781,"timestamp":6656641303795,"id":200,"parentId":195,"tags":{},"startTime":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":69,"timestamp":6656641315582,"id":218,"parentId":195,"tags":{},"startTime":1776263588400,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12647,"timestamp":6656641303708,"id":195,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12572,"timestamp":6656641303791,"id":199,"parentId":194,"tags":{},"startTime":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6656641316367,"id":219,"parentId":194,"tags":{},"startTime":1776263588401,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13739,"timestamp":6656641303661,"id":194,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776263588388,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11857,"timestamp":6656641307487,"id":210,"parentId":206,"tags":{},"startTime":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6656641319350,"id":224,"parentId":206,"tags":{},"startTime":1776263588404,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12597,"timestamp":6656641307393,"id":206,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12522,"timestamp":6656641307475,"id":208,"parentId":204,"tags":{},"startTime":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6656641320002,"id":225,"parentId":204,"tags":{},"startTime":1776263588404,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12851,"timestamp":6656641307268,"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":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12641,"timestamp":6656641307482,"id":209,"parentId":205,"tags":{},"startTime":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6656641320127,"id":226,"parentId":205,"tags":{},"startTime":1776263588405,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12931,"timestamp":6656641307337,"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":1776263588392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12590,"timestamp":6656641309058,"id":214,"parentId":213,"tags":{},"startTime":1776263588393,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":40,"timestamp":6656641321735,"id":233,"parentId":213,"tags":{},"startTime":1776263588406,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12965,"timestamp":6656641308985,"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":1776263588393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1699,"timestamp":6656641320899,"id":232,"parentId":231,"tags":{},"startTime":1776263588405,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1734,"timestamp":6656641320866,"id":231,"parentId":228,"tags":{},"startTime":1776263588405,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":2088,"timestamp":6656641320738,"id":228,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776263588405,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1973,"timestamp":6656641320863,"id":230,"parentId":229,"tags":{},"startTime":1776263588405,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2022,"timestamp":6656641320814,"id":229,"parentId":227,"tags":{},"startTime":1776263588405,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":2367,"timestamp":6656641320667,"id":227,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776263588405,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1734,"timestamp":6656641322372,"id":237,"parentId":236,"tags":{},"startTime":1776263588407,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1778,"timestamp":6656641322330,"id":236,"parentId":234,"tags":{},"startTime":1776263588407,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":2125,"timestamp":6656641322098,"id":234,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776263588406,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1825,"timestamp":6656641322405,"id":239,"parentId":238,"tags":{},"startTime":1776263588407,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1856,"timestamp":6656641322374,"id":238,"parentId":235,"tags":{},"startTime":1776263588407,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":2157,"timestamp":6656641322191,"id":235,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776263588407,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5913,"timestamp":6656641318476,"id":223,"parentId":221,"tags":{},"startTime":1776263588403,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6656641324393,"id":240,"parentId":221,"tags":{},"startTime":1776263588409,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6115,"timestamp":6656641318378,"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":1776263588403,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6031,"timestamp":6656641318466,"id":222,"parentId":220,"tags":{},"startTime":1776263588403,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":935,"timestamp":6656641324545,"id":242,"parentId":241,"tags":{},"startTime":1776263588409,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":981,"timestamp":6656641324500,"id":241,"parentId":220,"tags":{},"startTime":1776263588409,"traceId":"c730e3ac75d31d11"},{"name":"build-module-mjs","duration":7762,"timestamp":6656641318066,"id":220,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776263588402,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1616,"timestamp":6656641324853,"id":244,"parentId":243,"tags":{},"startTime":1776263588409,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6656641326473,"id":245,"parentId":243,"tags":{},"startTime":1776263588411,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2748,"timestamp":6656641324658,"id":243,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776263588409,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1173,"timestamp":6656641328530,"id":247,"parentId":246,"tags":{},"startTime":1776263588413,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6656641329711,"id":252,"parentId":246,"tags":{},"startTime":1776263588414,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1478,"timestamp":6656641328435,"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":1776263588413,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1285,"timestamp":6656641329077,"id":249,"parentId":248,"tags":{},"startTime":1776263588413,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6656641330368,"id":253,"parentId":248,"tags":{},"startTime":1776263588415,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1701,"timestamp":6656641329006,"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":1776263588413,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1299,"timestamp":6656641329681,"id":251,"parentId":250,"tags":{},"startTime":1776263588414,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":45,"timestamp":6656641330985,"id":254,"parentId":250,"tags":{},"startTime":1776263588415,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10295,"timestamp":6656641329605,"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":1776263588414,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":206107,"timestamp":6656641134781,"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":1776263588219,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1304,"timestamp":6656641352926,"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":1776263588437,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1513,"timestamp":6656641354243,"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":1776263588439,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1401,"timestamp":6656641355769,"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":1776263588440,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3620,"timestamp":6656641360964,"id":264,"parentId":263,"tags":{},"startTime":1776263588445,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3718,"timestamp":6656641360871,"id":263,"parentId":262,"tags":{},"startTime":1776263588445,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":9004,"timestamp":6656641360092,"id":262,"parentId":259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"ssr"},"startTime":1776263588444,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8127,"timestamp":6656641364065,"id":274,"parentId":273,"tags":{},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8185,"timestamp":6656641364021,"id":273,"parentId":265,"tags":{},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":9125,"timestamp":6656641363547,"id":265,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8574,"timestamp":6656641364123,"id":278,"parentId":277,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8601,"timestamp":6656641364097,"id":277,"parentId":267,"tags":{},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":9398,"timestamp":6656641363676,"id":267,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9018,"timestamp":6656641364096,"id":276,"parentId":275,"tags":{},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9048,"timestamp":6656641364067,"id":275,"parentId":266,"tags":{},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":10640,"timestamp":6656641363628,"id":266,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10147,"timestamp":6656641364150,"id":280,"parentId":279,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10174,"timestamp":6656641364124,"id":279,"parentId":268,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":10989,"timestamp":6656641363718,"id":268,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10538,"timestamp":6656641364187,"id":286,"parentId":285,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10546,"timestamp":6656641364179,"id":285,"parentId":271,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11096,"timestamp":6656641363957,"id":271,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10965,"timestamp":6656641364169,"id":282,"parentId":281,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10984,"timestamp":6656641364151,"id":281,"parentId":269,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12005,"timestamp":6656641363757,"id":269,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11603,"timestamp":6656641364195,"id":288,"parentId":287,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11611,"timestamp":6656641364188,"id":287,"parentId":272,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13534,"timestamp":6656641363978,"id":272,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13403,"timestamp":6656641364178,"id":284,"parentId":283,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13413,"timestamp":6656641364170,"id":283,"parentId":270,"tags":{},"startTime":1776263588449,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15766,"timestamp":6656641363936,"id":270,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776263588448,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10205,"timestamp":6656641369718,"id":294,"parentId":293,"tags":{},"startTime":1776263588454,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10216,"timestamp":6656641369709,"id":293,"parentId":290,"tags":{},"startTime":1776263588454,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10540,"timestamp":6656641369608,"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":1776263588454,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10454,"timestamp":6656641369707,"id":292,"parentId":291,"tags":{},"startTime":1776263588454,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10476,"timestamp":6656641369687,"id":291,"parentId":289,"tags":{},"startTime":1776263588454,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11040,"timestamp":6656641369558,"id":289,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776263588454,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31,"timestamp":6656641388049,"id":296,"parentId":295,"tags":{},"startTime":1776263588472,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3095,"timestamp":6656641388141,"id":298,"parentId":297,"tags":{},"startTime":1776263588473,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3157,"timestamp":6656641388089,"id":297,"parentId":295,"tags":{},"startTime":1776263588472,"traceId":"c730e3ac75d31d11"},{"name":"build-module-mjs","duration":4839,"timestamp":6656641387763,"id":295,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776263588472,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":79,"timestamp":6656641393046,"id":301,"parentId":299,"tags":{},"startTime":1776263588477,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":80,"timestamp":6656641393131,"id":304,"parentId":299,"tags":{},"startTime":1776263588478,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":399,"timestamp":6656641392950,"id":299,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776263588477,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5688,"timestamp":6656641393100,"id":303,"parentId":302,"tags":{},"startTime":1776263588477,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5712,"timestamp":6656641393080,"id":302,"parentId":300,"tags":{},"startTime":1776263588477,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6310,"timestamp":6656641393015,"id":300,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776263588477,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3884,"timestamp":6656641399953,"id":320,"parentId":319,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3898,"timestamp":6656641399944,"id":319,"parentId":306,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4548,"timestamp":6656641399680,"id":306,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4280,"timestamp":6656641399962,"id":322,"parentId":321,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4288,"timestamp":6656641399954,"id":321,"parentId":307,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4729,"timestamp":6656641399704,"id":307,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4500,"timestamp":6656641399942,"id":318,"parentId":317,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4524,"timestamp":6656641399919,"id":317,"parentId":305,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5003,"timestamp":6656641399626,"id":305,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5123,"timestamp":6656641399970,"id":324,"parentId":323,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5131,"timestamp":6656641399963,"id":323,"parentId":308,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5880,"timestamp":6656641399728,"id":308,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5639,"timestamp":6656641399978,"id":326,"parentId":325,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5646,"timestamp":6656641399971,"id":325,"parentId":309,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6021,"timestamp":6656641399746,"id":309,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5788,"timestamp":6656641399986,"id":328,"parentId":327,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5796,"timestamp":6656641399979,"id":327,"parentId":310,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6128,"timestamp":6656641399763,"id":310,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5906,"timestamp":6656641399993,"id":330,"parentId":329,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5913,"timestamp":6656641399987,"id":329,"parentId":311,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6315,"timestamp":6656641399782,"id":311,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-transform","duration":6183,"timestamp":6656641400001,"id":332,"parentId":331,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6191,"timestamp":6656641399994,"id":331,"parentId":312,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6714,"timestamp":6656641399798,"id":312,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6497,"timestamp":6656641400023,"id":338,"parentId":337,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6504,"timestamp":6656641400017,"id":337,"parentId":315,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7154,"timestamp":6656641399850,"id":315,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7334,"timestamp":6656641400031,"id":340,"parentId":339,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7343,"timestamp":6656641400024,"id":339,"parentId":316,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7782,"timestamp":6656641399866,"id":316,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7652,"timestamp":6656641400016,"id":336,"parentId":335,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7660,"timestamp":6656641400009,"id":335,"parentId":314,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8276,"timestamp":6656641399834,"id":314,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8118,"timestamp":6656641400008,"id":334,"parentId":333,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8126,"timestamp":6656641400002,"id":333,"parentId":313,"tags":{},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8950,"timestamp":6656641399815,"id":313,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776263588484,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":499,"timestamp":6656641410733,"id":351,"parentId":341,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":545,"timestamp":6656641410736,"id":352,"parentId":342,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":251,"timestamp":6656641411240,"id":369,"parentId":341,"tags":{},"startTime":1776263588496,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":208,"timestamp":6656641411285,"id":370,"parentId":342,"tags":{},"startTime":1776263588496,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1846,"timestamp":6656641410336,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1933,"timestamp":6656641410417,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3276,"timestamp":6656641411032,"id":356,"parentId":355,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3290,"timestamp":6656641411022,"id":355,"parentId":344,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4066,"timestamp":6656641410492,"id":344,"parentId":272,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3519,"timestamp":6656641411050,"id":360,"parentId":359,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3528,"timestamp":6656641411042,"id":359,"parentId":346,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4199,"timestamp":6656641410531,"id":346,"parentId":270,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3699,"timestamp":6656641411041,"id":358,"parentId":357,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3708,"timestamp":6656641411033,"id":357,"parentId":345,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4520,"timestamp":6656641410513,"id":345,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4047,"timestamp":6656641411020,"id":354,"parentId":353,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4071,"timestamp":6656641410997,"id":353,"parentId":343,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5145,"timestamp":6656641410465,"id":343,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6488,"timestamp":6656641411075,"id":366,"parentId":365,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6500,"timestamp":6656641411067,"id":365,"parentId":349,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7284,"timestamp":6656641410628,"id":349,"parentId":272,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6857,"timestamp":6656641411066,"id":364,"parentId":363,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6865,"timestamp":6656641411059,"id":363,"parentId":348,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7489,"timestamp":6656641410611,"id":348,"parentId":272,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9100,"timestamp":6656641411083,"id":368,"parentId":367,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9110,"timestamp":6656641411076,"id":367,"parentId":350,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9856,"timestamp":6656641410649,"id":350,"parentId":270,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9661,"timestamp":6656641411058,"id":362,"parentId":361,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9688,"timestamp":6656641411051,"id":361,"parentId":347,"tags":{},"startTime":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10533,"timestamp":6656641410592,"id":347,"parentId":270,"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":1776263588495,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":249,"timestamp":6656641430886,"id":393,"parentId":386,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656641431146,"id":405,"parentId":386,"tags":{},"startTime":1776263588516,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2457,"timestamp":6656641429787,"id":386,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776263588514,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6256,"timestamp":6656641426086,"id":377,"parentId":376,"tags":{},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6288,"timestamp":6656641426059,"id":376,"parentId":371,"tags":{},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7358,"timestamp":6656641425742,"id":371,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7048,"timestamp":6656641426098,"id":379,"parentId":378,"tags":{},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7061,"timestamp":6656641426088,"id":378,"parentId":372,"tags":{},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7789,"timestamp":6656641425813,"id":372,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9483,"timestamp":6656641426108,"id":381,"parentId":380,"tags":{},"startTime":1776263588511,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9496,"timestamp":6656641426099,"id":380,"parentId":373,"tags":{},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10002,"timestamp":6656641425838,"id":373,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9735,"timestamp":6656641426117,"id":383,"parentId":382,"tags":{},"startTime":1776263588511,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9743,"timestamp":6656641426109,"id":382,"parentId":374,"tags":{},"startTime":1776263588511,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10478,"timestamp":6656641425858,"id":374,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5434,"timestamp":6656641430924,"id":396,"parentId":395,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5460,"timestamp":6656641430900,"id":395,"parentId":387,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6247,"timestamp":6656641430396,"id":387,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5833,"timestamp":6656641430947,"id":400,"parentId":399,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5844,"timestamp":6656641430937,"id":399,"parentId":390,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6423,"timestamp":6656641430781,"id":390,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6278,"timestamp":6656641430936,"id":398,"parentId":397,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6289,"timestamp":6656641430926,"id":397,"parentId":388,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6870,"timestamp":6656641430580,"id":388,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6493,"timestamp":6656641430967,"id":402,"parentId":401,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6514,"timestamp":6656641430948,"id":401,"parentId":391,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6768,"timestamp":6656641430822,"id":391,"parentId":307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6621,"timestamp":6656641430977,"id":404,"parentId":403,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6630,"timestamp":6656641430968,"id":403,"parentId":392,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6853,"timestamp":6656641430858,"id":392,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12998,"timestamp":6656641426125,"id":385,"parentId":384,"tags":{},"startTime":1776263588511,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13012,"timestamp":6656641426117,"id":384,"parentId":375,"tags":{},"startTime":1776263588511,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15237,"timestamp":6656641425876,"id":375,"parentId":270,"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":1776263588510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2249,"timestamp":6656641442175,"id":418,"parentId":417,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2263,"timestamp":6656641442164,"id":417,"parentId":407,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3299,"timestamp":6656641441704,"id":407,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4278,"timestamp":6656641442162,"id":416,"parentId":415,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4304,"timestamp":6656641442138,"id":415,"parentId":406,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5170,"timestamp":6656641441637,"id":406,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4634,"timestamp":6656641442193,"id":422,"parentId":421,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4643,"timestamp":6656641442185,"id":421,"parentId":410,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5503,"timestamp":6656641441810,"id":410,"parentId":313,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5122,"timestamp":6656641442202,"id":424,"parentId":423,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5131,"timestamp":6656641442194,"id":423,"parentId":411,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5666,"timestamp":6656641441836,"id":411,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17879,"timestamp":6656641430890,"id":394,"parentId":389,"tags":{},"startTime":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6656641448787,"id":431,"parentId":389,"tags":{},"startTime":1776263588533,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18230,"timestamp":6656641430672,"id":389,"parentId":269,"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":1776263588515,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6755,"timestamp":6656641442184,"id":420,"parentId":419,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6765,"timestamp":6656641442176,"id":419,"parentId":408,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7631,"timestamp":6656641441744,"id":408,"parentId":309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7167,"timestamp":6656641442218,"id":428,"parentId":427,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7175,"timestamp":6656641442211,"id":427,"parentId":413,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7767,"timestamp":6656641441879,"id":413,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7512,"timestamp":6656641442210,"id":426,"parentId":425,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7521,"timestamp":6656641442203,"id":425,"parentId":412,"tags":{},"startTime":1776263588527,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":8217,"timestamp":6656641441855,"id":412,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3541,"timestamp":6656641452519,"id":437,"parentId":436,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3573,"timestamp":6656641452490,"id":436,"parentId":432,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4747,"timestamp":6656641451830,"id":432,"parentId":347,"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":1776263588536,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4781,"timestamp":6656641452547,"id":439,"parentId":438,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4808,"timestamp":6656641452521,"id":438,"parentId":433,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5892,"timestamp":6656641451906,"id":433,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776263588536,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5355,"timestamp":6656641452594,"id":443,"parentId":442,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5383,"timestamp":6656641452584,"id":442,"parentId":435,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6564,"timestamp":6656641451956,"id":435,"parentId":347,"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":1776263588536,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16688,"timestamp":6656641441953,"id":414,"parentId":409,"tags":{},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6656641458661,"id":448,"parentId":409,"tags":{},"startTime":1776263588543,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17231,"timestamp":6656641441765,"id":409,"parentId":311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776263588526,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6640,"timestamp":6656641452582,"id":441,"parentId":440,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6670,"timestamp":6656641452554,"id":440,"parentId":434,"tags":{},"startTime":1776263588537,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7981,"timestamp":6656641451933,"id":434,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776263588536,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":382,"timestamp":6656641460462,"id":451,"parentId":449,"tags":{},"startTime":1776263588545,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":402,"timestamp":6656641460851,"id":453,"parentId":449,"tags":{},"startTime":1776263588545,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1196,"timestamp":6656641460304,"id":449,"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":1776263588545,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16273,"timestamp":6656641446337,"id":430,"parentId":429,"tags":{},"startTime":1776263588531,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6656641462617,"id":454,"parentId":429,"tags":{},"startTime":1776263588547,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16540,"timestamp":6656641446243,"id":429,"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":1776263588531,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1891,"timestamp":6656641463621,"id":469,"parentId":468,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1905,"timestamp":6656641463610,"id":468,"parentId":458,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2538,"timestamp":6656641463217,"id":458,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2140,"timestamp":6656641463630,"id":471,"parentId":470,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2149,"timestamp":6656641463622,"id":470,"parentId":459,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2697,"timestamp":6656641463242,"id":459,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2374,"timestamp":6656641463608,"id":467,"parentId":466,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2442,"timestamp":6656641463542,"id":466,"parentId":457,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":3720,"timestamp":6656641463128,"id":457,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5078,"timestamp":6656641463508,"id":463,"parentId":462,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5127,"timestamp":6656641463461,"id":462,"parentId":455,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":6965,"timestamp":6656641462902,"id":455,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776263588547,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15429,"timestamp":6656641455377,"id":446,"parentId":444,"tags":{},"startTime":1776263588540,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6656641470816,"id":495,"parentId":444,"tags":{},"startTime":1776263588555,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15719,"timestamp":6656641455242,"id":444,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1776263588540,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15583,"timestamp":6656641455386,"id":447,"parentId":445,"tags":{},"startTime":1776263588540,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6656641470974,"id":496,"parentId":445,"tags":{},"startTime":1776263588555,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15734,"timestamp":6656641455324,"id":445,"parentId":272,"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":1776263588540,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7617,"timestamp":6656641463540,"id":465,"parentId":464,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7648,"timestamp":6656641463510,"id":464,"parentId":456,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":9529,"timestamp":6656641462970,"id":456,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776263588547,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8872,"timestamp":6656641463649,"id":475,"parentId":474,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8882,"timestamp":6656641463641,"id":474,"parentId":461,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9685,"timestamp":6656641463282,"id":461,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9341,"timestamp":6656641463639,"id":473,"parentId":472,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9350,"timestamp":6656641463631,"id":472,"parentId":460,"tags":{},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10040,"timestamp":6656641463262,"id":460,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776263588548,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7901,"timestamp":6656641465418,"id":478,"parentId":477,"tags":{},"startTime":1776263588550,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7941,"timestamp":6656641465380,"id":477,"parentId":476,"tags":{},"startTime":1776263588550,"traceId":"c730e3ac75d31d11"},{"name":"build-module-ts","duration":8314,"timestamp":6656641465260,"id":476,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776263588550,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7112,"timestamp":6656641468379,"id":492,"parentId":491,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7124,"timestamp":6656641468368,"id":491,"parentId":481,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7681,"timestamp":6656641468000,"id":481,"parentId":408,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776263588552,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7399,"timestamp":6656641468388,"id":494,"parentId":493,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7409,"timestamp":6656641468380,"id":493,"parentId":482,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8019,"timestamp":6656641468022,"id":482,"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":1776263588552,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7732,"timestamp":6656641468332,"id":488,"parentId":487,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7774,"timestamp":6656641468292,"id":487,"parentId":479,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":8494,"timestamp":6656641467880,"id":479,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776263588552,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8042,"timestamp":6656641468367,"id":490,"parentId":489,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8076,"timestamp":6656641468334,"id":489,"parentId":480,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":9035,"timestamp":6656641467950,"id":480,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776263588552,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17459,"timestamp":6656641460465,"id":452,"parentId":450,"tags":{},"startTime":1776263588545,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656641477931,"id":497,"parentId":450,"tags":{},"startTime":1776263588562,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18023,"timestamp":6656641460398,"id":450,"parentId":349,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776263588545,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2711,"timestamp":6656641479684,"id":504,"parentId":503,"tags":{},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2755,"timestamp":6656641479644,"id":503,"parentId":498,"tags":{},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3643,"timestamp":6656641478985,"id":498,"parentId":407,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776263588563,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2944,"timestamp":6656641479707,"id":508,"parentId":507,"tags":{},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2953,"timestamp":6656641479698,"id":507,"parentId":501,"tags":{},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3754,"timestamp":6656641479104,"id":501,"parentId":434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3174,"timestamp":6656641479697,"id":506,"parentId":505,"tags":{},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3186,"timestamp":6656641479686,"id":505,"parentId":500,"tags":{},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3996,"timestamp":6656641479083,"id":500,"parentId":435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776263588563,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17945,"timestamp":6656641468142,"id":485,"parentId":483,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656641486097,"id":527,"parentId":483,"tags":{},"startTime":1776263588570,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18323,"timestamp":6656641468044,"id":483,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776263588552,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18268,"timestamp":6656641468155,"id":486,"parentId":484,"tags":{},"startTime":1776263588553,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6656641486428,"id":528,"parentId":484,"tags":{},"startTime":1776263588571,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18613,"timestamp":6656641468084,"id":484,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776263588552,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2268,"timestamp":6656641484635,"id":522,"parentId":521,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2280,"timestamp":6656641484627,"id":521,"parentId":512,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2770,"timestamp":6656641484402,"id":512,"parentId":375,"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":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2570,"timestamp":6656641484616,"id":518,"parentId":517,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2581,"timestamp":6656641484606,"id":517,"parentId":510,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3131,"timestamp":6656641484356,"id":510,"parentId":375,"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":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2876,"timestamp":6656641484626,"id":520,"parentId":519,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2886,"timestamp":6656641484617,"id":519,"parentId":511,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3438,"timestamp":6656641484383,"id":511,"parentId":375,"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":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3972,"timestamp":6656641484604,"id":516,"parentId":515,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3997,"timestamp":6656641484580,"id":515,"parentId":509,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5297,"timestamp":6656641484309,"id":509,"parentId":375,"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":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7540,"timestamp":6656641484659,"id":526,"parentId":525,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7550,"timestamp":6656641484652,"id":525,"parentId":514,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8188,"timestamp":6656641484439,"id":514,"parentId":375,"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":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7992,"timestamp":6656641484651,"id":524,"parentId":523,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8008,"timestamp":6656641484636,"id":523,"parentId":513,"tags":{},"startTime":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8620,"timestamp":6656641484421,"id":513,"parentId":375,"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":1776263588569,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15047,"timestamp":6656641479158,"id":502,"parentId":499,"tags":{},"startTime":1776263588564,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":33,"timestamp":6656641494317,"id":535,"parentId":499,"tags":{},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15415,"timestamp":6656641479033,"id":499,"parentId":343,"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":1776263588563,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2310,"timestamp":6656641495234,"id":549,"parentId":548,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2323,"timestamp":6656641495225,"id":548,"parentId":538,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3184,"timestamp":6656641494842,"id":538,"parentId":482,"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":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5460,"timestamp":6656641495243,"id":551,"parentId":550,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5471,"timestamp":6656641495235,"id":550,"parentId":539,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6177,"timestamp":6656641494862,"id":539,"parentId":482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5802,"timestamp":6656641495252,"id":553,"parentId":552,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5811,"timestamp":6656641495244,"id":552,"parentId":540,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6569,"timestamp":6656641494880,"id":540,"parentId":482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6201,"timestamp":6656641495260,"id":555,"parentId":554,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6210,"timestamp":6656641495253,"id":554,"parentId":541,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6910,"timestamp":6656641494899,"id":541,"parentId":482,"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":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6543,"timestamp":6656641495277,"id":559,"parentId":558,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6551,"timestamp":6656641495270,"id":558,"parentId":543,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7069,"timestamp":6656641494933,"id":543,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6959,"timestamp":6656641495223,"id":547,"parentId":546,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6982,"timestamp":6656641495201,"id":546,"parentId":537,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8231,"timestamp":6656641494817,"id":537,"parentId":482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8141,"timestamp":6656641495269,"id":557,"parentId":556,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8151,"timestamp":6656641495261,"id":556,"parentId":542,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9021,"timestamp":6656641494916,"id":542,"parentId":482,"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":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8688,"timestamp":6656641495305,"id":561,"parentId":560,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8715,"timestamp":6656641495278,"id":560,"parentId":544,"tags":{},"startTime":1776263588580,"traceId":"c730e3ac75d31d11"},{"name":"build-module-ts","duration":9745,"timestamp":6656641494950,"id":544,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9878,"timestamp":6656641499878,"id":576,"parentId":575,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9888,"timestamp":6656641499870,"id":575,"parentId":565,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10429,"timestamp":6656641499666,"id":565,"parentId":461,"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":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10258,"timestamp":6656641499848,"id":570,"parentId":569,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10289,"timestamp":6656641499818,"id":569,"parentId":562,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10766,"timestamp":6656641499549,"id":562,"parentId":461,"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":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10469,"timestamp":6656641499860,"id":572,"parentId":571,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10480,"timestamp":6656641499850,"id":571,"parentId":563,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11049,"timestamp":6656641499616,"id":563,"parentId":461,"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":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10787,"timestamp":6656641499886,"id":578,"parentId":577,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10795,"timestamp":6656641499879,"id":577,"parentId":566,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11173,"timestamp":6656641499685,"id":566,"parentId":461,"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":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11077,"timestamp":6656641499894,"id":580,"parentId":579,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11085,"timestamp":6656641499887,"id":579,"parentId":567,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11518,"timestamp":6656641499705,"id":567,"parentId":461,"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":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20210,"timestamp":6656641491144,"id":534,"parentId":531,"tags":{},"startTime":1776263588576,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6656641511360,"id":593,"parentId":531,"tags":{},"startTime":1776263588596,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20490,"timestamp":6656641491022,"id":531,"parentId":308,"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":1776263588575,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20398,"timestamp":6656641491119,"id":532,"parentId":529,"tags":{},"startTime":1776263588576,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6656641511520,"id":594,"parentId":529,"tags":{},"startTime":1776263588596,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20716,"timestamp":6656641490898,"id":529,"parentId":272,"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":1776263588575,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11740,"timestamp":6656641499902,"id":582,"parentId":581,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11748,"timestamp":6656641499895,"id":581,"parentId":568,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12157,"timestamp":6656641499724,"id":568,"parentId":461,"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":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12041,"timestamp":6656641499869,"id":574,"parentId":573,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12050,"timestamp":6656641499861,"id":573,"parentId":564,"tags":{},"startTime":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13461,"timestamp":6656641499644,"id":564,"parentId":461,"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":1776263588584,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":21986,"timestamp":6656641491140,"id":533,"parentId":530,"tags":{},"startTime":1776263588576,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6656641513132,"id":595,"parentId":530,"tags":{},"startTime":1776263588598,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22291,"timestamp":6656641490971,"id":530,"parentId":270,"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":1776263588575,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6372,"timestamp":6656641507087,"id":592,"parentId":591,"tags":{},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6387,"timestamp":6656641507073,"id":591,"parentId":584,"tags":{},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7591,"timestamp":6656641506211,"id":584,"parentId":500,"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":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6761,"timestamp":6656641507071,"id":590,"parentId":589,"tags":{},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6796,"timestamp":6656641507037,"id":589,"parentId":583,"tags":{},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8118,"timestamp":6656641506161,"id":583,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27009,"timestamp":6656641495014,"id":545,"parentId":536,"tags":{},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6656641522033,"id":596,"parentId":536,"tags":{},"startTime":1776263588606,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27617,"timestamp":6656641494760,"id":536,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776263588579,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2438,"timestamp":6656641523156,"id":600,"parentId":599,"tags":{},"startTime":1776263588608,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2464,"timestamp":6656641523132,"id":599,"parentId":597,"tags":{},"startTime":1776263588608,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2896,"timestamp":6656641522946,"id":597,"parentId":511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776263588607,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2744,"timestamp":6656641523168,"id":602,"parentId":601,"tags":{},"startTime":1776263588608,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2755,"timestamp":6656641523158,"id":601,"parentId":598,"tags":{},"startTime":1776263588608,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3190,"timestamp":6656641523014,"id":598,"parentId":511,"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":1776263588607,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20687,"timestamp":6656641506339,"id":588,"parentId":586,"tags":{},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6656641527032,"id":606,"parentId":586,"tags":{},"startTime":1776263588611,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20959,"timestamp":6656641506277,"id":586,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20913,"timestamp":6656641506327,"id":587,"parentId":585,"tags":{},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6656641527245,"id":607,"parentId":585,"tags":{},"startTime":1776263588612,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21184,"timestamp":6656641506236,"id":585,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776263588591,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5759,"timestamp":6656641525376,"id":605,"parentId":604,"tags":{},"startTime":1776263588610,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5781,"timestamp":6656641525357,"id":604,"parentId":603,"tags":{},"startTime":1776263588610,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6178,"timestamp":6656641525267,"id":603,"parentId":513,"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":1776263588610,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2338,"timestamp":6656641529759,"id":623,"parentId":622,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2348,"timestamp":6656641529751,"id":622,"parentId":611,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3144,"timestamp":6656641529354,"id":611,"parentId":538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2800,"timestamp":6656641529737,"id":619,"parentId":618,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2816,"timestamp":6656641529723,"id":618,"parentId":609,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3601,"timestamp":6656641529311,"id":609,"parentId":538,"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":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3184,"timestamp":6656641529749,"id":621,"parentId":620,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3195,"timestamp":6656641529739,"id":620,"parentId":610,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3888,"timestamp":6656641529335,"id":610,"parentId":538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3532,"timestamp":6656641529705,"id":617,"parentId":616,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3588,"timestamp":6656641529649,"id":616,"parentId":608,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4300,"timestamp":6656641529259,"id":608,"parentId":538,"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":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3802,"timestamp":6656641529769,"id":625,"parentId":624,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3810,"timestamp":6656641529761,"id":624,"parentId":612,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4425,"timestamp":6656641529372,"id":612,"parentId":537,"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":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6910,"timestamp":6656641529787,"id":629,"parentId":628,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6920,"timestamp":6656641529779,"id":628,"parentId":614,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7481,"timestamp":6656641529418,"id":614,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7114,"timestamp":6656641529796,"id":631,"parentId":630,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7123,"timestamp":6656641529789,"id":630,"parentId":615,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7728,"timestamp":6656641529434,"id":615,"parentId":537,"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":1776263588614,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-transform","duration":5336,"timestamp":6656641531923,"id":637,"parentId":636,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5359,"timestamp":6656641531901,"id":636,"parentId":632,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5644,"timestamp":6656641531779,"id":632,"parentId":584,"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":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5495,"timestamp":6656641531936,"id":639,"parentId":638,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5506,"timestamp":6656641531925,"id":638,"parentId":633,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5761,"timestamp":6656641531825,"id":633,"parentId":564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5675,"timestamp":6656641531946,"id":641,"parentId":640,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5684,"timestamp":6656641531937,"id":640,"parentId":634,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5980,"timestamp":6656641531849,"id":634,"parentId":563,"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":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5884,"timestamp":6656641531955,"id":643,"parentId":642,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5892,"timestamp":6656641531946,"id":642,"parentId":635,"tags":{},"startTime":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6282,"timestamp":6656641531869,"id":635,"parentId":564,"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":1776263588616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8768,"timestamp":6656641529778,"id":627,"parentId":626,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8778,"timestamp":6656641529770,"id":626,"parentId":613,"tags":{},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10767,"timestamp":6656641529396,"id":613,"parentId":539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776263588614,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5041,"timestamp":6656641536634,"id":646,"parentId":645,"tags":{},"startTime":1776263588621,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5064,"timestamp":6656641536613,"id":645,"parentId":644,"tags":{},"startTime":1776263588621,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5484,"timestamp":6656641536305,"id":644,"parentId":543,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776263588621,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1763,"timestamp":6656641541073,"id":658,"parentId":657,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1773,"timestamp":6656641541065,"id":657,"parentId":649,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2319,"timestamp":6656641540721,"id":649,"parentId":567,"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":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2487,"timestamp":6656641541081,"id":660,"parentId":659,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2496,"timestamp":6656641541074,"id":659,"parentId":650,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2998,"timestamp":6656641540743,"id":650,"parentId":567,"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":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2696,"timestamp":6656641541053,"id":654,"parentId":653,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2715,"timestamp":6656641541035,"id":653,"parentId":647,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3241,"timestamp":6656641540658,"id":647,"parentId":567,"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":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3168,"timestamp":6656641541064,"id":656,"parentId":655,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3179,"timestamp":6656641541055,"id":655,"parentId":648,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3691,"timestamp":6656641540699,"id":648,"parentId":567,"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":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5872,"timestamp":6656641541089,"id":662,"parentId":661,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5881,"timestamp":6656641541082,"id":661,"parentId":651,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6437,"timestamp":6656641540761,"id":651,"parentId":564,"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":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7502,"timestamp":6656641541098,"id":664,"parentId":663,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7511,"timestamp":6656641541090,"id":663,"parentId":652,"tags":{},"startTime":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8636,"timestamp":6656641540778,"id":652,"parentId":564,"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":1776263588625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6240,"timestamp":6656641543236,"id":669,"parentId":668,"tags":{},"startTime":1776263588628,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6260,"timestamp":6656641543218,"id":668,"parentId":665,"tags":{},"startTime":1776263588628,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7813,"timestamp":6656641543095,"id":665,"parentId":586,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776263588627,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3932,"timestamp":6656641551551,"id":672,"parentId":671,"tags":{},"startTime":1776263588636,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3964,"timestamp":6656641551522,"id":671,"parentId":670,"tags":{},"startTime":1776263588636,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4388,"timestamp":6656641551346,"id":670,"parentId":603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776263588636,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":13758,"timestamp":6656641543201,"id":667,"parentId":666,"tags":{},"startTime":1776263588628,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6656641556966,"id":676,"parentId":666,"tags":{},"startTime":1776263588641,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14101,"timestamp":6656641543134,"id":666,"parentId":597,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776263588628,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2984,"timestamp":6656641556339,"id":675,"parentId":674,"tags":{},"startTime":1776263588641,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3009,"timestamp":6656641556315,"id":674,"parentId":673,"tags":{},"startTime":1776263588641,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3348,"timestamp":6656641556238,"id":673,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776263588641,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3834,"timestamp":6656641557482,"id":679,"parentId":678,"tags":{},"startTime":1776263588642,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3862,"timestamp":6656641557458,"id":678,"parentId":677,"tags":{},"startTime":1776263588642,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4732,"timestamp":6656641557369,"id":677,"parentId":635,"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":1776263588642,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3068,"timestamp":6656641560790,"id":682,"parentId":681,"tags":{},"startTime":1776263588645,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3112,"timestamp":6656641560748,"id":681,"parentId":680,"tags":{},"startTime":1776263588645,"traceId":"c730e3ac75d31d11"},{"name":"build-module-ts","duration":3593,"timestamp":6656641560571,"id":680,"parentId":457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776263588645,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1851,"timestamp":6656641562433,"id":698,"parentId":697,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1861,"timestamp":6656641562424,"id":697,"parentId":684,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2263,"timestamp":6656641562175,"id":684,"parentId":563,"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":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2023,"timestamp":6656641562423,"id":696,"parentId":695,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2041,"timestamp":6656641562405,"id":695,"parentId":683,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2429,"timestamp":6656641562131,"id":683,"parentId":565,"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":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2116,"timestamp":6656641562450,"id":702,"parentId":701,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2124,"timestamp":6656641562443,"id":701,"parentId":686,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2475,"timestamp":6656641562225,"id":686,"parentId":564,"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":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2271,"timestamp":6656641562442,"id":700,"parentId":699,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2279,"timestamp":6656641562434,"id":699,"parentId":685,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2958,"timestamp":6656641562199,"id":685,"parentId":567,"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":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2699,"timestamp":6656641562465,"id":706,"parentId":705,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2707,"timestamp":6656641562459,"id":705,"parentId":688,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3079,"timestamp":6656641562269,"id":688,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4938,"timestamp":6656641562458,"id":704,"parentId":703,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4947,"timestamp":6656641562451,"id":703,"parentId":687,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5674,"timestamp":6656641562244,"id":687,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5463,"timestamp":6656641562475,"id":708,"parentId":707,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5472,"timestamp":6656641562466,"id":707,"parentId":689,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6025,"timestamp":6656641562287,"id":689,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5823,"timestamp":6656641562500,"id":714,"parentId":713,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5831,"timestamp":6656641562492,"id":713,"parentId":692,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6089,"timestamp":6656641562347,"id":692,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5959,"timestamp":6656641562491,"id":712,"parentId":711,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5967,"timestamp":6656641562485,"id":711,"parentId":691,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6591,"timestamp":6656641562330,"id":691,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6877,"timestamp":6656641562484,"id":710,"parentId":709,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6885,"timestamp":6656641562476,"id":709,"parentId":690,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7254,"timestamp":6656641562308,"id":690,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7065,"timestamp":6656641562507,"id":716,"parentId":715,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7073,"timestamp":6656641562500,"id":715,"parentId":693,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7536,"timestamp":6656641562364,"id":693,"parentId":665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7396,"timestamp":6656641562515,"id":718,"parentId":717,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7403,"timestamp":6656641562508,"id":717,"parentId":694,"tags":{},"startTime":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7676,"timestamp":6656641562385,"id":694,"parentId":652,"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":1776263588647,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3851,"timestamp":6656641566217,"id":728,"parentId":727,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3860,"timestamp":6656641566209,"id":727,"parentId":721,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4460,"timestamp":6656641565766,"id":721,"parentId":567,"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":1776263588650,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5746,"timestamp":6656641566195,"id":724,"parentId":723,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5768,"timestamp":6656641566175,"id":723,"parentId":719,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6492,"timestamp":6656641565680,"id":719,"parentId":565,"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":1776263588650,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5974,"timestamp":6656641566207,"id":726,"parentId":725,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5993,"timestamp":6656641566197,"id":725,"parentId":720,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6597,"timestamp":6656641565735,"id":720,"parentId":565,"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":1776263588650,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6113,"timestamp":6656641566231,"id":730,"parentId":729,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6127,"timestamp":6656641566218,"id":729,"parentId":722,"tags":{},"startTime":1776263588651,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":6936,"timestamp":6656641565790,"id":722,"parentId":565,"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":1776263588650,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2123,"timestamp":6656641573712,"id":733,"parentId":732,"tags":{},"startTime":1776263588658,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2149,"timestamp":6656641573689,"id":732,"parentId":731,"tags":{},"startTime":1776263588658,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2480,"timestamp":6656641573571,"id":731,"parentId":666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776263588658,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1996,"timestamp":6656641576978,"id":736,"parentId":735,"tags":{},"startTime":1776263588661,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2023,"timestamp":6656641576953,"id":735,"parentId":734,"tags":{},"startTime":1776263588661,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2297,"timestamp":6656641576863,"id":734,"parentId":513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776263588661,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2260,"timestamp":6656641578519,"id":747,"parentId":746,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2270,"timestamp":6656641578511,"id":746,"parentId":739,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2714,"timestamp":6656641578341,"id":739,"parentId":683,"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":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2567,"timestamp":6656641578497,"id":743,"parentId":742,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2603,"timestamp":6656641578462,"id":742,"parentId":737,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3035,"timestamp":6656641578194,"id":737,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2814,"timestamp":6656641578529,"id":749,"parentId":748,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2823,"timestamp":6656641578520,"id":748,"parentId":740,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3370,"timestamp":6656641578382,"id":740,"parentId":686,"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":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3440,"timestamp":6656641578510,"id":745,"parentId":744,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3451,"timestamp":6656641578499,"id":744,"parentId":738,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4046,"timestamp":6656641578285,"id":738,"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":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3809,"timestamp":6656641578539,"id":751,"parentId":750,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3818,"timestamp":6656641578530,"id":750,"parentId":741,"tags":{},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4156,"timestamp":6656641578407,"id":741,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776263588663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6531,"timestamp":6656641580647,"id":761,"parentId":760,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6549,"timestamp":6656641580637,"id":760,"parentId":753,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7258,"timestamp":6656641580476,"id":753,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7111,"timestamp":6656641580656,"id":763,"parentId":762,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7120,"timestamp":6656641580648,"id":762,"parentId":754,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7391,"timestamp":6656641580506,"id":754,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7246,"timestamp":6656641580665,"id":765,"parentId":764,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7254,"timestamp":6656641580657,"id":764,"parentId":755,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7686,"timestamp":6656641580528,"id":755,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8006,"timestamp":6656641580635,"id":759,"parentId":758,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8030,"timestamp":6656641580613,"id":758,"parentId":752,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8460,"timestamp":6656641580415,"id":752,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8244,"timestamp":6656641580673,"id":767,"parentId":766,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8252,"timestamp":6656641580665,"id":766,"parentId":756,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8509,"timestamp":6656641580547,"id":756,"parentId":721,"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":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8383,"timestamp":6656641580681,"id":769,"parentId":768,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8390,"timestamp":6656641580674,"id":768,"parentId":757,"tags":{},"startTime":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8656,"timestamp":6656641580565,"id":757,"parentId":721,"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":1776263588665,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5773,"timestamp":6656641583460,"id":785,"parentId":784,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5782,"timestamp":6656641583452,"id":784,"parentId":773,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6319,"timestamp":6656641583027,"id":773,"parentId":719,"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":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5908,"timestamp":6656641583451,"id":783,"parentId":782,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5918,"timestamp":6656641583442,"id":782,"parentId":772,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6586,"timestamp":6656641583008,"id":772,"parentId":719,"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":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6163,"timestamp":6656641583440,"id":781,"parentId":780,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6181,"timestamp":6656641583424,"id":780,"parentId":771,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6919,"timestamp":6656641582985,"id":771,"parentId":722,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6442,"timestamp":6656641583468,"id":787,"parentId":786,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6450,"timestamp":6656641583461,"id":786,"parentId":774,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7000,"timestamp":6656641583048,"id":774,"parentId":719,"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":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6577,"timestamp":6656641583477,"id":789,"parentId":788,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6585,"timestamp":6656641583469,"id":788,"parentId":775,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7120,"timestamp":6656641583065,"id":775,"parentId":719,"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":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6793,"timestamp":6656641583493,"id":793,"parentId":792,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6801,"timestamp":6656641583486,"id":792,"parentId":777,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7326,"timestamp":6656641583100,"id":777,"parentId":720,"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":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6946,"timestamp":6656641583485,"id":791,"parentId":790,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6954,"timestamp":6656641583477,"id":790,"parentId":776,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7479,"timestamp":6656641583082,"id":776,"parentId":719,"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":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7070,"timestamp":6656641583501,"id":795,"parentId":794,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7078,"timestamp":6656641583494,"id":794,"parentId":778,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8849,"timestamp":6656641583117,"id":778,"parentId":720,"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":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17585,"timestamp":6656641583241,"id":779,"parentId":770,"tags":{},"startTime":1776263588668,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6656641600835,"id":798,"parentId":770,"tags":{},"startTime":1776263588685,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18590,"timestamp":6656641582925,"id":770,"parentId":510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776263588667,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1543,"timestamp":6656641602440,"id":813,"parentId":812,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1558,"timestamp":6656641602429,"id":812,"parentId":803,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2174,"timestamp":6656641602168,"id":803,"parentId":739,"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":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1947,"timestamp":6656641602451,"id":815,"parentId":814,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1957,"timestamp":6656641602441,"id":814,"parentId":804,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2465,"timestamp":6656641602198,"id":804,"parentId":738,"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":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3184,"timestamp":6656641602412,"id":809,"parentId":808,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3225,"timestamp":6656641602373,"id":808,"parentId":801,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3771,"timestamp":6656641602078,"id":801,"parentId":741,"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":1776263588686,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4077,"timestamp":6656641603076,"id":823,"parentId":822,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4103,"timestamp":6656641603053,"id":822,"parentId":819,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4456,"timestamp":6656641602990,"id":819,"parentId":755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5053,"timestamp":6656641602459,"id":817,"parentId":816,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5063,"timestamp":6656641602452,"id":816,"parentId":805,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5606,"timestamp":6656641602236,"id":805,"parentId":741,"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":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5020,"timestamp":6656641603089,"id":825,"parentId":824,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5033,"timestamp":6656641603078,"id":824,"parentId":820,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5782,"timestamp":6656641603018,"id":820,"parentId":755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11302,"timestamp":6656641600125,"id":797,"parentId":796,"tags":{},"startTime":1776263588685,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656641611436,"id":832,"parentId":796,"tags":{},"startTime":1776263588696,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11622,"timestamp":6656641600035,"id":796,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776263588684,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9403,"timestamp":6656641602298,"id":806,"parentId":799,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656641611706,"id":833,"parentId":799,"tags":{},"startTime":1776263588696,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9987,"timestamp":6656641601856,"id":799,"parentId":665,"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":1776263588686,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9533,"timestamp":6656641602320,"id":807,"parentId":800,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6656641611856,"id":834,"parentId":800,"tags":{},"startTime":1776263588696,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10145,"timestamp":6656641601921,"id":800,"parentId":583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776263588686,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2535,"timestamp":6656641609572,"id":829,"parentId":828,"tags":{},"startTime":1776263588694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2599,"timestamp":6656641609509,"id":828,"parentId":826,"tags":{},"startTime":1776263588694,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3061,"timestamp":6656641609242,"id":826,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776263588694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3457,"timestamp":6656641609590,"id":831,"parentId":830,"tags":{},"startTime":1776263588694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3474,"timestamp":6656641609575,"id":830,"parentId":827,"tags":{},"startTime":1776263588694,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4110,"timestamp":6656641609314,"id":827,"parentId":772,"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":1776263588694,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10429,"timestamp":6656641603046,"id":821,"parentId":818,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":31,"timestamp":6656641613677,"id":838,"parentId":818,"tags":{},"startTime":1776263588698,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10907,"timestamp":6656641602910,"id":818,"parentId":583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":13,"timestamp":6656641614029,"id":840,"parentId":839,"tags":{},"startTime":1776263588698,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":617,"timestamp":6656641614045,"id":841,"parentId":839,"tags":{},"startTime":1776263588698,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1283,"timestamp":6656641613944,"id":839,"parentId":820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776263588698,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3309,"timestamp":6656641612610,"id":837,"parentId":836,"tags":{},"startTime":1776263588697,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3332,"timestamp":6656641612589,"id":836,"parentId":835,"tags":{},"startTime":1776263588697,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3619,"timestamp":6656641612439,"id":835,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776263588697,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1085,"timestamp":6656641617063,"id":847,"parentId":846,"tags":{},"startTime":1776263588701,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1096,"timestamp":6656641617053,"id":846,"parentId":843,"tags":{},"startTime":1776263588701,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1295,"timestamp":6656641617006,"id":843,"parentId":820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776263588701,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1358,"timestamp":6656641617052,"id":845,"parentId":844,"tags":{},"startTime":1776263588701,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1380,"timestamp":6656641617030,"id":844,"parentId":842,"tags":{},"startTime":1776263588701,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1680,"timestamp":6656641616960,"id":842,"parentId":804,"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":1776263588701,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":902,"timestamp":6656641618107,"id":856,"parentId":855,"tags":{},"startTime":1776263588703,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":913,"timestamp":6656641618097,"id":855,"parentId":852,"tags":{},"startTime":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1157,"timestamp":6656641618028,"id":852,"parentId":835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2210,"timestamp":6656641617475,"id":850,"parentId":849,"tags":{},"startTime":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2225,"timestamp":6656641617462,"id":849,"parentId":848,"tags":{},"startTime":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2702,"timestamp":6656641617434,"id":848,"parentId":826,"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":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4617,"timestamp":6656641618096,"id":854,"parentId":853,"tags":{},"startTime":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4636,"timestamp":6656641618078,"id":853,"parentId":851,"tags":{},"startTime":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5461,"timestamp":6656641617937,"id":851,"parentId":835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776263588702,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21262,"timestamp":6656641602429,"id":811,"parentId":810,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21278,"timestamp":6656641602415,"id":810,"parentId":802,"tags":{},"startTime":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27843,"timestamp":6656641602143,"id":802,"parentId":739,"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":1776263588687,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1270,"timestamp":6656641631792,"id":858,"parentId":857,"tags":{},"startTime":1776263588716,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6656641633069,"id":859,"parentId":857,"tags":{},"startTime":1776263588717,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2468,"timestamp":6656641631702,"id":857,"parentId":738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776263588716,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":850,"timestamp":6656641636952,"id":861,"parentId":860,"tags":{},"startTime":1776263588721,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":60,"timestamp":6656641637815,"id":864,"parentId":860,"tags":{},"startTime":1776263588722,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4240,"timestamp":6656641636852,"id":860,"parentId":802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776263588721,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3953,"timestamp":6656641637190,"id":863,"parentId":862,"tags":{},"startTime":1776263588722,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656641641148,"id":865,"parentId":862,"tags":{},"startTime":1776263588726,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5777,"timestamp":6656641637117,"id":862,"parentId":802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776263588722,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":510515,"timestamp":6656641133598,"id":119,"parentId":118,"tags":{},"startTime":1776263588218,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":2716,"timestamp":6656641651024,"id":867,"parentId":866,"tags":{},"startTime":1776263588735,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":5,"timestamp":6656641653759,"id":869,"parentId":866,"tags":{},"startTime":1776263588738,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":2641,"timestamp":6656641653772,"id":870,"parentId":866,"tags":{},"startTime":1776263588738,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":3,"timestamp":6656641656428,"id":871,"parentId":866,"tags":{},"startTime":1776263588741,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6656641656442,"id":872,"parentId":866,"tags":{},"startTime":1776263588741,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":3305,"timestamp":6656641653751,"id":868,"parentId":866,"tags":{},"startTime":1776263588738,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":4298,"timestamp":6656641658837,"id":873,"parentId":866,"tags":{},"startTime":1776263588743,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":12604,"timestamp":6656641663153,"id":874,"parentId":866,"tags":{},"startTime":1776263588748,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":2587,"timestamp":6656641678148,"id":875,"parentId":866,"tags":{},"startTime":1776263588763,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":177,"timestamp":6656641680735,"id":876,"parentId":866,"tags":{},"startTime":1776263588765,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":71,"timestamp":6656641680906,"id":877,"parentId":866,"tags":{},"startTime":1776263588765,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":41859,"timestamp":6656641680980,"id":878,"parentId":866,"tags":{},"startTime":1776263588765,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":74545,"timestamp":6656641650222,"id":866,"parentId":118,"tags":{},"startTime":1776263588735,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":592388,"timestamp":6656641133364,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776263588218,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":16735,"timestamp":6656641725815,"id":879,"parentId":116,"tags":{},"startTime":1776263588810,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":610122,"timestamp":6656641132769,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776263588217,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":694,"timestamp":6656641751479,"id":887,"parentId":884,"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":1776263588836,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1299,"timestamp":6656641752312,"id":888,"parentId":885,"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":1776263588837,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1162,"timestamp":6656641753623,"id":889,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%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":1776263588838,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4,"timestamp":6656641761945,"id":891,"parentId":890,"tags":{},"startTime":1776263588846,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4858,"timestamp":6656641765223,"id":907,"parentId":906,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4914,"timestamp":6656641765175,"id":906,"parentId":894,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8830,"timestamp":6656641762729,"id":894,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776263588847,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7085,"timestamp":6656641765292,"id":911,"parentId":910,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7119,"timestamp":6656641765263,"id":910,"parentId":896,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":8418,"timestamp":6656641764703,"id":896,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11123,"timestamp":6656641762034,"id":893,"parentId":892,"tags":{},"startTime":1776263588846,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11200,"timestamp":6656641761957,"id":892,"parentId":890,"tags":{},"startTime":1776263588846,"traceId":"c730e3ac75d31d11"},{"name":"build-module-mjs","duration":12719,"timestamp":6656641761435,"id":890,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776263588846,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8979,"timestamp":6656641765261,"id":909,"parentId":908,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9016,"timestamp":6656641765226,"id":908,"parentId":895,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":11763,"timestamp":6656641764368,"id":895,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10808,"timestamp":6656641765348,"id":915,"parentId":914,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10836,"timestamp":6656641765321,"id":914,"parentId":898,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":11760,"timestamp":6656641764847,"id":898,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11266,"timestamp":6656641765366,"id":919,"parentId":918,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11274,"timestamp":6656641765358,"id":918,"parentId":900,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12039,"timestamp":6656641764967,"id":900,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11753,"timestamp":6656641765320,"id":913,"parentId":912,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11781,"timestamp":6656641765294,"id":912,"parentId":897,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":13391,"timestamp":6656641764755,"id":897,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":18551,"timestamp":6656641765390,"id":925,"parentId":924,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":18560,"timestamp":6656641765383,"id":924,"parentId":903,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19564,"timestamp":6656641765070,"id":903,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":19280,"timestamp":6656641765374,"id":921,"parentId":920,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":19288,"timestamp":6656641765367,"id":920,"parentId":901,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20285,"timestamp":6656641765004,"id":901,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":19903,"timestamp":6656641765397,"id":927,"parentId":926,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":19911,"timestamp":6656641765390,"id":926,"parentId":904,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20532,"timestamp":6656641765098,"id":904,"parentId":889,"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":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":20850,"timestamp":6656641765425,"id":929,"parentId":928,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":20879,"timestamp":6656641765399,"id":928,"parentId":905,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":21621,"timestamp":6656641765119,"id":905,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21482,"timestamp":6656641765382,"id":923,"parentId":922,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21490,"timestamp":6656641765375,"id":922,"parentId":902,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23115,"timestamp":6656641765047,"id":902,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22841,"timestamp":6656641765358,"id":917,"parentId":916,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22850,"timestamp":6656641765349,"id":916,"parentId":899,"tags":{},"startTime":1776263588850,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24755,"timestamp":6656641764925,"id":899,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776263588849,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":256,"timestamp":6656641797175,"id":934,"parentId":931,"tags":{},"startTime":1776263588882,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":289,"timestamp":6656641797179,"id":935,"parentId":932,"tags":{},"startTime":1776263588882,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":53,"timestamp":6656641797438,"id":939,"parentId":931,"tags":{},"startTime":1776263588882,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21,"timestamp":6656641797471,"id":940,"parentId":932,"tags":{},"startTime":1776263588882,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":845,"timestamp":6656641796846,"id":931,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776263588881,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":810,"timestamp":6656641796964,"id":932,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776263588881,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-transform","duration":4471,"timestamp":6656641797394,"id":938,"parentId":937,"tags":{},"startTime":1776263588882,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4509,"timestamp":6656641797358,"id":937,"parentId":930,"tags":{},"startTime":1776263588882,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5652,"timestamp":6656641796740,"id":930,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776263588881,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2866,"timestamp":6656641800430,"id":971,"parentId":970,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2900,"timestamp":6656641800399,"id":970,"parentId":941,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4399,"timestamp":6656641799425,"id":941,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3383,"timestamp":6656641800453,"id":975,"parentId":974,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3393,"timestamp":6656641800444,"id":974,"parentId":943,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5040,"timestamp":6656641799537,"id":943,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4173,"timestamp":6656641800443,"id":973,"parentId":972,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4185,"timestamp":6656641800432,"id":972,"parentId":942,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5656,"timestamp":6656641799508,"id":942,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8384,"timestamp":6656641800472,"id":979,"parentId":978,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8398,"timestamp":6656641800462,"id":978,"parentId":945,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9784,"timestamp":6656641799590,"id":945,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8933,"timestamp":6656641800461,"id":977,"parentId":976,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8942,"timestamp":6656641800454,"id":976,"parentId":944,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10423,"timestamp":6656641799561,"id":944,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9509,"timestamp":6656641800491,"id":983,"parentId":982,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9518,"timestamp":6656641800483,"id":982,"parentId":947,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10745,"timestamp":6656641799629,"id":947,"parentId":901,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9903,"timestamp":6656641800482,"id":981,"parentId":980,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9913,"timestamp":6656641800473,"id":980,"parentId":946,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12264,"timestamp":6656641799610,"id":946,"parentId":903,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11412,"timestamp":6656641800508,"id":987,"parentId":986,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11421,"timestamp":6656641800500,"id":986,"parentId":949,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13691,"timestamp":6656641799665,"id":949,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12883,"timestamp":6656641800499,"id":985,"parentId":984,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12892,"timestamp":6656641800492,"id":984,"parentId":948,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14465,"timestamp":6656641799647,"id":948,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13616,"timestamp":6656641800516,"id":989,"parentId":988,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13624,"timestamp":6656641800509,"id":988,"parentId":950,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15018,"timestamp":6656641799684,"id":950,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14196,"timestamp":6656641800524,"id":991,"parentId":990,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14204,"timestamp":6656641800517,"id":990,"parentId":951,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21988,"timestamp":6656641799702,"id":951,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21201,"timestamp":6656641800533,"id":993,"parentId":992,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21210,"timestamp":6656641800526,"id":992,"parentId":952,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22464,"timestamp":6656641799720,"id":952,"parentId":899,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21654,"timestamp":6656641800549,"id":997,"parentId":996,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21662,"timestamp":6656641800542,"id":996,"parentId":954,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22945,"timestamp":6656641799755,"id":954,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22140,"timestamp":6656641800572,"id":1003,"parentId":1002,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22148,"timestamp":6656641800565,"id":1002,"parentId":957,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23080,"timestamp":6656641799835,"id":957,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22360,"timestamp":6656641800565,"id":1001,"parentId":1000,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22367,"timestamp":6656641800558,"id":1000,"parentId":956,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23330,"timestamp":6656641799792,"id":956,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22573,"timestamp":6656641800557,"id":999,"parentId":998,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22581,"timestamp":6656641800550,"id":998,"parentId":955,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23639,"timestamp":6656641799773,"id":955,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22833,"timestamp":6656641800587,"id":1007,"parentId":1006,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22841,"timestamp":6656641800581,"id":1006,"parentId":959,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24059,"timestamp":6656641800000,"id":959,"parentId":902,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":28623,"timestamp":6656641800541,"id":995,"parentId":994,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28635,"timestamp":6656641800534,"id":994,"parentId":953,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30198,"timestamp":6656641799737,"id":953,"parentId":899,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":29377,"timestamp":6656641800579,"id":1005,"parentId":1004,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29386,"timestamp":6656641800573,"id":1004,"parentId":958,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31351,"timestamp":6656641799959,"id":958,"parentId":902,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":30758,"timestamp":6656641800596,"id":1009,"parentId":1008,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30768,"timestamp":6656641800588,"id":1008,"parentId":960,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32310,"timestamp":6656641800025,"id":960,"parentId":899,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":31746,"timestamp":6656641800606,"id":1011,"parentId":1010,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31756,"timestamp":6656641800598,"id":1010,"parentId":961,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33319,"timestamp":6656641800058,"id":961,"parentId":899,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":32781,"timestamp":6656641800632,"id":1013,"parentId":1012,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32807,"timestamp":6656641800607,"id":1012,"parentId":962,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34455,"timestamp":6656641800103,"id":962,"parentId":899,"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":1776263588884,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":33917,"timestamp":6656641800656,"id":1015,"parentId":1014,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33940,"timestamp":6656641800635,"id":1014,"parentId":963,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34770,"timestamp":6656641800132,"id":963,"parentId":902,"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":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":34235,"timestamp":6656641800683,"id":1019,"parentId":1018,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34245,"timestamp":6656641800673,"id":1018,"parentId":965,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35117,"timestamp":6656641800176,"id":965,"parentId":902,"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":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":34631,"timestamp":6656641800672,"id":1017,"parentId":1016,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34646,"timestamp":6656641800658,"id":1016,"parentId":964,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35385,"timestamp":6656641800153,"id":964,"parentId":902,"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":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":34854,"timestamp":6656641800693,"id":1021,"parentId":1020,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34864,"timestamp":6656641800683,"id":1020,"parentId":966,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35914,"timestamp":6656641800195,"id":966,"parentId":899,"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":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":35792,"timestamp":6656641800704,"id":1023,"parentId":1022,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35805,"timestamp":6656641800694,"id":1022,"parentId":967,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36843,"timestamp":6656641800213,"id":967,"parentId":899,"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":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":36411,"timestamp":6656641800713,"id":1025,"parentId":1024,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36420,"timestamp":6656641800705,"id":1024,"parentId":968,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38422,"timestamp":6656641800232,"id":968,"parentId":899,"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":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":32314,"timestamp":6656641806407,"id":1037,"parentId":1036,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32353,"timestamp":6656641806371,"id":1036,"parentId":1029,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":34333,"timestamp":6656641805629,"id":1029,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776263588890,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":39452,"timestamp":6656641800759,"id":1027,"parentId":1026,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39508,"timestamp":6656641800714,"id":1026,"parentId":969,"tags":{},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":41552,"timestamp":6656641800256,"id":969,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776263588885,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":35698,"timestamp":6656641806367,"id":1035,"parentId":1034,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35756,"timestamp":6656641806310,"id":1034,"parentId":1028,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":38926,"timestamp":6656641805537,"id":1028,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776263588890,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":38060,"timestamp":6656641806438,"id":1039,"parentId":1038,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38090,"timestamp":6656641806409,"id":1038,"parentId":1030,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":41349,"timestamp":6656641805683,"id":1030,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776263588890,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":40805,"timestamp":6656641806461,"id":1043,"parentId":1042,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40818,"timestamp":6656641806452,"id":1042,"parentId":1032,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":42229,"timestamp":6656641805770,"id":1032,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776263588890,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":41599,"timestamp":6656641806451,"id":1041,"parentId":1040,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41611,"timestamp":6656641806439,"id":1040,"parentId":1031,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42805,"timestamp":6656641805745,"id":1031,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776263588890,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":42110,"timestamp":6656641806470,"id":1045,"parentId":1044,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":42120,"timestamp":6656641806462,"id":1044,"parentId":1033,"tags":{},"startTime":1776263588891,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":44307,"timestamp":6656641805791,"id":1033,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776263588890,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":30137,"timestamp":6656641827930,"id":1055,"parentId":1054,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30172,"timestamp":6656641827899,"id":1054,"parentId":1048,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"build-module-ts","duration":31835,"timestamp":6656641827197,"id":1048,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":31217,"timestamp":6656641827897,"id":1053,"parentId":1052,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31258,"timestamp":6656641827857,"id":1052,"parentId":1047,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":32797,"timestamp":6656641827046,"id":1047,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776263588911,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":31916,"timestamp":6656641827941,"id":1057,"parentId":1056,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31927,"timestamp":6656641827931,"id":1056,"parentId":1049,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32708,"timestamp":6656641827540,"id":1049,"parentId":899,"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":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":32461,"timestamp":6656641827854,"id":1051,"parentId":1050,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32528,"timestamp":6656641827787,"id":1050,"parentId":1046,"tags":{},"startTime":1776263588912,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35151,"timestamp":6656641826885,"id":1046,"parentId":932,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776263588911,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":65200,"timestamp":6656641797180,"id":936,"parentId":933,"tags":{},"startTime":1776263588882,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6656641862389,"id":1058,"parentId":933,"tags":{},"startTime":1776263588947,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":66830,"timestamp":6656641797062,"id":933,"parentId":882,"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":1776263588881,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":601,"timestamp":6656641865683,"id":1063,"parentId":1060,"tags":{},"startTime":1776263588950,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1289,"timestamp":6656641866290,"id":1070,"parentId":1060,"tags":{},"startTime":1776263588951,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2938,"timestamp":6656641865556,"id":1060,"parentId":930,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776263588950,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3547,"timestamp":6656641866217,"id":1067,"parentId":1066,"tags":{},"startTime":1776263588951,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3560,"timestamp":6656641866206,"id":1066,"parentId":1061,"tags":{},"startTime":1776263588951,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4454,"timestamp":6656641865606,"id":1061,"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":1776263588950,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3845,"timestamp":6656641866226,"id":1069,"parentId":1068,"tags":{},"startTime":1776263588951,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3854,"timestamp":6656641866218,"id":1068,"parentId":1062,"tags":{},"startTime":1776263588951,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4628,"timestamp":6656641865630,"id":1062,"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":1776263588950,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4065,"timestamp":6656641866202,"id":1065,"parentId":1064,"tags":{},"startTime":1776263588951,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4099,"timestamp":6656641866168,"id":1064,"parentId":1059,"tags":{},"startTime":1776263588951,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5145,"timestamp":6656641865462,"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":1776263588950,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":581,"timestamp":6656641871706,"id":1095,"parentId":1071,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":612,"timestamp":6656641871709,"id":1096,"parentId":1073,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":645,"timestamp":6656641871711,"id":1097,"parentId":1074,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":668,"timestamp":6656641871712,"id":1098,"parentId":1079,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":708,"timestamp":6656641871722,"id":1099,"parentId":1082,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":731,"timestamp":6656641871724,"id":1100,"parentId":1086,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":755,"timestamp":6656641871726,"id":1101,"parentId":1092,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":950,"timestamp":6656641872292,"id":1136,"parentId":1071,"tags":{},"startTime":1776263588957,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":921,"timestamp":6656641872323,"id":1137,"parentId":1073,"tags":{},"startTime":1776263588957,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":887,"timestamp":6656641872358,"id":1138,"parentId":1074,"tags":{},"startTime":1776263588957,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":864,"timestamp":6656641872383,"id":1139,"parentId":1079,"tags":{},"startTime":1776263588957,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":814,"timestamp":6656641872432,"id":1140,"parentId":1082,"tags":{},"startTime":1776263588957,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":790,"timestamp":6656641872457,"id":1141,"parentId":1086,"tags":{},"startTime":1776263588957,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":765,"timestamp":6656641872482,"id":1142,"parentId":1092,"tags":{},"startTime":1776263588957,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2530,"timestamp":6656641870905,"id":1071,"parentId":930,"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":1776263588955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2665,"timestamp":6656641871042,"id":1073,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776263588955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2695,"timestamp":6656641871083,"id":1074,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776263588955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3389,"timestamp":6656641871202,"id":1079,"parentId":950,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3421,"timestamp":6656641871295,"id":1082,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3575,"timestamp":6656641871413,"id":1086,"parentId":968,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3727,"timestamp":6656641871566,"id":1092,"parentId":965,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4338,"timestamp":6656641871883,"id":1109,"parentId":1108,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4347,"timestamp":6656641871875,"id":1108,"parentId":1077,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5790,"timestamp":6656641871162,"id":1077,"parentId":944,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5204,"timestamp":6656641871849,"id":1103,"parentId":1102,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5271,"timestamp":6656641871805,"id":1102,"parentId":1072,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-ts","duration":7213,"timestamp":6656641870990,"id":1072,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776263588955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6345,"timestamp":6656641871874,"id":1107,"parentId":1106,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6355,"timestamp":6656641871866,"id":1106,"parentId":1076,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7433,"timestamp":6656641871142,"id":1076,"parentId":944,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6723,"timestamp":6656641871865,"id":1105,"parentId":1104,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6737,"timestamp":6656641871851,"id":1104,"parentId":1075,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7944,"timestamp":6656641871121,"id":1075,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7195,"timestamp":6656641871899,"id":1113,"parentId":1112,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7202,"timestamp":6656641871892,"id":1112,"parentId":1080,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8141,"timestamp":6656641871256,"id":1080,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7502,"timestamp":6656641871914,"id":1117,"parentId":1116,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7510,"timestamp":6656641871907,"id":1116,"parentId":1083,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8444,"timestamp":6656641871338,"id":1083,"parentId":958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7896,"timestamp":6656641871906,"id":1115,"parentId":1114,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7903,"timestamp":6656641871899,"id":1114,"parentId":1081,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8917,"timestamp":6656641871276,"id":1081,"parentId":958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8325,"timestamp":6656641871891,"id":1111,"parentId":1110,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8332,"timestamp":6656641871884,"id":1110,"parentId":1078,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9597,"timestamp":6656641871181,"id":1078,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13110,"timestamp":6656641871937,"id":1123,"parentId":1122,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13120,"timestamp":6656641871930,"id":1122,"parentId":1087,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14221,"timestamp":6656641871450,"id":1087,"parentId":962,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13772,"timestamp":6656641871921,"id":1119,"parentId":1118,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13780,"timestamp":6656641871915,"id":1118,"parentId":1084,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15725,"timestamp":6656641871370,"id":1084,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15203,"timestamp":6656641871929,"id":1121,"parentId":1120,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15212,"timestamp":6656641871922,"id":1120,"parentId":1085,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16345,"timestamp":6656641871390,"id":1085,"parentId":1033,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15801,"timestamp":6656641871956,"id":1125,"parentId":1124,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15819,"timestamp":6656641871938,"id":1124,"parentId":1088,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16986,"timestamp":6656641871469,"id":1088,"parentId":962,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":16482,"timestamp":6656641871986,"id":1133,"parentId":1132,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":16490,"timestamp":6656641871980,"id":1132,"parentId":1093,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17520,"timestamp":6656641871617,"id":1093,"parentId":1033,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":17198,"timestamp":6656641871964,"id":1127,"parentId":1126,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":17206,"timestamp":6656641871956,"id":1126,"parentId":1089,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19237,"timestamp":6656641871486,"id":1089,"parentId":962,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":19019,"timestamp":6656641871979,"id":1131,"parentId":1130,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":19027,"timestamp":6656641871972,"id":1130,"parentId":1091,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20951,"timestamp":6656641871542,"id":1091,"parentId":1033,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21539,"timestamp":6656641871972,"id":1129,"parentId":1128,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":21638,"timestamp":6656641871965,"id":1128,"parentId":1090,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22829,"timestamp":6656641871521,"id":1090,"parentId":962,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22424,"timestamp":6656641871994,"id":1135,"parentId":1134,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22432,"timestamp":6656641871987,"id":1134,"parentId":1094,"tags":{},"startTime":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23917,"timestamp":6656641871650,"id":1094,"parentId":968,"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":1776263588956,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12148,"timestamp":6656641883430,"id":1164,"parentId":1163,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12157,"timestamp":6656641883422,"id":1163,"parentId":1145,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13185,"timestamp":6656641882786,"id":1145,"parentId":968,"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":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12600,"timestamp":6656641883409,"id":1160,"parentId":1159,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12628,"timestamp":6656641883382,"id":1159,"parentId":1143,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13929,"timestamp":6656641882650,"id":1143,"parentId":968,"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":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13186,"timestamp":6656641883421,"id":1162,"parentId":1161,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13197,"timestamp":6656641883411,"id":1161,"parentId":1144,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14581,"timestamp":6656641882751,"id":1144,"parentId":968,"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":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":19847,"timestamp":6656641883438,"id":1166,"parentId":1165,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":19857,"timestamp":6656641883430,"id":1165,"parentId":1146,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22598,"timestamp":6656641882813,"id":1146,"parentId":968,"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":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21985,"timestamp":6656641883445,"id":1168,"parentId":1167,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21993,"timestamp":6656641883438,"id":1167,"parentId":1147,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22992,"timestamp":6656641882945,"id":1147,"parentId":968,"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":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22566,"timestamp":6656641883469,"id":1174,"parentId":1173,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22574,"timestamp":6656641883463,"id":1173,"parentId":1150,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23369,"timestamp":6656641883061,"id":1150,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22991,"timestamp":6656641883455,"id":1170,"parentId":1169,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23001,"timestamp":6656641883446,"id":1169,"parentId":1148,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23706,"timestamp":6656641883011,"id":1148,"parentId":968,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":23268,"timestamp":6656641883462,"id":1172,"parentId":1171,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23276,"timestamp":6656641883455,"id":1171,"parentId":1149,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24219,"timestamp":6656641883035,"id":1149,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":23779,"timestamp":6656641883487,"id":1178,"parentId":1177,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23787,"timestamp":6656641883480,"id":1177,"parentId":1152,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24475,"timestamp":6656641883109,"id":1152,"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":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":24119,"timestamp":6656641883511,"id":1182,"parentId":1181,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24127,"timestamp":6656641883504,"id":1181,"parentId":1154,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24812,"timestamp":6656641883146,"id":1154,"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":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":24500,"timestamp":6656641883479,"id":1176,"parentId":1175,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24510,"timestamp":6656641883470,"id":1175,"parentId":1151,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25887,"timestamp":6656641883085,"id":1151,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776263588967,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":25487,"timestamp":6656641883519,"id":1184,"parentId":1183,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25495,"timestamp":6656641883512,"id":1183,"parentId":1155,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26117,"timestamp":6656641883167,"id":1155,"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":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":25800,"timestamp":6656641883503,"id":1180,"parentId":1179,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25816,"timestamp":6656641883488,"id":1179,"parentId":1153,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26796,"timestamp":6656641883128,"id":1153,"parentId":1046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":26402,"timestamp":6656641883533,"id":1188,"parentId":1187,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26410,"timestamp":6656641883526,"id":1187,"parentId":1157,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26994,"timestamp":6656641883208,"id":1157,"parentId":1033,"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":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":26662,"timestamp":6656641883560,"id":1190,"parentId":1189,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26689,"timestamp":6656641883534,"id":1189,"parentId":1158,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-ts","duration":27361,"timestamp":6656641883248,"id":1158,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":27095,"timestamp":6656641883526,"id":1186,"parentId":1185,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27102,"timestamp":6656641883519,"id":1185,"parentId":1156,"tags":{},"startTime":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28747,"timestamp":6656641883188,"id":1156,"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":1776263588968,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":381,"timestamp":6656641914941,"id":1199,"parentId":1191,"tags":{},"startTime":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4331,"timestamp":6656641915329,"id":1213,"parentId":1191,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5922,"timestamp":6656641914166,"id":1191,"parentId":1060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5753,"timestamp":6656641915167,"id":1202,"parentId":1201,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5791,"timestamp":6656641915133,"id":1201,"parentId":1192,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7122,"timestamp":6656641914265,"id":1192,"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":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6211,"timestamp":6656641915191,"id":1206,"parentId":1205,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6221,"timestamp":6656641915183,"id":1205,"parentId":1194,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7310,"timestamp":6656641914350,"id":1194,"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":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6474,"timestamp":6656641915199,"id":1208,"parentId":1207,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6482,"timestamp":6656641915192,"id":1207,"parentId":1195,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7398,"timestamp":6656641914472,"id":1195,"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":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6698,"timestamp":6656641915181,"id":1204,"parentId":1203,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6709,"timestamp":6656641915170,"id":1203,"parentId":1193,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7807,"timestamp":6656641914323,"id":1193,"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":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6920,"timestamp":6656641915219,"id":1210,"parentId":1209,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6939,"timestamp":6656641915200,"id":1209,"parentId":1196,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7867,"timestamp":6656641914498,"id":1196,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7145,"timestamp":6656641915228,"id":1212,"parentId":1211,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7153,"timestamp":6656641915220,"id":1211,"parentId":1198,"tags":{},"startTime":1776263589000,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7666,"timestamp":6656641914901,"id":1198,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":545,"timestamp":6656641925338,"id":1233,"parentId":1231,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":537,"timestamp":6656641925901,"id":1269,"parentId":1231,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1879,"timestamp":6656641925182,"id":1231,"parentId":1143,"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":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2610,"timestamp":6656641925494,"id":1240,"parentId":1239,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2620,"timestamp":6656641925486,"id":1239,"parentId":1216,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3781,"timestamp":6656641924678,"id":1216,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2999,"timestamp":6656641925471,"id":1236,"parentId":1235,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3034,"timestamp":6656641925437,"id":1235,"parentId":1214,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4101,"timestamp":6656641924576,"id":1214,"parentId":1033,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3183,"timestamp":6656641925502,"id":1242,"parentId":1241,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3191,"timestamp":6656641925495,"id":1241,"parentId":1217,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4306,"timestamp":6656641924698,"id":1217,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8968,"timestamp":6656641925485,"id":1238,"parentId":1237,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8981,"timestamp":6656641925474,"id":1237,"parentId":1215,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10228,"timestamp":6656641924646,"id":1215,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9376,"timestamp":6656641925510,"id":1244,"parentId":1243,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9384,"timestamp":6656641925503,"id":1243,"parentId":1218,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10433,"timestamp":6656641924718,"id":1218,"parentId":1077,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9627,"timestamp":6656641925537,"id":1250,"parentId":1249,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9634,"timestamp":6656641925530,"id":1249,"parentId":1221,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10740,"timestamp":6656641924782,"id":1221,"parentId":1084,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10024,"timestamp":6656641925519,"id":1246,"parentId":1245,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10033,"timestamp":6656641925511,"id":1245,"parentId":1219,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11059,"timestamp":6656641924740,"id":1219,"parentId":1092,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10266,"timestamp":6656641925545,"id":1252,"parentId":1251,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10273,"timestamp":6656641925538,"id":1251,"parentId":1222,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11604,"timestamp":6656641924805,"id":1222,"parentId":1090,"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":1776263589009,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-transform","duration":11046,"timestamp":6656641925529,"id":1248,"parentId":1247,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11057,"timestamp":6656641925521,"id":1247,"parentId":1220,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12474,"timestamp":6656641924763,"id":1220,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11690,"timestamp":6656641925561,"id":1256,"parentId":1255,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11697,"timestamp":6656641925554,"id":1255,"parentId":1224,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12681,"timestamp":6656641924845,"id":1224,"parentId":1091,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11981,"timestamp":6656641925553,"id":1254,"parentId":1253,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11989,"timestamp":6656641925546,"id":1253,"parentId":1223,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12941,"timestamp":6656641924826,"id":1223,"parentId":1089,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12211,"timestamp":6656641925569,"id":1258,"parentId":1257,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12218,"timestamp":6656641925562,"id":1257,"parentId":1225,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13246,"timestamp":6656641924864,"id":1225,"parentId":1091,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12533,"timestamp":6656641925584,"id":1262,"parentId":1261,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12541,"timestamp":6656641925577,"id":1261,"parentId":1227,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13460,"timestamp":6656641924903,"id":1227,"parentId":1091,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12779,"timestamp":6656641925591,"id":1264,"parentId":1263,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12786,"timestamp":6656641925584,"id":1263,"parentId":1228,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13674,"timestamp":6656641925065,"id":1228,"parentId":1091,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13715,"timestamp":6656641925599,"id":1266,"parentId":1265,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13724,"timestamp":6656641925592,"id":1265,"parentId":1229,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14574,"timestamp":6656641925115,"id":1229,"parentId":1091,"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":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14095,"timestamp":6656641925606,"id":1268,"parentId":1267,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14103,"timestamp":6656641925600,"id":1267,"parentId":1230,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14902,"timestamp":6656641925138,"id":1230,"parentId":1091,"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":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":20574,"timestamp":6656641925576,"id":1260,"parentId":1259,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":20583,"timestamp":6656641925569,"id":1259,"parentId":1226,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23390,"timestamp":6656641924881,"id":1226,"parentId":1091,"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":1776263589009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14072,"timestamp":6656641934212,"id":1284,"parentId":1283,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14086,"timestamp":6656641934200,"id":1283,"parentId":1271,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18111,"timestamp":6656641930451,"id":1271,"parentId":1144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14379,"timestamp":6656641934196,"id":1282,"parentId":1281,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14414,"timestamp":6656641934162,"id":1281,"parentId":1270,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18512,"timestamp":6656641930379,"id":1270,"parentId":1151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14670,"timestamp":6656641934233,"id":1288,"parentId":1287,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14678,"timestamp":6656641934225,"id":1287,"parentId":1273,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18614,"timestamp":6656641930504,"id":1273,"parentId":1149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14906,"timestamp":6656641934223,"id":1286,"parentId":1285,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14916,"timestamp":6656641934214,"id":1285,"parentId":1272,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18989,"timestamp":6656641930482,"id":1272,"parentId":1149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15228,"timestamp":6656641934251,"id":1292,"parentId":1291,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15237,"timestamp":6656641934243,"id":1291,"parentId":1275,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19153,"timestamp":6656641930544,"id":1275,"parentId":1157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15482,"timestamp":6656641934261,"id":1294,"parentId":1293,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15491,"timestamp":6656641934253,"id":1293,"parentId":1276,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19524,"timestamp":6656641930568,"id":1276,"parentId":1149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15829,"timestamp":6656641934269,"id":1296,"parentId":1295,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15837,"timestamp":6656641934262,"id":1295,"parentId":1277,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19726,"timestamp":6656641930587,"id":1277,"parentId":1146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":16084,"timestamp":6656641934242,"id":1290,"parentId":1289,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":16092,"timestamp":6656641934234,"id":1289,"parentId":1274,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20105,"timestamp":6656641930524,"id":1274,"parentId":1149,"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":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36833,"timestamp":6656641914945,"id":1200,"parentId":1197,"tags":{},"startTime":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6656641951787,"id":1297,"parentId":1197,"tags":{},"startTime":1776263589036,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37119,"timestamp":6656641914860,"id":1197,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776263588999,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35101,"timestamp":6656641925341,"id":1234,"parentId":1232,"tags":{},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6656641960458,"id":1298,"parentId":1232,"tags":{},"startTime":1776263589045,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36023,"timestamp":6656641925272,"id":1232,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776263589010,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30772,"timestamp":6656641934118,"id":1280,"parentId":1278,"tags":{},"startTime":1776263589019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6656641964917,"id":1299,"parentId":1278,"tags":{},"startTime":1776263589049,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34762,"timestamp":6656641930609,"id":1278,"parentId":933,"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":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5092,"timestamp":6656641967370,"id":1314,"parentId":1313,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5103,"timestamp":6656641967363,"id":1313,"parentId":1302,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5696,"timestamp":6656641967103,"id":1302,"parentId":1219,"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":1776263589051,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":605,"timestamp":6656641976072,"id":1328,"parentId":1327,"tags":{},"startTime":1776263589060,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":970,"timestamp":6656641991123,"id":1351,"parentId":1332,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6656641992108,"id":1392,"parentId":1332,"tags":{},"startTime":1776263589077,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16232,"timestamp":6656641976228,"id":1332,"parentId":1225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":25140,"timestamp":6656641967362,"id":1312,"parentId":1311,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25153,"timestamp":6656641967350,"id":1311,"parentId":1301,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26195,"timestamp":6656641967073,"id":1301,"parentId":1222,"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":1776263589051,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":25904,"timestamp":6656641967390,"id":1318,"parentId":1317,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25912,"timestamp":6656641967383,"id":1317,"parentId":1304,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26608,"timestamp":6656641967144,"id":1304,"parentId":1221,"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":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":26422,"timestamp":6656641967347,"id":1310,"parentId":1309,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26452,"timestamp":6656641967318,"id":1309,"parentId":1300,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27666,"timestamp":6656641966994,"id":1300,"parentId":1223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776263589051,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":27356,"timestamp":6656641967397,"id":1320,"parentId":1319,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27374,"timestamp":6656641967391,"id":1319,"parentId":1305,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28794,"timestamp":6656641967163,"id":1305,"parentId":1221,"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":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":28628,"timestamp":6656641967378,"id":1316,"parentId":1315,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28636,"timestamp":6656641967371,"id":1315,"parentId":1303,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30246,"timestamp":6656641967124,"id":1303,"parentId":1221,"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":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":29990,"timestamp":6656641967404,"id":1322,"parentId":1321,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29997,"timestamp":6656641967398,"id":1321,"parentId":1306,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30619,"timestamp":6656641967187,"id":1306,"parentId":1221,"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":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":35818,"timestamp":6656641967411,"id":1324,"parentId":1323,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35829,"timestamp":6656641967405,"id":1323,"parentId":1307,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36540,"timestamp":6656641967204,"id":1307,"parentId":1221,"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":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":36351,"timestamp":6656641967418,"id":1326,"parentId":1325,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36359,"timestamp":6656641967412,"id":1325,"parentId":1308,"tags":{},"startTime":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37215,"timestamp":6656641967222,"id":1308,"parentId":1221,"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":1776263589052,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":331,"timestamp":6656642007265,"id":1402,"parentId":1393,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3838,"timestamp":6656642007604,"id":1411,"parentId":1393,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5467,"timestamp":6656642006464,"id":1393,"parentId":1271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776263589091,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":20499,"timestamp":6656641991480,"id":1357,"parentId":1356,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":20510,"timestamp":6656641991471,"id":1356,"parentId":1331,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36145,"timestamp":6656641976199,"id":1331,"parentId":1225,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":20899,"timestamp":6656641991469,"id":1355,"parentId":1354,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":20912,"timestamp":6656641991457,"id":1354,"parentId":1330,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36422,"timestamp":6656641976167,"id":1330,"parentId":1225,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21112,"timestamp":6656641991490,"id":1359,"parentId":1358,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":21218,"timestamp":6656641991482,"id":1358,"parentId":1333,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36722,"timestamp":6656641976276,"id":1333,"parentId":1225,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21555,"timestamp":6656641991453,"id":1353,"parentId":1352,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21597,"timestamp":6656641991412,"id":1352,"parentId":1329,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37179,"timestamp":6656641976094,"id":1329,"parentId":1225,"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":1776263589060,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21781,"timestamp":6656641991500,"id":1361,"parentId":1360,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21791,"timestamp":6656641991492,"id":1360,"parentId":1334,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37378,"timestamp":6656641976304,"id":1334,"parentId":1228,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22181,"timestamp":6656641991510,"id":1363,"parentId":1362,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22189,"timestamp":6656641991501,"id":1362,"parentId":1335,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37603,"timestamp":6656641976329,"id":1335,"parentId":1228,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22404,"timestamp":6656641991535,"id":1365,"parentId":1364,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22428,"timestamp":6656641991511,"id":1364,"parentId":1336,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37794,"timestamp":6656641976351,"id":1336,"parentId":1228,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22594,"timestamp":6656641991557,"id":1367,"parentId":1366,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22616,"timestamp":6656641991536,"id":1366,"parentId":1337,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37966,"timestamp":6656641976372,"id":1337,"parentId":1228,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22777,"timestamp":6656641991566,"id":1369,"parentId":1368,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22785,"timestamp":6656641991558,"id":1368,"parentId":1338,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38145,"timestamp":6656641976392,"id":1338,"parentId":1225,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22967,"timestamp":6656641991576,"id":1371,"parentId":1370,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22976,"timestamp":6656641991568,"id":1370,"parentId":1339,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38340,"timestamp":6656641976412,"id":1339,"parentId":1228,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":23165,"timestamp":6656641991595,"id":1375,"parentId":1374,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23173,"timestamp":6656641991587,"id":1374,"parentId":1341,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38473,"timestamp":6656641976450,"id":1341,"parentId":1226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":23344,"timestamp":6656641991586,"id":1373,"parentId":1372,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23354,"timestamp":6656641991577,"id":1372,"parentId":1340,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39940,"timestamp":6656641976431,"id":1340,"parentId":1196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":24780,"timestamp":6656641991604,"id":1377,"parentId":1376,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24789,"timestamp":6656641991596,"id":1376,"parentId":1342,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40216,"timestamp":6656641976471,"id":1342,"parentId":1226,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":25083,"timestamp":6656641991614,"id":1379,"parentId":1378,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25092,"timestamp":6656641991605,"id":1378,"parentId":1343,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40432,"timestamp":6656641976491,"id":1343,"parentId":1226,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":25280,"timestamp":6656641991653,"id":1387,"parentId":1386,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25288,"timestamp":6656641991646,"id":1386,"parentId":1347,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40554,"timestamp":6656641976574,"id":1347,"parentId":1226,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":25523,"timestamp":6656641991625,"id":1381,"parentId":1380,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25533,"timestamp":6656641991615,"id":1380,"parentId":1344,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41152,"timestamp":6656641976511,"id":1344,"parentId":1226,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":26042,"timestamp":6656641991635,"id":1383,"parentId":1382,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26050,"timestamp":6656641991627,"id":1382,"parentId":1345,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41670,"timestamp":6656641976530,"id":1345,"parentId":1228,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":26549,"timestamp":6656641991663,"id":1389,"parentId":1388,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26559,"timestamp":6656641991655,"id":1388,"parentId":1348,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41792,"timestamp":6656641976634,"id":1348,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":26806,"timestamp":6656641991644,"id":1385,"parentId":1384,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26815,"timestamp":6656641991636,"id":1384,"parentId":1346,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42247,"timestamp":6656641976550,"id":1346,"parentId":1230,"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":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":27132,"timestamp":6656641991672,"id":1391,"parentId":1390,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27140,"timestamp":6656641991665,"id":1390,"parentId":1349,"tags":{},"startTime":1776263589076,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42412,"timestamp":6656641976657,"id":1349,"parentId":1215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12111,"timestamp":6656642007507,"id":1406,"parentId":1405,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12125,"timestamp":6656642007495,"id":1405,"parentId":1395,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13197,"timestamp":6656642006621,"id":1395,"parentId":1276,"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":1776263589091,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12314,"timestamp":6656642007517,"id":1408,"parentId":1407,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12323,"timestamp":6656642007508,"id":1407,"parentId":1396,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13322,"timestamp":6656642006724,"id":1396,"parentId":1274,"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":1776263589091,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12569,"timestamp":6656642007491,"id":1404,"parentId":1403,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12604,"timestamp":6656642007456,"id":1403,"parentId":1394,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14000,"timestamp":6656642006554,"id":1394,"parentId":1276,"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":1776263589091,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13043,"timestamp":6656642007527,"id":1410,"parentId":1409,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13051,"timestamp":6656642007518,"id":1409,"parentId":1397,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14401,"timestamp":6656642006773,"id":1397,"parentId":1274,"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":1776263589091,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":302,"timestamp":6656642033400,"id":1425,"parentId":1423,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":332,"timestamp":6656642033403,"id":1426,"parentId":1424,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6656642033710,"id":1445,"parentId":1423,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6656642033737,"id":1446,"parentId":1424,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":654,"timestamp":6656642033314,"id":1423,"parentId":1300,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":692,"timestamp":6656642033353,"id":1424,"parentId":1300,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":359,"timestamp":6656642035252,"id":1468,"parentId":1448,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6656642035615,"id":1509,"parentId":1448,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1253,"timestamp":6656642034844,"id":1448,"parentId":1397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2613,"timestamp":6656642033504,"id":1428,"parentId":1427,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2648,"timestamp":6656642033470,"id":1427,"parentId":1414,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3594,"timestamp":6656642033030,"id":1414,"parentId":1301,"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":1776263589117,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3112,"timestamp":6656642033526,"id":1432,"parentId":1431,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3121,"timestamp":6656642033518,"id":1431,"parentId":1416,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3735,"timestamp":6656642033171,"id":1416,"parentId":1304,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3375,"timestamp":6656642033544,"id":1434,"parentId":1433,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3393,"timestamp":6656642033527,"id":1433,"parentId":1417,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4082,"timestamp":6656642033198,"id":1417,"parentId":1304,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3777,"timestamp":6656642033517,"id":1430,"parentId":1429,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3789,"timestamp":6656642033506,"id":1429,"parentId":1415,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4912,"timestamp":6656642033136,"id":1415,"parentId":1304,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4535,"timestamp":6656642033552,"id":1436,"parentId":1435,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4543,"timestamp":6656642033545,"id":1435,"parentId":1418,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5174,"timestamp":6656642033220,"id":1418,"parentId":1304,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4834,"timestamp":6656642033573,"id":1442,"parentId":1441,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4841,"timestamp":6656642033567,"id":1441,"parentId":1421,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5371,"timestamp":6656642033278,"id":1421,"parentId":1303,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32500,"timestamp":6656642007245,"id":1401,"parentId":1400,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32660,"timestamp":6656642007233,"id":1400,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32690,"timestamp":6656642007211,"id":1399,"parentId":1398,"tags":{},"startTime":1776263589092,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33156,"timestamp":6656642006802,"id":1398,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776263589091,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6409,"timestamp":6656642033566,"id":1440,"parentId":1439,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6416,"timestamp":6656642033560,"id":1439,"parentId":1420,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7108,"timestamp":6656642033260,"id":1420,"parentId":1303,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6799,"timestamp":6656642033580,"id":1444,"parentId":1443,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6806,"timestamp":6656642033574,"id":1443,"parentId":1422,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":7564,"timestamp":6656642033296,"id":1422,"parentId":1303,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6897,"timestamp":6656642035294,"id":1470,"parentId":1469,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6915,"timestamp":6656642035277,"id":1469,"parentId":1447,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7668,"timestamp":6656642034809,"id":1447,"parentId":1393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7181,"timestamp":6656642035304,"id":1472,"parentId":1471,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7190,"timestamp":6656642035296,"id":1471,"parentId":1449,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7810,"timestamp":6656642034883,"id":1449,"parentId":1397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7392,"timestamp":6656642035312,"id":1474,"parentId":1473,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7400,"timestamp":6656642035305,"id":1473,"parentId":1450,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8224,"timestamp":6656642034906,"id":1450,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7837,"timestamp":6656642035329,"id":1478,"parentId":1477,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7845,"timestamp":6656642035322,"id":1477,"parentId":1452,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8505,"timestamp":6656642034948,"id":1452,"parentId":1344,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8126,"timestamp":6656642035337,"id":1480,"parentId":1479,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8133,"timestamp":6656642035330,"id":1479,"parentId":1453,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8758,"timestamp":6656642034968,"id":1453,"parentId":1345,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10217,"timestamp":6656642033559,"id":1438,"parentId":1437,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10224,"timestamp":6656642033553,"id":1437,"parentId":1419,"tags":{},"startTime":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11608,"timestamp":6656642033240,"id":1419,"parentId":1305,"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":1776263589118,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9521,"timestamp":6656642035345,"id":1482,"parentId":1481,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9529,"timestamp":6656642035337,"id":1481,"parentId":1454,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10314,"timestamp":6656642034986,"id":1454,"parentId":1331,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9960,"timestamp":6656642035353,"id":1484,"parentId":1483,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9967,"timestamp":6656642035346,"id":1483,"parentId":1455,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11591,"timestamp":6656642035005,"id":1455,"parentId":1330,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11301,"timestamp":6656642035321,"id":1476,"parentId":1475,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11309,"timestamp":6656642035313,"id":1475,"parentId":1451,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12565,"timestamp":6656642034928,"id":1451,"parentId":1342,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12153,"timestamp":6656642035361,"id":1486,"parentId":1485,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12161,"timestamp":6656642035354,"id":1485,"parentId":1456,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12918,"timestamp":6656642035026,"id":1456,"parentId":1329,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12710,"timestamp":6656642035376,"id":1490,"parentId":1489,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12719,"timestamp":6656642035369,"id":1489,"parentId":1458,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13310,"timestamp":6656642035066,"id":1458,"parentId":1329,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13003,"timestamp":6656642035384,"id":1492,"parentId":1491,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13011,"timestamp":6656642035377,"id":1491,"parentId":1459,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13513,"timestamp":6656642035085,"id":1459,"parentId":1329,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13237,"timestamp":6656642035369,"id":1488,"parentId":1487,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13245,"timestamp":6656642035362,"id":1487,"parentId":1457,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13762,"timestamp":6656642035045,"id":1457,"parentId":1329,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13422,"timestamp":6656642035392,"id":1494,"parentId":1493,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13430,"timestamp":6656642035385,"id":1493,"parentId":1460,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13909,"timestamp":6656642035103,"id":1460,"parentId":1329,"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":1776263589119,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13619,"timestamp":6656642035399,"id":1496,"parentId":1495,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13627,"timestamp":6656642035392,"id":1495,"parentId":1461,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14081,"timestamp":6656642035121,"id":1461,"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":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13793,"timestamp":6656642035415,"id":1500,"parentId":1499,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13801,"timestamp":6656642035408,"id":1499,"parentId":1463,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14272,"timestamp":6656642035157,"id":1463,"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":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14014,"timestamp":6656642035422,"id":1502,"parentId":1501,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14021,"timestamp":6656642035416,"id":1501,"parentId":1464,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14477,"timestamp":6656642035175,"id":1464,"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":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14256,"timestamp":6656642035407,"id":1498,"parentId":1497,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14263,"timestamp":6656642035400,"id":1497,"parentId":1462,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14867,"timestamp":6656642035139,"id":1462,"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":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15003,"timestamp":6656642035445,"id":1508,"parentId":1507,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15011,"timestamp":6656642035439,"id":1507,"parentId":1467,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15417,"timestamp":6656642035229,"id":1467,"parentId":1345,"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":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":305194,"timestamp":6656642022979,"id":1413,"parentId":1412,"tags":{},"startTime":1776263589107,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":305535,"timestamp":6656642022948,"id":1412,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776263589107,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":293098,"timestamp":6656642035438,"id":1506,"parentId":1505,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":293106,"timestamp":6656642035431,"id":1505,"parentId":1466,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":293894,"timestamp":6656642035212,"id":1466,"parentId":1345,"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":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":293698,"timestamp":6656642035430,"id":1504,"parentId":1503,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":293706,"timestamp":6656642035423,"id":1503,"parentId":1465,"tags":{},"startTime":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":295335,"timestamp":6656642035193,"id":1465,"parentId":1347,"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":1776263589120,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":188,"timestamp":6656642343104,"id":1527,"parentId":1526,"tags":{},"startTime":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6656642343300,"id":1542,"parentId":1526,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1696,"timestamp":6656642343056,"id":1526,"parentId":1454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":303508,"timestamp":6656642042028,"id":1511,"parentId":1510,"tags":{},"startTime":1776263589126,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":303714,"timestamp":6656642042008,"id":1510,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776263589126,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":303675,"timestamp":6656642042053,"id":1513,"parentId":1512,"tags":{},"startTime":1776263589126,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":303810,"timestamp":6656642042043,"id":1512,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776263589126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2759,"timestamp":6656642343139,"id":1529,"parentId":1528,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2792,"timestamp":6656642343107,"id":1528,"parentId":1519,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3392,"timestamp":6656642342828,"id":1519,"parentId":1456,"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":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3072,"timestamp":6656642343164,"id":1533,"parentId":1532,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3082,"timestamp":6656642343155,"id":1532,"parentId":1521,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3653,"timestamp":6656642342925,"id":1521,"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":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5496,"timestamp":6656642343153,"id":1531,"parentId":1530,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5509,"timestamp":6656642343142,"id":1530,"parentId":1520,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6146,"timestamp":6656642342894,"id":1520,"parentId":1466,"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":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5869,"timestamp":6656642343182,"id":1537,"parentId":1536,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5877,"timestamp":6656642343174,"id":1536,"parentId":1523,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6376,"timestamp":6656642342975,"id":1523,"parentId":1455,"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":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42668,"timestamp":6656642332778,"id":1516,"parentId":1515,"tags":{},"startTime":1776263589417,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42914,"timestamp":6656642332747,"id":1515,"parentId":1033,"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":1776263589417,"traceId":"c730e3ac75d31d11"},{"name":"postcss-process","duration":221773,"timestamp":6656642244961,"id":1514,"parentId":1350,"tags":{},"startTime":1776263589329,"traceId":"c730e3ac75d31d11"},{"name":"postcss-loader","duration":490868,"timestamp":6656641976775,"id":1350,"parentId":1327,"tags":{},"startTime":1776263589061,"traceId":"c730e3ac75d31d11"},{"name":"css-loader","duration":28367,"timestamp":6656642467754,"id":1543,"parentId":1327,"tags":{"astUsed":"true"},"startTime":1776263589552,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":154139,"timestamp":6656642343190,"id":1539,"parentId":1538,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":154151,"timestamp":6656642343183,"id":1538,"parentId":1524,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":155090,"timestamp":6656642343005,"id":1524,"parentId":1467,"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":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":154916,"timestamp":6656642343199,"id":1541,"parentId":1540,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":154924,"timestamp":6656642343191,"id":1540,"parentId":1525,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":155457,"timestamp":6656642343029,"id":1525,"parentId":1466,"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":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":160911,"timestamp":6656642343173,"id":1535,"parentId":1534,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":160922,"timestamp":6656642343165,"id":1534,"parentId":1522,"tags":{},"startTime":1776263589428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":167005,"timestamp":6656642342950,"id":1522,"parentId":1455,"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":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":167701,"timestamp":6656642342269,"id":1518,"parentId":1517,"tags":{},"startTime":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6656642509977,"id":1550,"parentId":1517,"tags":{},"startTime":1776263589594,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":168076,"timestamp":6656642342148,"id":1517,"parentId":933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776263589427,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1417,"timestamp":6656642511042,"id":1553,"parentId":1552,"tags":{},"startTime":1776263589595,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1452,"timestamp":6656642511009,"id":1552,"parentId":1551,"tags":{},"startTime":1776263589595,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1958,"timestamp":6656642510901,"id":1551,"parentId":1521,"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":1776263589595,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27,"timestamp":6656642514938,"id":1556,"parentId":1554,"tags":{},"startTime":1776263589599,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":95,"timestamp":6656642514940,"id":1557,"parentId":1555,"tags":{},"startTime":1776263589599,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":93,"timestamp":6656642514970,"id":1558,"parentId":1554,"tags":{},"startTime":1776263589599,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6656642515038,"id":1559,"parentId":1555,"tags":{},"startTime":1776263589599,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2922,"timestamp":6656642514797,"id":1554,"parentId":1522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776263589599,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3313,"timestamp":6656642514880,"id":1555,"parentId":1522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776263589599,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19363,"timestamp":6656642499370,"id":1549,"parentId":1548,"tags":{},"startTime":1776263589584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23753,"timestamp":6656642499362,"id":1548,"parentId":1412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776263589584,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":23806,"timestamp":6656642499325,"id":1545,"parentId":1544,"tags":{},"startTime":1776263589584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25454,"timestamp":6656642499286,"id":1544,"parentId":1400,"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":1776263589584,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25399,"timestamp":6656642499355,"id":1547,"parentId":1546,"tags":{},"startTime":1776263589584,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27078,"timestamp":6656642499339,"id":1546,"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":1776263589584,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":781879,"timestamp":6656641746497,"id":884,"parentId":881,"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":1776263588831,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10908,"timestamp":6656642518640,"id":1563,"parentId":1562,"tags":{},"startTime":1776263589603,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11059,"timestamp":6656642518624,"id":1562,"parentId":1515,"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":1776263589603,"traceId":"c730e3ac75d31d11"},{"name":"build-module-css","duration":557304,"timestamp":6656641972897,"id":1327,"parentId":1279,"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":1776263589057,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1428,"timestamp":6656642528961,"id":1565,"parentId":1564,"tags":{},"startTime":1776263589613,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6656642530396,"id":1566,"parentId":1564,"tags":{},"startTime":1776263589615,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2540,"timestamp":6656642528853,"id":1564,"parentId":1517,"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":1776263589613,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":785087,"timestamp":6656641746347,"id":882,"parentId":881,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776263588831,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":13615,"timestamp":6656642518609,"id":1561,"parentId":1560,"tags":{},"startTime":1776263589603,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":80568,"timestamp":6656642518568,"id":1560,"parentId":1510,"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":1776263589603,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2216,"timestamp":6656642600620,"id":1568,"parentId":1567,"tags":{},"startTime":1776263589685,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7292,"timestamp":6656642600552,"id":1567,"parentId":1562,"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":1776263589685,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":7966,"timestamp":6656642602484,"id":1570,"parentId":1569,"tags":{},"startTime":1776263589687,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8806,"timestamp":6656642602089,"id":1569,"parentId":1327,"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":1776263589686,"traceId":"c730e3ac75d31d11"},{"name":"build-module-css","duration":685828,"timestamp":6656641930654,"id":1279,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776263589015,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":68,"timestamp":6656642617493,"id":1571,"parentId":1279,"tags":{},"startTime":1776263589702,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":871253,"timestamp":6656641746562,"id":885,"parentId":881,"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":1776263588831,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":980,"timestamp":6656642620749,"id":1573,"parentId":1572,"tags":{},"startTime":1776263589705,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":46,"timestamp":6656642621745,"id":1574,"parentId":1572,"tags":{},"startTime":1776263589706,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1376,"timestamp":6656642620640,"id":1572,"parentId":1560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776263589705,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1057,"timestamp":6656642623696,"id":1576,"parentId":1575,"tags":{},"startTime":1776263589708,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6656642624762,"id":1577,"parentId":1575,"tags":{},"startTime":1776263589709,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2695,"timestamp":6656642623606,"id":1575,"parentId":1572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776263589708,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":880087,"timestamp":6656641746457,"id":883,"parentId":881,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776263588831,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":879974,"timestamp":6656641746573,"id":886,"parentId":881,"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":1776263588831,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":882634,"timestamp":6656641744151,"id":881,"parentId":880,"tags":{},"startTime":1776263588829,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":2644,"timestamp":6656642630756,"id":1579,"parentId":1578,"tags":{},"startTime":1776263589715,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":4,"timestamp":6656642633433,"id":1581,"parentId":1578,"tags":{},"startTime":1776263589718,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":44,"timestamp":6656642633448,"id":1582,"parentId":1578,"tags":{},"startTime":1776263589718,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":4,"timestamp":6656642633525,"id":1583,"parentId":1578,"tags":{},"startTime":1776263589718,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6656642633538,"id":1584,"parentId":1578,"tags":{},"startTime":1776263589718,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":785,"timestamp":6656642633415,"id":1580,"parentId":1578,"tags":{},"startTime":1776263589718,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":3711,"timestamp":6656642635998,"id":1585,"parentId":1578,"tags":{},"startTime":1776263589720,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":14288,"timestamp":6656642639722,"id":1586,"parentId":1578,"tags":{},"startTime":1776263589724,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":8125,"timestamp":6656642655744,"id":1587,"parentId":1578,"tags":{},"startTime":1776263589740,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":279,"timestamp":6656642663868,"id":1588,"parentId":1578,"tags":{},"startTime":1776263589748,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":41,"timestamp":6656642664132,"id":1589,"parentId":1578,"tags":{},"startTime":1776263589749,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":83178,"timestamp":6656642664177,"id":1590,"parentId":1578,"tags":{},"startTime":1776263589749,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":63,"timestamp":6656642747902,"id":1592,"parentId":880,"tags":{},"startTime":1776263589832,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":259,"timestamp":6656642747709,"id":1591,"parentId":880,"tags":{},"startTime":1776263589832,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":119683,"timestamp":6656642630017,"id":1578,"parentId":880,"tags":{},"startTime":1776263589714,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":1005842,"timestamp":6656641743907,"id":880,"parentId":258,"tags":{"name":"client"},"startTime":1776263588828,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":24379,"timestamp":6656642749765,"id":1593,"parentId":258,"tags":{},"startTime":1776263589834,"traceId":"c730e3ac75d31d11"},{"name":"compile-path","duration":1641997,"timestamp":6656641132787,"id":117,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776263588217,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":1425472,"timestamp":6656641349526,"id":258,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776263588434,"traceId":"c730e3ac75d31d11"}] -[{"name":"handle-request","duration":1754796,"timestamp":6656641120383,"id":115,"tags":{"url":"/","isTurbopack":false},"startTime":1776263588205,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":3,"timestamp":6656642875679,"id":1594,"parentId":115,"tags":{"url":"/","memory.rss":"519733248","memory.heapUsed":"220971640","memory.heapTotal":"282296320"},"startTime":1776263589960,"traceId":"c730e3ac75d31d11"},{"name":"client-success","duration":23,"timestamp":6656643930524,"id":1595,"parentId":3,"tags":{},"startTime":1776263591015,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":38470,"timestamp":6656644041619,"id":1613,"parentId":1604,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776263591126,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":39329,"timestamp":6656644042417,"id":1618,"parentId":1604,"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":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":43390,"timestamp":6656644042440,"id":1620,"parentId":1604,"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":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3891,"timestamp":6656644082481,"id":1626,"parentId":1625,"tags":{},"startTime":1776263591167,"traceId":"c730e3ac75d31d11"},{"name":"postcss-process","duration":69012,"timestamp":6656644086968,"id":1628,"parentId":1627,"tags":{},"startTime":1776263591171,"traceId":"c730e3ac75d31d11"},{"name":"postcss-loader","duration":70215,"timestamp":6656644086400,"id":1627,"parentId":1625,"tags":{},"startTime":1776263591171,"traceId":"c730e3ac75d31d11"},{"name":"css-loader","duration":12636,"timestamp":6656644156645,"id":1629,"parentId":1625,"tags":{"astUsed":"true"},"startTime":1776263591241,"traceId":"c730e3ac75d31d11"},{"name":"build-module-css","duration":88218,"timestamp":6656644082340,"id":1625,"parentId":1624,"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":1776263591167,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":129036,"timestamp":6656644042238,"id":1614,"parentId":1604,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"build-module-css","duration":100255,"timestamp":6656644074801,"id":1624,"parentId":1603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776263591159,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":22,"timestamp":6656644175606,"id":1630,"parentId":1624,"tags":{},"startTime":1776263591260,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":133433,"timestamp":6656644042425,"id":1619,"parentId":1604,"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":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":472,"timestamp":6656644543093,"id":1632,"parentId":1631,"tags":{},"startTime":1776263591627,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1565,"timestamp":6656644543030,"id":1631,"parentId":1611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":null},"startTime":1776263591627,"traceId":"c730e3ac75d31d11"},{"name":"next-client-pages-loader","duration":148,"timestamp":6656644555279,"id":1635,"parentId":1634,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1776263591640,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":3402,"timestamp":6656644552826,"id":1634,"parentId":1615,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":null},"startTime":1776263591637,"traceId":"c730e3ac75d31d11"},{"name":"next-client-pages-loader","duration":23,"timestamp":6656644556304,"id":1637,"parentId":1636,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1776263591641,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":296,"timestamp":6656644556258,"id":1636,"parentId":1617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":null},"startTime":1776263591641,"traceId":"c730e3ac75d31d11"},{"name":"next-client-pages-loader","duration":19,"timestamp":6656644557068,"id":1639,"parentId":1638,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js"},"startTime":1776263591641,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1201,"timestamp":6656644556568,"id":1638,"parentId":1621,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!","layer":null},"startTime":1776263591641,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2971,"timestamp":6656644559844,"id":1643,"parentId":1642,"tags":{},"startTime":1776263591644,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6008,"timestamp":6656644559813,"id":1642,"parentId":1631,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":null},"startTime":1776263591644,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9097,"timestamp":6656644557925,"id":1641,"parentId":1640,"tags":{},"startTime":1776263591642,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9213,"timestamp":6656644557816,"id":1640,"parentId":1633,"tags":{},"startTime":1776263591642,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15549,"timestamp":6656644552701,"id":1633,"parentId":1612,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/next-dev.js","layer":null},"startTime":1776263591637,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6767,"timestamp":6656644569780,"id":1649,"parentId":1648,"tags":{},"startTime":1776263591654,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6803,"timestamp":6656644569751,"id":1648,"parentId":1647,"tags":{},"startTime":1776263591654,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10634,"timestamp":6656644569678,"id":1647,"parentId":1638,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1776263591654,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12677,"timestamp":6656644568808,"id":1646,"parentId":1645,"tags":{},"startTime":1776263591653,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12727,"timestamp":6656644568761,"id":1645,"parentId":1644,"tags":{},"startTime":1776263591653,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14452,"timestamp":6656644568505,"id":1644,"parentId":1616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js","layer":null},"startTime":1776263591653,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10510,"timestamp":6656644572471,"id":1655,"parentId":1654,"tags":{},"startTime":1776263591657,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10524,"timestamp":6656644572459,"id":1654,"parentId":1651,"tags":{},"startTime":1776263591657,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11149,"timestamp":6656644572372,"id":1651,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/setup-hydration-warning.js","layer":null},"startTime":1776263591657,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12580,"timestamp":6656644572454,"id":1653,"parentId":1652,"tags":{},"startTime":1776263591657,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12627,"timestamp":6656644572425,"id":1652,"parentId":1650,"tags":{},"startTime":1776263591657,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15703,"timestamp":6656644572274,"id":1650,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-bootstrap.js","layer":null},"startTime":1776263591657,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12562,"timestamp":6656644576283,"id":1659,"parentId":1658,"tags":{},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12608,"timestamp":6656644576243,"id":1658,"parentId":1656,"tags":{},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14699,"timestamp":6656644575703,"id":1656,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/webpack.js","layer":null},"startTime":1776263591660,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21362,"timestamp":6656644576495,"id":1666,"parentId":1665,"tags":{},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21385,"timestamp":6656644576481,"id":1665,"parentId":1664,"tags":{},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22577,"timestamp":6656644576430,"id":1664,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/hot-middleware-client.js","layer":null},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22921,"timestamp":6656644576307,"id":1661,"parentId":1660,"tags":{},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22939,"timestamp":6656644576292,"id":1660,"parentId":1657,"tags":{},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26606,"timestamp":6656644575925,"id":1657,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/index.js","layer":null},"startTime":1776263591660,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29729,"timestamp":6656644576417,"id":1663,"parentId":1662,"tags":{},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29936,"timestamp":6656644576381,"id":1662,"parentId":1631,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":null},"startTime":1776263591661,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2791,"timestamp":6656644604754,"id":1669,"parentId":1668,"tags":{},"startTime":1776263591689,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2842,"timestamp":6656644604705,"id":1668,"parentId":1667,"tags":{},"startTime":1776263591689,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3650,"timestamp":6656644604285,"id":1667,"parentId":1634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1776263591689,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2284,"timestamp":6656644610023,"id":1676,"parentId":1675,"tags":{},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2313,"timestamp":6656644609999,"id":1675,"parentId":1670,"tags":{},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3416,"timestamp":6656644609677,"id":1670,"parentId":1644,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/with-router.js","layer":null},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3079,"timestamp":6656644610037,"id":1678,"parentId":1677,"tags":{},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3090,"timestamp":6656644610027,"id":1677,"parentId":1673,"tags":{},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3639,"timestamp":6656644609826,"id":1673,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/on-demand-entries-client.js","layer":null},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3443,"timestamp":6656644610047,"id":1680,"parentId":1679,"tags":{},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3452,"timestamp":6656644610039,"id":1679,"parentId":1674,"tags":{},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4104,"timestamp":6656644609875,"id":1674,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/dev-build-watcher.js","layer":null},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4737,"timestamp":6656644610694,"id":1693,"parentId":1692,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4757,"timestamp":6656644610678,"id":1692,"parentId":1681,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5719,"timestamp":6656644610430,"id":1681,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/fouc.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5464,"timestamp":6656644610713,"id":1697,"parentId":1696,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5472,"timestamp":6656644610706,"id":1696,"parentId":1685,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6221,"timestamp":6656644610502,"id":1685,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/performance-relayer.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6044,"timestamp":6656644610721,"id":1699,"parentId":1698,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6052,"timestamp":6656644610715,"id":1698,"parentId":1686,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6667,"timestamp":6656644610522,"id":1686,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-announcer.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6454,"timestamp":6656644610746,"id":1705,"parentId":1704,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6465,"timestamp":6656644610740,"id":1704,"parentId":1689,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6850,"timestamp":6656644610600,"id":1689,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6731,"timestamp":6656644610730,"id":1701,"parentId":1700,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6738,"timestamp":6656644610723,"id":1700,"parentId":1687,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7244,"timestamp":6656644610541,"id":1687,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7065,"timestamp":6656644610738,"id":1703,"parentId":1702,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7072,"timestamp":6656644610732,"id":1702,"parentId":1688,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7849,"timestamp":6656644610581,"id":1688,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8965,"timestamp":6656644610704,"id":1695,"parentId":1694,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8978,"timestamp":6656644610696,"id":1694,"parentId":1684,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11820,"timestamp":6656644610479,"id":1684,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/head-manager.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11599,"timestamp":6656644610762,"id":1709,"parentId":1708,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11606,"timestamp":6656644610756,"id":1708,"parentId":1691,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12558,"timestamp":6656644610656,"id":1691,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-loader.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9652,"timestamp":6656644614650,"id":1729,"parentId":1728,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9679,"timestamp":6656644614627,"id":1728,"parentId":1710,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10354,"timestamp":6656644614234,"id":1710,"parentId":1644,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13861,"timestamp":6656644610754,"id":1707,"parentId":1706,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13868,"timestamp":6656644610748,"id":1706,"parentId":1690,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14789,"timestamp":6656644610625,"id":1690,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/script.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10752,"timestamp":6656644614679,"id":1733,"parentId":1732,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10767,"timestamp":6656644614665,"id":1732,"parentId":1712,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11394,"timestamp":6656644614317,"id":1712,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11034,"timestamp":6656644614688,"id":1735,"parentId":1734,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11042,"timestamp":6656644614681,"id":1734,"parentId":1713,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11632,"timestamp":6656644614337,"id":1713,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11327,"timestamp":6656644614663,"id":1731,"parentId":1730,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11338,"timestamp":6656644614653,"id":1730,"parentId":1711,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":12749,"timestamp":6656644614294,"id":1711,"parentId":1647,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12357,"timestamp":6656644614705,"id":1739,"parentId":1738,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12366,"timestamp":6656644614699,"id":1738,"parentId":1715,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12896,"timestamp":6656644614373,"id":1715,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12601,"timestamp":6656644614697,"id":1737,"parentId":1736,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12609,"timestamp":6656644614690,"id":1736,"parentId":1714,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13636,"timestamp":6656644614355,"id":1714,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13292,"timestamp":6656644614713,"id":1741,"parentId":1740,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13300,"timestamp":6656644614707,"id":1740,"parentId":1716,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14179,"timestamp":6656644614392,"id":1716,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13858,"timestamp":6656644614737,"id":1745,"parentId":1744,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13874,"timestamp":6656644614724,"id":1744,"parentId":1718,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14475,"timestamp":6656644614427,"id":1718,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/mitt.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14192,"timestamp":6656644614722,"id":1743,"parentId":1742,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14200,"timestamp":6656644614715,"id":1742,"parentId":1717,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14729,"timestamp":6656644614409,"id":1717,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14360,"timestamp":6656644614790,"id":1753,"parentId":1752,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14368,"timestamp":6656644614783,"id":1752,"parentId":1722,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14824,"timestamp":6656644614499,"id":1722,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14504,"timestamp":6656644614827,"id":1755,"parentId":1754,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14540,"timestamp":6656644614792,"id":1754,"parentId":1723,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15035,"timestamp":6656644614516,"id":1723,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14791,"timestamp":6656644614774,"id":1751,"parentId":1750,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14810,"timestamp":6656644614757,"id":1750,"parentId":1721,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15453,"timestamp":6656644614479,"id":1721,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15209,"timestamp":6656644614755,"id":1749,"parentId":1748,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15217,"timestamp":6656644614748,"id":1748,"parentId":1720,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15965,"timestamp":6656644614462,"id":1720,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/adapters.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20758,"timestamp":6656644609816,"id":1672,"parentId":1671,"tags":{},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20901,"timestamp":6656644609784,"id":1671,"parentId":1656,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":null},"startTime":1776263591694,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15831,"timestamp":6656644614874,"id":1757,"parentId":1756,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15864,"timestamp":6656644614842,"id":1756,"parentId":1726,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16363,"timestamp":6656644614552,"id":1726,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/report-to-socket.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":16040,"timestamp":6656644614888,"id":1759,"parentId":1758,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":16051,"timestamp":6656644614877,"id":1758,"parentId":1727,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16791,"timestamp":6656644614577,"id":1727,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/tracer.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30916,"timestamp":6656644610472,"id":1683,"parentId":1682,"tags":{},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32243,"timestamp":6656644610462,"id":1682,"parentId":1644,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1776263591695,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11882,"timestamp":6656644634786,"id":1772,"parentId":1771,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11899,"timestamp":6656644634775,"id":1771,"parentId":1765,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13241,"timestamp":6656644634144,"id":1765,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/websocket.js","layer":null},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12662,"timestamp":6656644634769,"id":1770,"parentId":1769,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12701,"timestamp":6656644634731,"id":1769,"parentId":1764,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13962,"timestamp":6656644634095,"id":1764,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":null},"startTime":1776263591718,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":33533,"timestamp":6656644614746,"id":1747,"parentId":1746,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33547,"timestamp":6656644614740,"id":1746,"parentId":1719,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39434,"timestamp":6656644614444,"id":1719,"parentId":1644,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/router.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":19380,"timestamp":6656644634806,"id":1776,"parentId":1775,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":19389,"timestamp":6656644634799,"id":1775,"parentId":1767,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20629,"timestamp":6656644634187,"id":1767,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/client.js","layer":null},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40929,"timestamp":6656644614541,"id":1725,"parentId":1724,"tags":{},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41240,"timestamp":6656644614533,"id":1724,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":null},"startTime":1776263591699,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":20977,"timestamp":6656644634815,"id":1778,"parentId":1777,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":20985,"timestamp":6656644634808,"id":1777,"parentId":1768,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21800,"timestamp":6656644634205,"id":1768,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":null},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":21236,"timestamp":6656644634797,"id":1774,"parentId":1773,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":21245,"timestamp":6656644634789,"id":1773,"parentId":1766,"tags":{},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22971,"timestamp":6656644634166,"id":1766,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/hot-reloader-client.js","layer":null},"startTime":1776263591719,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29641,"timestamp":6656644634090,"id":1763,"parentId":1762,"tags":{},"startTime":1776263591718,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29827,"timestamp":6656644634079,"id":1762,"parentId":1650,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":null},"startTime":1776263591718,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29848,"timestamp":6656644634065,"id":1761,"parentId":1760,"tags":{},"startTime":1776263591718,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31086,"timestamp":6656644634030,"id":1760,"parentId":1662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":null},"startTime":1776263591718,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":624571,"timestamp":6656644041161,"id":1611,"parentId":1604,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776263591126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3110,"timestamp":6656644666603,"id":1781,"parentId":1780,"tags":{},"startTime":1776263591751,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3171,"timestamp":6656644666545,"id":1780,"parentId":1779,"tags":{},"startTime":1776263591751,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4478,"timestamp":6656644666345,"id":1779,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":null},"startTime":1776263591751,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3649,"timestamp":6656644669162,"id":1800,"parentId":1799,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3672,"timestamp":6656644669142,"id":1799,"parentId":1785,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4338,"timestamp":6656644668759,"id":1785,"parentId":1688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4039,"timestamp":6656644669070,"id":1794,"parentId":1793,"tags":{},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4071,"timestamp":6656644669039,"id":1793,"parentId":1782,"tags":{},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4792,"timestamp":6656644668611,"id":1782,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4239,"timestamp":6656644669176,"id":1802,"parentId":1801,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4250,"timestamp":6656644669166,"id":1801,"parentId":1786,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4960,"timestamp":6656644668780,"id":1786,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4637,"timestamp":6656644669196,"id":1806,"parentId":1805,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4648,"timestamp":6656644669189,"id":1805,"parentId":1788,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5425,"timestamp":6656644668822,"id":1788,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5078,"timestamp":6656644669187,"id":1804,"parentId":1803,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5087,"timestamp":6656644669178,"id":1803,"parentId":1787,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5704,"timestamp":6656644668802,"id":1787,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5437,"timestamp":6656644669087,"id":1796,"parentId":1795,"tags":{},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5449,"timestamp":6656644669076,"id":1795,"parentId":1783,"tags":{},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6535,"timestamp":6656644668705,"id":1783,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6033,"timestamp":6656644669218,"id":1810,"parentId":1809,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6044,"timestamp":6656644669208,"id":1809,"parentId":1790,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6651,"timestamp":6656644668861,"id":1790,"parentId":1690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6318,"timestamp":6656644669206,"id":1808,"parentId":1807,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6326,"timestamp":6656644669199,"id":1807,"parentId":1789,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6956,"timestamp":6656644668841,"id":1789,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11341,"timestamp":6656644669098,"id":1798,"parentId":1797,"tags":{},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11353,"timestamp":6656644669090,"id":1797,"parentId":1784,"tags":{},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12808,"timestamp":6656644668737,"id":1784,"parentId":1691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-loader.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12333,"timestamp":6656644669228,"id":1812,"parentId":1811,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12342,"timestamp":6656644669221,"id":1811,"parentId":1791,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12965,"timestamp":6656644668894,"id":1791,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12633,"timestamp":6656644669237,"id":1814,"parentId":1813,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12641,"timestamp":6656644669230,"id":1813,"parentId":1792,"tags":{},"startTime":1776263591754,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13121,"timestamp":6656644668918,"id":1792,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":null},"startTime":1776263591753,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9513,"timestamp":6656644672534,"id":1826,"parentId":1825,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9537,"timestamp":6656644672512,"id":1825,"parentId":1815,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":10154,"timestamp":6656644672149,"id":1815,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9767,"timestamp":6656644672547,"id":1828,"parentId":1827,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9777,"timestamp":6656644672538,"id":1827,"parentId":1816,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10343,"timestamp":6656644672232,"id":1816,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10026,"timestamp":6656644672556,"id":1830,"parentId":1829,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10035,"timestamp":6656644672549,"id":1829,"parentId":1817,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10476,"timestamp":6656644672260,"id":1817,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10163,"timestamp":6656644672581,"id":1836,"parentId":1835,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10170,"timestamp":6656644672575,"id":1835,"parentId":1820,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10591,"timestamp":6656644672329,"id":1820,"parentId":1682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10355,"timestamp":6656644672573,"id":1834,"parentId":1833,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10363,"timestamp":6656644672567,"id":1833,"parentId":1819,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10817,"timestamp":6656644672308,"id":1819,"parentId":1689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10541,"timestamp":6656644672592,"id":1838,"parentId":1837,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10551,"timestamp":6656644672583,"id":1837,"parentId":1821,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11006,"timestamp":6656644672353,"id":1821,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/detect-domain-locale.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10768,"timestamp":6656644672601,"id":1840,"parentId":1839,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10776,"timestamp":6656644672594,"id":1839,"parentId":1822,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11207,"timestamp":6656644672375,"id":1822,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-locale.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11302,"timestamp":6656644672565,"id":1832,"parentId":1831,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11311,"timestamp":6656644672558,"id":1831,"parentId":1818,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12413,"timestamp":6656644672286,"id":1818,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12116,"timestamp":6656644672609,"id":1842,"parentId":1841,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12124,"timestamp":6656644672603,"id":1841,"parentId":1823,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12810,"timestamp":6656644672395,"id":1823,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12668,"timestamp":6656644672617,"id":1844,"parentId":1843,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12676,"timestamp":6656644672611,"id":1843,"parentId":1824,"tags":{},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13338,"timestamp":6656644672415,"id":1824,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":null},"startTime":1776263591757,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6450,"timestamp":6656644679367,"id":1872,"parentId":1871,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6458,"timestamp":6656644679359,"id":1871,"parentId":1849,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7134,"timestamp":6656644678902,"id":1849,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9026,"timestamp":6656644679345,"id":1868,"parentId":1867,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9054,"timestamp":6656644679319,"id":1867,"parentId":1845,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9963,"timestamp":6656644678733,"id":1845,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9354,"timestamp":6656644679357,"id":1870,"parentId":1869,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9364,"timestamp":6656644679348,"id":1869,"parentId":1848,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10236,"timestamp":6656644678876,"id":1848,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9748,"timestamp":6656644679378,"id":1874,"parentId":1873,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9758,"timestamp":6656644679369,"id":1873,"parentId":1850,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10779,"timestamp":6656644678923,"id":1850,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10321,"timestamp":6656644679395,"id":1878,"parentId":1877,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10328,"timestamp":6656644679389,"id":1877,"parentId":1852,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10944,"timestamp":6656644678965,"id":1852,"parentId":1711,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10533,"timestamp":6656644679387,"id":1876,"parentId":1875,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10540,"timestamp":6656644679380,"id":1875,"parentId":1851,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11239,"timestamp":6656644678944,"id":1851,"parentId":1765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10772,"timestamp":6656644679419,"id":1884,"parentId":1883,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10779,"timestamp":6656644679413,"id":1883,"parentId":1855,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11329,"timestamp":6656644679025,"id":1855,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10961,"timestamp":6656644679403,"id":1880,"parentId":1879,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10968,"timestamp":6656644679397,"id":1879,"parentId":1853,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11609,"timestamp":6656644678983,"id":1853,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/portal/index.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11173,"timestamp":6656644679427,"id":1886,"parentId":1885,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11179,"timestamp":6656644679421,"id":1885,"parentId":1856,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11774,"timestamp":6656644679042,"id":1856,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11381,"timestamp":6656644679443,"id":1890,"parentId":1889,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11388,"timestamp":6656644679437,"id":1889,"parentId":1858,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11918,"timestamp":6656644679076,"id":1858,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11599,"timestamp":6656644679411,"id":1882,"parentId":1881,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11606,"timestamp":6656644679405,"id":1881,"parentId":1854,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12540,"timestamp":6656644679008,"id":1854,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/bloom-filter.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12121,"timestamp":6656644679436,"id":1888,"parentId":1887,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12129,"timestamp":6656644679429,"id":1887,"parentId":1857,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12733,"timestamp":6656644679058,"id":1857,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12334,"timestamp":6656644679467,"id":1896,"parentId":1895,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12341,"timestamp":6656644679461,"id":1895,"parentId":1861,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12983,"timestamp":6656644679128,"id":1861,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":null},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12670,"timestamp":6656644679452,"id":1892,"parentId":1891,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12677,"timestamp":6656644679445,"id":1891,"parentId":1859,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13234,"timestamp":6656644679093,"id":1859,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":12878,"timestamp":6656644679459,"id":1894,"parentId":1893,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":12885,"timestamp":6656644679453,"id":1893,"parentId":1860,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13476,"timestamp":6656644679111,"id":1860,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/bus.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13106,"timestamp":6656644679491,"id":1902,"parentId":1901,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13113,"timestamp":6656644679485,"id":1901,"parentId":1864,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14904,"timestamp":6656644679180,"id":1864,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":null},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14631,"timestamp":6656644679483,"id":1900,"parentId":1899,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14639,"timestamp":6656644679477,"id":1899,"parentId":1863,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15656,"timestamp":6656644679162,"id":1863,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":null},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15534,"timestamp":6656644679475,"id":1898,"parentId":1897,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15541,"timestamp":6656644679469,"id":1897,"parentId":1862,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16242,"timestamp":6656644679144,"id":1862,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ReactDevOverlay.js","layer":null},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":15899,"timestamp":6656644679498,"id":1904,"parentId":1903,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":15906,"timestamp":6656644679492,"id":1903,"parentId":1865,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16438,"timestamp":6656644679197,"id":1865,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":null},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":16138,"timestamp":6656644679507,"id":1906,"parentId":1905,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":16146,"timestamp":6656644679500,"id":1905,"parentId":1866,"tags":{},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16738,"timestamp":6656644679214,"id":1866,"parentId":1767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/nodeStackFrames.js","layer":null},"startTime":1776263591764,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8844,"timestamp":6656644687391,"id":1917,"parentId":1916,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8876,"timestamp":6656644687360,"id":1916,"parentId":1911,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9224,"timestamp":6656644687190,"id":1911,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9020,"timestamp":6656644687403,"id":1919,"parentId":1918,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9030,"timestamp":6656644687394,"id":1918,"parentId":1912,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9360,"timestamp":6656644687229,"id":1912,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":null},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11042,"timestamp":6656644687414,"id":1921,"parentId":1920,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11052,"timestamp":6656644687405,"id":1920,"parentId":1915,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11981,"timestamp":6656644687267,"id":1915,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":null},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25441,"timestamp":6656644678864,"id":1847,"parentId":1846,"tags":{},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26100,"timestamp":6656644678849,"id":1846,"parentId":1719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-api-route.js","layer":null},"startTime":1776263591763,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18790,"timestamp":6656644687162,"id":1908,"parentId":1907,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18949,"timestamp":6656644687138,"id":1907,"parentId":1647,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/jsx-runtime.js","layer":null},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":19173,"timestamp":6656644687260,"id":1914,"parentId":1913,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19424,"timestamp":6656644687252,"id":1913,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":null},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26799,"timestamp":6656644687183,"id":1910,"parentId":1909,"tags":{},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27064,"timestamp":6656644687174,"id":1909,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/client.js","layer":null},"startTime":1776263591772,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13482,"timestamp":6656644700927,"id":1929,"parentId":1928,"tags":{},"startTime":1776263591785,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13493,"timestamp":6656644700918,"id":1928,"parentId":1925,"tags":{},"startTime":1776263591785,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13901,"timestamp":6656644700849,"id":1925,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":null},"startTime":1776263591785,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13988,"timestamp":6656644700914,"id":1927,"parentId":1926,"tags":{},"startTime":1776263591785,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14018,"timestamp":6656644700886,"id":1926,"parentId":1924,"tags":{},"startTime":1776263591785,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14696,"timestamp":6656644700787,"id":1924,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":null},"startTime":1776263591785,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10072,"timestamp":6656644705426,"id":1932,"parentId":1931,"tags":{},"startTime":1776263591790,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10104,"timestamp":6656644705394,"id":1931,"parentId":1930,"tags":{},"startTime":1776263591790,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10823,"timestamp":6656644704999,"id":1930,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1776263591789,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8597,"timestamp":6656644707240,"id":1940,"parentId":1939,"tags":{},"startTime":1776263591792,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8687,"timestamp":6656644707199,"id":1939,"parentId":1933,"tags":{},"startTime":1776263591792,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9821,"timestamp":6656644706753,"id":1933,"parentId":1784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/trusted-types.js","layer":null},"startTime":1776263591791,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10306,"timestamp":6656644708387,"id":1942,"parentId":1941,"tags":{},"startTime":1776263591793,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11449,"timestamp":6656644707246,"id":1941,"parentId":1936,"tags":{},"startTime":1776263591792,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12422,"timestamp":6656644706836,"id":1936,"parentId":1818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":null},"startTime":1776263591791,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11067,"timestamp":6656644708444,"id":1944,"parentId":1943,"tags":{},"startTime":1776263591793,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11130,"timestamp":6656644708394,"id":1943,"parentId":1937,"tags":{},"startTime":1776263591793,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13010,"timestamp":6656644706859,"id":1937,"parentId":1823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-match.js","layer":null},"startTime":1776263591791,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22524,"timestamp":6656644697487,"id":1923,"parentId":1922,"tags":{},"startTime":1776263591782,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22843,"timestamp":6656644697459,"id":1922,"parentId":1723,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1776263591782,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11894,"timestamp":6656644708460,"id":1946,"parentId":1945,"tags":{},"startTime":1776263591793,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11907,"timestamp":6656644708449,"id":1945,"parentId":1938,"tags":{},"startTime":1776263591793,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14244,"timestamp":6656644706881,"id":1938,"parentId":1823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","layer":null},"startTime":1776263591791,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3722,"timestamp":6656644718556,"id":1949,"parentId":1948,"tags":{},"startTime":1776263591803,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3757,"timestamp":6656644718523,"id":1948,"parentId":1947,"tags":{},"startTime":1776263591803,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4147,"timestamp":6656644718361,"id":1947,"parentId":1720,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1776263591803,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1902,"timestamp":6656644721721,"id":1961,"parentId":1960,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1925,"timestamp":6656644721701,"id":1960,"parentId":1952,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2433,"timestamp":6656644721498,"id":1952,"parentId":1851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2208,"timestamp":6656644721733,"id":1963,"parentId":1962,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2218,"timestamp":6656644721724,"id":1962,"parentId":1953,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2614,"timestamp":6656644721535,"id":1953,"parentId":1865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2381,"timestamp":6656644721777,"id":1967,"parentId":1966,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2391,"timestamp":6656644721767,"id":1966,"parentId":1955,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2756,"timestamp":6656644721579,"id":1955,"parentId":1857,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2579,"timestamp":6656644721764,"id":1965,"parentId":1964,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2609,"timestamp":6656644721735,"id":1964,"parentId":1954,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2953,"timestamp":6656644721558,"id":1954,"parentId":1850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2733,"timestamp":6656644721786,"id":1969,"parentId":1968,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2741,"timestamp":6656644721779,"id":1968,"parentId":1956,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3091,"timestamp":6656644721599,"id":1956,"parentId":1857,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18266,"timestamp":6656644706827,"id":1935,"parentId":1934,"tags":{},"startTime":1776263591791,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18646,"timestamp":6656644706813,"id":1934,"parentId":1818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":null},"startTime":1776263591791,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4608,"timestamp":6656644721811,"id":1975,"parentId":1974,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4619,"timestamp":6656644721805,"id":1974,"parentId":1959,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5237,"timestamp":6656644721651,"id":1959,"parentId":1911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5120,"timestamp":6656644721795,"id":1971,"parentId":1970,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5128,"timestamp":6656644721788,"id":1970,"parentId":1957,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5885,"timestamp":6656644721616,"id":1957,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ErrorBoundary.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5731,"timestamp":6656644721803,"id":1973,"parentId":1972,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5738,"timestamp":6656644721797,"id":1972,"parentId":1958,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7014,"timestamp":6656644721634,"id":1958,"parentId":1865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3489,"timestamp":6656644726242,"id":1989,"parentId":1988,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3498,"timestamp":6656644726234,"id":1988,"parentId":1979,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3973,"timestamp":6656644726063,"id":1979,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":null},"startTime":1776263591810,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3842,"timestamp":6656644726206,"id":1983,"parentId":1982,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3880,"timestamp":6656644726170,"id":1982,"parentId":1976,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4409,"timestamp":6656644725897,"id":1976,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":null},"startTime":1776263591810,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4098,"timestamp":6656644726221,"id":1985,"parentId":1984,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4109,"timestamp":6656644726210,"id":1984,"parentId":1977,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4630,"timestamp":6656644726005,"id":1977,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":null},"startTime":1776263591810,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8246,"timestamp":6656644726251,"id":1991,"parentId":1990,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8257,"timestamp":6656644726244,"id":1990,"parentId":1980,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8855,"timestamp":6656644726083,"id":1980,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":null},"startTime":1776263591810,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8698,"timestamp":6656644726260,"id":1993,"parentId":1992,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8705,"timestamp":6656644726253,"id":1992,"parentId":1981,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9237,"timestamp":6656644726105,"id":1981,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":null},"startTime":1776263591810,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14262,"timestamp":6656644721486,"id":1951,"parentId":1950,"tags":{},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14386,"timestamp":6656644721461,"id":1950,"parentId":1647,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/index.js","layer":null},"startTime":1776263591806,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9661,"timestamp":6656644726232,"id":1987,"parentId":1986,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9671,"timestamp":6656644726224,"id":1986,"parentId":1978,"tags":{},"startTime":1776263591811,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11099,"timestamp":6656644726039,"id":1978,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":null},"startTime":1776263591810,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2028,"timestamp":6656644740803,"id":2011,"parentId":2010,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2041,"timestamp":6656644740794,"id":2010,"parentId":2005,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2516,"timestamp":6656644740693,"id":2005,"parentId":1922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2430,"timestamp":6656644740790,"id":2009,"parentId":2008,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2459,"timestamp":6656644740762,"id":2008,"parentId":2004,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3127,"timestamp":6656644740643,"id":2004,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":null},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3097,"timestamp":6656644740813,"id":2013,"parentId":2012,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3107,"timestamp":6656644740805,"id":2012,"parentId":2006,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3551,"timestamp":6656644740716,"id":2006,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-url.js","layer":null},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3610,"timestamp":6656644740821,"id":2015,"parentId":2014,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3620,"timestamp":6656644740815,"id":2014,"parentId":2007,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5022,"timestamp":6656644740738,"id":2007,"parentId":1947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16377,"timestamp":6656644729404,"id":1995,"parentId":1994,"tags":{},"startTime":1776263591814,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16729,"timestamp":6656644729381,"id":1994,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/index.js","layer":null},"startTime":1776263591814,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16835,"timestamp":6656644729425,"id":1997,"parentId":1996,"tags":{},"startTime":1776263591814,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20630,"timestamp":6656644729415,"id":1996,"parentId":1907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react-jsx-runtime.development.js","layer":null},"startTime":1776263591814,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19851,"timestamp":6656644740622,"id":2001,"parentId":2000,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21189,"timestamp":6656644740371,"id":2000,"parentId":1633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":null},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20951,"timestamp":6656644740637,"id":2003,"parentId":2002,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21818,"timestamp":6656644740629,"id":2002,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":null},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22098,"timestamp":6656644740362,"id":1999,"parentId":1998,"tags":{},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22313,"timestamp":6656644740338,"id":1998,"parentId":1909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/index.js","layer":null},"startTime":1776263591825,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3679,"timestamp":6656644759644,"id":2022,"parentId":2021,"tags":{},"startTime":1776263591844,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3719,"timestamp":6656644759606,"id":2021,"parentId":2020,"tags":{},"startTime":1776263591844,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4220,"timestamp":6656644759503,"id":2020,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":null},"startTime":1776263591844,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":6775,"timestamp":6656644758520,"id":2017,"parentId":2016,"tags":{},"startTime":1776263591843,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6989,"timestamp":6656644758470,"id":2016,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":null},"startTime":1776263591843,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6912,"timestamp":6656644758554,"id":2019,"parentId":2018,"tags":{},"startTime":1776263591843,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10484,"timestamp":6656644758541,"id":2018,"parentId":1950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react.development.js","layer":null},"startTime":1776263591843,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":726917,"timestamp":6656644042341,"id":1615,"parentId":1604,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":726791,"timestamp":6656644042488,"id":1621,"parentId":1604,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"},"startTime":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":726885,"timestamp":6656644042396,"id":1617,"parentId":1604,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5156,"timestamp":6656644764373,"id":2036,"parentId":2035,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5166,"timestamp":6656644764365,"id":2035,"parentId":2027,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5831,"timestamp":6656644764231,"id":2027,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":null},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5722,"timestamp":6656644764362,"id":2034,"parentId":2033,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5733,"timestamp":6656644764353,"id":2033,"parentId":2026,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6358,"timestamp":6656644764183,"id":2026,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":null},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6241,"timestamp":6656644764349,"id":2032,"parentId":2031,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6267,"timestamp":6656644764325,"id":2031,"parentId":2025,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7086,"timestamp":6656644764128,"id":2025,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":null},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7200,"timestamp":6656644764399,"id":2042,"parentId":2041,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7209,"timestamp":6656644764392,"id":2041,"parentId":2030,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7822,"timestamp":6656644764292,"id":2030,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":null},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7740,"timestamp":6656644764390,"id":2040,"parentId":2039,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7747,"timestamp":6656644764384,"id":2039,"parentId":2029,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8155,"timestamp":6656644764272,"id":2029,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":null},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8066,"timestamp":6656644764382,"id":2038,"parentId":2037,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8074,"timestamp":6656644764375,"id":2037,"parentId":2028,"tags":{},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8792,"timestamp":6656644764253,"id":2028,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":null},"startTime":1776263591849,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5340,"timestamp":6656644769367,"id":2048,"parentId":2047,"tags":{},"startTime":1776263591854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5351,"timestamp":6656644769358,"id":2047,"parentId":2044,"tags":{},"startTime":1776263591854,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5671,"timestamp":6656644769225,"id":2044,"parentId":2005,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1776263591854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5806,"timestamp":6656644769354,"id":2046,"parentId":2045,"tags":{},"startTime":1776263591854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5837,"timestamp":6656644769323,"id":2045,"parentId":2043,"tags":{},"startTime":1776263591854,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6190,"timestamp":6656644769157,"id":2043,"parentId":2005,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1776263591854,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12618,"timestamp":6656644762863,"id":2024,"parentId":2023,"tags":{},"startTime":1776263591847,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14903,"timestamp":6656644762832,"id":2023,"parentId":1685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/web-vitals/web-vitals.js","layer":null},"startTime":1776263591847,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":7069,"timestamp":6656644773451,"id":2050,"parentId":2049,"tags":{},"startTime":1776263591858,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7541,"timestamp":6656644773391,"id":2049,"parentId":1994,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","layer":null},"startTime":1776263591858,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2142,"timestamp":6656644779458,"id":2053,"parentId":2052,"tags":{},"startTime":1776263591864,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2181,"timestamp":6656644779421,"id":2052,"parentId":2051,"tags":{},"startTime":1776263591864,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2659,"timestamp":6656644779336,"id":2051,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":null},"startTime":1776263591864,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1649,"timestamp":6656644780425,"id":2068,"parentId":2067,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1657,"timestamp":6656644780419,"id":2067,"parentId":2059,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1978,"timestamp":6656644780337,"id":2059,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":null},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1917,"timestamp":6656644780407,"id":2064,"parentId":2063,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1927,"timestamp":6656644780397,"id":2063,"parentId":2057,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2203,"timestamp":6656644780295,"id":2057,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":null},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2162,"timestamp":6656644780417,"id":2066,"parentId":2065,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2171,"timestamp":6656644780409,"id":2065,"parentId":2058,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2441,"timestamp":6656644780318,"id":2058,"parentId":1977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":null},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2965,"timestamp":6656644780434,"id":2070,"parentId":2069,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2973,"timestamp":6656644780427,"id":2069,"parentId":2060,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3299,"timestamp":6656644780355,"id":2060,"parentId":2028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":null},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3276,"timestamp":6656644780395,"id":2062,"parentId":2061,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3296,"timestamp":6656644780376,"id":2061,"parentId":2056,"tags":{},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3867,"timestamp":6656644780254,"id":2056,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":null},"startTime":1776263591865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2329,"timestamp":6656644783071,"id":2078,"parentId":2077,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2341,"timestamp":6656644783061,"id":2077,"parentId":2072,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2749,"timestamp":6656644782941,"id":2072,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":null},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2688,"timestamp":6656644783058,"id":2076,"parentId":2075,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2707,"timestamp":6656644783039,"id":2075,"parentId":2071,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3379,"timestamp":6656644782900,"id":2071,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":null},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3211,"timestamp":6656644783080,"id":2080,"parentId":2079,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3219,"timestamp":6656644783073,"id":2079,"parentId":2073,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3566,"timestamp":6656644782965,"id":2073,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":null},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3454,"timestamp":6656644783089,"id":2082,"parentId":2081,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3462,"timestamp":6656644783082,"id":2081,"parentId":2074,"tags":{},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4420,"timestamp":6656644782996,"id":2074,"parentId":1978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":null},"startTime":1776263591867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8561,"timestamp":6656644780064,"id":2055,"parentId":2054,"tags":{},"startTime":1776263591864,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":83763,"timestamp":6656644780043,"id":2054,"parentId":1998,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/cjs/react-dom.development.js","layer":null},"startTime":1776263591864,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":81328,"timestamp":6656644787843,"id":2084,"parentId":2083,"tags":{},"startTime":1776263591872,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":82551,"timestamp":6656644787818,"id":2083,"parentId":1861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":null},"startTime":1776263591872,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2419,"timestamp":6656644868728,"id":2099,"parentId":2098,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2437,"timestamp":6656644868713,"id":2098,"parentId":2090,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3649,"timestamp":6656644868373,"id":2090,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":null},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3419,"timestamp":6656644868684,"id":2095,"parentId":2094,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3436,"timestamp":6656644868668,"id":2094,"parentId":2086,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4471,"timestamp":6656644868245,"id":2086,"parentId":2057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":null},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":4290,"timestamp":6656644868710,"id":2097,"parentId":2096,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4304,"timestamp":6656644868698,"id":2096,"parentId":2087,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5561,"timestamp":6656644868302,"id":2087,"parentId":2058,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":null},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5141,"timestamp":6656644868740,"id":2101,"parentId":2100,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5151,"timestamp":6656644868731,"id":2100,"parentId":2091,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6211,"timestamp":6656644868402,"id":2091,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":null},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9259,"timestamp":6656644868663,"id":2093,"parentId":2092,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9319,"timestamp":6656644868606,"id":2092,"parentId":2085,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10880,"timestamp":6656644868064,"id":2085,"parentId":2059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":null},"startTime":1776263591952,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8086,"timestamp":6656644870878,"id":2115,"parentId":2114,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8099,"timestamp":6656644870866,"id":2114,"parentId":2103,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8770,"timestamp":6656644870588,"id":2103,"parentId":2072,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8516,"timestamp":6656644870862,"id":2113,"parentId":2112,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8543,"timestamp":6656644870836,"id":2112,"parentId":2102,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9376,"timestamp":6656644870520,"id":2102,"parentId":2074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8994,"timestamp":6656644870914,"id":2121,"parentId":2120,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9004,"timestamp":6656644870906,"id":2120,"parentId":2106,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9598,"timestamp":6656644870688,"id":2106,"parentId":2071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9394,"timestamp":6656644870903,"id":2119,"parentId":2118,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9405,"timestamp":6656644870894,"id":2118,"parentId":2105,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10024,"timestamp":6656644870663,"id":2105,"parentId":2072,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9772,"timestamp":6656644870925,"id":2123,"parentId":2122,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9781,"timestamp":6656644870917,"id":2122,"parentId":2107,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10362,"timestamp":6656644870713,"id":2107,"parentId":2071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10158,"timestamp":6656644870936,"id":2125,"parentId":2124,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10167,"timestamp":6656644870927,"id":2124,"parentId":2108,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":10799,"timestamp":6656644870735,"id":2108,"parentId":2071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":10673,"timestamp":6656644870891,"id":2117,"parentId":2116,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10685,"timestamp":6656644870880,"id":2116,"parentId":2104,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11523,"timestamp":6656644870637,"id":2104,"parentId":2071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13016,"timestamp":6656644870961,"id":2129,"parentId":2128,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13026,"timestamp":6656644870953,"id":2128,"parentId":2110,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13825,"timestamp":6656644870780,"id":2110,"parentId":2073,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13667,"timestamp":6656644870950,"id":2127,"parentId":2126,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13680,"timestamp":6656644870938,"id":2126,"parentId":2109,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14279,"timestamp":6656644870758,"id":2109,"parentId":2071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":14074,"timestamp":6656644870972,"id":2131,"parentId":2130,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":14084,"timestamp":6656644870964,"id":2130,"parentId":2111,"tags":{},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14570,"timestamp":6656644870803,"id":2111,"parentId":2073,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":null},"startTime":1776263591955,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27141,"timestamp":6656644868354,"id":2089,"parentId":2088,"tags":{},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29249,"timestamp":6656644868333,"id":2088,"parentId":1937,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":null},"startTime":1776263591953,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2055,"timestamp":6656644902784,"id":2140,"parentId":2139,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2105,"timestamp":6656644902742,"id":2139,"parentId":2134,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3383,"timestamp":6656644902380,"id":2134,"parentId":2091,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":null},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2969,"timestamp":6656644902833,"id":2146,"parentId":2145,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2984,"timestamp":6656644902819,"id":2145,"parentId":2137,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4120,"timestamp":6656644902673,"id":2137,"parentId":2087,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":null},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6584,"timestamp":6656644902816,"id":2144,"parentId":2143,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6598,"timestamp":6656644902806,"id":2143,"parentId":2136,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8913,"timestamp":6656644902632,"id":2136,"parentId":2086,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":null},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8257,"timestamp":6656644903312,"id":2151,"parentId":2150,"tags":{},"startTime":1776263591988,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8276,"timestamp":6656644903295,"id":2150,"parentId":2149,"tags":{},"startTime":1776263591988,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9110,"timestamp":6656644903255,"id":2149,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":null},"startTime":1776263591988,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9551,"timestamp":6656644902845,"id":2148,"parentId":2147,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9563,"timestamp":6656644902835,"id":2147,"parentId":2138,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10343,"timestamp":6656644902702,"id":2138,"parentId":2091,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":null},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11644,"timestamp":6656644901557,"id":2133,"parentId":2132,"tags":{},"startTime":1776263591986,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11912,"timestamp":6656644901505,"id":2132,"parentId":1979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":null},"startTime":1776263591986,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3030,"timestamp":6656644921759,"id":2154,"parentId":2153,"tags":{},"startTime":1776263592006,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3082,"timestamp":6656644921715,"id":2153,"parentId":2152,"tags":{},"startTime":1776263592006,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4501,"timestamp":6656644921362,"id":2152,"parentId":2104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":null},"startTime":1776263592006,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":24432,"timestamp":6656644902803,"id":2142,"parentId":2141,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24448,"timestamp":6656644902790,"id":2141,"parentId":2135,"tags":{},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31508,"timestamp":6656644902532,"id":2135,"parentId":2086,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":null},"startTime":1776263591987,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":8974,"timestamp":6656644926253,"id":2157,"parentId":2156,"tags":{},"startTime":1776263592011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9014,"timestamp":6656644926219,"id":2156,"parentId":2155,"tags":{},"startTime":1776263592011,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9642,"timestamp":6656644925999,"id":2155,"parentId":2137,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":null},"startTime":1776263592010,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1778,"timestamp":6656644934906,"id":2160,"parentId":2159,"tags":{},"startTime":1776263592019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2237,"timestamp":6656644934887,"id":2159,"parentId":2016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/cookie/index.js","layer":null},"startTime":1776263592019,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":894825,"timestamp":6656644042369,"id":1616,"parentId":1604,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776263591127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2256,"timestamp":6656644934989,"id":2162,"parentId":2161,"tags":{},"startTime":1776263592019,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2290,"timestamp":6656644934956,"id":2161,"parentId":2158,"tags":{},"startTime":1776263592019,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2928,"timestamp":6656644934792,"id":2158,"parentId":2149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":null},"startTime":1776263592019,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":169,"timestamp":6656644941581,"id":2164,"parentId":2163,"tags":{},"startTime":1776263592026,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1136,"timestamp":6656644941551,"id":2163,"parentId":2087,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":null},"startTime":1776263592026,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1162,"timestamp":6656644941642,"id":2166,"parentId":2165,"tags":{},"startTime":1776263592026,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1319,"timestamp":6656644941630,"id":2165,"parentId":2054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/index.js","layer":null},"startTime":1776263592026,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":267,"timestamp":6656644943603,"id":2168,"parentId":2167,"tags":{},"startTime":1776263592028,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2880,"timestamp":6656644943570,"id":2167,"parentId":2135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":null},"startTime":1776263592028,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2848,"timestamp":6656644943651,"id":2170,"parentId":2169,"tags":{},"startTime":1776263592028,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3080,"timestamp":6656644943635,"id":2169,"parentId":2135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":null},"startTime":1776263592028,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3237,"timestamp":6656644943861,"id":2172,"parentId":2171,"tags":{},"startTime":1776263592028,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4118,"timestamp":6656644943837,"id":2171,"parentId":2165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/cjs/scheduler.development.js","layer":null},"startTime":1776263592028,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":906475,"timestamp":6656644041533,"id":1612,"parentId":1604,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776263591126,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":932921,"timestamp":6656644015105,"id":1604,"parentId":1603,"tags":{},"startTime":1776263591099,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":2482,"timestamp":6656644952187,"id":2174,"parentId":2173,"tags":{},"startTime":1776263592037,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":4,"timestamp":6656644954687,"id":2176,"parentId":2173,"tags":{},"startTime":1776263592039,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":54,"timestamp":6656644954703,"id":2177,"parentId":2173,"tags":{},"startTime":1776263592039,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":4,"timestamp":6656644954775,"id":2178,"parentId":2173,"tags":{},"startTime":1776263592039,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6656644954791,"id":2179,"parentId":2173,"tags":{},"startTime":1776263592039,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":940,"timestamp":6656644954681,"id":2175,"parentId":2173,"tags":{},"startTime":1776263592039,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":2683,"timestamp":6656644958262,"id":2180,"parentId":2173,"tags":{},"startTime":1776263592043,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":6423,"timestamp":6656644960962,"id":2181,"parentId":2173,"tags":{},"startTime":1776263592045,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":5670,"timestamp":6656644969195,"id":2182,"parentId":2173,"tags":{},"startTime":1776263592054,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":79,"timestamp":6656644974864,"id":2183,"parentId":2173,"tags":{},"startTime":1776263592059,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":62,"timestamp":6656644974935,"id":2184,"parentId":2173,"tags":{},"startTime":1776263592059,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":72494,"timestamp":6656644974999,"id":2185,"parentId":2173,"tags":{},"startTime":1776263592059,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":103,"timestamp":6656645050007,"id":2187,"parentId":1603,"tags":{},"startTime":1776263592134,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":254,"timestamp":6656645049860,"id":2186,"parentId":1603,"tags":{},"startTime":1776263592134,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":100869,"timestamp":6656644951071,"id":2173,"parentId":1603,"tags":{},"startTime":1776263592035,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":1041564,"timestamp":6656644010514,"id":1603,"parentId":1600,"tags":{"name":"client"},"startTime":1776263591095,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":28651,"timestamp":6656645052101,"id":2188,"parentId":1600,"tags":{},"startTime":1776263592136,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":1079363,"timestamp":6656644002234,"id":1600,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776263591087,"traceId":"c730e3ac75d31d11"},{"name":"client-success","duration":135,"timestamp":6656645091868,"id":2191,"parentId":3,"tags":{},"startTime":1776263592176,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3952,"timestamp":6656645103581,"id":2200,"parentId":2199,"tags":{},"startTime":1776263592188,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4176,"timestamp":6656645103365,"id":2199,"parentId":2198,"tags":{},"startTime":1776263592188,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5355,"timestamp":6656645102812,"id":2198,"parentId":2193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1776263592187,"traceId":"c730e3ac75d31d11"},{"name":"client-hmr-latency","duration":1107000,"timestamp":6656644002875,"id":2201,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1776263592199,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":98,"timestamp":6656645116394,"id":2202,"parentId":2198,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1776263592201,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":6,"timestamp":6656645116503,"id":2203,"parentId":2198,"tags":{"name":"react","layer":null},"startTime":1776263592201,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":20736,"timestamp":6656645096994,"id":2197,"parentId":2190,"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":1776263592181,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2841,"timestamp":6656645116703,"id":2206,"parentId":2205,"tags":{},"startTime":1776263592201,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2891,"timestamp":6656645116654,"id":2205,"parentId":2204,"tags":{},"startTime":1776263592201,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5018,"timestamp":6656645116513,"id":2204,"parentId":2198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1776263592201,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2693,"timestamp":6656645119003,"id":2208,"parentId":2207,"tags":{},"startTime":1776263592203,"traceId":"c730e3ac75d31d11"},{"name":"build-module-cjs","duration":3582,"timestamp":6656645118702,"id":2207,"parentId":2198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":null},"startTime":1776263592203,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":25395,"timestamp":6656645096911,"id":2193,"parentId":2190,"tags":{"request":"next/dist/pages/_app"},"startTime":1776263592181,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":4051,"timestamp":6656645119065,"id":2210,"parentId":2194,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1776263592203,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":4191,"timestamp":6656645119394,"id":2211,"parentId":2196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1776263592204,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":574,"timestamp":6656645125866,"id":2218,"parentId":2217,"tags":{},"startTime":1776263592210,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":773,"timestamp":6656645125828,"id":2217,"parentId":2210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":null},"startTime":1776263592210,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1577,"timestamp":6656645125055,"id":2216,"parentId":2215,"tags":{},"startTime":1776263592209,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1604,"timestamp":6656645125029,"id":2215,"parentId":2214,"tags":{},"startTime":1776263592209,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2220,"timestamp":6656645124956,"id":2214,"parentId":2210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1776263592209,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":406,"timestamp":6656645127809,"id":2222,"parentId":2221,"tags":{},"startTime":1776263592212,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":633,"timestamp":6656645127790,"id":2221,"parentId":2210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/module.compiled.js","layer":null},"startTime":1776263592212,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":189,"timestamp":6656645128572,"id":2226,"parentId":2221,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.dev.js","layer":null},"startTime":1776263592213,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":1788,"timestamp":6656645127345,"id":2220,"parentId":2219,"tags":{},"startTime":1776263592212,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2010,"timestamp":6656645127273,"id":2219,"parentId":2210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/templates/helpers.js","layer":null},"startTime":1776263592212,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9986,"timestamp":6656645119481,"id":2213,"parentId":2212,"tags":{},"startTime":1776263592204,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10021,"timestamp":6656645119449,"id":2212,"parentId":2209,"tags":{},"startTime":1776263592204,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15084,"timestamp":6656645119018,"id":2209,"parentId":2195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_document.js","layer":null},"startTime":1776263592203,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7232,"timestamp":6656645127941,"id":2225,"parentId":2224,"tags":{},"startTime":1776263592212,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7256,"timestamp":6656645127920,"id":2224,"parentId":2223,"tags":{},"startTime":1776263592212,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9688,"timestamp":6656645127834,"id":2223,"parentId":2214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1776263592212,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":57,"timestamp":6656645142315,"id":2228,"parentId":2227,"tags":{},"startTime":1776263592227,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":394,"timestamp":6656645142276,"id":2227,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1776263592227,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2607,"timestamp":6656645142743,"id":2231,"parentId":2230,"tags":{},"startTime":1776263592227,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2643,"timestamp":6656645142709,"id":2230,"parentId":2229,"tags":{},"startTime":1776263592227,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3646,"timestamp":6656645142320,"id":2229,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1776263592227,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2054,"timestamp":6656645144592,"id":2236,"parentId":2235,"tags":{},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2087,"timestamp":6656645144564,"id":2235,"parentId":2232,"tags":{},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2841,"timestamp":6656645144207,"id":2232,"parentId":2223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2460,"timestamp":6656645144606,"id":2238,"parentId":2237,"tags":{},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2471,"timestamp":6656645144596,"id":2237,"parentId":2233,"tags":{},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2739,"timestamp":6656645144442,"id":2233,"parentId":2223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2656,"timestamp":6656645144616,"id":2240,"parentId":2239,"tags":{},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2666,"timestamp":6656645144608,"id":2239,"parentId":2234,"tags":{},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2892,"timestamp":6656645144493,"id":2234,"parentId":2223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1776263592229,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2102,"timestamp":6656645145292,"id":2253,"parentId":2252,"tags":{},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2124,"timestamp":6656645145270,"id":2252,"parentId":2245,"tags":{},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2299,"timestamp":6656645145173,"id":2245,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":null},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1229,"timestamp":6656645146318,"id":2256,"parentId":2255,"tags":{},"startTime":1776263592231,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1270,"timestamp":6656645146279,"id":2255,"parentId":2254,"tags":{},"startTime":1776263592231,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1599,"timestamp":6656645146083,"id":2254,"parentId":2227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2854,"timestamp":6656645145148,"id":2242,"parentId":2241,"tags":{},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3273,"timestamp":6656645145131,"id":2241,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/utils.js","layer":null},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3402,"timestamp":6656645145233,"id":2249,"parentId":2248,"tags":{},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3544,"timestamp":6656645145225,"id":2248,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/get-page-files.js","layer":null},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3530,"timestamp":6656645145254,"id":2251,"parentId":2250,"tags":{},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"build-module-cjs","duration":3855,"timestamp":6656645145237,"id":2250,"parentId":2223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":null},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3885,"timestamp":6656645145212,"id":2247,"parentId":2246,"tags":{},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4103,"timestamp":6656645145204,"id":2246,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/htmlescape.js","layer":null},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4144,"timestamp":6656645145168,"id":2244,"parentId":2243,"tags":{},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4511,"timestamp":6656645145159,"id":2243,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/pretty-bytes.js","layer":null},"startTime":1776263592230,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1818,"timestamp":6656645147921,"id":2259,"parentId":2258,"tags":{},"startTime":1776263592232,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1848,"timestamp":6656645147892,"id":2258,"parentId":2257,"tags":{},"startTime":1776263592232,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2024,"timestamp":6656645147792,"id":2257,"parentId":2229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1776263592232,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":1258,"timestamp":6656645150429,"id":2262,"parentId":2261,"tags":{},"startTime":1776263592235,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1281,"timestamp":6656645150408,"id":2261,"parentId":2260,"tags":{},"startTime":1776263592235,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1486,"timestamp":6656645150363,"id":2260,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1776263592235,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2410,"timestamp":6656645150928,"id":2265,"parentId":2264,"tags":{},"startTime":1776263592235,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2427,"timestamp":6656645150913,"id":2264,"parentId":2263,"tags":{},"startTime":1776263592235,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2874,"timestamp":6656645150884,"id":2263,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":null},"startTime":1776263592235,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":93,"timestamp":6656645154857,"id":2278,"parentId":2263,"tags":{"name":"path","layer":null},"startTime":1776263592239,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3201,"timestamp":6656645151981,"id":2269,"parentId":2268,"tags":{},"startTime":1776263592236,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3291,"timestamp":6656645151970,"id":2268,"parentId":2223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/head-manager-context.js","layer":null},"startTime":1776263592236,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3307,"timestamp":6656645151960,"id":2267,"parentId":2266,"tags":{},"startTime":1776263592236,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3368,"timestamp":6656645151937,"id":2266,"parentId":2209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/html-context.js","layer":null},"startTime":1776263592236,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4463,"timestamp":6656645151997,"id":2271,"parentId":2270,"tags":{},"startTime":1776263592236,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4659,"timestamp":6656645151988,"id":2270,"parentId":2223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/amp-context.js","layer":null},"startTime":1776263592236,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2617,"timestamp":6656645154049,"id":2275,"parentId":2274,"tags":{},"startTime":1776263592238,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2643,"timestamp":6656645154024,"id":2274,"parentId":2272,"tags":{},"startTime":1776263592238,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2916,"timestamp":6656645153886,"id":2272,"parentId":2260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1776263592238,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2747,"timestamp":6656645154063,"id":2277,"parentId":2276,"tags":{},"startTime":1776263592238,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2759,"timestamp":6656645154052,"id":2276,"parentId":2273,"tags":{},"startTime":1776263592238,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2998,"timestamp":6656645153936,"id":2273,"parentId":2260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1776263592238,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2246,"timestamp":6656645155152,"id":2281,"parentId":2280,"tags":{},"startTime":1776263592240,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2362,"timestamp":6656645155038,"id":2280,"parentId":2279,"tags":{},"startTime":1776263592239,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2477,"timestamp":6656645154998,"id":2279,"parentId":2263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1776263592239,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":665,"timestamp":6656645157699,"id":2287,"parentId":2286,"tags":{},"startTime":1776263592242,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":676,"timestamp":6656645157690,"id":2286,"parentId":2283,"tags":{},"startTime":1776263592242,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":889,"timestamp":6656645157633,"id":2283,"parentId":2273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1776263592242,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6,"timestamp":6656645158926,"id":2289,"parentId":2288,"tags":{},"startTime":1776263592243,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":438,"timestamp":6656645158896,"id":2288,"parentId":2283,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1776263592243,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3079,"timestamp":6656645157688,"id":2285,"parentId":2284,"tags":{},"startTime":1776263592242,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3102,"timestamp":6656645157668,"id":2284,"parentId":2282,"tags":{},"startTime":1776263592242,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3815,"timestamp":6656645157540,"id":2282,"parentId":2273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1776263592242,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2172,"timestamp":6656645160105,"id":2292,"parentId":2291,"tags":{},"startTime":1776263592244,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2191,"timestamp":6656645160088,"id":2291,"parentId":2290,"tags":{},"startTime":1776263592244,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2870,"timestamp":6656645159602,"id":2290,"parentId":2288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1776263592244,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":787,"timestamp":6656645164619,"id":2295,"parentId":2294,"tags":{},"startTime":1776263592249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":814,"timestamp":6656645164595,"id":2294,"parentId":2293,"tags":{},"startTime":1776263592249,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1039,"timestamp":6656645164541,"id":2293,"parentId":2290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1776263592249,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":68621,"timestamp":6656645096990,"id":2195,"parentId":2190,"tags":{"request":"next/dist/pages/_document"},"startTime":1776263592181,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":68627,"timestamp":6656645096985,"id":2194,"parentId":2190,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776263592181,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":68622,"timestamp":6656645096992,"id":2196,"parentId":2190,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776263592181,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":86648,"timestamp":6656645085527,"id":2190,"parentId":2189,"tags":{},"startTime":1776263592170,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":786,"timestamp":6656645174017,"id":2300,"parentId":2299,"tags":{},"startTime":1776263592258,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":3,"timestamp":6656645174821,"id":2302,"parentId":2299,"tags":{},"startTime":1776263592259,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":1229,"timestamp":6656645174837,"id":2303,"parentId":2299,"tags":{},"startTime":1776263592259,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":9,"timestamp":6656645176114,"id":2304,"parentId":2299,"tags":{},"startTime":1776263592261,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6656645176138,"id":2305,"parentId":2299,"tags":{},"startTime":1776263592261,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":1974,"timestamp":6656645174812,"id":2301,"parentId":2299,"tags":{},"startTime":1776263592259,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":714,"timestamp":6656645177437,"id":2306,"parentId":2299,"tags":{},"startTime":1776263592262,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":1493,"timestamp":6656645178160,"id":2307,"parentId":2299,"tags":{},"startTime":1776263592263,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":688,"timestamp":6656645180311,"id":2308,"parentId":2299,"tags":{},"startTime":1776263592265,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":40,"timestamp":6656645181000,"id":2309,"parentId":2299,"tags":{},"startTime":1776263592265,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":31,"timestamp":6656645181033,"id":2310,"parentId":2299,"tags":{},"startTime":1776263592265,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":6260,"timestamp":6656645181066,"id":2311,"parentId":2299,"tags":{},"startTime":1776263592265,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":15110,"timestamp":6656645173482,"id":2299,"parentId":2189,"tags":{},"startTime":1776263592258,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":105628,"timestamp":6656645084736,"id":2189,"parentId":1602,"tags":{"name":"server"},"startTime":1776263592169,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":5414,"timestamp":6656645190384,"id":2312,"parentId":1602,"tags":{},"startTime":1776263592275,"traceId":"c730e3ac75d31d11"},{"name":"compile-path","duration":1194021,"timestamp":6656644002382,"id":1601,"tags":{"trigger":"/_error","isTurbopack":false},"startTime":1776263591087,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":417,"timestamp":6656645196140,"id":2313,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776263592281,"traceId":"c730e3ac75d31d11"}] -[{"name":"add-entry","duration":9186,"timestamp":6656645200303,"id":2318,"parentId":2315,"tags":{"request":"next/dist/pages/_document"},"startTime":1776263592285,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":9869,"timestamp":6656645200267,"id":2316,"parentId":2315,"tags":{"request":"next/dist/pages/_app"},"startTime":1776263592285,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":12089,"timestamp":6656645200299,"id":2317,"parentId":2315,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776263592285,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":12100,"timestamp":6656645200305,"id":2319,"parentId":2315,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776263592285,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":12630,"timestamp":6656645200308,"id":2320,"parentId":2315,"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":1776263592285,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":20851,"timestamp":6656645198067,"id":2315,"parentId":2314,"tags":{},"startTime":1776263592282,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":771,"timestamp":6656645220428,"id":2325,"parentId":2324,"tags":{},"startTime":1776263592305,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":3,"timestamp":6656645221217,"id":2327,"parentId":2324,"tags":{},"startTime":1776263592306,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":661,"timestamp":6656645221230,"id":2328,"parentId":2324,"tags":{},"startTime":1776263592306,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":4,"timestamp":6656645221906,"id":2329,"parentId":2324,"tags":{},"startTime":1776263592306,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6656645221919,"id":2330,"parentId":2324,"tags":{},"startTime":1776263592306,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":1018,"timestamp":6656645221210,"id":2326,"parentId":2324,"tags":{},"startTime":1776263592306,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":148,"timestamp":6656645222697,"id":2331,"parentId":2324,"tags":{},"startTime":1776263592307,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":510,"timestamp":6656645222849,"id":2332,"parentId":2324,"tags":{},"startTime":1776263592307,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":562,"timestamp":6656645223955,"id":2333,"parentId":2324,"tags":{},"startTime":1776263592308,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":28,"timestamp":6656645224517,"id":2334,"parentId":2324,"tags":{},"startTime":1776263592309,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":22,"timestamp":6656645224540,"id":2335,"parentId":2324,"tags":{},"startTime":1776263592309,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":92,"timestamp":6656645224565,"id":2336,"parentId":2324,"tags":{},"startTime":1776263592309,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":6150,"timestamp":6656645219778,"id":2324,"parentId":2314,"tags":{},"startTime":1776263592304,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":29778,"timestamp":6656645197851,"id":2314,"parentId":3,"tags":{"name":"server"},"startTime":1776263592282,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":3825,"timestamp":6656645227642,"id":2337,"parentId":3,"tags":{},"startTime":1776263592312,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1322529,"timestamp":6656643968469,"id":1596,"tags":{"url":"/api/recommendations/latest","isTurbopack":false},"startTime":1776263591053,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1315035,"timestamp":6656643975971,"id":1597,"tags":{"url":"/api/sectors/hot?limit=8","isTurbopack":false},"startTime":1776263591060,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1307099,"timestamp":6656643983907,"id":1598,"tags":{"url":"/api/recommendations/status","isTurbopack":false},"startTime":1776263591068,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1305479,"timestamp":6656643985527,"id":1599,"tags":{"url":"/api/health","isTurbopack":false},"startTime":1776263591070,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1272868,"timestamp":6656644018139,"id":1605,"tags":{"url":"/api/market/overview","isTurbopack":false},"startTime":1776263591103,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1271206,"timestamp":6656644019801,"id":1606,"tags":{"url":"/api/market/daily-review","isTurbopack":false},"startTime":1776263591104,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1265328,"timestamp":6656644025679,"id":1607,"tags":{"url":"/api/recommendations/latest","isTurbopack":false},"startTime":1776263591110,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1263593,"timestamp":6656644027414,"id":1608,"tags":{"url":"/api/sectors/hot?limit=8","isTurbopack":false},"startTime":1776263591112,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1261841,"timestamp":6656644029166,"id":1609,"tags":{"url":"/api/recommendations/status","isTurbopack":false},"startTime":1776263591114,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1253965,"timestamp":6656644037043,"id":1610,"tags":{"url":"/api/health","isTurbopack":false},"startTime":1776263591121,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1234879,"timestamp":6656644056129,"id":1622,"tags":{"url":"/api/market/overview","isTurbopack":false},"startTime":1776263591141,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":1227014,"timestamp":6656644063994,"id":1623,"tags":{"url":"/api/market/daily-review","isTurbopack":false},"startTime":1776263591148,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6656645291041,"id":2338,"parentId":1596,"tags":{"url":"/api/recommendations/latest","memory.rss":"492355584","memory.heapUsed":"276538256","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291050,"id":2339,"parentId":1597,"tags":{"url":"/api/sectors/hot?limit=8","memory.rss":"492355584","memory.heapUsed":"276543000","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291056,"id":2340,"parentId":1598,"tags":{"url":"/api/recommendations/status","memory.rss":"492355584","memory.heapUsed":"276544192","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291060,"id":2341,"parentId":1599,"tags":{"url":"/api/health","memory.rss":"492355584","memory.heapUsed":"276545384","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291065,"id":2342,"parentId":1605,"tags":{"url":"/api/market/overview","memory.rss":"492355584","memory.heapUsed":"276546576","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291069,"id":2343,"parentId":1606,"tags":{"url":"/api/market/daily-review","memory.rss":"492355584","memory.heapUsed":"276547768","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291074,"id":2344,"parentId":1607,"tags":{"url":"/api/recommendations/latest","memory.rss":"492355584","memory.heapUsed":"276548960","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291080,"id":2345,"parentId":1608,"tags":{"url":"/api/sectors/hot?limit=8","memory.rss":"492355584","memory.heapUsed":"276550392","memory.heapTotal":"311820288"},"startTime":1776263592375,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291133,"id":2346,"parentId":1609,"tags":{"url":"/api/recommendations/status","memory.rss":"492371968","memory.heapUsed":"276558312","memory.heapTotal":"311820288"},"startTime":1776263592376,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291137,"id":2347,"parentId":1610,"tags":{"url":"/api/health","memory.rss":"492371968","memory.heapUsed":"276559776","memory.heapTotal":"311820288"},"startTime":1776263592376,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291140,"id":2348,"parentId":1622,"tags":{"url":"/api/market/overview","memory.rss":"492371968","memory.heapUsed":"276561104","memory.heapTotal":"311820288"},"startTime":1776263592376,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6656645291142,"id":2349,"parentId":1623,"tags":{"url":"/api/market/daily-review","memory.rss":"492371968","memory.heapUsed":"276563000","memory.heapTotal":"311820288"},"startTime":1776263592376,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":217786,"timestamp":6656645093428,"id":2192,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1776263592178,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6656645311246,"id":2350,"parentId":2192,"tags":{"url":"/?_rsc=1p60s","memory.rss":"497090560","memory.heapUsed":"282034448","memory.heapTotal":"314589184"},"startTime":1776263592396,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":6386,"timestamp":6656645313457,"id":2351,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1776263592398,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6656645319865,"id":2352,"parentId":2351,"tags":{"url":"/?_rsc=1p60s","memory.rss":"497172480","memory.heapUsed":"283172008","memory.heapTotal":"314589184"},"startTime":1776263592404,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":7417,"timestamp":6656645321318,"id":2353,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1776263592406,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6656645328759,"id":2354,"parentId":2353,"tags":{"url":"/?_rsc=1p60s","memory.rss":"497352704","memory.heapUsed":"284367248","memory.heapTotal":"314589184"},"startTime":1776263592413,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":36214,"timestamp":6657056666176,"id":2355,"tags":{"url":"/api/recommendations/refresh?scan_session=manual","isTurbopack":false},"startTime":1776264003750,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":2,"timestamp":6657056702899,"id":2356,"parentId":2355,"tags":{"url":"/api/recommendations/refresh?scan_session=manual","memory.rss":"95895552","memory.heapUsed":"212093344","memory.heapTotal":"224772096"},"startTime":1776264003786,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":193012,"timestamp":6657437305782,"id":2357,"tags":{"url":"/","isTurbopack":false},"startTime":1776264384388,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":2,"timestamp":6657437499427,"id":2358,"parentId":2357,"tags":{"url":"/","memory.rss":"107462656","memory.heapUsed":"214773264","memory.heapTotal":"225181696"},"startTime":1776264384582,"traceId":"c730e3ac75d31d11"},{"name":"client-success","duration":31,"timestamp":6657438461806,"id":2359,"parentId":3,"tags":{},"startTime":1776264385544,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":44532,"timestamp":6657469232035,"id":2367,"parentId":2364,"tags":{"request":"next/dist/pages/_document"},"startTime":1776264416314,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":46031,"timestamp":6657469231088,"id":2365,"parentId":2364,"tags":{"request":"next/dist/pages/_app"},"startTime":1776264416313,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":45086,"timestamp":6657469232040,"id":2369,"parentId":2364,"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":1776264416314,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":45103,"timestamp":6657469232028,"id":2366,"parentId":2364,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776264416314,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":50647,"timestamp":6657469255172,"id":2370,"parentId":2368,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776264416338,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":97781,"timestamp":6657469309295,"id":2373,"parentId":2372,"tags":{},"startTime":1776264416392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":97920,"timestamp":6657469309168,"id":2372,"parentId":2371,"tags":{},"startTime":1776264416392,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":98853,"timestamp":6657469308936,"id":2371,"parentId":2370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/stock/[code]/page.tsx","layer":"rsc"},"startTime":1776264416391,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":177419,"timestamp":6657469232038,"id":2368,"parentId":2364,"tags":{"request":"next-app-loader?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264416314,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":4912,"timestamp":6657469415374,"id":2381,"parentId":2363,"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%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776264416498,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":24580,"timestamp":6657469427545,"id":2384,"parentId":2383,"tags":{},"startTime":1776264416510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24675,"timestamp":6657469427460,"id":2383,"parentId":2382,"tags":{},"startTime":1776264416510,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":48423,"timestamp":6657469427199,"id":2382,"parentId":2381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/stock/[code]/page.tsx","layer":"ssr"},"startTime":1776264416510,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":5520,"timestamp":6657469502888,"id":2388,"parentId":2387,"tags":{},"startTime":1776264416585,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5585,"timestamp":6657469502830,"id":2387,"parentId":2385,"tags":{},"startTime":1776264416585,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":7838,"timestamp":6657469502582,"id":2385,"parentId":2382,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"ssr"},"startTime":1776264416585,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9039,"timestamp":6657469502925,"id":2390,"parentId":2389,"tags":{},"startTime":1776264416585,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9074,"timestamp":6657469502892,"id":2389,"parentId":2386,"tags":{},"startTime":1776264416585,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":10808,"timestamp":6657469502752,"id":2386,"parentId":2382,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"ssr"},"startTime":1776264416585,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":305,"timestamp":6657469518364,"id":2392,"parentId":2391,"tags":{},"startTime":1776264416601,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":42,"timestamp":6657469518682,"id":2393,"parentId":2391,"tags":{},"startTime":1776264416601,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1853,"timestamp":6657469517906,"id":2391,"parentId":2385,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"ssr"},"startTime":1776264416600,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":843,"timestamp":6657469523319,"id":2401,"parentId":2396,"tags":{},"startTime":1776264416606,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469524168,"id":2406,"parentId":2396,"tags":{},"startTime":1776264416607,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1714,"timestamp":6657469522708,"id":2396,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"ssr"},"startTime":1776264416605,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1087,"timestamp":6657469523343,"id":2405,"parentId":2400,"tags":{},"startTime":1776264416606,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469524434,"id":2407,"parentId":2400,"tags":{},"startTime":1776264416607,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1300,"timestamp":6657469523266,"id":2400,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"ssr"},"startTime":1776264416606,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1243,"timestamp":6657469523327,"id":2402,"parentId":2397,"tags":{},"startTime":1776264416606,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469524572,"id":2408,"parentId":2397,"tags":{},"startTime":1776264416607,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2002,"timestamp":6657469522759,"id":2397,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"ssr"},"startTime":1776264416605,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1924,"timestamp":6657469523333,"id":2403,"parentId":2398,"tags":{},"startTime":1776264416606,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469525265,"id":2409,"parentId":2398,"tags":{},"startTime":1776264416608,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2816,"timestamp":6657469522813,"id":2398,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"ssr"},"startTime":1776264416605,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2997,"timestamp":6657469522638,"id":2395,"parentId":2394,"tags":{},"startTime":1776264416605,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657469525638,"id":2410,"parentId":2394,"tags":{},"startTime":1776264416608,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3893,"timestamp":6657469522548,"id":2394,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"ssr"},"startTime":1776264416605,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3112,"timestamp":6657469523338,"id":2404,"parentId":2399,"tags":{},"startTime":1776264416606,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469526455,"id":2411,"parentId":2399,"tags":{},"startTime":1776264416609,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3914,"timestamp":6657469522854,"id":2399,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"ssr"},"startTime":1776264416605,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9408,"timestamp":6657469533375,"id":2413,"parentId":2412,"tags":{},"startTime":1776264416616,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469542795,"id":2434,"parentId":2412,"tags":{},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10462,"timestamp":6657469533271,"id":2412,"parentId":2396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"ssr"},"startTime":1776264416616,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40218,"timestamp":6657469540826,"id":2421,"parentId":2417,"tags":{},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":128,"timestamp":6657469581074,"id":2539,"parentId":2417,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":41702,"timestamp":6657469540758,"id":2417,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"ssr"},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41691,"timestamp":6657469540804,"id":2418,"parentId":2414,"tags":{},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":91,"timestamp":6657469582501,"id":2540,"parentId":2414,"tags":{},"startTime":1776264416665,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":80266,"timestamp":6657469540560,"id":2414,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"ssr"},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":80072,"timestamp":6657469540816,"id":2419,"parentId":2415,"tags":{},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657469620901,"id":2541,"parentId":2415,"tags":{},"startTime":1776264416703,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":80579,"timestamp":6657469540669,"id":2415,"parentId":2397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"ssr"},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":80441,"timestamp":6657469540821,"id":2420,"parentId":2416,"tags":{},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6657469621270,"id":2542,"parentId":2416,"tags":{},"startTime":1776264416704,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":80749,"timestamp":6657469540717,"id":2416,"parentId":2397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"ssr"},"startTime":1776264416623,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":83293,"timestamp":6657469542267,"id":2423,"parentId":2422,"tags":{},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":118,"timestamp":6657469625581,"id":2543,"parentId":2422,"tags":{},"startTime":1776264416708,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":92100,"timestamp":6657469542190,"id":2422,"parentId":2400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"ssr"},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":92802,"timestamp":6657469542741,"id":2430,"parentId":2425,"tags":{},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":49,"timestamp":6657469635557,"id":2544,"parentId":2425,"tags":{},"startTime":1776264416718,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":95047,"timestamp":6657469542488,"id":2425,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"ssr"},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":94823,"timestamp":6657469542734,"id":2429,"parentId":2424,"tags":{},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6657469637566,"id":2545,"parentId":2424,"tags":{},"startTime":1776264416720,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":95505,"timestamp":6657469542435,"id":2424,"parentId":2396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"ssr"},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":95203,"timestamp":6657469542746,"id":2431,"parentId":2426,"tags":{},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657469637954,"id":2546,"parentId":2426,"tags":{},"startTime":1776264416720,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":95719,"timestamp":6657469542617,"id":2426,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"ssr"},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":95585,"timestamp":6657469542759,"id":2433,"parentId":2428,"tags":{},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657469638349,"id":2547,"parentId":2428,"tags":{},"startTime":1776264416721,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":98573,"timestamp":6657469542696,"id":2428,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"ssr"},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":98542,"timestamp":6657469542754,"id":2432,"parentId":2427,"tags":{},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":59,"timestamp":6657469641302,"id":2548,"parentId":2427,"tags":{},"startTime":1776264416724,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":99613,"timestamp":6657469542658,"id":2427,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"ssr"},"startTime":1776264416625,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":68375,"timestamp":6657469580390,"id":2489,"parentId":2437,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":73,"timestamp":6657469648789,"id":2549,"parentId":2437,"tags":{},"startTime":1776264416731,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":82295,"timestamp":6657469567647,"id":2437,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"ssr"},"startTime":1776264416650,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":69610,"timestamp":6657469580347,"id":2487,"parentId":2435,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":48,"timestamp":6657469649967,"id":2550,"parentId":2435,"tags":{},"startTime":1776264416732,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":83593,"timestamp":6657469566993,"id":2435,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"ssr"},"startTime":1776264416649,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":70135,"timestamp":6657469580461,"id":2493,"parentId":2441,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":53,"timestamp":6657469650604,"id":2551,"parentId":2441,"tags":{},"startTime":1776264416733,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":82234,"timestamp":6657469568671,"id":2441,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":70533,"timestamp":6657469580380,"id":2488,"parentId":2436,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657469650927,"id":2552,"parentId":2436,"tags":{},"startTime":1776264416733,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":83941,"timestamp":6657469567155,"id":2436,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"ssr"},"startTime":1776264416650,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":72340,"timestamp":6657469580494,"id":2499,"parentId":2447,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":61,"timestamp":6657469652842,"id":2553,"parentId":2447,"tags":{},"startTime":1776264416735,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":83805,"timestamp":6657469569523,"id":2447,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"ssr"},"startTime":1776264416652,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":72896,"timestamp":6657469580481,"id":2496,"parentId":2444,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":69,"timestamp":6657469653391,"id":2554,"parentId":2444,"tags":{},"startTime":1776264416736,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":84763,"timestamp":6657469568973,"id":2444,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":73331,"timestamp":6657469580413,"id":2492,"parentId":2440,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657469653749,"id":2555,"parentId":2440,"tags":{},"startTime":1776264416736,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":85741,"timestamp":6657469568592,"id":2440,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":73854,"timestamp":6657469580486,"id":2497,"parentId":2445,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":59,"timestamp":6657469654345,"id":2556,"parentId":2445,"tags":{},"startTime":1776264416737,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87089,"timestamp":6657469569042,"id":2445,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":75682,"timestamp":6657469580477,"id":2495,"parentId":2443,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":72,"timestamp":6657469656168,"id":2557,"parentId":2443,"tags":{},"startTime":1776264416739,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87840,"timestamp":6657469568889,"id":2443,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":76251,"timestamp":6657469580490,"id":2498,"parentId":2446,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":65,"timestamp":6657469656747,"id":2558,"parentId":2446,"tags":{},"startTime":1776264416739,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87573,"timestamp":6657469569426,"id":2446,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"ssr"},"startTime":1776264416652,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":76536,"timestamp":6657469580472,"id":2494,"parentId":2442,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657469657012,"id":2559,"parentId":2442,"tags":{},"startTime":1776264416739,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":88453,"timestamp":6657469568816,"id":2442,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":76768,"timestamp":6657469580507,"id":2502,"parentId":2450,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657469657280,"id":2560,"parentId":2450,"tags":{},"startTime":1776264416740,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87202,"timestamp":6657469570293,"id":2450,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"ssr"},"startTime":1776264416653,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":76991,"timestamp":6657469580511,"id":2503,"parentId":2451,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6657469657507,"id":2561,"parentId":2451,"tags":{},"startTime":1776264416740,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87319,"timestamp":6657469570378,"id":2451,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"ssr"},"startTime":1776264416653,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":77190,"timestamp":6657469580516,"id":2504,"parentId":2452,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":46,"timestamp":6657469657710,"id":2562,"parentId":2452,"tags":{},"startTime":1776264416740,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87422,"timestamp":6657469570475,"id":2452,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"ssr"},"startTime":1776264416653,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":77520,"timestamp":6657469580406,"id":2491,"parentId":2439,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657469657929,"id":2563,"parentId":2439,"tags":{},"startTime":1776264416740,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89902,"timestamp":6657469568262,"id":2439,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":77666,"timestamp":6657469580503,"id":2501,"parentId":2449,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":115,"timestamp":6657469658174,"id":2564,"parentId":2449,"tags":{},"startTime":1776264416741,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":88213,"timestamp":6657469570215,"id":2449,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"ssr"},"startTime":1776264416653,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":78418,"timestamp":6657469580498,"id":2500,"parentId":2448,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":52,"timestamp":6657469658923,"id":2565,"parentId":2448,"tags":{},"startTime":1776264416741,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89661,"timestamp":6657469569666,"id":2448,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"ssr"},"startTime":1776264416652,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":78937,"timestamp":6657469580396,"id":2490,"parentId":2438,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657469659338,"id":2566,"parentId":2438,"tags":{},"startTime":1776264416742,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":91499,"timestamp":6657469568163,"id":2438,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"ssr"},"startTime":1776264416651,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":79136,"timestamp":6657469580532,"id":2508,"parentId":2456,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657469659673,"id":2567,"parentId":2456,"tags":{},"startTime":1776264416742,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87940,"timestamp":6657469571901,"id":2456,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"ssr"},"startTime":1776264416654,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":79309,"timestamp":6657469580537,"id":2509,"parentId":2457,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":67,"timestamp":6657469659850,"id":2568,"parentId":2457,"tags":{},"startTime":1776264416742,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87913,"timestamp":6657469572130,"id":2457,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"ssr"},"startTime":1776264416655,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":79519,"timestamp":6657469580541,"id":2510,"parentId":2458,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":58,"timestamp":6657469660064,"id":2569,"parentId":2458,"tags":{},"startTime":1776264416742,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87915,"timestamp":6657469572334,"id":2458,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"ssr"},"startTime":1776264416655,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":79710,"timestamp":6657469580545,"id":2511,"parentId":2459,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657469660259,"id":2570,"parentId":2459,"tags":{},"startTime":1776264416743,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87951,"timestamp":6657469572468,"id":2459,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"ssr"},"startTime":1776264416655,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":79874,"timestamp":6657469580549,"id":2512,"parentId":2460,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469660427,"id":2571,"parentId":2460,"tags":{},"startTime":1776264416743,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87957,"timestamp":6657469572654,"id":2460,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"ssr"},"startTime":1776264416655,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":80062,"timestamp":6657469580552,"id":2513,"parentId":2461,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":52,"timestamp":6657469660619,"id":2572,"parentId":2461,"tags":{},"startTime":1776264416743,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":88304,"timestamp":6657469572743,"id":2461,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"ssr"},"startTime":1776264416655,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":80527,"timestamp":6657469580525,"id":2506,"parentId":2454,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":76,"timestamp":6657469661180,"id":2573,"parentId":2454,"tags":{},"startTime":1776264416744,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90802,"timestamp":6657469570647,"id":2454,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"ssr"},"startTime":1776264416653,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":80897,"timestamp":6657469580559,"id":2515,"parentId":2463,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657469661462,"id":2574,"parentId":2463,"tags":{},"startTime":1776264416744,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87850,"timestamp":6657469573807,"id":2463,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"ssr"},"startTime":1776264416656,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":81106,"timestamp":6657469580556,"id":2514,"parentId":2462,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":60,"timestamp":6657469661665,"id":2575,"parentId":2462,"tags":{},"startTime":1776264416744,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":88215,"timestamp":6657469573671,"id":2462,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"ssr"},"startTime":1776264416656,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":81322,"timestamp":6657469580570,"id":2518,"parentId":2466,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":57,"timestamp":6657469661896,"id":2576,"parentId":2466,"tags":{},"startTime":1776264416744,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87705,"timestamp":6657469574413,"id":2466,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"ssr"},"startTime":1776264416657,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":81560,"timestamp":6657469580563,"id":2516,"parentId":2464,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":53,"timestamp":6657469662126,"id":2577,"parentId":2464,"tags":{},"startTime":1776264416745,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":88084,"timestamp":6657469574205,"id":2464,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"ssr"},"startTime":1776264416657,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":81720,"timestamp":6657469580573,"id":2519,"parentId":2467,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657469662296,"id":2578,"parentId":2467,"tags":{},"startTime":1776264416745,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87637,"timestamp":6657469574861,"id":2467,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"ssr"},"startTime":1776264416657,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":81918,"timestamp":6657469580586,"id":2522,"parentId":2470,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":56,"timestamp":6657469662509,"id":2579,"parentId":2470,"tags":{},"startTime":1776264416745,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":85891,"timestamp":6657469576796,"id":2470,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"ssr"},"startTime":1776264416659,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":82126,"timestamp":6657469580566,"id":2517,"parentId":2465,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657469662696,"id":2580,"parentId":2465,"tags":{},"startTime":1776264416745,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":88649,"timestamp":6657469574311,"id":2465,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"ssr"},"startTime":1776264416657,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":82382,"timestamp":6657469580583,"id":2521,"parentId":2469,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6657469662969,"id":2581,"parentId":2469,"tags":{},"startTime":1776264416745,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87209,"timestamp":6657469575946,"id":2469,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"ssr"},"startTime":1776264416658,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":82585,"timestamp":6657469580577,"id":2520,"parentId":2468,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":65,"timestamp":6657469663165,"id":2582,"parentId":2468,"tags":{},"startTime":1776264416746,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90778,"timestamp":6657469575371,"id":2468,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"ssr"},"startTime":1776264416658,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":85578,"timestamp":6657469580589,"id":2523,"parentId":2471,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":87,"timestamp":6657469666175,"id":2583,"parentId":2471,"tags":{},"startTime":1776264416749,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89657,"timestamp":6657469576896,"id":2471,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"ssr"},"startTime":1776264416659,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":85967,"timestamp":6657469580593,"id":2524,"parentId":2472,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":131,"timestamp":6657469666565,"id":2584,"parentId":2472,"tags":{},"startTime":1776264416749,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89926,"timestamp":6657469576962,"id":2472,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"ssr"},"startTime":1776264416659,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":86298,"timestamp":6657469580597,"id":2525,"parentId":2473,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6657469666899,"id":2585,"parentId":2473,"tags":{},"startTime":1776264416749,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90039,"timestamp":6657469577028,"id":2473,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"ssr"},"startTime":1776264416659,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":86310,"timestamp":6657469580761,"id":2526,"parentId":2474,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":53,"timestamp":6657469667075,"id":2586,"parentId":2474,"tags":{},"startTime":1776264416749,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90364,"timestamp":6657469577090,"id":2474,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"ssr"},"startTime":1776264416659,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":86651,"timestamp":6657469580811,"id":2527,"parentId":2475,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":56,"timestamp":6657469667466,"id":2587,"parentId":2475,"tags":{},"startTime":1776264416750,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90500,"timestamp":6657469577291,"id":2475,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"ssr"},"startTime":1776264416660,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":86956,"timestamp":6657469580841,"id":2529,"parentId":2477,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":48,"timestamp":6657469667802,"id":2588,"parentId":2477,"tags":{},"startTime":1776264416750,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90719,"timestamp":6657469577433,"id":2477,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"ssr"},"startTime":1776264416660,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":87330,"timestamp":6657469580826,"id":2528,"parentId":2476,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":46,"timestamp":6657469668160,"id":2589,"parentId":2476,"tags":{},"startTime":1776264416751,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90953,"timestamp":6657469577368,"id":2476,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"ssr"},"startTime":1776264416660,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":87462,"timestamp":6657469580864,"id":2530,"parentId":2478,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":53,"timestamp":6657469668329,"id":2590,"parentId":2478,"tags":{},"startTime":1776264416751,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89670,"timestamp":6657469578816,"id":2478,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"ssr"},"startTime":1776264416661,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":87620,"timestamp":6657469580871,"id":2531,"parentId":2479,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657469668495,"id":2591,"parentId":2479,"tags":{},"startTime":1776264416751,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89753,"timestamp":6657469578921,"id":2479,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"ssr"},"startTime":1776264416661,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":87803,"timestamp":6657469580875,"id":2532,"parentId":2480,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657469668682,"id":2592,"parentId":2480,"tags":{},"startTime":1776264416751,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89812,"timestamp":6657469579013,"id":2480,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"ssr"},"startTime":1776264416661,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":87939,"timestamp":6657469580890,"id":2536,"parentId":2484,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657469668833,"id":2593,"parentId":2484,"tags":{},"startTime":1776264416751,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89175,"timestamp":6657469579775,"id":2484,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"ssr"},"startTime":1776264416662,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":88077,"timestamp":6657469580879,"id":2533,"parentId":2481,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657469668960,"id":2594,"parentId":2481,"tags":{},"startTime":1776264416751,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90051,"timestamp":6657469579093,"id":2481,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"ssr"},"startTime":1776264416661,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":88261,"timestamp":6657469580887,"id":2535,"parentId":2483,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":58,"timestamp":6657469669152,"id":2595,"parentId":2483,"tags":{},"startTime":1776264416752,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89913,"timestamp":6657469579478,"id":2483,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"ssr"},"startTime":1776264416662,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":88499,"timestamp":6657469580897,"id":2538,"parentId":2486,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469669400,"id":2596,"parentId":2486,"tags":{},"startTime":1776264416752,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89323,"timestamp":6657469580185,"id":2486,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"ssr"},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":88619,"timestamp":6657469580894,"id":2537,"parentId":2485,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":64,"timestamp":6657469669517,"id":2597,"parentId":2485,"tags":{},"startTime":1776264416752,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":89761,"timestamp":6657469580015,"id":2485,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"ssr"},"startTime":1776264416662,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":88898,"timestamp":6657469580883,"id":2534,"parentId":2482,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469669806,"id":2598,"parentId":2482,"tags":{},"startTime":1776264416752,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":90791,"timestamp":6657469579150,"id":2482,"parentId":2399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"ssr"},"startTime":1776264416662,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":89426,"timestamp":6657469580520,"id":2505,"parentId":2453,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6657469669950,"id":2599,"parentId":2453,"tags":{},"startTime":1776264416752,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":99541,"timestamp":6657469570575,"id":2453,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"ssr"},"startTime":1776264416653,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":89673,"timestamp":6657469580529,"id":2507,"parentId":2455,"tags":{},"startTime":1776264416663,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6657469670206,"id":2600,"parentId":2455,"tags":{},"startTime":1776264416753,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":99661,"timestamp":6657469570728,"id":2455,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"ssr"},"startTime":1776264416653,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19927,"timestamp":6657469771021,"id":2642,"parentId":2604,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":915,"timestamp":6657469791039,"id":2777,"parentId":2604,"tags":{},"startTime":1776264416873,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22753,"timestamp":6657469769553,"id":2604,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":21348,"timestamp":6657469770972,"id":2639,"parentId":2601,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":81,"timestamp":6657469792327,"id":2778,"parentId":2601,"tags":{},"startTime":1776264416875,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24435,"timestamp":6657469769339,"id":2601,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22782,"timestamp":6657469771006,"id":2640,"parentId":2602,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":66,"timestamp":6657469793796,"id":2779,"parentId":2602,"tags":{},"startTime":1776264416876,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27454,"timestamp":6657469769461,"id":2602,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25916,"timestamp":6657469771014,"id":2641,"parentId":2603,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657469796937,"id":2780,"parentId":2603,"tags":{},"startTime":1776264416879,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28472,"timestamp":6657469769511,"id":2603,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26987,"timestamp":6657469771027,"id":2643,"parentId":2605,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":46,"timestamp":6657469798026,"id":2781,"parentId":2605,"tags":{},"startTime":1776264416880,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28686,"timestamp":6657469769591,"id":2605,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27249,"timestamp":6657469771038,"id":2646,"parentId":2608,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657469798292,"id":2782,"parentId":2608,"tags":{},"startTime":1776264416881,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28809,"timestamp":6657469769705,"id":2608,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":27605,"timestamp":6657469771030,"id":2644,"parentId":2606,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469798642,"id":2783,"parentId":2606,"tags":{},"startTime":1776264416881,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29142,"timestamp":6657469769631,"id":2606,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27734,"timestamp":6657469771045,"id":2648,"parentId":2610,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469798784,"id":2784,"parentId":2610,"tags":{},"startTime":1776264416881,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29814,"timestamp":6657469769779,"id":2610,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28565,"timestamp":6657469771034,"id":2645,"parentId":2607,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469799605,"id":2785,"parentId":2607,"tags":{},"startTime":1776264416882,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30038,"timestamp":6657469769669,"id":2607,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28670,"timestamp":6657469771041,"id":2647,"parentId":2609,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469799716,"id":2786,"parentId":2609,"tags":{},"startTime":1776264416882,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30504,"timestamp":6657469769742,"id":2609,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29199,"timestamp":6657469771059,"id":2652,"parentId":2614,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469800264,"id":2787,"parentId":2614,"tags":{},"startTime":1776264416883,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30543,"timestamp":6657469769928,"id":2614,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29428,"timestamp":6657469771049,"id":2649,"parentId":2611,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469800481,"id":2788,"parentId":2611,"tags":{},"startTime":1776264416883,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31207,"timestamp":6657469769820,"id":2611,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29972,"timestamp":6657469771063,"id":2653,"parentId":2615,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469801038,"id":2789,"parentId":2615,"tags":{},"startTime":1776264416883,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31282,"timestamp":6657469769963,"id":2615,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30185,"timestamp":6657469771066,"id":2654,"parentId":2616,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657469801255,"id":2790,"parentId":2616,"tags":{},"startTime":1776264416884,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32187,"timestamp":6657469769999,"id":2616,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31124,"timestamp":6657469771071,"id":2655,"parentId":2617,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657469802200,"id":2791,"parentId":2617,"tags":{},"startTime":1776264416885,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33966,"timestamp":6657469770034,"id":2617,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32944,"timestamp":6657469771074,"id":2656,"parentId":2618,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469804025,"id":2792,"parentId":2618,"tags":{},"startTime":1776264416886,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34233,"timestamp":6657469770069,"id":2618,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":37005,"timestamp":6657469771052,"id":2650,"parentId":2612,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469808067,"id":2793,"parentId":2612,"tags":{},"startTime":1776264416890,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38757,"timestamp":6657469769857,"id":2612,"parentId":2417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":37570,"timestamp":6657469771056,"id":2651,"parentId":2613,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":49,"timestamp":6657469808632,"id":2794,"parentId":2613,"tags":{},"startTime":1776264416891,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41192,"timestamp":6657469769892,"id":2613,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40018,"timestamp":6657469771078,"id":2657,"parentId":2619,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6657469811103,"id":2795,"parentId":2619,"tags":{},"startTime":1776264416893,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":43671,"timestamp":6657469770104,"id":2619,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"ssr"},"startTime":1776264416852,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42794,"timestamp":6657469771095,"id":2662,"parentId":2624,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469813895,"id":2796,"parentId":2624,"tags":{},"startTime":1776264416896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":44138,"timestamp":6657469770294,"id":2624,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":43358,"timestamp":6657469771085,"id":2659,"parentId":2621,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":61,"timestamp":6657469814449,"id":2797,"parentId":2621,"tags":{},"startTime":1776264416897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":45927,"timestamp":6657469770183,"id":2621,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45026,"timestamp":6657469771092,"id":2661,"parentId":2623,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469816123,"id":2798,"parentId":2623,"tags":{},"startTime":1776264416899,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46264,"timestamp":6657469770258,"id":2623,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45441,"timestamp":6657469771088,"id":2660,"parentId":2622,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":52,"timestamp":6657469816534,"id":2799,"parentId":2622,"tags":{},"startTime":1776264416899,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":47066,"timestamp":6657469770220,"id":2622,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":46195,"timestamp":6657469771101,"id":2664,"parentId":2626,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469817300,"id":2800,"parentId":2626,"tags":{},"startTime":1776264416900,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":47228,"timestamp":6657469770371,"id":2626,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":46507,"timestamp":6657469771097,"id":2663,"parentId":2625,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469817609,"id":2801,"parentId":2625,"tags":{},"startTime":1776264416900,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":47963,"timestamp":6657469770332,"id":2625,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47197,"timestamp":6657469771104,"id":2665,"parentId":2627,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657469818306,"id":2802,"parentId":2627,"tags":{},"startTime":1776264416901,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":48021,"timestamp":6657469770409,"id":2627,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47321,"timestamp":6657469771114,"id":2668,"parentId":2630,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469818439,"id":2803,"parentId":2630,"tags":{},"startTime":1776264416901,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":48413,"timestamp":6657469770521,"id":2630,"parentId":2422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47836,"timestamp":6657469771107,"id":2666,"parentId":2628,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469818948,"id":2804,"parentId":2628,"tags":{},"startTime":1776264416901,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":48613,"timestamp":6657469770445,"id":2628,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47946,"timestamp":6657469771116,"id":2669,"parentId":2631,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657469819067,"id":2805,"parentId":2631,"tags":{},"startTime":1776264416901,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":49116,"timestamp":6657469770558,"id":2631,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":48570,"timestamp":6657469771110,"id":2667,"parentId":2629,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469819685,"id":2806,"parentId":2629,"tags":{},"startTime":1776264416902,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":49774,"timestamp":6657469770483,"id":2629,"parentId":2422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":49181,"timestamp":6657469771082,"id":2658,"parentId":2620,"tags":{},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657469820268,"id":2807,"parentId":2620,"tags":{},"startTime":1776264416903,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":52185,"timestamp":6657469770146,"id":2620,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51226,"timestamp":6657469771125,"id":2671,"parentId":2633,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1723,"timestamp":6657469822360,"id":2808,"parentId":2633,"tags":{},"startTime":1776264416905,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53812,"timestamp":6657469770632,"id":2633,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53342,"timestamp":6657469771130,"id":2673,"parentId":2635,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469824478,"id":2809,"parentId":2635,"tags":{},"startTime":1776264416907,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54035,"timestamp":6657469770793,"id":2635,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53715,"timestamp":6657469771120,"id":2670,"parentId":2632,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469824839,"id":2810,"parentId":2632,"tags":{},"startTime":1776264416907,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54523,"timestamp":6657469770594,"id":2632,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53990,"timestamp":6657469771132,"id":2674,"parentId":2636,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469825126,"id":2811,"parentId":2636,"tags":{},"startTime":1776264416908,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54537,"timestamp":6657469770839,"id":2636,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54244,"timestamp":6657469771137,"id":2676,"parentId":2638,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469825385,"id":2812,"parentId":2638,"tags":{},"startTime":1776264416908,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54837,"timestamp":6657469770917,"id":2638,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54681,"timestamp":6657469771127,"id":2672,"parentId":2634,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469825813,"id":2813,"parentId":2634,"tags":{},"startTime":1776264416908,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55224,"timestamp":6657469770735,"id":2634,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":58232,"timestamp":6657469771135,"id":2675,"parentId":2637,"tags":{},"startTime":1776264416854,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469829376,"id":2814,"parentId":2637,"tags":{},"startTime":1776264416912,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58714,"timestamp":6657469770878,"id":2637,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"ssr"},"startTime":1776264416853,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":46686,"timestamp":6657469782914,"id":2699,"parentId":2680,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657469829605,"id":2815,"parentId":2680,"tags":{},"startTime":1776264416912,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":48605,"timestamp":6657469782172,"id":2680,"parentId":2424,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47893,"timestamp":6657469782908,"id":2698,"parentId":2679,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657469830808,"id":2816,"parentId":2679,"tags":{},"startTime":1776264416913,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":49536,"timestamp":6657469782128,"id":2679,"parentId":2425,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":48893,"timestamp":6657469782902,"id":2697,"parentId":2678,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":42,"timestamp":6657469831802,"id":2817,"parentId":2678,"tags":{},"startTime":1776264416914,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":50315,"timestamp":6657469782075,"id":2678,"parentId":2425,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"ssr"},"startTime":1776264416864,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":49482,"timestamp":6657469782922,"id":2701,"parentId":2682,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657469832409,"id":2818,"parentId":2682,"tags":{},"startTime":1776264416915,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":50533,"timestamp":6657469782315,"id":2682,"parentId":2428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":49937,"timestamp":6657469782918,"id":2700,"parentId":2681,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657469832860,"id":2819,"parentId":2681,"tags":{},"startTime":1776264416915,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51684,"timestamp":6657469782213,"id":2681,"parentId":2428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51022,"timestamp":6657469782884,"id":2696,"parentId":2677,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657469833911,"id":2820,"parentId":2677,"tags":{},"startTime":1776264416916,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":52565,"timestamp":6657469781818,"id":2677,"parentId":2422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"ssr"},"startTime":1776264416864,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51463,"timestamp":6657469782927,"id":2703,"parentId":2684,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469834394,"id":2821,"parentId":2684,"tags":{},"startTime":1776264416917,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":52710,"timestamp":6657469782397,"id":2684,"parentId":2437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":52190,"timestamp":6657469782924,"id":2702,"parentId":2683,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469835118,"id":2822,"parentId":2683,"tags":{},"startTime":1776264416918,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53191,"timestamp":6657469782358,"id":2683,"parentId":2437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":52626,"timestamp":6657469782938,"id":2707,"parentId":2688,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469835568,"id":2823,"parentId":2688,"tags":{},"startTime":1776264416918,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53127,"timestamp":6657469782556,"id":2688,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":52754,"timestamp":6657469782933,"id":2705,"parentId":2686,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469835690,"id":2824,"parentId":2686,"tags":{},"startTime":1776264416918,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53521,"timestamp":6657469782477,"id":2686,"parentId":2437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53067,"timestamp":6657469782935,"id":2706,"parentId":2687,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469836011,"id":2825,"parentId":2687,"tags":{},"startTime":1776264416918,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53726,"timestamp":6657469782516,"id":2687,"parentId":2437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53308,"timestamp":6657469782948,"id":2711,"parentId":2692,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":42,"timestamp":6657469836260,"id":2826,"parentId":2692,"tags":{},"startTime":1776264416919,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54848,"timestamp":6657469782708,"id":2692,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54616,"timestamp":6657469782945,"id":2710,"parentId":2691,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469837566,"id":2827,"parentId":2691,"tags":{},"startTime":1776264416920,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55016,"timestamp":6657469782669,"id":2691,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54765,"timestamp":6657469782941,"id":2708,"parentId":2689,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657469837710,"id":2828,"parentId":2689,"tags":{},"startTime":1776264416920,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55342,"timestamp":6657469782594,"id":2689,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54997,"timestamp":6657469782943,"id":2709,"parentId":2690,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469837943,"id":2829,"parentId":2690,"tags":{},"startTime":1776264416920,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":56046,"timestamp":6657469782631,"id":2690,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":55727,"timestamp":6657469782955,"id":2714,"parentId":2695,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657469838686,"id":2830,"parentId":2695,"tags":{},"startTime":1776264416921,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58031,"timestamp":6657469782828,"id":2695,"parentId":2447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":57956,"timestamp":6657469782930,"id":2704,"parentId":2685,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6657469840895,"id":2831,"parentId":2685,"tags":{},"startTime":1776264416923,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58893,"timestamp":6657469782438,"id":2685,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":58426,"timestamp":6657469782950,"id":2712,"parentId":2693,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657469841382,"id":2832,"parentId":2693,"tags":{},"startTime":1776264416924,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":59436,"timestamp":6657469782749,"id":2693,"parentId":2428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":59251,"timestamp":6657469782953,"id":2713,"parentId":2694,"tags":{},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469842210,"id":2833,"parentId":2694,"tags":{},"startTime":1776264416925,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":60079,"timestamp":6657469782788,"id":2694,"parentId":2447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"ssr"},"startTime":1776264416865,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":61740,"timestamp":6657469787144,"id":2746,"parentId":2715,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657469848895,"id":2834,"parentId":2715,"tags":{},"startTime":1776264416931,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":65236,"timestamp":6657469784014,"id":2715,"parentId":2444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"ssr"},"startTime":1776264416866,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":62069,"timestamp":6657469787188,"id":2752,"parentId":2721,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469849262,"id":2835,"parentId":2721,"tags":{},"startTime":1776264416932,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":65577,"timestamp":6657469784379,"id":2721,"parentId":2428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":62805,"timestamp":6657469787175,"id":2749,"parentId":2718,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657469849989,"id":2836,"parentId":2718,"tags":{},"startTime":1776264416932,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":66138,"timestamp":6657469784255,"id":2718,"parentId":2444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":63216,"timestamp":6657469787185,"id":2751,"parentId":2720,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657469850405,"id":2837,"parentId":2720,"tags":{},"startTime":1776264416933,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":66453,"timestamp":6657469784340,"id":2720,"parentId":2428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":63611,"timestamp":6657469787195,"id":2753,"parentId":2722,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469850811,"id":2838,"parentId":2722,"tags":{},"startTime":1776264416933,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":66620,"timestamp":6657469784420,"id":2722,"parentId":2437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":63848,"timestamp":6657469787198,"id":2754,"parentId":2723,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469851050,"id":2839,"parentId":2723,"tags":{},"startTime":1776264416933,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":66753,"timestamp":6657469784460,"id":2723,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":64024,"timestamp":6657469787201,"id":2755,"parentId":2724,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469851228,"id":2840,"parentId":2724,"tags":{},"startTime":1776264416934,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":66882,"timestamp":6657469784498,"id":2724,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":64218,"timestamp":6657469787166,"id":2748,"parentId":2717,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469851390,"id":2841,"parentId":2717,"tags":{},"startTime":1776264416934,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":67467,"timestamp":6657469784211,"id":2717,"parentId":2444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":64469,"timestamp":6657469787213,"id":2758,"parentId":2727,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469851686,"id":2842,"parentId":2727,"tags":{},"startTime":1776264416934,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":67291,"timestamp":6657469784633,"id":2727,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":64724,"timestamp":6657469787205,"id":2756,"parentId":2725,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657469851933,"id":2843,"parentId":2725,"tags":{},"startTime":1776264416934,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":68717,"timestamp":6657469784554,"id":2725,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":66074,"timestamp":6657469787209,"id":2757,"parentId":2726,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":55,"timestamp":6657469853290,"id":2844,"parentId":2726,"tags":{},"startTime":1776264416936,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":69472,"timestamp":6657469784593,"id":2726,"parentId":2435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":66895,"timestamp":6657469787181,"id":2750,"parentId":2719,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657469854081,"id":2845,"parentId":2719,"tags":{},"startTime":1776264416936,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":70864,"timestamp":6657469784297,"id":2719,"parentId":2425,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":67676,"timestamp":6657469787492,"id":2759,"parentId":2728,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657469855173,"id":2846,"parentId":2728,"tags":{},"startTime":1776264416938,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":71093,"timestamp":6657469784671,"id":2728,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":68254,"timestamp":6657469787546,"id":2763,"parentId":2732,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":91,"timestamp":6657469855820,"id":2847,"parentId":2732,"tags":{},"startTime":1776264416938,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":71878,"timestamp":6657469784844,"id":2732,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":69231,"timestamp":6657469787502,"id":2760,"parentId":2729,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6657469856739,"id":2848,"parentId":2729,"tags":{},"startTime":1776264416939,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":72466,"timestamp":6657469784710,"id":2729,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":69629,"timestamp":6657469787554,"id":2766,"parentId":2735,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657469857190,"id":2849,"parentId":2735,"tags":{},"startTime":1776264416940,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":72599,"timestamp":6657469784976,"id":2735,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":70043,"timestamp":6657469787538,"id":2761,"parentId":2730,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":35,"timestamp":6657469857660,"id":2850,"parentId":2730,"tags":{},"startTime":1776264416940,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":73883,"timestamp":6657469784748,"id":2730,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":71072,"timestamp":6657469787566,"id":2768,"parentId":2737,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469858643,"id":2851,"parentId":2737,"tags":{},"startTime":1776264416941,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":73974,"timestamp":6657469785157,"id":2737,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"ssr"},"startTime":1776264416868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":71984,"timestamp":6657469787159,"id":2747,"parentId":2716,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":46,"timestamp":6657469859149,"id":2852,"parentId":2716,"tags":{},"startTime":1776264416942,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":75658,"timestamp":6657469784154,"id":2716,"parentId":2444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":72248,"timestamp":6657469787570,"id":2769,"parentId":2738,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469859822,"id":2853,"parentId":2738,"tags":{},"startTime":1776264416942,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":75173,"timestamp":6657469785334,"id":2738,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"ssr"},"startTime":1776264416868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":72957,"timestamp":6657469787557,"id":2767,"parentId":2736,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657469860518,"id":2854,"parentId":2736,"tags":{},"startTime":1776264416943,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":76454,"timestamp":6657469785014,"id":2736,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":73899,"timestamp":6657469787576,"id":2771,"parentId":2740,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469861479,"id":2855,"parentId":2740,"tags":{},"startTime":1776264416944,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":75735,"timestamp":6657469786105,"id":2740,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"ssr"},"startTime":1776264416868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":74262,"timestamp":6657469787584,"id":2773,"parentId":2742,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469861852,"id":2856,"parentId":2742,"tags":{},"startTime":1776264416944,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":75822,"timestamp":6657469786401,"id":2742,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"ssr"},"startTime":1776264416869,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":74691,"timestamp":6657469787542,"id":2762,"parentId":2731,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469862238,"id":2857,"parentId":2731,"tags":{},"startTime":1776264416945,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":77615,"timestamp":6657469784806,"id":2731,"parentId":2441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":74875,"timestamp":6657469787551,"id":2765,"parentId":2734,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657469862430,"id":2858,"parentId":2734,"tags":{},"startTime":1776264416945,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":78547,"timestamp":6657469784939,"id":2734,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":75945,"timestamp":6657469787549,"id":2764,"parentId":2733,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657469863498,"id":2859,"parentId":2733,"tags":{},"startTime":1776264416946,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":78933,"timestamp":6657469784901,"id":2733,"parentId":2444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"ssr"},"startTime":1776264416867,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":76268,"timestamp":6657469787574,"id":2770,"parentId":2739,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469863846,"id":2860,"parentId":2739,"tags":{},"startTime":1776264416946,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":79673,"timestamp":6657469785704,"id":2739,"parentId":2394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"ssr"},"startTime":1776264416868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":77811,"timestamp":6657469787580,"id":2772,"parentId":2741,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469865396,"id":2861,"parentId":2741,"tags":{},"startTime":1776264416948,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":79577,"timestamp":6657469786268,"id":2741,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"ssr"},"startTime":1776264416869,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":78257,"timestamp":6657469787594,"id":2776,"parentId":2745,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469865857,"id":2862,"parentId":2745,"tags":{},"startTime":1776264416948,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":79372,"timestamp":6657469786815,"id":2745,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"ssr"},"startTime":1776264416869,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":78605,"timestamp":6657469787588,"id":2774,"parentId":2743,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657469866202,"id":2863,"parentId":2743,"tags":{},"startTime":1776264416949,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":82171,"timestamp":6657469786502,"id":2743,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"ssr"},"startTime":1776264416869,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":81125,"timestamp":6657469787591,"id":2775,"parentId":2744,"tags":{},"startTime":1776264416870,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469868722,"id":2864,"parentId":2744,"tags":{},"startTime":1776264416951,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":82553,"timestamp":6657469786606,"id":2744,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"ssr"},"startTime":1776264416869,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":7021,"timestamp":6657469915022,"id":2905,"parentId":2868,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469922055,"id":3001,"parentId":2868,"tags":{},"startTime":1776264417004,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9315,"timestamp":6657469913746,"id":2868,"parentId":2415,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8057,"timestamp":6657469915015,"id":2904,"parentId":2867,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657469923076,"id":3002,"parentId":2867,"tags":{},"startTime":1776264417005,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10820,"timestamp":6657469913709,"id":2867,"parentId":2416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9541,"timestamp":6657469914998,"id":2902,"parentId":2865,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657469924543,"id":3003,"parentId":2865,"tags":{},"startTime":1776264417007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12580,"timestamp":6657469913575,"id":2865,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11170,"timestamp":6657469915009,"id":2903,"parentId":2866,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657469926187,"id":3004,"parentId":2866,"tags":{},"startTime":1776264417009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14198,"timestamp":6657469913666,"id":2866,"parentId":2412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12838,"timestamp":6657469915037,"id":2909,"parentId":2872,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469927881,"id":3005,"parentId":2872,"tags":{},"startTime":1776264417010,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14807,"timestamp":6657469913895,"id":2872,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":13686,"timestamp":6657469915028,"id":2906,"parentId":2869,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469928717,"id":3006,"parentId":2869,"tags":{},"startTime":1776264417011,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15993,"timestamp":6657469913781,"id":2869,"parentId":2422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14752,"timestamp":6657469915034,"id":2908,"parentId":2871,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469929790,"id":3007,"parentId":2871,"tags":{},"startTime":1776264417012,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16467,"timestamp":6657469913862,"id":2871,"parentId":2425,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15295,"timestamp":6657469915040,"id":2910,"parentId":2873,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469930339,"id":3008,"parentId":2873,"tags":{},"startTime":1776264417013,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16784,"timestamp":6657469913939,"id":2873,"parentId":2443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15697,"timestamp":6657469915031,"id":2907,"parentId":2870,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657469930731,"id":3009,"parentId":2870,"tags":{},"startTime":1776264417013,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18855,"timestamp":6657469913822,"id":2870,"parentId":2422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18687,"timestamp":6657469915046,"id":2912,"parentId":2875,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":59,"timestamp":6657469933746,"id":3010,"parentId":2875,"tags":{},"startTime":1776264417016,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20853,"timestamp":6657469914011,"id":2875,"parentId":2446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19825,"timestamp":6657469915048,"id":2913,"parentId":2876,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469934879,"id":3011,"parentId":2876,"tags":{},"startTime":1776264417017,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21028,"timestamp":6657469914044,"id":2876,"parentId":2442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20035,"timestamp":6657469915043,"id":2911,"parentId":2874,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469935082,"id":3012,"parentId":2874,"tags":{},"startTime":1776264417017,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21433,"timestamp":6657469913976,"id":2874,"parentId":2443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20363,"timestamp":6657469915051,"id":2914,"parentId":2877,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657469935418,"id":3013,"parentId":2877,"tags":{},"startTime":1776264417018,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23393,"timestamp":6657469914078,"id":2877,"parentId":2442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"ssr"},"startTime":1776264416996,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22431,"timestamp":6657469915053,"id":2915,"parentId":2878,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469937489,"id":3014,"parentId":2878,"tags":{},"startTime":1776264417020,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23571,"timestamp":6657469914111,"id":2878,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22634,"timestamp":6657469915057,"id":2916,"parentId":2879,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469937694,"id":3015,"parentId":2879,"tags":{},"startTime":1776264417020,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23719,"timestamp":6657469914145,"id":2879,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22808,"timestamp":6657469915061,"id":2918,"parentId":2881,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469937872,"id":3016,"parentId":2881,"tags":{},"startTime":1776264417020,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23811,"timestamp":6657469914211,"id":2881,"parentId":2451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22965,"timestamp":6657469915066,"id":2920,"parentId":2883,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469938035,"id":3017,"parentId":2883,"tags":{},"startTime":1776264417020,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23885,"timestamp":6657469914290,"id":2883,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":23119,"timestamp":6657469915064,"id":2919,"parentId":2882,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469938187,"id":3018,"parentId":2882,"tags":{},"startTime":1776264417021,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24934,"timestamp":6657469914248,"id":2882,"parentId":2451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24134,"timestamp":6657469915059,"id":2917,"parentId":2880,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657469939198,"id":3019,"parentId":2880,"tags":{},"startTime":1776264417022,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25541,"timestamp":6657469914178,"id":2880,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":24757,"timestamp":6657469915068,"id":2921,"parentId":2884,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469939829,"id":3020,"parentId":2884,"tags":{},"startTime":1776264417022,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26349,"timestamp":6657469914325,"id":2884,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25602,"timestamp":6657469915078,"id":2926,"parentId":2889,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469940684,"id":3021,"parentId":2889,"tags":{},"startTime":1776264417023,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26642,"timestamp":6657469914505,"id":2889,"parentId":2439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26082,"timestamp":6657469915070,"id":2922,"parentId":2885,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469941155,"id":3022,"parentId":2885,"tags":{},"startTime":1776264417024,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26934,"timestamp":6657469914359,"id":2885,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26227,"timestamp":6657469915074,"id":2924,"parentId":2887,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657469941304,"id":3023,"parentId":2887,"tags":{},"startTime":1776264417024,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27068,"timestamp":6657469914437,"id":2887,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26436,"timestamp":6657469915072,"id":2923,"parentId":2886,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469941510,"id":3024,"parentId":2886,"tags":{},"startTime":1776264417024,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27487,"timestamp":6657469914392,"id":2886,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26809,"timestamp":6657469915084,"id":2929,"parentId":2892,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469941896,"id":3025,"parentId":2892,"tags":{},"startTime":1776264417024,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27460,"timestamp":6657469914606,"id":2892,"parentId":2449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26990,"timestamp":6657469915080,"id":2927,"parentId":2890,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469942073,"id":3026,"parentId":2890,"tags":{},"startTime":1776264417024,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27737,"timestamp":6657469914538,"id":2890,"parentId":2449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27189,"timestamp":6657469915090,"id":2932,"parentId":2895,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469942282,"id":3027,"parentId":2895,"tags":{},"startTime":1776264417025,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27702,"timestamp":6657469914717,"id":2895,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27346,"timestamp":6657469915076,"id":2925,"parentId":2888,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469942425,"id":3028,"parentId":2888,"tags":{},"startTime":1776264417025,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28446,"timestamp":6657469914472,"id":2888,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27836,"timestamp":6657469915086,"id":2930,"parentId":2893,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469942925,"id":3029,"parentId":2893,"tags":{},"startTime":1776264417025,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28528,"timestamp":6657469914639,"id":2893,"parentId":2449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28089,"timestamp":6657469915082,"id":2928,"parentId":2891,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657469943174,"id":3030,"parentId":2891,"tags":{},"startTime":1776264417026,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30767,"timestamp":6657469914572,"id":2891,"parentId":2449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30264,"timestamp":6657469915088,"id":2931,"parentId":2894,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657469945357,"id":3031,"parentId":2894,"tags":{},"startTime":1776264417028,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31128,"timestamp":6657469914682,"id":2894,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30728,"timestamp":6657469915091,"id":2933,"parentId":2896,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469945824,"id":3032,"parentId":2896,"tags":{},"startTime":1776264417028,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31298,"timestamp":6657469914758,"id":2896,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30970,"timestamp":6657469915098,"id":2936,"parentId":2899,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469946072,"id":3033,"parentId":2899,"tags":{},"startTime":1776264417028,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31512,"timestamp":6657469914861,"id":2899,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31285,"timestamp":6657469915102,"id":2938,"parentId":2901,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657469946392,"id":3034,"parentId":2901,"tags":{},"startTime":1776264417029,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31612,"timestamp":6657469914936,"id":2901,"parentId":2443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31459,"timestamp":6657469915093,"id":2934,"parentId":2897,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469946556,"id":3035,"parentId":2897,"tags":{},"startTime":1776264417029,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32333,"timestamp":6657469914793,"id":2897,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32061,"timestamp":6657469915096,"id":2935,"parentId":2898,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469947161,"id":3036,"parentId":2898,"tags":{},"startTime":1776264417030,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33041,"timestamp":6657469914828,"id":2898,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32783,"timestamp":6657469915100,"id":2937,"parentId":2900,"tags":{},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469947888,"id":3037,"parentId":2900,"tags":{},"startTime":1776264417030,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33150,"timestamp":6657469914895,"id":2900,"parentId":2443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"ssr"},"startTime":1776264416997,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32417,"timestamp":6657469918549,"id":2963,"parentId":2941,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469950973,"id":3038,"parentId":2941,"tags":{},"startTime":1776264417033,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33615,"timestamp":6657469917752,"id":2941,"parentId":2439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32818,"timestamp":6657469918555,"id":2964,"parentId":2942,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469951377,"id":3039,"parentId":2942,"tags":{},"startTime":1776264417034,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34039,"timestamp":6657469917791,"id":2942,"parentId":2439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33281,"timestamp":6657469918562,"id":2965,"parentId":2943,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469951847,"id":3040,"parentId":2943,"tags":{},"startTime":1776264417034,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34508,"timestamp":6657469917836,"id":2943,"parentId":2459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33782,"timestamp":6657469918568,"id":2967,"parentId":2945,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469952353,"id":3041,"parentId":2945,"tags":{},"startTime":1776264417035,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34616,"timestamp":6657469917911,"id":2945,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33975,"timestamp":6657469918565,"id":2966,"parentId":2944,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469952547,"id":3042,"parentId":2944,"tags":{},"startTime":1776264417035,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34862,"timestamp":6657469917874,"id":2944,"parentId":2461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34173,"timestamp":6657469918571,"id":2968,"parentId":2946,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469952747,"id":3043,"parentId":2946,"tags":{},"startTime":1776264417035,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34951,"timestamp":6657469917949,"id":2946,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34332,"timestamp":6657469918573,"id":2969,"parentId":2947,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469952909,"id":3044,"parentId":2947,"tags":{},"startTime":1776264417035,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35326,"timestamp":6657469917985,"id":2947,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34739,"timestamp":6657469918576,"id":2970,"parentId":2948,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469953318,"id":3045,"parentId":2948,"tags":{},"startTime":1776264417036,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35419,"timestamp":6657469918021,"id":2948,"parentId":2457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34867,"timestamp":6657469918585,"id":2974,"parentId":2952,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469953455,"id":3046,"parentId":2952,"tags":{},"startTime":1776264417036,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35369,"timestamp":6657469918186,"id":2952,"parentId":2457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34979,"timestamp":6657469918580,"id":2972,"parentId":2950,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469953562,"id":3047,"parentId":2950,"tags":{},"startTime":1776264417036,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35897,"timestamp":6657469918099,"id":2950,"parentId":2457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35473,"timestamp":6657469918528,"id":2961,"parentId":2939,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469954004,"id":3048,"parentId":2939,"tags":{},"startTime":1776264417036,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36611,"timestamp":6657469917617,"id":2939,"parentId":2446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35649,"timestamp":6657469918583,"id":2973,"parentId":2951,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469954236,"id":3049,"parentId":2951,"tags":{},"startTime":1776264417037,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36495,"timestamp":6657469918146,"id":2951,"parentId":2457,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36055,"timestamp":6657469918589,"id":2976,"parentId":2954,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":84,"timestamp":6657469954648,"id":3050,"parentId":2954,"tags":{},"startTime":1776264417037,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39602,"timestamp":6657469918260,"id":2954,"parentId":2458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39287,"timestamp":6657469918591,"id":2977,"parentId":2955,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657469957885,"id":3051,"parentId":2955,"tags":{},"startTime":1776264417040,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39775,"timestamp":6657469918295,"id":2955,"parentId":2459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39483,"timestamp":6657469918593,"id":2978,"parentId":2956,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469958080,"id":3052,"parentId":2956,"tags":{},"startTime":1776264417040,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39998,"timestamp":6657469918335,"id":2956,"parentId":2460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39795,"timestamp":6657469918543,"id":2962,"parentId":2940,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657469958342,"id":3053,"parentId":2940,"tags":{},"startTime":1776264417041,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":41572,"timestamp":6657469917706,"id":2940,"parentId":2446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40685,"timestamp":6657469918602,"id":2982,"parentId":2960,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469959292,"id":3054,"parentId":2960,"tags":{},"startTime":1776264417042,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40920,"timestamp":6657469918480,"id":2960,"parentId":2454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40819,"timestamp":6657469918595,"id":2979,"parentId":2957,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657469959418,"id":3055,"parentId":2957,"tags":{},"startTime":1776264417042,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41444,"timestamp":6657469918371,"id":2957,"parentId":2460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41219,"timestamp":6657469918600,"id":2981,"parentId":2959,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657469959822,"id":3056,"parentId":2959,"tags":{},"startTime":1776264417042,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41572,"timestamp":6657469918444,"id":2959,"parentId":2454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41422,"timestamp":6657469918598,"id":2980,"parentId":2958,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657469960023,"id":3057,"parentId":2958,"tags":{},"startTime":1776264417042,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42484,"timestamp":6657469918409,"id":2958,"parentId":2454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42335,"timestamp":6657469918587,"id":2975,"parentId":2953,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657469960927,"id":3058,"parentId":2953,"tags":{},"startTime":1776264417043,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42882,"timestamp":6657469918222,"id":2953,"parentId":2458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"ssr"},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42530,"timestamp":6657469918578,"id":2971,"parentId":2949,"tags":{},"startTime":1776264417001,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657469961111,"id":3059,"parentId":2949,"tags":{},"startTime":1776264417044,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":43158,"timestamp":6657469918062,"id":2949,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"ssr"},"startTime":1776264417000,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":46955,"timestamp":6657469919425,"id":2989,"parentId":2983,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657469966388,"id":3060,"parentId":2983,"tags":{},"startTime":1776264417049,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":47983,"timestamp":6657469919118,"id":2983,"parentId":2463,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47674,"timestamp":6657469919433,"id":2990,"parentId":2984,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":81,"timestamp":6657469967111,"id":3061,"parentId":2984,"tags":{},"startTime":1776264417050,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":50711,"timestamp":6657469919166,"id":2984,"parentId":2463,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50453,"timestamp":6657469919443,"id":2993,"parentId":2987,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657469969903,"id":3062,"parentId":2987,"tags":{},"startTime":1776264417052,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51027,"timestamp":6657469919284,"id":2987,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50878,"timestamp":6657469919440,"id":2992,"parentId":2986,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657469970322,"id":3063,"parentId":2986,"tags":{},"startTime":1776264417053,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51775,"timestamp":6657469919246,"id":2986,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51605,"timestamp":6657469919437,"id":2991,"parentId":2985,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469971047,"id":3064,"parentId":2985,"tags":{},"startTime":1776264417053,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":52032,"timestamp":6657469919205,"id":2985,"parentId":2463,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51795,"timestamp":6657469919447,"id":2994,"parentId":2988,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469971246,"id":3065,"parentId":2988,"tags":{},"startTime":1776264417054,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":52445,"timestamp":6657469919353,"id":2988,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":57647,"timestamp":6657469920001,"id":2999,"parentId":2997,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657469977657,"id":3066,"parentId":2997,"tags":{},"startTime":1776264417060,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58142,"timestamp":6657469919868,"id":2997,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":58007,"timestamp":6657469920013,"id":3000,"parentId":2998,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657469978025,"id":3067,"parentId":2998,"tags":{},"startTime":1776264417060,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58359,"timestamp":6657469919922,"id":2998,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":58458,"timestamp":6657469919828,"id":2996,"parentId":2995,"tags":{},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657469978291,"id":3068,"parentId":2995,"tags":{},"startTime":1776264417061,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58679,"timestamp":6657469919775,"id":2995,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"ssr"},"startTime":1776264417002,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":7301,"timestamp":6657470018832,"id":3084,"parentId":3070,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470026145,"id":3127,"parentId":3070,"tags":{},"startTime":1776264417109,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8500,"timestamp":6657470018152,"id":3070,"parentId":2465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":7820,"timestamp":6657470018845,"id":3086,"parentId":3072,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470026669,"id":3128,"parentId":3072,"tags":{},"startTime":1776264417109,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8904,"timestamp":6657470018309,"id":3072,"parentId":2467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8417,"timestamp":6657470018801,"id":3083,"parentId":3069,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470027221,"id":3129,"parentId":3069,"tags":{},"startTime":1776264417110,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9357,"timestamp":6657470018004,"id":3069,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"ssr"},"startTime":1776264417100,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8508,"timestamp":6657470018857,"id":3088,"parentId":3074,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470027368,"id":3130,"parentId":3074,"tags":{},"startTime":1776264417110,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9245,"timestamp":6657470018396,"id":3074,"parentId":2467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8778,"timestamp":6657470018866,"id":3091,"parentId":3077,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657470027648,"id":3131,"parentId":3077,"tags":{},"startTime":1776264417110,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9527,"timestamp":6657470018523,"id":3077,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9194,"timestamp":6657470018860,"id":3089,"parentId":3075,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657470028058,"id":3132,"parentId":3075,"tags":{},"startTime":1776264417110,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10882,"timestamp":6657470018437,"id":3075,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10471,"timestamp":6657470018853,"id":3087,"parentId":3073,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470029327,"id":3133,"parentId":3073,"tags":{},"startTime":1776264417112,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11120,"timestamp":6657470018353,"id":3073,"parentId":2467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10614,"timestamp":6657470018863,"id":3090,"parentId":3076,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470029480,"id":3134,"parentId":3076,"tags":{},"startTime":1776264417112,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11423,"timestamp":6657470018482,"id":3076,"parentId":2464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11040,"timestamp":6657470018870,"id":3092,"parentId":3078,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470029912,"id":3135,"parentId":3078,"tags":{},"startTime":1776264417112,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11469,"timestamp":6657470018561,"id":3078,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11159,"timestamp":6657470018875,"id":3094,"parentId":3080,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470030037,"id":3136,"parentId":3080,"tags":{},"startTime":1776264417112,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11568,"timestamp":6657470018636,"id":3080,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11369,"timestamp":6657470018839,"id":3085,"parentId":3071,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":50,"timestamp":6657470030211,"id":3137,"parentId":3071,"tags":{},"startTime":1776264417113,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13957,"timestamp":6657470018257,"id":3071,"parentId":2464,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14758,"timestamp":6657470018872,"id":3093,"parentId":3079,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470033640,"id":3138,"parentId":3079,"tags":{},"startTime":1776264417116,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15452,"timestamp":6657470018599,"id":3079,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15180,"timestamp":6657470018878,"id":3095,"parentId":3081,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657470034061,"id":3139,"parentId":3081,"tags":{},"startTime":1776264417116,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17714,"timestamp":6657470018684,"id":3081,"parentId":2465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17528,"timestamp":6657470018880,"id":3096,"parentId":3082,"tags":{},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470036413,"id":3140,"parentId":3082,"tags":{},"startTime":1776264417119,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18044,"timestamp":6657470018721,"id":3082,"parentId":2465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"ssr"},"startTime":1776264417101,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16196,"timestamp":6657470022946,"id":3109,"parentId":3099,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470039149,"id":3141,"parentId":3099,"tags":{},"startTime":1776264417122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16790,"timestamp":6657470022587,"id":3099,"parentId":2469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16417,"timestamp":6657470022965,"id":3111,"parentId":3101,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470039385,"id":3142,"parentId":3101,"tags":{},"startTime":1776264417122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16981,"timestamp":6657470022681,"id":3101,"parentId":2469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16696,"timestamp":6657470022970,"id":3112,"parentId":3102,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470039673,"id":3143,"parentId":3102,"tags":{},"startTime":1776264417122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17168,"timestamp":6657470022721,"id":3102,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16967,"timestamp":6657470022926,"id":3107,"parentId":3097,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470039901,"id":3144,"parentId":3097,"tags":{},"startTime":1776264417122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17785,"timestamp":6657470022437,"id":3097,"parentId":2469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17253,"timestamp":6657470022973,"id":3113,"parentId":3103,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":27,"timestamp":6657470040303,"id":3145,"parentId":3103,"tags":{},"startTime":1776264417123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17686,"timestamp":6657470022760,"id":3103,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17625,"timestamp":6657470022955,"id":3110,"parentId":3100,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470040583,"id":3146,"parentId":3100,"tags":{},"startTime":1776264417123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18236,"timestamp":6657470022644,"id":3100,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17908,"timestamp":6657470022976,"id":3114,"parentId":3104,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":42,"timestamp":6657470040886,"id":3147,"parentId":3104,"tags":{},"startTime":1776264417123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18599,"timestamp":6657470022805,"id":3104,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18468,"timestamp":6657470022939,"id":3108,"parentId":3098,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470041410,"id":3148,"parentId":3098,"tags":{},"startTime":1776264417124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19278,"timestamp":6657470022542,"id":3098,"parentId":2469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18846,"timestamp":6657470022978,"id":3115,"parentId":3105,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":86,"timestamp":6657470041828,"id":3149,"parentId":3105,"tags":{},"startTime":1776264417124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22301,"timestamp":6657470022844,"id":3105,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22185,"timestamp":6657470022980,"id":3116,"parentId":3106,"tags":{},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657470045172,"id":3150,"parentId":3106,"tags":{},"startTime":1776264417128,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22826,"timestamp":6657470022880,"id":3106,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"ssr"},"startTime":1776264417105,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25339,"timestamp":6657470023788,"id":3122,"parentId":3117,"tags":{},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657470049137,"id":3151,"parentId":3117,"tags":{},"startTime":1776264417132,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25974,"timestamp":6657470023527,"id":3117,"parentId":2472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"ssr"},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25709,"timestamp":6657470023800,"id":3124,"parentId":3119,"tags":{},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470049513,"id":3152,"parentId":3119,"tags":{},"startTime":1776264417132,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26256,"timestamp":6657470023673,"id":3119,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"ssr"},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26147,"timestamp":6657470023796,"id":3123,"parentId":3118,"tags":{},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":60,"timestamp":6657470049946,"id":3153,"parentId":3118,"tags":{},"startTime":1776264417132,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27378,"timestamp":6657470023615,"id":3118,"parentId":2471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"ssr"},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27195,"timestamp":6657470023803,"id":3125,"parentId":3120,"tags":{},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470051006,"id":3154,"parentId":3120,"tags":{},"startTime":1776264417133,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27542,"timestamp":6657470023716,"id":3120,"parentId":2465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"ssr"},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27458,"timestamp":6657470023805,"id":3126,"parentId":3121,"tags":{},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470051266,"id":3155,"parentId":3121,"tags":{},"startTime":1776264417134,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27797,"timestamp":6657470023750,"id":3121,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"ssr"},"startTime":1776264417106,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17869,"timestamp":6657470071211,"id":3186,"parentId":3157,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":49,"timestamp":6657470089092,"id":3350,"parentId":3157,"tags":{},"startTime":1776264417171,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20371,"timestamp":6657470069811,"id":3157,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"ssr"},"startTime":1776264417152,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18965,"timestamp":6657470071230,"id":3188,"parentId":3159,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470090200,"id":3351,"parentId":3159,"tags":{},"startTime":1776264417173,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20822,"timestamp":6657470069920,"id":3159,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"ssr"},"startTime":1776264417152,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19525,"timestamp":6657470071224,"id":3187,"parentId":3158,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470090752,"id":3352,"parentId":3158,"tags":{},"startTime":1776264417173,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21058,"timestamp":6657470069871,"id":3158,"parentId":2467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"ssr"},"startTime":1776264417152,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19740,"timestamp":6657470071193,"id":3185,"parentId":3156,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657470090936,"id":3353,"parentId":3156,"tags":{},"startTime":1776264417173,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22623,"timestamp":6657470069691,"id":3156,"parentId":2472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"ssr"},"startTime":1776264417152,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":21078,"timestamp":6657470071243,"id":3191,"parentId":3162,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470092324,"id":3354,"parentId":3162,"tags":{},"startTime":1776264417175,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22383,"timestamp":6657470070094,"id":3162,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"ssr"},"startTime":1776264417152,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22205,"timestamp":6657470071237,"id":3189,"parentId":3160,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470093453,"id":3355,"parentId":3160,"tags":{},"startTime":1776264417176,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23662,"timestamp":6657470069975,"id":3160,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"ssr"},"startTime":1776264417152,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22402,"timestamp":6657470071240,"id":3190,"parentId":3161,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657470093645,"id":3356,"parentId":3161,"tags":{},"startTime":1776264417176,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24858,"timestamp":6657470070032,"id":3161,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"ssr"},"startTime":1776264417152,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":23647,"timestamp":6657470071249,"id":3193,"parentId":3164,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470094899,"id":3357,"parentId":3164,"tags":{},"startTime":1776264417177,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24875,"timestamp":6657470070216,"id":3164,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":23842,"timestamp":6657470071254,"id":3195,"parentId":3166,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470095099,"id":3358,"parentId":3166,"tags":{},"startTime":1776264417177,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24952,"timestamp":6657470070300,"id":3166,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24005,"timestamp":6657470071251,"id":3194,"parentId":3165,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470095259,"id":3359,"parentId":3165,"tags":{},"startTime":1776264417178,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25180,"timestamp":6657470070263,"id":3165,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24195,"timestamp":6657470071257,"id":3196,"parentId":3167,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470095455,"id":3360,"parentId":3167,"tags":{},"startTime":1776264417178,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25485,"timestamp":6657470070337,"id":3167,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24567,"timestamp":6657470071260,"id":3197,"parentId":3168,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470095830,"id":3361,"parentId":3168,"tags":{},"startTime":1776264417178,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25649,"timestamp":6657470070382,"id":3168,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24789,"timestamp":6657470071246,"id":3192,"parentId":3163,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":925,"timestamp":6657470096037,"id":3362,"parentId":3163,"tags":{},"startTime":1776264417178,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28883,"timestamp":6657470070167,"id":3163,"parentId":2475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27812,"timestamp":6657470071265,"id":3199,"parentId":3170,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657470099085,"id":3363,"parentId":3170,"tags":{},"startTime":1776264417181,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29200,"timestamp":6657470070481,"id":3170,"parentId":2476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28420,"timestamp":6657470071270,"id":3201,"parentId":3172,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470099695,"id":3364,"parentId":3172,"tags":{},"startTime":1776264417182,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29228,"timestamp":6657470070629,"id":3172,"parentId":2476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28600,"timestamp":6657470071262,"id":3198,"parentId":3169,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470099866,"id":3365,"parentId":3169,"tags":{},"startTime":1776264417182,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29885,"timestamp":6657470070422,"id":3169,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29050,"timestamp":6657470071267,"id":3200,"parentId":3171,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470100321,"id":3366,"parentId":3171,"tags":{},"startTime":1776264417183,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30008,"timestamp":6657470070552,"id":3171,"parentId":2476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29295,"timestamp":6657470071272,"id":3202,"parentId":3173,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470100572,"id":3367,"parentId":3173,"tags":{},"startTime":1776264417183,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30501,"timestamp":6657470070673,"id":3173,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29899,"timestamp":6657470071281,"id":3205,"parentId":3176,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470101184,"id":3368,"parentId":3176,"tags":{},"startTime":1776264417184,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30600,"timestamp":6657470070789,"id":3176,"parentId":2475,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30116,"timestamp":6657470071277,"id":3204,"parentId":3175,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470101397,"id":3369,"parentId":3175,"tags":{},"startTime":1776264417184,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30746,"timestamp":6657470070751,"id":3175,"parentId":2477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30213,"timestamp":6657470071288,"id":3208,"parentId":3179,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470101505,"id":3370,"parentId":3179,"tags":{},"startTime":1776264417184,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30750,"timestamp":6657470070894,"id":3179,"parentId":2478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30364,"timestamp":6657470071285,"id":3207,"parentId":3178,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470101652,"id":3371,"parentId":3178,"tags":{},"startTime":1776264417184,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31214,"timestamp":6657470070857,"id":3178,"parentId":2478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30786,"timestamp":6657470071290,"id":3209,"parentId":3180,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470102080,"id":3372,"parentId":3180,"tags":{},"startTime":1776264417184,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31559,"timestamp":6657470070932,"id":3180,"parentId":2478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":31303,"timestamp":6657470071283,"id":3206,"parentId":3177,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470102591,"id":3373,"parentId":3177,"tags":{},"startTime":1776264417185,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31939,"timestamp":6657470070823,"id":3177,"parentId":2478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31492,"timestamp":6657470071275,"id":3203,"parentId":3174,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470102770,"id":3374,"parentId":3174,"tags":{},"startTime":1776264417185,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32990,"timestamp":6657470070708,"id":3174,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32412,"timestamp":6657470071292,"id":3210,"parentId":3181,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470103707,"id":3375,"parentId":3181,"tags":{},"startTime":1776264417186,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32960,"timestamp":6657470070968,"id":3181,"parentId":2479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32683,"timestamp":6657470071296,"id":3212,"parentId":3183,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":54,"timestamp":6657470103989,"id":3376,"parentId":3183,"tags":{},"startTime":1776264417186,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33260,"timestamp":6657470071038,"id":3183,"parentId":2479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33016,"timestamp":6657470071294,"id":3211,"parentId":3182,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470104316,"id":3377,"parentId":3182,"tags":{},"startTime":1776264417187,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33450,"timestamp":6657470071003,"id":3182,"parentId":2479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33365,"timestamp":6657470071299,"id":3213,"parentId":3184,"tags":{},"startTime":1776264417154,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657470104669,"id":3378,"parentId":3184,"tags":{},"startTime":1776264417187,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34052,"timestamp":6657470071074,"id":3184,"parentId":2479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"ssr"},"startTime":1776264417153,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27617,"timestamp":6657470083726,"id":3278,"parentId":3214,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470111354,"id":3379,"parentId":3214,"tags":{},"startTime":1776264417194,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30528,"timestamp":6657470081132,"id":3214,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27912,"timestamp":6657470083755,"id":3281,"parentId":3217,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470111671,"id":3380,"parentId":3217,"tags":{},"startTime":1776264417194,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30636,"timestamp":6657470081319,"id":3217,"parentId":2480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28216,"timestamp":6657470083749,"id":3280,"parentId":3216,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470111968,"id":3381,"parentId":3216,"tags":{},"startTime":1776264417194,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30941,"timestamp":6657470081276,"id":3216,"parentId":2484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28459,"timestamp":6657470083767,"id":3283,"parentId":3219,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470112231,"id":3382,"parentId":3219,"tags":{},"startTime":1776264417195,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31147,"timestamp":6657470081400,"id":3219,"parentId":2481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28781,"timestamp":6657470083771,"id":3284,"parentId":3220,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470112556,"id":3383,"parentId":3220,"tags":{},"startTime":1776264417195,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31281,"timestamp":6657470081440,"id":3220,"parentId":2481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28982,"timestamp":6657470083742,"id":3279,"parentId":3215,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":53,"timestamp":6657470112728,"id":3384,"parentId":3215,"tags":{},"startTime":1776264417195,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33328,"timestamp":6657470081229,"id":3215,"parentId":2484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30804,"timestamp":6657470083763,"id":3282,"parentId":3218,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470114571,"id":3385,"parentId":3218,"tags":{},"startTime":1776264417197,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33628,"timestamp":6657470081363,"id":3218,"parentId":2481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31215,"timestamp":6657470083780,"id":3287,"parentId":3223,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470115000,"id":3386,"parentId":3223,"tags":{},"startTime":1776264417197,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33524,"timestamp":6657470081651,"id":3223,"parentId":2483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31385,"timestamp":6657470083794,"id":3288,"parentId":3224,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470115182,"id":3387,"parentId":3224,"tags":{},"startTime":1776264417198,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33678,"timestamp":6657470081703,"id":3224,"parentId":2483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31607,"timestamp":6657470083777,"id":3286,"parentId":3222,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657470115387,"id":3388,"parentId":3222,"tags":{},"startTime":1776264417198,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34451,"timestamp":6657470081580,"id":3222,"parentId":2481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32233,"timestamp":6657470083802,"id":3291,"parentId":3227,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470116039,"id":3389,"parentId":3227,"tags":{},"startTime":1776264417198,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34604,"timestamp":6657470081814,"id":3227,"parentId":2483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32623,"timestamp":6657470083800,"id":3290,"parentId":3226,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470116425,"id":3390,"parentId":3226,"tags":{},"startTime":1776264417199,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34789,"timestamp":6657470081777,"id":3226,"parentId":2486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32795,"timestamp":6657470083775,"id":3285,"parentId":3221,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470116573,"id":3391,"parentId":3221,"tags":{},"startTime":1776264417199,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35867,"timestamp":6657470081480,"id":3221,"parentId":2479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33551,"timestamp":6657470083808,"id":3293,"parentId":3229,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657470117364,"id":3392,"parentId":3229,"tags":{},"startTime":1776264417200,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35936,"timestamp":6657470081899,"id":3229,"parentId":2483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34037,"timestamp":6657470083805,"id":3292,"parentId":3228,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470117846,"id":3393,"parentId":3228,"tags":{},"startTime":1776264417200,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36409,"timestamp":6657470081863,"id":3228,"parentId":2483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34455,"timestamp":6657470083821,"id":3295,"parentId":3231,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470118280,"id":3394,"parentId":3231,"tags":{},"startTime":1776264417201,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36493,"timestamp":6657470081969,"id":3231,"parentId":2485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34670,"timestamp":6657470083797,"id":3289,"parentId":3225,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470118470,"id":3395,"parentId":3225,"tags":{},"startTime":1776264417201,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37476,"timestamp":6657470081741,"id":3225,"parentId":2486,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35397,"timestamp":6657470083824,"id":3296,"parentId":3232,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470119225,"id":3396,"parentId":3232,"tags":{},"startTime":1776264417202,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37622,"timestamp":6657470082003,"id":3232,"parentId":2485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35804,"timestamp":6657470083827,"id":3297,"parentId":3233,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470119634,"id":3397,"parentId":3233,"tags":{},"startTime":1776264417202,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37947,"timestamp":6657470082038,"id":3233,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36156,"timestamp":6657470083834,"id":3300,"parentId":3236,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470119994,"id":3398,"parentId":3236,"tags":{},"startTime":1776264417202,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38124,"timestamp":6657470082151,"id":3236,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36469,"timestamp":6657470083810,"id":3294,"parentId":3230,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":56,"timestamp":6657470120283,"id":3399,"parentId":3230,"tags":{},"startTime":1776264417203,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40007,"timestamp":6657470081934,"id":3230,"parentId":2485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":38111,"timestamp":6657470083837,"id":3301,"parentId":3237,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470121953,"id":3400,"parentId":3237,"tags":{},"startTime":1776264417204,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40423,"timestamp":6657470082194,"id":3237,"parentId":2455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":38813,"timestamp":6657470083843,"id":3304,"parentId":3240,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470122666,"id":3401,"parentId":3240,"tags":{},"startTime":1776264417205,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40517,"timestamp":6657470082319,"id":3240,"parentId":2455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39013,"timestamp":6657470083829,"id":3298,"parentId":3234,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470122846,"id":3402,"parentId":3234,"tags":{},"startTime":1776264417205,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41454,"timestamp":6657470082083,"id":3234,"parentId":2485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"ssr"},"startTime":1776264417164,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39697,"timestamp":6657470083846,"id":3305,"parentId":3241,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470123546,"id":3403,"parentId":3241,"tags":{},"startTime":1776264417206,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41312,"timestamp":6657470082353,"id":3241,"parentId":2602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39828,"timestamp":6657470083841,"id":3303,"parentId":3239,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470123672,"id":3404,"parentId":3239,"tags":{},"startTime":1776264417206,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41582,"timestamp":6657470082285,"id":3239,"parentId":2455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40032,"timestamp":6657470083839,"id":3302,"parentId":3238,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470123874,"id":3405,"parentId":3238,"tags":{},"startTime":1776264417206,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42666,"timestamp":6657470082250,"id":3238,"parentId":2455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41077,"timestamp":6657470083853,"id":3308,"parentId":3244,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657470124934,"id":3406,"parentId":3244,"tags":{},"startTime":1776264417207,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":43614,"timestamp":6657470082467,"id":3244,"parentId":2610,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42249,"timestamp":6657470083848,"id":3306,"parentId":3242,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":52,"timestamp":6657470126101,"id":3407,"parentId":3242,"tags":{},"startTime":1776264417208,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":44284,"timestamp":6657470082394,"id":3242,"parentId":2602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42829,"timestamp":6657470083857,"id":3310,"parentId":3246,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470126691,"id":3408,"parentId":3246,"tags":{},"startTime":1776264417209,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":44325,"timestamp":6657470082535,"id":3246,"parentId":2601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":43013,"timestamp":6657470083850,"id":3307,"parentId":3243,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6657470126866,"id":3409,"parentId":3243,"tags":{},"startTime":1776264417209,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46073,"timestamp":6657470082430,"id":3243,"parentId":2602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":44653,"timestamp":6657470083855,"id":3309,"parentId":3245,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470128512,"id":3410,"parentId":3245,"tags":{},"startTime":1776264417211,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46138,"timestamp":6657470082499,"id":3245,"parentId":2601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":44781,"timestamp":6657470083862,"id":3312,"parentId":3248,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470128647,"id":3411,"parentId":3248,"tags":{},"startTime":1776264417211,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46768,"timestamp":6657470082605,"id":3248,"parentId":2602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45519,"timestamp":6657470083860,"id":3311,"parentId":3247,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470129382,"id":3412,"parentId":3247,"tags":{},"startTime":1776264417212,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46927,"timestamp":6657470082573,"id":3247,"parentId":2601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45634,"timestamp":6657470083870,"id":3315,"parentId":3251,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470129507,"id":3413,"parentId":3251,"tags":{},"startTime":1776264417212,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46911,"timestamp":6657470082705,"id":3251,"parentId":2601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45755,"timestamp":6657470083864,"id":3313,"parentId":3249,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470129623,"id":3414,"parentId":3249,"tags":{},"startTime":1776264417212,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":47685,"timestamp":6657470082639,"id":3249,"parentId":2602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":46500,"timestamp":6657470083832,"id":3299,"parentId":3235,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657470130339,"id":3415,"parentId":3235,"tags":{},"startTime":1776264417213,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":49109,"timestamp":6657470082117,"id":3235,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47367,"timestamp":6657470083867,"id":3314,"parentId":3250,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470131239,"id":3416,"parentId":3250,"tags":{},"startTime":1776264417214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":48923,"timestamp":6657470082672,"id":3250,"parentId":2602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47725,"timestamp":6657470083875,"id":3317,"parentId":3253,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470131607,"id":3417,"parentId":3253,"tags":{},"startTime":1776264417214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":49634,"timestamp":6657470082784,"id":3253,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":48568,"timestamp":6657470083872,"id":3316,"parentId":3252,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":51,"timestamp":6657470132448,"id":3418,"parentId":3252,"tags":{},"startTime":1776264417215,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51206,"timestamp":6657470082746,"id":3252,"parentId":2610,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50086,"timestamp":6657470083877,"id":3318,"parentId":3254,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470133968,"id":3419,"parentId":3254,"tags":{},"startTime":1776264417216,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51280,"timestamp":6657470082819,"id":3254,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50222,"timestamp":6657470083883,"id":3321,"parentId":3257,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470134109,"id":3420,"parentId":3257,"tags":{},"startTime":1776264417216,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51529,"timestamp":6657470082920,"id":3257,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50570,"timestamp":6657470083885,"id":3322,"parentId":3258,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470134459,"id":3421,"parentId":3258,"tags":{},"startTime":1776264417217,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51778,"timestamp":6657470082954,"id":3258,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50850,"timestamp":6657470083887,"id":3323,"parentId":3259,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470134741,"id":3422,"parentId":3259,"tags":{},"startTime":1776264417217,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":52687,"timestamp":6657470082991,"id":3259,"parentId":2611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51804,"timestamp":6657470083879,"id":3319,"parentId":3255,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470135686,"id":3423,"parentId":3255,"tags":{},"startTime":1776264417218,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53400,"timestamp":6657470082857,"id":3255,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":52378,"timestamp":6657470083890,"id":3324,"parentId":3260,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470136271,"id":3424,"parentId":3260,"tags":{},"startTime":1776264417219,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53863,"timestamp":6657470083031,"id":3260,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53026,"timestamp":6657470083881,"id":3320,"parentId":3256,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470136910,"id":3425,"parentId":3256,"tags":{},"startTime":1776264417219,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54826,"timestamp":6657470082889,"id":3256,"parentId":2607,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53828,"timestamp":6657470083892,"id":3325,"parentId":3261,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470137724,"id":3426,"parentId":3261,"tags":{},"startTime":1776264417220,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55703,"timestamp":6657470083065,"id":3261,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54881,"timestamp":6657470083897,"id":3327,"parentId":3263,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470138782,"id":3427,"parentId":3263,"tags":{},"startTime":1776264417221,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55883,"timestamp":6657470083146,"id":3263,"parentId":2613,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":55127,"timestamp":6657470083910,"id":3333,"parentId":3269,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470139041,"id":3428,"parentId":3269,"tags":{},"startTime":1776264417221,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55816,"timestamp":6657470083376,"id":3269,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":55304,"timestamp":6657470083899,"id":3328,"parentId":3264,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470139206,"id":3429,"parentId":3264,"tags":{},"startTime":1776264417222,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":56773,"timestamp":6657470083179,"id":3264,"parentId":2613,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":56052,"timestamp":6657470083906,"id":3331,"parentId":3267,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657470139961,"id":3430,"parentId":3267,"tags":{},"startTime":1776264417222,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58446,"timestamp":6657470083311,"id":3267,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":57882,"timestamp":6657470083908,"id":3332,"parentId":3268,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":43,"timestamp":6657470141799,"id":3431,"parentId":3268,"tags":{},"startTime":1776264417224,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":58755,"timestamp":6657470083344,"id":3268,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":58229,"timestamp":6657470083903,"id":3330,"parentId":3266,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470142137,"id":3432,"parentId":3266,"tags":{},"startTime":1776264417225,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":59641,"timestamp":6657470083279,"id":3266,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":59023,"timestamp":6657470083912,"id":3334,"parentId":3270,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657470142941,"id":3433,"parentId":3270,"tags":{},"startTime":1776264417225,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":60072,"timestamp":6657470083416,"id":3270,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":59611,"timestamp":6657470083894,"id":3326,"parentId":3262,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470143510,"id":3434,"parentId":3262,"tags":{},"startTime":1776264417226,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":60625,"timestamp":6657470083105,"id":3262,"parentId":2613,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"ssr"},"startTime":1776264417165,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":59822,"timestamp":6657470083914,"id":3335,"parentId":3271,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470143740,"id":3435,"parentId":3271,"tags":{},"startTime":1776264417226,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":60417,"timestamp":6657470083453,"id":3271,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":59953,"timestamp":6657470083921,"id":3338,"parentId":3274,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470143878,"id":3436,"parentId":3274,"tags":{},"startTime":1776264417226,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":60680,"timestamp":6657470083570,"id":3274,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":60344,"timestamp":6657470083916,"id":3336,"parentId":3272,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470144265,"id":3437,"parentId":3272,"tags":{},"startTime":1776264417227,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":61180,"timestamp":6657470083490,"id":3272,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":60752,"timestamp":6657470083923,"id":3339,"parentId":3275,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470144680,"id":3438,"parentId":3275,"tags":{},"startTime":1776264417227,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":62484,"timestamp":6657470083604,"id":3275,"parentId":2634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":62167,"timestamp":6657470083927,"id":3341,"parentId":3277,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657470146100,"id":3439,"parentId":3277,"tags":{},"startTime":1776264417228,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":62960,"timestamp":6657470083679,"id":3277,"parentId":2680,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":62743,"timestamp":6657470083901,"id":3329,"parentId":3265,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":32,"timestamp":6657470146718,"id":3440,"parentId":3265,"tags":{},"startTime":1776264417229,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":63741,"timestamp":6657470083218,"id":3265,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":63049,"timestamp":6657470083925,"id":3340,"parentId":3276,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":65,"timestamp":6657470146978,"id":3441,"parentId":3276,"tags":{},"startTime":1776264417229,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":64657,"timestamp":6657470083637,"id":3276,"parentId":2680,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":64381,"timestamp":6657470083919,"id":3337,"parentId":3273,"tags":{},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470148304,"id":3442,"parentId":3273,"tags":{},"startTime":1776264417231,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":65082,"timestamp":6657470083523,"id":3273,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"ssr"},"startTime":1776264417166,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":75570,"timestamp":6657470084646,"id":3343,"parentId":3342,"tags":{},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470160226,"id":3443,"parentId":3342,"tags":{},"startTime":1776264417243,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":75930,"timestamp":6657470084601,"id":3342,"parentId":2631,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"ssr"},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":84120,"timestamp":6657470084811,"id":3347,"parentId":3344,"tags":{},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657470168942,"id":3444,"parentId":3344,"tags":{},"startTime":1776264417251,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87355,"timestamp":6657470084705,"id":3344,"parentId":2629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"ssr"},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":87261,"timestamp":6657470084825,"id":3349,"parentId":3346,"tags":{},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":59,"timestamp":6657470172100,"id":3445,"parentId":3346,"tags":{},"startTime":1776264417254,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87655,"timestamp":6657470084776,"id":3346,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"ssr"},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":87627,"timestamp":6657470084815,"id":3348,"parentId":3345,"tags":{},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470172448,"id":3446,"parentId":3345,"tags":{},"startTime":1776264417255,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":87889,"timestamp":6657470084740,"id":3345,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"ssr"},"startTime":1776264417167,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15022,"timestamp":6657470202949,"id":3460,"parentId":3450,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470217981,"id":3623,"parentId":3450,"tags":{},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15841,"timestamp":6657470202562,"id":3450,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15465,"timestamp":6657470202944,"id":3459,"parentId":3449,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470218413,"id":3624,"parentId":3449,"tags":{},"startTime":1776264417301,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16063,"timestamp":6657470202524,"id":3449,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15650,"timestamp":6657470202941,"id":3458,"parentId":3448,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470218594,"id":3625,"parentId":3448,"tags":{},"startTime":1776264417301,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16260,"timestamp":6657470202484,"id":3448,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15785,"timestamp":6657470202963,"id":3464,"parentId":3454,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470218751,"id":3626,"parentId":3454,"tags":{},"startTime":1776264417301,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16167,"timestamp":6657470202703,"id":3454,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15917,"timestamp":6657470202957,"id":3462,"parentId":3452,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470218877,"id":3627,"parentId":3452,"tags":{},"startTime":1776264417301,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16418,"timestamp":6657470202636,"id":3452,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16129,"timestamp":6657470202927,"id":3457,"parentId":3447,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470219060,"id":3628,"parentId":3447,"tags":{},"startTime":1776264417301,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16812,"timestamp":6657470202375,"id":3447,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16231,"timestamp":6657470202960,"id":3463,"parentId":3453,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470219193,"id":3629,"parentId":3453,"tags":{},"startTime":1776264417302,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16655,"timestamp":6657470202670,"id":3453,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":16360,"timestamp":6657470202968,"id":3466,"parentId":3456,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470219331,"id":3630,"parentId":3456,"tags":{},"startTime":1776264417302,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17252,"timestamp":6657470202778,"id":3456,"parentId":2682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19547,"timestamp":6657470202954,"id":3461,"parentId":3451,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470222508,"id":3631,"parentId":3451,"tags":{},"startTime":1776264417305,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20353,"timestamp":6657470202600,"id":3451,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20045,"timestamp":6657470202965,"id":3465,"parentId":3455,"tags":{},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470223020,"id":3632,"parentId":3455,"tags":{},"startTime":1776264417305,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20678,"timestamp":6657470202741,"id":3455,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"ssr"},"startTime":1776264417285,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8615,"timestamp":6657470214872,"id":3533,"parentId":3468,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470223493,"id":3633,"parentId":3468,"tags":{},"startTime":1776264417306,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11446,"timestamp":6657470212254,"id":3468,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8816,"timestamp":6657470214894,"id":3534,"parentId":3469,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470223714,"id":3634,"parentId":3469,"tags":{},"startTime":1776264417306,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11540,"timestamp":6657470212335,"id":3469,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8961,"timestamp":6657470214919,"id":3537,"parentId":3472,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470223884,"id":3635,"parentId":3472,"tags":{},"startTime":1776264417306,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11870,"timestamp":6657470212460,"id":3472,"parentId":2692,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9483,"timestamp":6657470214858,"id":3532,"parentId":3467,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470224345,"id":3636,"parentId":3467,"tags":{},"startTime":1776264417307,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12721,"timestamp":6657470212117,"id":3467,"parentId":2684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9888,"timestamp":6657470214955,"id":3539,"parentId":3474,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470224846,"id":3637,"parentId":3474,"tags":{},"startTime":1776264417307,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12500,"timestamp":6657470212539,"id":3474,"parentId":2626,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10100,"timestamp":6657470214943,"id":3538,"parentId":3473,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470225046,"id":3638,"parentId":3473,"tags":{},"startTime":1776264417307,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12682,"timestamp":6657470212498,"id":3473,"parentId":2626,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10269,"timestamp":6657470214914,"id":3536,"parentId":3471,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470225186,"id":3639,"parentId":3471,"tags":{},"startTime":1776264417308,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13089,"timestamp":6657470212422,"id":3471,"parentId":2687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10555,"timestamp":6657470214962,"id":3540,"parentId":3475,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470225520,"id":3640,"parentId":3475,"tags":{},"startTime":1776264417308,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13649,"timestamp":6657470212580,"id":3475,"parentId":2625,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11271,"timestamp":6657470214967,"id":3541,"parentId":3476,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470226243,"id":3641,"parentId":3476,"tags":{},"startTime":1776264417309,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13799,"timestamp":6657470212625,"id":3476,"parentId":2685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14021,"timestamp":6657470214973,"id":3542,"parentId":3477,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470228999,"id":3642,"parentId":3477,"tags":{},"startTime":1776264417311,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16565,"timestamp":6657470212662,"id":3477,"parentId":2685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14244,"timestamp":6657470214988,"id":3545,"parentId":3480,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470229235,"id":3643,"parentId":3480,"tags":{},"startTime":1776264417312,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17375,"timestamp":6657470212774,"id":3480,"parentId":2695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15171,"timestamp":6657470214983,"id":3544,"parentId":3479,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470230158,"id":3644,"parentId":3479,"tags":{},"startTime":1776264417313,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17892,"timestamp":6657470212737,"id":3479,"parentId":2695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15655,"timestamp":6657470214978,"id":3543,"parentId":3478,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470230637,"id":3645,"parentId":3478,"tags":{},"startTime":1776264417313,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18008,"timestamp":6657470212700,"id":3478,"parentId":2685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15714,"timestamp":6657470214997,"id":3547,"parentId":3482,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657470230715,"id":3646,"parentId":3482,"tags":{},"startTime":1776264417313,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19177,"timestamp":6657470212852,"id":3482,"parentId":2686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17040,"timestamp":6657470215001,"id":3548,"parentId":3483,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657470232047,"id":3647,"parentId":3483,"tags":{},"startTime":1776264417314,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21920,"timestamp":6657470212911,"id":3483,"parentId":2718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19856,"timestamp":6657470214992,"id":3546,"parentId":3481,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470234855,"id":3648,"parentId":3481,"tags":{},"startTime":1776264417317,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22419,"timestamp":6657470212813,"id":3481,"parentId":2695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20334,"timestamp":6657470214906,"id":3535,"parentId":3470,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657470235247,"id":3649,"parentId":3470,"tags":{},"startTime":1776264417318,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23388,"timestamp":6657470212383,"id":3470,"parentId":2687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":20852,"timestamp":6657470215009,"id":3550,"parentId":3485,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470235867,"id":3650,"parentId":3485,"tags":{},"startTime":1776264417318,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22954,"timestamp":6657470213017,"id":3485,"parentId":2680,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20990,"timestamp":6657470215004,"id":3549,"parentId":3484,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470235999,"id":3651,"parentId":3484,"tags":{},"startTime":1776264417318,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23200,"timestamp":6657470212973,"id":3484,"parentId":2690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":21179,"timestamp":6657470215013,"id":3551,"parentId":3486,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470236196,"id":3652,"parentId":3486,"tags":{},"startTime":1776264417319,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23559,"timestamp":6657470213055,"id":3486,"parentId":2690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":21606,"timestamp":6657470215018,"id":3552,"parentId":3487,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470236627,"id":3653,"parentId":3487,"tags":{},"startTime":1776264417319,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23931,"timestamp":6657470213094,"id":3487,"parentId":2717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"ssr"},"startTime":1776264417295,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22008,"timestamp":6657470215021,"id":3553,"parentId":3488,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470237032,"id":3654,"parentId":3488,"tags":{},"startTime":1776264417319,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24178,"timestamp":6657470213135,"id":3488,"parentId":2725,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22285,"timestamp":6657470215033,"id":3555,"parentId":3490,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470237321,"id":3655,"parentId":3490,"tags":{},"startTime":1776264417320,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24269,"timestamp":6657470213208,"id":3490,"parentId":2725,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22437,"timestamp":6657470215044,"id":3558,"parentId":3493,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470237483,"id":3656,"parentId":3493,"tags":{},"startTime":1776264417320,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24358,"timestamp":6657470213338,"id":3493,"parentId":2726,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22663,"timestamp":6657470215037,"id":3556,"parentId":3491,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470237703,"id":3657,"parentId":3491,"tags":{},"startTime":1776264417320,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24750,"timestamp":6657470213249,"id":3491,"parentId":2725,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22966,"timestamp":6657470215041,"id":3557,"parentId":3492,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657470238010,"id":3658,"parentId":3492,"tags":{},"startTime":1776264417320,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25743,"timestamp":6657470213290,"id":3492,"parentId":2726,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":23991,"timestamp":6657470215049,"id":3559,"parentId":3494,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470239043,"id":3659,"parentId":3494,"tags":{},"startTime":1776264417321,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26289,"timestamp":6657470213375,"id":3494,"parentId":2735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24598,"timestamp":6657470215071,"id":3562,"parentId":3497,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470239672,"id":3660,"parentId":3497,"tags":{},"startTime":1776264417322,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26357,"timestamp":6657470213502,"id":3497,"parentId":2732,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24840,"timestamp":6657470215025,"id":3554,"parentId":3489,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470239868,"id":3661,"parentId":3489,"tags":{},"startTime":1776264417322,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27077,"timestamp":6657470213172,"id":3489,"parentId":2725,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25200,"timestamp":6657470215053,"id":3560,"parentId":3495,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470240256,"id":3662,"parentId":3495,"tags":{},"startTime":1776264417323,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27210,"timestamp":6657470213413,"id":3495,"parentId":2735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25577,"timestamp":6657470215057,"id":3561,"parentId":3496,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470240637,"id":3663,"parentId":3496,"tags":{},"startTime":1776264417323,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27883,"timestamp":6657470213460,"id":3496,"parentId":2716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26272,"timestamp":6657470215075,"id":3563,"parentId":3498,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470241350,"id":3664,"parentId":3498,"tags":{},"startTime":1776264417324,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27995,"timestamp":6657470213557,"id":3498,"parentId":2732,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26468,"timestamp":6657470215088,"id":3567,"parentId":3502,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470241560,"id":3665,"parentId":3502,"tags":{},"startTime":1776264417324,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28118,"timestamp":6657470213693,"id":3502,"parentId":2716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26718,"timestamp":6657470215097,"id":3569,"parentId":3504,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470241817,"id":3666,"parentId":3504,"tags":{},"startTime":1776264417324,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28312,"timestamp":6657470213764,"id":3504,"parentId":2725,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":26996,"timestamp":6657470215085,"id":3566,"parentId":3501,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22,"timestamp":6657470242084,"id":3667,"parentId":3501,"tags":{},"startTime":1776264417324,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28527,"timestamp":6657470213661,"id":3501,"parentId":2738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27120,"timestamp":6657470215078,"id":3564,"parentId":3499,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470242201,"id":3668,"parentId":3499,"tags":{},"startTime":1776264417325,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29236,"timestamp":6657470213595,"id":3499,"parentId":2738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27744,"timestamp":6657470215091,"id":3568,"parentId":3503,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470242838,"id":3669,"parentId":3503,"tags":{},"startTime":1776264417325,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30082,"timestamp":6657470213728,"id":3503,"parentId":2730,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28727,"timestamp":6657470215100,"id":3570,"parentId":3505,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470243833,"id":3670,"parentId":3505,"tags":{},"startTime":1776264417326,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30466,"timestamp":6657470213801,"id":3505,"parentId":2738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29170,"timestamp":6657470215103,"id":3571,"parentId":3506,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470244280,"id":3671,"parentId":3506,"tags":{},"startTime":1776264417327,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31178,"timestamp":6657470213835,"id":3506,"parentId":2738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29907,"timestamp":6657470215111,"id":3575,"parentId":3510,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470245033,"id":3672,"parentId":3510,"tags":{},"startTime":1776264417327,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31317,"timestamp":6657470214047,"id":3510,"parentId":2868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30264,"timestamp":6657470215105,"id":3572,"parentId":3507,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470245374,"id":3673,"parentId":3507,"tags":{},"startTime":1776264417328,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31837,"timestamp":6657470213893,"id":3507,"parentId":2868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30656,"timestamp":6657470215081,"id":3565,"parentId":3500,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470245741,"id":3674,"parentId":3500,"tags":{},"startTime":1776264417328,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32483,"timestamp":6657470213628,"id":3500,"parentId":2738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31005,"timestamp":6657470215109,"id":3574,"parentId":3509,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470246118,"id":3675,"parentId":3509,"tags":{},"startTime":1776264417329,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32754,"timestamp":6657470214004,"id":3509,"parentId":2868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31644,"timestamp":6657470215119,"id":3578,"parentId":3513,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470246767,"id":3676,"parentId":3513,"tags":{},"startTime":1776264417329,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32701,"timestamp":6657470214150,"id":3513,"parentId":2867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31751,"timestamp":6657470215108,"id":3573,"parentId":3508,"tags":{},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470246862,"id":3677,"parentId":3508,"tags":{},"startTime":1776264417329,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33413,"timestamp":6657470213962,"id":3508,"parentId":2868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32268,"timestamp":6657470215116,"id":3577,"parentId":3512,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657470247390,"id":3678,"parentId":3512,"tags":{},"startTime":1776264417330,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34462,"timestamp":6657470214117,"id":3512,"parentId":2868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33464,"timestamp":6657470215123,"id":3579,"parentId":3514,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470248592,"id":3679,"parentId":3514,"tags":{},"startTime":1776264417331,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34534,"timestamp":6657470214189,"id":3514,"parentId":2867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33582,"timestamp":6657470215147,"id":3582,"parentId":3517,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470248732,"id":3680,"parentId":3517,"tags":{},"startTime":1776264417331,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34628,"timestamp":6657470214306,"id":3517,"parentId":2866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33813,"timestamp":6657470215126,"id":3580,"parentId":3515,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470248941,"id":3681,"parentId":3515,"tags":{},"startTime":1776264417331,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34928,"timestamp":6657470214237,"id":3515,"parentId":2865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34055,"timestamp":6657470215113,"id":3576,"parentId":3511,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470249172,"id":3682,"parentId":3511,"tags":{},"startTime":1776264417332,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35786,"timestamp":6657470214084,"id":3511,"parentId":2867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"ssr"},"startTime":1776264417296,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":34722,"timestamp":6657470215156,"id":3586,"parentId":3521,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470249882,"id":3683,"parentId":3521,"tags":{},"startTime":1776264417332,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":35738,"timestamp":6657470214438,"id":3521,"parentId":2866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35032,"timestamp":6657470215149,"id":3583,"parentId":3518,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470250184,"id":3684,"parentId":3518,"tags":{},"startTime":1776264417333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35978,"timestamp":6657470214338,"id":3518,"parentId":2866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35166,"timestamp":6657470215153,"id":3585,"parentId":3520,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470250323,"id":3685,"parentId":3520,"tags":{},"startTime":1776264417333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36695,"timestamp":6657470214404,"id":3520,"parentId":2869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":35954,"timestamp":6657470215151,"id":3584,"parentId":3519,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470251109,"id":3686,"parentId":3519,"tags":{},"startTime":1776264417333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36847,"timestamp":6657470214370,"id":3519,"parentId":2872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36046,"timestamp":6657470215176,"id":3591,"parentId":3526,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470251226,"id":3687,"parentId":3526,"tags":{},"startTime":1776264417334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37456,"timestamp":6657470214607,"id":3526,"parentId":2877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36905,"timestamp":6657470215163,"id":3589,"parentId":3524,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":45,"timestamp":6657470252071,"id":3688,"parentId":3524,"tags":{},"startTime":1776264417334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40535,"timestamp":6657470214541,"id":3524,"parentId":2871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39927,"timestamp":6657470215161,"id":3588,"parentId":3523,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":66,"timestamp":6657470255092,"id":3689,"parentId":3523,"tags":{},"startTime":1776264417337,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42002,"timestamp":6657470214506,"id":3523,"parentId":2872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41361,"timestamp":6657470215159,"id":3587,"parentId":3522,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470256524,"id":3690,"parentId":3522,"tags":{},"startTime":1776264417339,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42343,"timestamp":6657470214471,"id":3522,"parentId":2872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41637,"timestamp":6657470215182,"id":3594,"parentId":3529,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470256825,"id":3691,"parentId":3529,"tags":{},"startTime":1776264417339,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42283,"timestamp":6657470214731,"id":3529,"parentId":2877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41879,"timestamp":6657470215143,"id":3581,"parentId":3516,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470257026,"id":3692,"parentId":3516,"tags":{},"startTime":1776264417339,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":43971,"timestamp":6657470214273,"id":3516,"parentId":2866,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":43087,"timestamp":6657470215165,"id":3590,"parentId":3525,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470258260,"id":3693,"parentId":3525,"tags":{},"startTime":1776264417341,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":43843,"timestamp":6657470214574,"id":3525,"parentId":2873,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":43240,"timestamp":6657470215181,"id":3593,"parentId":3528,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470258424,"id":3694,"parentId":3528,"tags":{},"startTime":1776264417341,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":43812,"timestamp":6657470214693,"id":3528,"parentId":2882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":43333,"timestamp":6657470215179,"id":3592,"parentId":3527,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470258515,"id":3695,"parentId":3527,"tags":{},"startTime":1776264417341,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":44255,"timestamp":6657470214654,"id":3527,"parentId":2877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":43740,"timestamp":6657470215184,"id":3595,"parentId":3530,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470258928,"id":3696,"parentId":3530,"tags":{},"startTime":1776264417341,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":44367,"timestamp":6657470214773,"id":3530,"parentId":2877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":43957,"timestamp":6657470215186,"id":3596,"parentId":3531,"tags":{},"startTime":1776264417298,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470259146,"id":3697,"parentId":3531,"tags":{},"startTime":1776264417342,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":44500,"timestamp":6657470214814,"id":3531,"parentId":2877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"ssr"},"startTime":1776264417297,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":52769,"timestamp":6657470216901,"id":3604,"parentId":3597,"tags":{},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470269680,"id":3698,"parentId":3597,"tags":{},"startTime":1776264417352,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53563,"timestamp":6657470216612,"id":3597,"parentId":2879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"ssr"},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53286,"timestamp":6657470216908,"id":3606,"parentId":3599,"tags":{},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":39,"timestamp":6657470270203,"id":3699,"parentId":3599,"tags":{},"startTime":1776264417353,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":53809,"timestamp":6657470216708,"id":3599,"parentId":2882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"ssr"},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":53618,"timestamp":6657470216906,"id":3605,"parentId":3598,"tags":{},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657470270528,"id":3700,"parentId":3598,"tags":{},"startTime":1776264417353,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54304,"timestamp":6657470216666,"id":3598,"parentId":2882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"ssr"},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54076,"timestamp":6657470216912,"id":3608,"parentId":3601,"tags":{},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470270993,"id":3701,"parentId":3601,"tags":{},"startTime":1776264417353,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54650,"timestamp":6657470216784,"id":3601,"parentId":2880,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"ssr"},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54530,"timestamp":6657470216910,"id":3607,"parentId":3600,"tags":{},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470271444,"id":3702,"parentId":3600,"tags":{},"startTime":1776264417354,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":54998,"timestamp":6657470216743,"id":3600,"parentId":2882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"ssr"},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":54832,"timestamp":6657470216916,"id":3610,"parentId":3603,"tags":{},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470271752,"id":3703,"parentId":3603,"tags":{},"startTime":1776264417354,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55248,"timestamp":6657470216858,"id":3603,"parentId":2891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"ssr"},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":55196,"timestamp":6657470216914,"id":3609,"parentId":3602,"tags":{},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470272114,"id":3704,"parentId":3602,"tags":{},"startTime":1776264417355,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":55683,"timestamp":6657470216824,"id":3602,"parentId":2886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"ssr"},"startTime":1776264417299,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":67430,"timestamp":6657470217387,"id":3619,"parentId":3613,"tags":{},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470284836,"id":3705,"parentId":3613,"tags":{},"startTime":1776264417367,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":68170,"timestamp":6657470217238,"id":3613,"parentId":2890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"ssr"},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":68049,"timestamp":6657470217385,"id":3618,"parentId":3612,"tags":{},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470285440,"id":3706,"parentId":3612,"tags":{},"startTime":1776264417368,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":68888,"timestamp":6657470217203,"id":3612,"parentId":2891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"ssr"},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":68725,"timestamp":6657470217382,"id":3617,"parentId":3611,"tags":{},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":66,"timestamp":6657470286112,"id":3707,"parentId":3611,"tags":{},"startTime":1776264417369,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":69929,"timestamp":6657470217167,"id":3611,"parentId":2891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"ssr"},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":69712,"timestamp":6657470217391,"id":3621,"parentId":3615,"tags":{},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470287107,"id":3708,"parentId":3615,"tags":{},"startTime":1776264417369,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":69924,"timestamp":6657470217310,"id":3615,"parentId":2891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"ssr"},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":69849,"timestamp":6657470217389,"id":3620,"parentId":3614,"tags":{},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470287241,"id":3709,"parentId":3614,"tags":{},"startTime":1776264417370,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":70065,"timestamp":6657470217275,"id":3614,"parentId":2891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"ssr"},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":69952,"timestamp":6657470217392,"id":3622,"parentId":3616,"tags":{},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470287347,"id":3710,"parentId":3616,"tags":{},"startTime":1776264417370,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":70348,"timestamp":6657470217344,"id":3616,"parentId":2900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"ssr"},"startTime":1776264417300,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":8852,"timestamp":6657470304125,"id":3774,"parentId":3716,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657470312993,"id":3911,"parentId":3716,"tags":{},"startTime":1776264417395,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11461,"timestamp":6657470301892,"id":3716,"parentId":2952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9281,"timestamp":6657470304088,"id":3769,"parentId":3711,"tags":{},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470313374,"id":3912,"parentId":3711,"tags":{},"startTime":1776264417396,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11994,"timestamp":6657470301622,"id":3711,"parentId":2942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9525,"timestamp":6657470304102,"id":3770,"parentId":3712,"tags":{},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470313632,"id":3913,"parentId":3712,"tags":{},"startTime":1776264417396,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12108,"timestamp":6657470301726,"id":3712,"parentId":2947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":9709,"timestamp":6657470304129,"id":3775,"parentId":3717,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470313842,"id":3914,"parentId":3717,"tags":{},"startTime":1776264417396,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12366,"timestamp":6657470301934,"id":3717,"parentId":2951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10196,"timestamp":6657470304110,"id":3771,"parentId":3713,"tags":{},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470314309,"id":3915,"parentId":3713,"tags":{},"startTime":1776264417397,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13208,"timestamp":6657470301774,"id":3713,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":10850,"timestamp":6657470304137,"id":3777,"parentId":3719,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470314990,"id":3916,"parentId":3719,"tags":{},"startTime":1776264417397,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13727,"timestamp":6657470302011,"id":3719,"parentId":2956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11629,"timestamp":6657470304116,"id":3772,"parentId":3714,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":32,"timestamp":6657470315839,"id":3917,"parentId":3714,"tags":{},"startTime":1776264417398,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14261,"timestamp":6657470301813,"id":3714,"parentId":2952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":11945,"timestamp":6657470304133,"id":3776,"parentId":3718,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470316082,"id":3918,"parentId":3718,"tags":{},"startTime":1776264417398,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14481,"timestamp":6657470301969,"id":3718,"parentId":2951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12314,"timestamp":6657470304141,"id":3778,"parentId":3720,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":44,"timestamp":6657470316458,"id":3919,"parentId":3720,"tags":{},"startTime":1776264417399,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16387,"timestamp":6657470302053,"id":3720,"parentId":2983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14311,"timestamp":6657470304145,"id":3779,"parentId":3721,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470318462,"id":3920,"parentId":3721,"tags":{},"startTime":1776264417401,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16579,"timestamp":6657470302097,"id":3721,"parentId":2987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14536,"timestamp":6657470304149,"id":3780,"parentId":3722,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470318688,"id":3921,"parentId":3722,"tags":{},"startTime":1776264417401,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16851,"timestamp":6657470302140,"id":3722,"parentId":2984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14875,"timestamp":6657470304122,"id":3773,"parentId":3715,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470319000,"id":3922,"parentId":3715,"tags":{},"startTime":1776264417401,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17267,"timestamp":6657470301851,"id":3715,"parentId":2950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"ssr"},"startTime":1776264417384,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":14970,"timestamp":6657470304153,"id":3781,"parentId":3723,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470319125,"id":3923,"parentId":3723,"tags":{},"startTime":1776264417402,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17171,"timestamp":6657470302177,"id":3723,"parentId":2984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":15194,"timestamp":6657470304159,"id":3783,"parentId":3725,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470319355,"id":3924,"parentId":3725,"tags":{},"startTime":1776264417402,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17191,"timestamp":6657470302253,"id":3725,"parentId":2985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17011,"timestamp":6657470304165,"id":3785,"parentId":3727,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470321180,"id":3925,"parentId":3727,"tags":{},"startTime":1776264417404,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19691,"timestamp":6657470302329,"id":3727,"parentId":2988,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17857,"timestamp":6657470304168,"id":3786,"parentId":3728,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470322028,"id":3926,"parentId":3728,"tags":{},"startTime":1776264417404,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19779,"timestamp":6657470302364,"id":3728,"parentId":2988,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":17986,"timestamp":6657470304162,"id":3784,"parentId":3726,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470322151,"id":3927,"parentId":3726,"tags":{},"startTime":1776264417405,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19987,"timestamp":6657470302293,"id":3726,"parentId":2985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18135,"timestamp":6657470304156,"id":3782,"parentId":3724,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470322294,"id":3928,"parentId":3724,"tags":{},"startTime":1776264417405,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20198,"timestamp":6657470302213,"id":3724,"parentId":2987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18243,"timestamp":6657470304174,"id":3788,"parentId":3730,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":35,"timestamp":6657470322420,"id":3929,"parentId":3730,"tags":{},"startTime":1776264417405,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20670,"timestamp":6657470302452,"id":3730,"parentId":3069,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":18940,"timestamp":6657470304187,"id":3791,"parentId":3733,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470323131,"id":3930,"parentId":3733,"tags":{},"startTime":1776264417406,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21116,"timestamp":6657470302569,"id":3733,"parentId":3075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19515,"timestamp":6657470304184,"id":3790,"parentId":3732,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470323702,"id":3931,"parentId":3732,"tags":{},"startTime":1776264417406,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21334,"timestamp":6657470302526,"id":3732,"parentId":3077,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19698,"timestamp":6657470304171,"id":3787,"parentId":3729,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470323871,"id":3932,"parentId":3729,"tags":{},"startTime":1776264417406,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21655,"timestamp":6657470302411,"id":3729,"parentId":2985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":19892,"timestamp":6657470304177,"id":3789,"parentId":3731,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470324072,"id":3933,"parentId":3731,"tags":{},"startTime":1776264417406,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22082,"timestamp":6657470302491,"id":3731,"parentId":3077,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20386,"timestamp":6657470304194,"id":3793,"parentId":3735,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470324583,"id":3934,"parentId":3735,"tags":{},"startTime":1776264417407,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22075,"timestamp":6657470302644,"id":3735,"parentId":3075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20536,"timestamp":6657470304190,"id":3792,"parentId":3734,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":37,"timestamp":6657470324729,"id":3935,"parentId":3734,"tags":{},"startTime":1776264417407,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22554,"timestamp":6657470302605,"id":3734,"parentId":3075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":20955,"timestamp":6657470304209,"id":3798,"parentId":3740,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470325168,"id":3936,"parentId":3740,"tags":{},"startTime":1776264417408,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22482,"timestamp":6657470302820,"id":3740,"parentId":3079,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":21105,"timestamp":6657470304200,"id":3795,"parentId":3737,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470325308,"id":3937,"parentId":3737,"tags":{},"startTime":1776264417408,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23074,"timestamp":6657470302712,"id":3737,"parentId":3075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":21592,"timestamp":6657470304203,"id":3796,"parentId":3738,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":40,"timestamp":6657470325798,"id":3938,"parentId":3738,"tags":{},"startTime":1776264417408,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23948,"timestamp":6657470302745,"id":3738,"parentId":3071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22494,"timestamp":6657470304206,"id":3797,"parentId":3739,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470326703,"id":3939,"parentId":3739,"tags":{},"startTime":1776264417409,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24050,"timestamp":6657470302781,"id":3739,"parentId":3071,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22624,"timestamp":6657470304211,"id":3799,"parentId":3741,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470326839,"id":3940,"parentId":3741,"tags":{},"startTime":1776264417409,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24274,"timestamp":6657470302858,"id":3741,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":22939,"timestamp":6657470304197,"id":3794,"parentId":3736,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470327139,"id":3941,"parentId":3736,"tags":{},"startTime":1776264417410,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24564,"timestamp":6657470302676,"id":3736,"parentId":3075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":23030,"timestamp":6657470304214,"id":3800,"parentId":3742,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470327247,"id":3942,"parentId":3742,"tags":{},"startTime":1776264417410,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26256,"timestamp":6657470302890,"id":3742,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":24961,"timestamp":6657470304217,"id":3801,"parentId":3743,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657470329186,"id":3943,"parentId":3743,"tags":{},"startTime":1776264417412,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26641,"timestamp":6657470302925,"id":3743,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25353,"timestamp":6657470304226,"id":3804,"parentId":3746,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470329583,"id":3944,"parentId":3746,"tags":{},"startTime":1776264417412,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26707,"timestamp":6657470303024,"id":3746,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":25517,"timestamp":6657470304223,"id":3803,"parentId":3745,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470329744,"id":3945,"parentId":3745,"tags":{},"startTime":1776264417412,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28276,"timestamp":6657470302992,"id":3745,"parentId":2414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27069,"timestamp":6657470304234,"id":3807,"parentId":3749,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470331306,"id":3946,"parentId":3749,"tags":{},"startTime":1776264417414,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28340,"timestamp":6657470303166,"id":3749,"parentId":3105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27291,"timestamp":6657470304220,"id":3802,"parentId":3744,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470331513,"id":3947,"parentId":3744,"tags":{},"startTime":1776264417414,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28908,"timestamp":6657470302957,"id":3744,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27656,"timestamp":6657470304228,"id":3805,"parentId":3747,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":41,"timestamp":6657470331897,"id":3948,"parentId":3747,"tags":{},"startTime":1776264417414,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29099,"timestamp":6657470303073,"id":3747,"parentId":3081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"ssr"},"startTime":1776264417385,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":27944,"timestamp":6657470304236,"id":3808,"parentId":3750,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470332184,"id":3949,"parentId":3750,"tags":{},"startTime":1776264417415,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29121,"timestamp":6657470303207,"id":3750,"parentId":3104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":28102,"timestamp":6657470304231,"id":3806,"parentId":3748,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470332336,"id":3950,"parentId":3748,"tags":{},"startTime":1776264417415,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29836,"timestamp":6657470303128,"id":3748,"parentId":3100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":28812,"timestamp":6657470304239,"id":3809,"parentId":3751,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":36,"timestamp":6657470333055,"id":3951,"parentId":3751,"tags":{},"startTime":1776264417415,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30270,"timestamp":6657470303246,"id":3751,"parentId":3105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29275,"timestamp":6657470304247,"id":3812,"parentId":3754,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470333525,"id":3952,"parentId":3754,"tags":{},"startTime":1776264417416,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30346,"timestamp":6657470303349,"id":3754,"parentId":3166,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29455,"timestamp":6657470304244,"id":3811,"parentId":3753,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470333702,"id":3953,"parentId":3753,"tags":{},"startTime":1776264417416,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30561,"timestamp":6657470303317,"id":3753,"parentId":3156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29627,"timestamp":6657470304255,"id":3815,"parentId":3757,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470333885,"id":3954,"parentId":3757,"tags":{},"startTime":1776264417416,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30743,"timestamp":6657470303450,"id":3757,"parentId":3167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":29947,"timestamp":6657470304250,"id":3813,"parentId":3755,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470334200,"id":3955,"parentId":3755,"tags":{},"startTime":1776264417417,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31179,"timestamp":6657470303382,"id":3755,"parentId":3163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30313,"timestamp":6657470304252,"id":3814,"parentId":3756,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470334568,"id":3956,"parentId":3756,"tags":{},"startTime":1776264417417,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31526,"timestamp":6657470303415,"id":3756,"parentId":3167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30704,"timestamp":6657470304241,"id":3810,"parentId":3752,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470334952,"id":3957,"parentId":3752,"tags":{},"startTime":1776264417417,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31938,"timestamp":6657470303281,"id":3752,"parentId":3160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":30967,"timestamp":6657470304258,"id":3816,"parentId":3758,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470335229,"id":3958,"parentId":3758,"tags":{},"startTime":1776264417418,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32204,"timestamp":6657470303481,"id":3758,"parentId":3167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31434,"timestamp":6657470304261,"id":3817,"parentId":3759,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470335699,"id":3959,"parentId":3759,"tags":{},"startTime":1776264417418,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32414,"timestamp":6657470303514,"id":3759,"parentId":3169,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31662,"timestamp":6657470304271,"id":3821,"parentId":3763,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470335936,"id":3960,"parentId":3763,"tags":{},"startTime":1776264417418,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32471,"timestamp":6657470303670,"id":3763,"parentId":3156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":31883,"timestamp":6657470304264,"id":3818,"parentId":3760,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470336148,"id":3961,"parentId":3760,"tags":{},"startTime":1776264417419,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32963,"timestamp":6657470303551,"id":3760,"parentId":3173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32242,"timestamp":6657470304276,"id":3823,"parentId":3765,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470336520,"id":3962,"parentId":3765,"tags":{},"startTime":1776264417419,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33127,"timestamp":6657470303747,"id":3765,"parentId":3217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32616,"timestamp":6657470304268,"id":3820,"parentId":3762,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470336891,"id":3963,"parentId":3762,"tags":{},"startTime":1776264417419,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33426,"timestamp":6657470303630,"id":3762,"parentId":3179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":32786,"timestamp":6657470304273,"id":3822,"parentId":3764,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470337062,"id":3964,"parentId":3764,"tags":{},"startTime":1776264417419,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33605,"timestamp":6657470303704,"id":3764,"parentId":3177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33035,"timestamp":6657470304278,"id":3824,"parentId":3766,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470337316,"id":3965,"parentId":3766,"tags":{},"startTime":1776264417420,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33662,"timestamp":6657470303792,"id":3766,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":33219,"timestamp":6657470304282,"id":3826,"parentId":3768,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470337504,"id":3966,"parentId":3768,"tags":{},"startTime":1776264417420,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33735,"timestamp":6657470303923,"id":3768,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41473,"timestamp":6657470304280,"id":3825,"parentId":3767,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":46,"timestamp":6657470345766,"id":3967,"parentId":3767,"tags":{},"startTime":1776264417428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42217,"timestamp":6657470303860,"id":3767,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36662,"timestamp":6657470309424,"id":3859,"parentId":3827,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470346092,"id":3968,"parentId":3827,"tags":{},"startTime":1776264417428,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38295,"timestamp":6657470308036,"id":3827,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"ssr"},"startTime":1776264417390,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":36899,"timestamp":6657470309442,"id":3861,"parentId":3829,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470346346,"id":3969,"parentId":3829,"tags":{},"startTime":1776264417429,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38701,"timestamp":6657470308170,"id":3829,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":37417,"timestamp":6657470309459,"id":3863,"parentId":3831,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470346880,"id":3970,"parentId":3831,"tags":{},"startTime":1776264417429,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38852,"timestamp":6657470308246,"id":3831,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42837,"timestamp":6657470304266,"id":3819,"parentId":3761,"tags":{},"startTime":1776264417387,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470347106,"id":3971,"parentId":3761,"tags":{},"startTime":1776264417429,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":43627,"timestamp":6657470303591,"id":3761,"parentId":3173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"ssr"},"startTime":1776264417386,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":37759,"timestamp":6657470309462,"id":3864,"parentId":3832,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470347233,"id":3972,"parentId":3832,"tags":{},"startTime":1776264417430,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39219,"timestamp":6657470308284,"id":3832,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":38093,"timestamp":6657470309433,"id":3860,"parentId":3828,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470347530,"id":3973,"parentId":3828,"tags":{},"startTime":1776264417430,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39507,"timestamp":6657470308125,"id":3828,"parentId":3215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":38160,"timestamp":6657470309476,"id":3867,"parentId":3835,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470347640,"id":3974,"parentId":3835,"tags":{},"startTime":1776264417430,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39527,"timestamp":6657470308394,"id":3835,"parentId":3225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":38443,"timestamp":6657470309482,"id":3869,"parentId":3837,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470347928,"id":3975,"parentId":3837,"tags":{},"startTime":1776264417430,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39819,"timestamp":6657470308473,"id":3837,"parentId":3253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":38824,"timestamp":6657470309472,"id":3866,"parentId":3834,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470348300,"id":3976,"parentId":3834,"tags":{},"startTime":1776264417431,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40430,"timestamp":6657470308357,"id":3834,"parentId":3228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39325,"timestamp":6657470309465,"id":3865,"parentId":3833,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470348793,"id":3977,"parentId":3833,"tags":{},"startTime":1776264417431,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40996,"timestamp":6657470308320,"id":3833,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":39833,"timestamp":6657470309488,"id":3871,"parentId":3839,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470349324,"id":3978,"parentId":3839,"tags":{},"startTime":1776264417432,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":41071,"timestamp":6657470308539,"id":3839,"parentId":3257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40161,"timestamp":6657470309454,"id":3862,"parentId":3830,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470349618,"id":3979,"parentId":3830,"tags":{},"startTime":1776264417432,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42148,"timestamp":6657470308209,"id":3830,"parentId":3218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":40883,"timestamp":6657470309479,"id":3868,"parentId":3836,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470350365,"id":3980,"parentId":3836,"tags":{},"startTime":1776264417433,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42092,"timestamp":6657470308430,"id":3836,"parentId":3253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41033,"timestamp":6657470309493,"id":3873,"parentId":3841,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":62,"timestamp":6657470350529,"id":3981,"parentId":3841,"tags":{},"startTime":1776264417433,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42152,"timestamp":6657470308612,"id":3841,"parentId":3261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41281,"timestamp":6657470309490,"id":3872,"parentId":3840,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22,"timestamp":6657470350774,"id":3982,"parentId":3840,"tags":{},"startTime":1776264417433,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42310,"timestamp":6657470308575,"id":3840,"parentId":3259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":41391,"timestamp":6657470309498,"id":3875,"parentId":3843,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470350892,"id":3983,"parentId":3843,"tags":{},"startTime":1776264417433,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42944,"timestamp":6657470308677,"id":3843,"parentId":3344,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42144,"timestamp":6657470309485,"id":3870,"parentId":3838,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657470351632,"id":3984,"parentId":3838,"tags":{},"startTime":1776264417434,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":43721,"timestamp":6657470308505,"id":3838,"parentId":3253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":42732,"timestamp":6657470309502,"id":3876,"parentId":3844,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470352238,"id":3985,"parentId":3844,"tags":{},"startTime":1776264417435,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":45370,"timestamp":6657470308713,"id":3844,"parentId":3344,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":44603,"timestamp":6657470309496,"id":3874,"parentId":3842,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":34,"timestamp":6657470354107,"id":3986,"parentId":3842,"tags":{},"startTime":1776264417436,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":45631,"timestamp":6657470308645,"id":3842,"parentId":3269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":44777,"timestamp":6657470309504,"id":3877,"parentId":3845,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470354286,"id":3987,"parentId":3845,"tags":{},"startTime":1776264417437,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46126,"timestamp":6657470308764,"id":3845,"parentId":3344,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45389,"timestamp":6657470309506,"id":3878,"parentId":3846,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470354899,"id":3988,"parentId":3846,"tags":{},"startTime":1776264417437,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46244,"timestamp":6657470308824,"id":3846,"parentId":3275,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45563,"timestamp":6657470309510,"id":3880,"parentId":3848,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470355076,"id":3989,"parentId":3848,"tags":{},"startTime":1776264417437,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46317,"timestamp":6657470309000,"id":3848,"parentId":3450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45810,"timestamp":6657470309512,"id":3881,"parentId":3849,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470355326,"id":3990,"parentId":3849,"tags":{},"startTime":1776264417438,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46424,"timestamp":6657470309044,"id":3849,"parentId":3449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":45968,"timestamp":6657470309516,"id":3883,"parentId":3851,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470355488,"id":3991,"parentId":3851,"tags":{},"startTime":1776264417438,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":46507,"timestamp":6657470309127,"id":3851,"parentId":3483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":46122,"timestamp":6657470309517,"id":3884,"parentId":3852,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":42,"timestamp":6657470355643,"id":3992,"parentId":3852,"tags":{},"startTime":1776264417438,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":48019,"timestamp":6657470309166,"id":3852,"parentId":3505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":47675,"timestamp":6657470309519,"id":3885,"parentId":3853,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":56,"timestamp":6657470357198,"id":3993,"parentId":3853,"tags":{},"startTime":1776264417440,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":49349,"timestamp":6657470309202,"id":3853,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":49042,"timestamp":6657470309514,"id":3882,"parentId":3850,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470358560,"id":3994,"parentId":3850,"tags":{},"startTime":1776264417441,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":50039,"timestamp":6657470309090,"id":3850,"parentId":3447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":49627,"timestamp":6657470309508,"id":3879,"parentId":3847,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470359139,"id":3995,"parentId":3847,"tags":{},"startTime":1776264417442,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51146,"timestamp":6657470308948,"id":3847,"parentId":2869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1776264417391,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50583,"timestamp":6657470309524,"id":3887,"parentId":3855,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470360110,"id":3996,"parentId":3855,"tags":{},"startTime":1776264417442,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":50956,"timestamp":6657470309273,"id":3855,"parentId":3471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50715,"timestamp":6657470309526,"id":3888,"parentId":3856,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":27,"timestamp":6657470360243,"id":3997,"parentId":3856,"tags":{},"startTime":1776264417443,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51164,"timestamp":6657470309310,"id":3856,"parentId":3471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":50950,"timestamp":6657470309527,"id":3889,"parentId":3857,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":29,"timestamp":6657470360480,"id":3998,"parentId":3857,"tags":{},"startTime":1776264417443,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51252,"timestamp":6657470309345,"id":3857,"parentId":3471,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51080,"timestamp":6657470309521,"id":3886,"parentId":3854,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470360613,"id":3999,"parentId":3854,"tags":{},"startTime":1776264417443,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51463,"timestamp":6657470309237,"id":3854,"parentId":3470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":51174,"timestamp":6657470309529,"id":3890,"parentId":3858,"tags":{},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470360706,"id":4000,"parentId":3858,"tags":{},"startTime":1776264417443,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":51530,"timestamp":6657470309382,"id":3858,"parentId":3499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"ssr"},"startTime":1776264417392,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":60248,"timestamp":6657470310692,"id":3900,"parentId":3892,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470370948,"id":4001,"parentId":3892,"tags":{},"startTime":1776264417453,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":60947,"timestamp":6657470310399,"id":3892,"parentId":3512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":60666,"timestamp":6657470310686,"id":3899,"parentId":3891,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470371355,"id":4002,"parentId":3891,"tags":{},"startTime":1776264417454,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":61283,"timestamp":6657470310313,"id":3891,"parentId":3509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":60917,"timestamp":6657470310698,"id":3903,"parentId":3895,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":38,"timestamp":6657470371626,"id":4003,"parentId":3895,"tags":{},"startTime":1776264417454,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":61467,"timestamp":6657470310536,"id":3895,"parentId":3512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":61313,"timestamp":6657470310697,"id":3902,"parentId":3894,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470372015,"id":4004,"parentId":3894,"tags":{},"startTime":1776264417454,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":61869,"timestamp":6657470310499,"id":3894,"parentId":3512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":61682,"timestamp":6657470310695,"id":3901,"parentId":3893,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470372380,"id":4005,"parentId":3893,"tags":{},"startTime":1776264417455,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":62537,"timestamp":6657470310459,"id":3893,"parentId":3512,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":62301,"timestamp":6657470310701,"id":3904,"parentId":3896,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470373006,"id":4006,"parentId":3896,"tags":{},"startTime":1776264417455,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":62599,"timestamp":6657470310572,"id":3896,"parentId":3489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":62473,"timestamp":6657470310703,"id":3905,"parentId":3897,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470373181,"id":4007,"parentId":3897,"tags":{},"startTime":1776264417456,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":62998,"timestamp":6657470310609,"id":3897,"parentId":3520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":62907,"timestamp":6657470310705,"id":3906,"parentId":3898,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470373614,"id":4008,"parentId":3898,"tags":{},"startTime":1776264417456,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":63081,"timestamp":6657470310644,"id":3898,"parentId":3520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":73918,"timestamp":6657470310838,"id":3910,"parentId":3908,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470384769,"id":4009,"parentId":3908,"tags":{},"startTime":1776264417467,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":74165,"timestamp":6657470310797,"id":3908,"parentId":3520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":74132,"timestamp":6657470310836,"id":3909,"parentId":3907,"tags":{},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470384971,"id":4010,"parentId":3907,"tags":{},"startTime":1776264417467,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":74344,"timestamp":6657470310760,"id":3907,"parentId":3520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"ssr"},"startTime":1776264417393,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4252,"timestamp":6657470386520,"id":4022,"parentId":4014,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470390776,"id":4043,"parentId":4014,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4770,"timestamp":6657470386267,"id":4014,"parentId":3520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"ssr"},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4523,"timestamp":6657470386524,"id":4023,"parentId":4015,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":30,"timestamp":6657470391050,"id":4044,"parentId":4015,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4999,"timestamp":6657470386302,"id":4015,"parentId":3499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"ssr"},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4816,"timestamp":6657470386489,"id":4019,"parentId":4011,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":32,"timestamp":6657470391308,"id":4045,"parentId":4011,"tags":{},"startTime":1776264417474,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5489,"timestamp":6657470386097,"id":4011,"parentId":3522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"ssr"},"startTime":1776264417468,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5076,"timestamp":6657470386515,"id":4021,"parentId":4013,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657470391593,"id":4046,"parentId":4013,"tags":{},"startTime":1776264417474,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5597,"timestamp":6657470386219,"id":4013,"parentId":3602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"ssr"},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5318,"timestamp":6657470386501,"id":4020,"parentId":4012,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470391821,"id":4047,"parentId":4012,"tags":{},"startTime":1776264417474,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5751,"timestamp":6657470386177,"id":4012,"parentId":3602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"ssr"},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5405,"timestamp":6657470386527,"id":4024,"parentId":4016,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":24,"timestamp":6657470391934,"id":4048,"parentId":4016,"tags":{},"startTime":1776264417474,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5710,"timestamp":6657470386341,"id":4016,"parentId":3616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"ssr"},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5521,"timestamp":6657470386532,"id":4026,"parentId":4018,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470392055,"id":4049,"parentId":4018,"tags":{},"startTime":1776264417474,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6169,"timestamp":6657470386430,"id":4018,"parentId":3714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"ssr"},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6073,"timestamp":6657470386530,"id":4025,"parentId":4017,"tags":{},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":29,"timestamp":6657470392679,"id":4050,"parentId":4017,"tags":{},"startTime":1776264417475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6401,"timestamp":6657470386384,"id":4017,"parentId":3730,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"ssr"},"startTime":1776264417469,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":4991,"timestamp":6657470390075,"id":4029,"parentId":4027,"tags":{},"startTime":1776264417472,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":33,"timestamp":6657470395075,"id":4051,"parentId":4027,"tags":{},"startTime":1776264417477,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5450,"timestamp":6657470389960,"id":4027,"parentId":3731,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"ssr"},"startTime":1776264417472,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5333,"timestamp":6657470390084,"id":4030,"parentId":4028,"tags":{},"startTime":1776264417472,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":31,"timestamp":6657470395420,"id":4052,"parentId":4028,"tags":{},"startTime":1776264417478,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6112,"timestamp":6657470390026,"id":4028,"parentId":3759,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"ssr"},"startTime":1776264417472,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":5820,"timestamp":6657470390658,"id":4036,"parentId":4031,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":28,"timestamp":6657470396483,"id":4053,"parentId":4031,"tags":{},"startTime":1776264417479,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6277,"timestamp":6657470390442,"id":4031,"parentId":3852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"ssr"},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6057,"timestamp":6657470390669,"id":4038,"parentId":4033,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":25,"timestamp":6657470396729,"id":4054,"parentId":4033,"tags":{},"startTime":1776264417479,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6381,"timestamp":6657470390537,"id":4033,"parentId":3852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"ssr"},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6173,"timestamp":6657470390748,"id":4042,"parentId":4041,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22,"timestamp":6657470396925,"id":4055,"parentId":4041,"tags":{},"startTime":1776264417479,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6277,"timestamp":6657470390710,"id":4041,"parentId":3895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"ssr"},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6312,"timestamp":6657470390678,"id":4039,"parentId":4034,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470396994,"id":4056,"parentId":4034,"tags":{},"startTime":1776264417479,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6614,"timestamp":6657470390583,"id":4034,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"ssr"},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6522,"timestamp":6657470390682,"id":4040,"parentId":4035,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470397206,"id":4057,"parentId":4035,"tags":{},"startTime":1776264417480,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6779,"timestamp":6657470390618,"id":4035,"parentId":3849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"ssr"},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6735,"timestamp":6657470390665,"id":4037,"parentId":4032,"tags":{},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":23,"timestamp":6657470397402,"id":4058,"parentId":4032,"tags":{},"startTime":1776264417480,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7660,"timestamp":6657470390491,"id":4032,"parentId":3852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"ssr"},"startTime":1776264417473,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":1173562,"timestamp":6657469228382,"id":2364,"parentId":2363,"tags":{},"startTime":1776264416311,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":9239,"timestamp":6657470422886,"id":4060,"parentId":4059,"tags":{},"startTime":1776264417505,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":4,"timestamp":6657470432152,"id":4062,"parentId":4059,"tags":{},"startTime":1776264417515,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":3703,"timestamp":6657470432167,"id":4063,"parentId":4059,"tags":{},"startTime":1776264417515,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":6,"timestamp":6657470435890,"id":4064,"parentId":4059,"tags":{},"startTime":1776264417518,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6657470435913,"id":4065,"parentId":4059,"tags":{},"startTime":1776264417518,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":5584,"timestamp":6657470432144,"id":4061,"parentId":4059,"tags":{},"startTime":1776264417515,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":10234,"timestamp":6657470440916,"id":4066,"parentId":4059,"tags":{},"startTime":1776264417523,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":47493,"timestamp":6657470451168,"id":4067,"parentId":4059,"tags":{},"startTime":1776264417534,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":1293,"timestamp":6657470500684,"id":4068,"parentId":4059,"tags":{},"startTime":1776264417583,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":53,"timestamp":6657470501976,"id":4069,"parentId":4059,"tags":{},"startTime":1776264417584,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":102,"timestamp":6657470502023,"id":4070,"parentId":4059,"tags":{},"startTime":1776264417584,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":145168,"timestamp":6657470502127,"id":4071,"parentId":4059,"tags":{},"startTime":1776264417585,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":232606,"timestamp":6657470416680,"id":4059,"parentId":2363,"tags":{},"startTime":1776264417499,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":1431320,"timestamp":6657469222054,"id":2363,"parentId":2361,"tags":{"name":"server"},"startTime":1776264416304,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":36715,"timestamp":6657470653397,"id":4072,"parentId":2361,"tags":{},"startTime":1776264417736,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":1489618,"timestamp":6657469200990,"id":2361,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264416283,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":12189,"timestamp":6657470701292,"id":4075,"parentId":4074,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":12143,"timestamp":6657470701351,"id":4077,"parentId":4074,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13881,"timestamp":6657470701357,"id":4079,"parentId":4074,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":14693,"timestamp":6657470701363,"id":4082,"parentId":4074,"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":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":18719,"timestamp":6657470701361,"id":4081,"parentId":4074,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":23343,"timestamp":6657470701359,"id":4080,"parentId":4074,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":23897,"timestamp":6657470701373,"id":4084,"parentId":4074,"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":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":25232,"timestamp":6657470701354,"id":4078,"parentId":4074,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":25232,"timestamp":6657470701365,"id":4083,"parentId":4074,"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":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":28604,"timestamp":6657470701347,"id":4076,"parentId":4074,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":775,"timestamp":6657470736622,"id":4086,"parentId":4085,"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%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776264417819,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13116,"timestamp":6657470738312,"id":4089,"parentId":4088,"tags":{},"startTime":1776264417821,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13225,"timestamp":6657470738213,"id":4088,"parentId":4087,"tags":{},"startTime":1776264417821,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":18361,"timestamp":6657470738106,"id":4087,"parentId":4086,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/stock/[code]/page.tsx","layer":"app-pages-browser"},"startTime":1776264417820,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3622,"timestamp":6657470760353,"id":4093,"parentId":4092,"tags":{},"startTime":1776264417843,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3702,"timestamp":6657470760278,"id":4092,"parentId":4090,"tags":{},"startTime":1776264417843,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":5089,"timestamp":6657470760061,"id":4090,"parentId":4087,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"app-pages-browser"},"startTime":1776264417842,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6858,"timestamp":6657470760406,"id":4095,"parentId":4094,"tags":{},"startTime":1776264417843,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6909,"timestamp":6657470760359,"id":4094,"parentId":4091,"tags":{},"startTime":1776264417843,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":8459,"timestamp":6657470760200,"id":4091,"parentId":4087,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"app-pages-browser"},"startTime":1776264417843,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":6,"timestamp":6657470777621,"id":4097,"parentId":4096,"tags":{},"startTime":1776264417860,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":48,"timestamp":6657470777636,"id":4098,"parentId":4096,"tags":{},"startTime":1776264417860,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":2788,"timestamp":6657470777351,"id":4096,"parentId":4090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"app-pages-browser"},"startTime":1776264417860,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":46,"timestamp":6657470785857,"id":4105,"parentId":4099,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":98,"timestamp":6657470785889,"id":4106,"parentId":4100,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":155,"timestamp":6657470785893,"id":4107,"parentId":4101,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":496,"timestamp":6657470785896,"id":4108,"parentId":4102,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":549,"timestamp":6657470785899,"id":4109,"parentId":4103,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":626,"timestamp":6657470785901,"id":4110,"parentId":4104,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":812,"timestamp":6657470785911,"id":4111,"parentId":4099,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":719,"timestamp":6657470786011,"id":4112,"parentId":4100,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":682,"timestamp":6657470786051,"id":4113,"parentId":4101,"tags":{},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":338,"timestamp":6657470786397,"id":4114,"parentId":4102,"tags":{},"startTime":1776264417869,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":285,"timestamp":6657470786451,"id":4115,"parentId":4103,"tags":{},"startTime":1776264417869,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":154,"timestamp":6657470786583,"id":4116,"parentId":4104,"tags":{},"startTime":1776264417869,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4228,"timestamp":6657470784507,"id":4099,"parentId":4096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"app-pages-browser"},"startTime":1776264417867,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4635,"timestamp":6657470784731,"id":4100,"parentId":4096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"app-pages-browser"},"startTime":1776264417867,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":4473,"timestamp":6657470785211,"id":4101,"parentId":4096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"app-pages-browser"},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5116,"timestamp":6657470785519,"id":4102,"parentId":4096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"app-pages-browser"},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5445,"timestamp":6657470785643,"id":4103,"parentId":4096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"app-pages-browser"},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5457,"timestamp":6657470785731,"id":4104,"parentId":4096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"app-pages-browser"},"startTime":1776264417868,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":168,"timestamp":6657470816772,"id":4180,"parentId":4117,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":276,"timestamp":6657470816782,"id":4181,"parentId":4118,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":303,"timestamp":6657470816785,"id":4182,"parentId":4119,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":340,"timestamp":6657470816788,"id":4183,"parentId":4120,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":368,"timestamp":6657470816790,"id":4184,"parentId":4121,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":401,"timestamp":6657470816793,"id":4185,"parentId":4122,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":423,"timestamp":6657470816796,"id":4186,"parentId":4123,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":446,"timestamp":6657470816799,"id":4187,"parentId":4124,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":471,"timestamp":6657470816801,"id":4188,"parentId":4125,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":494,"timestamp":6657470816804,"id":4189,"parentId":4126,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":519,"timestamp":6657470816806,"id":4190,"parentId":4127,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":556,"timestamp":6657470816808,"id":4191,"parentId":4128,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":580,"timestamp":6657470816811,"id":4192,"parentId":4129,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":604,"timestamp":6657470816813,"id":4193,"parentId":4130,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":635,"timestamp":6657470816815,"id":4194,"parentId":4131,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":658,"timestamp":6657470816817,"id":4195,"parentId":4132,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":680,"timestamp":6657470816818,"id":4196,"parentId":4133,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":821,"timestamp":6657470816820,"id":4197,"parentId":4134,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":842,"timestamp":6657470816823,"id":4198,"parentId":4135,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":865,"timestamp":6657470816826,"id":4199,"parentId":4136,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":887,"timestamp":6657470816828,"id":4200,"parentId":4137,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":909,"timestamp":6657470816830,"id":4201,"parentId":4138,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":933,"timestamp":6657470816832,"id":4202,"parentId":4139,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":956,"timestamp":6657470816834,"id":4203,"parentId":4140,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":970,"timestamp":6657470816849,"id":4204,"parentId":4141,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":999,"timestamp":6657470816853,"id":4205,"parentId":4142,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1023,"timestamp":6657470816855,"id":4206,"parentId":4143,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1054,"timestamp":6657470816858,"id":4207,"parentId":4144,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1076,"timestamp":6657470816861,"id":4208,"parentId":4145,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1097,"timestamp":6657470816865,"id":4209,"parentId":4146,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1122,"timestamp":6657470816867,"id":4210,"parentId":4147,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1145,"timestamp":6657470816869,"id":4211,"parentId":4148,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1168,"timestamp":6657470816871,"id":4212,"parentId":4149,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1190,"timestamp":6657470816874,"id":4213,"parentId":4150,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1215,"timestamp":6657470816876,"id":4214,"parentId":4151,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1239,"timestamp":6657470816878,"id":4215,"parentId":4152,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1263,"timestamp":6657470816880,"id":4216,"parentId":4153,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1286,"timestamp":6657470816882,"id":4217,"parentId":4154,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1312,"timestamp":6657470816884,"id":4218,"parentId":4155,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1336,"timestamp":6657470816886,"id":4219,"parentId":4156,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1359,"timestamp":6657470816889,"id":4220,"parentId":4157,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1383,"timestamp":6657470816891,"id":4221,"parentId":4158,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1406,"timestamp":6657470816893,"id":4222,"parentId":4159,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1431,"timestamp":6657470816894,"id":4223,"parentId":4160,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1454,"timestamp":6657470816897,"id":4224,"parentId":4161,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1476,"timestamp":6657470816900,"id":4225,"parentId":4162,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1498,"timestamp":6657470816902,"id":4226,"parentId":4163,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1524,"timestamp":6657470816905,"id":4227,"parentId":4164,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1546,"timestamp":6657470816907,"id":4228,"parentId":4165,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1569,"timestamp":6657470816909,"id":4229,"parentId":4166,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1591,"timestamp":6657470816910,"id":4230,"parentId":4167,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1613,"timestamp":6657470816913,"id":4231,"parentId":4168,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1635,"timestamp":6657470816915,"id":4232,"parentId":4169,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1659,"timestamp":6657470816917,"id":4233,"parentId":4170,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1682,"timestamp":6657470816919,"id":4234,"parentId":4171,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1707,"timestamp":6657470816922,"id":4235,"parentId":4172,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1732,"timestamp":6657470816924,"id":4236,"parentId":4173,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1754,"timestamp":6657470816927,"id":4237,"parentId":4174,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1778,"timestamp":6657470816929,"id":4238,"parentId":4175,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1802,"timestamp":6657470816931,"id":4239,"parentId":4176,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1827,"timestamp":6657470816932,"id":4240,"parentId":4177,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1850,"timestamp":6657470816934,"id":4241,"parentId":4178,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1873,"timestamp":6657470816936,"id":4242,"parentId":4179,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1867,"timestamp":6657470816969,"id":4243,"parentId":4117,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1774,"timestamp":6657470817063,"id":4244,"parentId":4118,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1747,"timestamp":6657470817091,"id":4245,"parentId":4119,"tags":{},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1708,"timestamp":6657470817131,"id":4246,"parentId":4120,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1678,"timestamp":6657470817161,"id":4247,"parentId":4121,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1643,"timestamp":6657470817196,"id":4248,"parentId":4122,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1619,"timestamp":6657470817221,"id":4249,"parentId":4123,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1592,"timestamp":6657470817248,"id":4250,"parentId":4124,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1565,"timestamp":6657470817275,"id":4251,"parentId":4125,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1540,"timestamp":6657470817301,"id":4252,"parentId":4126,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1514,"timestamp":6657470817327,"id":4253,"parentId":4127,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1475,"timestamp":6657470817367,"id":4254,"parentId":4128,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1449,"timestamp":6657470817393,"id":4255,"parentId":4129,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1416,"timestamp":6657470817426,"id":4256,"parentId":4130,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1391,"timestamp":6657470817452,"id":4257,"parentId":4131,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1366,"timestamp":6657470817477,"id":4258,"parentId":4132,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1226,"timestamp":6657470817617,"id":4259,"parentId":4133,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1199,"timestamp":6657470817644,"id":4260,"parentId":4134,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1176,"timestamp":6657470817668,"id":4261,"parentId":4135,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1152,"timestamp":6657470817693,"id":4262,"parentId":4136,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1127,"timestamp":6657470817717,"id":4263,"parentId":4137,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1103,"timestamp":6657470817742,"id":4264,"parentId":4138,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1079,"timestamp":6657470817767,"id":4265,"parentId":4139,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1054,"timestamp":6657470817792,"id":4266,"parentId":4140,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1017,"timestamp":6657470817828,"id":4267,"parentId":4141,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":992,"timestamp":6657470817854,"id":4268,"parentId":4142,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":966,"timestamp":6657470817881,"id":4269,"parentId":4143,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":932,"timestamp":6657470817915,"id":4270,"parentId":4144,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":908,"timestamp":6657470817939,"id":4271,"parentId":4145,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":883,"timestamp":6657470817964,"id":4272,"parentId":4146,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":857,"timestamp":6657470817991,"id":4273,"parentId":4147,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":832,"timestamp":6657470818015,"id":4274,"parentId":4148,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":807,"timestamp":6657470818041,"id":4275,"parentId":4149,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":782,"timestamp":6657470818066,"id":4276,"parentId":4150,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":756,"timestamp":6657470818093,"id":4277,"parentId":4151,"tags":{},"startTime":1776264417900,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":730,"timestamp":6657470818119,"id":4278,"parentId":4152,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":705,"timestamp":6657470818145,"id":4279,"parentId":4153,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":679,"timestamp":6657470818171,"id":4280,"parentId":4154,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":652,"timestamp":6657470818198,"id":4281,"parentId":4155,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":626,"timestamp":6657470818224,"id":4282,"parentId":4156,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":601,"timestamp":6657470818250,"id":4283,"parentId":4157,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":576,"timestamp":6657470818275,"id":4284,"parentId":4158,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":549,"timestamp":6657470818302,"id":4285,"parentId":4159,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":524,"timestamp":6657470818328,"id":4286,"parentId":4160,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":499,"timestamp":6657470818353,"id":4287,"parentId":4161,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":474,"timestamp":6657470818378,"id":4288,"parentId":4162,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":450,"timestamp":6657470818403,"id":4289,"parentId":4163,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":422,"timestamp":6657470818430,"id":4290,"parentId":4164,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":398,"timestamp":6657470818455,"id":4291,"parentId":4165,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":374,"timestamp":6657470818479,"id":4292,"parentId":4166,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":350,"timestamp":6657470818503,"id":4293,"parentId":4167,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":326,"timestamp":6657470818528,"id":4294,"parentId":4168,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":302,"timestamp":6657470818552,"id":4295,"parentId":4169,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":276,"timestamp":6657470818578,"id":4296,"parentId":4170,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":251,"timestamp":6657470818604,"id":4297,"parentId":4171,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":268,"timestamp":6657470818630,"id":4298,"parentId":4172,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":241,"timestamp":6657470818657,"id":4299,"parentId":4173,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":216,"timestamp":6657470818683,"id":4300,"parentId":4174,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":191,"timestamp":6657470818708,"id":4301,"parentId":4175,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":164,"timestamp":6657470818735,"id":4302,"parentId":4176,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":138,"timestamp":6657470818762,"id":4303,"parentId":4177,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":114,"timestamp":6657470818786,"id":4304,"parentId":4178,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":89,"timestamp":6657470818811,"id":4305,"parentId":4179,"tags":{},"startTime":1776264417901,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11250,"timestamp":6657470812771,"id":4117,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11486,"timestamp":6657470812872,"id":4118,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12017,"timestamp":6657470812916,"id":4119,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12377,"timestamp":6657470812956,"id":4120,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13281,"timestamp":6657470812992,"id":4121,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13443,"timestamp":6657470813027,"id":4122,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13691,"timestamp":6657470813064,"id":4123,"parentId":4100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13750,"timestamp":6657470813105,"id":4124,"parentId":4100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"app-pages-browser"},"startTime":1776264417895,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13764,"timestamp":6657470813142,"id":4125,"parentId":4101,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13773,"timestamp":6657470813178,"id":4126,"parentId":4101,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16447,"timestamp":6657470813216,"id":4127,"parentId":4104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16556,"timestamp":6657470813253,"id":4128,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16636,"timestamp":6657470813288,"id":4129,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16696,"timestamp":6657470813323,"id":4130,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16734,"timestamp":6657470813360,"id":4131,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16764,"timestamp":6657470813401,"id":4132,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16809,"timestamp":6657470813442,"id":4133,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16895,"timestamp":6657470813484,"id":4134,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17018,"timestamp":6657470813527,"id":4135,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17147,"timestamp":6657470813570,"id":4136,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17163,"timestamp":6657470813620,"id":4137,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17174,"timestamp":6657470813667,"id":4138,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17199,"timestamp":6657470813710,"id":4139,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17221,"timestamp":6657470813759,"id":4140,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17238,"timestamp":6657470813798,"id":4141,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17262,"timestamp":6657470813833,"id":4142,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17283,"timestamp":6657470813868,"id":4143,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17300,"timestamp":6657470813904,"id":4144,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17310,"timestamp":6657470813939,"id":4145,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17339,"timestamp":6657470813973,"id":4146,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17370,"timestamp":6657470814008,"id":4147,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17402,"timestamp":6657470814043,"id":4148,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17413,"timestamp":6657470814078,"id":4149,"parentId":4102,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"app-pages-browser"},"startTime":1776264417896,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17549,"timestamp":6657470814113,"id":4150,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17566,"timestamp":6657470814150,"id":4151,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17680,"timestamp":6657470814185,"id":4152,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17715,"timestamp":6657470814220,"id":4153,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17919,"timestamp":6657470814254,"id":4154,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18017,"timestamp":6657470814288,"id":4155,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18079,"timestamp":6657470814323,"id":4156,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18101,"timestamp":6657470814364,"id":4157,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18146,"timestamp":6657470814404,"id":4158,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18188,"timestamp":6657470814445,"id":4159,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18211,"timestamp":6657470814485,"id":4160,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18279,"timestamp":6657470814525,"id":4161,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18329,"timestamp":6657470814566,"id":4162,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18653,"timestamp":6657470814607,"id":4163,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18690,"timestamp":6657470814646,"id":4164,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18711,"timestamp":6657470814685,"id":4165,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18737,"timestamp":6657470814725,"id":4166,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18769,"timestamp":6657470814765,"id":4167,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18787,"timestamp":6657470814806,"id":4168,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18810,"timestamp":6657470814848,"id":4169,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18835,"timestamp":6657470814889,"id":4170,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18858,"timestamp":6657470814930,"id":4171,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"app-pages-browser"},"startTime":1776264417897,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18646,"timestamp":6657470815212,"id":4172,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"app-pages-browser"},"startTime":1776264417898,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18620,"timestamp":6657470815288,"id":4173,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"app-pages-browser"},"startTime":1776264417898,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18628,"timestamp":6657470815342,"id":4174,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"app-pages-browser"},"startTime":1776264417898,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18630,"timestamp":6657470815418,"id":4175,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"app-pages-browser"},"startTime":1776264417898,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18643,"timestamp":6657470815463,"id":4176,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"app-pages-browser"},"startTime":1776264417898,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17555,"timestamp":6657470816606,"id":4177,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"app-pages-browser"},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17538,"timestamp":6657470816672,"id":4178,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"app-pages-browser"},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17658,"timestamp":6657470816717,"id":4179,"parentId":4103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"app-pages-browser"},"startTime":1776264417899,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":283,"timestamp":6657470890494,"id":4320,"parentId":4306,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":326,"timestamp":6657470890499,"id":4321,"parentId":4307,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":355,"timestamp":6657470890501,"id":4322,"parentId":4308,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":391,"timestamp":6657470890503,"id":4323,"parentId":4309,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":412,"timestamp":6657470890505,"id":4324,"parentId":4310,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":434,"timestamp":6657470890507,"id":4325,"parentId":4311,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":464,"timestamp":6657470890509,"id":4326,"parentId":4312,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":490,"timestamp":6657470890510,"id":4327,"parentId":4313,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":527,"timestamp":6657470890512,"id":4328,"parentId":4314,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":561,"timestamp":6657470890514,"id":4329,"parentId":4315,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":582,"timestamp":6657470890515,"id":4330,"parentId":4316,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":671,"timestamp":6657470890517,"id":4331,"parentId":4317,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":738,"timestamp":6657470890518,"id":4332,"parentId":4318,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":772,"timestamp":6657470890520,"id":4333,"parentId":4319,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5174,"timestamp":6657470890793,"id":4334,"parentId":4306,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5143,"timestamp":6657470890827,"id":4335,"parentId":4307,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5114,"timestamp":6657470890857,"id":4336,"parentId":4308,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5076,"timestamp":6657470890895,"id":4337,"parentId":4309,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5053,"timestamp":6657470890919,"id":4338,"parentId":4310,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5029,"timestamp":6657470890942,"id":4339,"parentId":4311,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4998,"timestamp":6657470890974,"id":4340,"parentId":4312,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4971,"timestamp":6657470891002,"id":4341,"parentId":4313,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4931,"timestamp":6657470891041,"id":4342,"parentId":4314,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4896,"timestamp":6657470891076,"id":4343,"parentId":4315,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4874,"timestamp":6657470891099,"id":4344,"parentId":4316,"tags":{},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4768,"timestamp":6657470891205,"id":4345,"parentId":4317,"tags":{},"startTime":1776264417974,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4713,"timestamp":6657470891260,"id":4346,"parentId":4318,"tags":{},"startTime":1776264417974,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4679,"timestamp":6657470891295,"id":4347,"parentId":4319,"tags":{},"startTime":1776264417974,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7083,"timestamp":6657470889873,"id":4306,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"app-pages-browser"},"startTime":1776264417972,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8425,"timestamp":6657470889967,"id":4307,"parentId":4099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"app-pages-browser"},"startTime":1776264417972,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":10096,"timestamp":6657470890015,"id":4308,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"app-pages-browser"},"startTime":1776264417972,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10184,"timestamp":6657470890055,"id":4309,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"app-pages-browser"},"startTime":1776264417972,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10272,"timestamp":6657470890096,"id":4310,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776264417972,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10760,"timestamp":6657470890132,"id":4311,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11295,"timestamp":6657470890171,"id":4312,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11683,"timestamp":6657470890209,"id":4313,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12709,"timestamp":6657470890244,"id":4314,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12847,"timestamp":6657470890279,"id":4315,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15401,"timestamp":6657470890315,"id":4316,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16765,"timestamp":6657470890349,"id":4317,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17022,"timestamp":6657470890390,"id":4318,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17337,"timestamp":6657470890430,"id":4319,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"app-pages-browser"},"startTime":1776264417973,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":260,"timestamp":6657470910964,"id":4358,"parentId":4348,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":287,"timestamp":6657470910970,"id":4359,"parentId":4349,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":321,"timestamp":6657470910972,"id":4360,"parentId":4350,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":342,"timestamp":6657470910973,"id":4361,"parentId":4351,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":364,"timestamp":6657470910975,"id":4362,"parentId":4352,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":390,"timestamp":6657470910977,"id":4363,"parentId":4353,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":413,"timestamp":6657470910978,"id":4364,"parentId":4354,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":435,"timestamp":6657470910980,"id":4365,"parentId":4355,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":461,"timestamp":6657470910981,"id":4366,"parentId":4356,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":482,"timestamp":6657470910983,"id":4367,"parentId":4357,"tags":{},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8928,"timestamp":6657470911228,"id":4368,"parentId":4348,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8903,"timestamp":6657470911259,"id":4369,"parentId":4349,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8868,"timestamp":6657470911294,"id":4370,"parentId":4350,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8845,"timestamp":6657470911317,"id":4371,"parentId":4351,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8822,"timestamp":6657470911341,"id":4372,"parentId":4352,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8795,"timestamp":6657470911368,"id":4373,"parentId":4353,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8771,"timestamp":6657470911393,"id":4374,"parentId":4354,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8744,"timestamp":6657470911420,"id":4375,"parentId":4355,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8720,"timestamp":6657470911443,"id":4376,"parentId":4356,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8697,"timestamp":6657470911467,"id":4377,"parentId":4357,"tags":{},"startTime":1776264417994,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10042,"timestamp":6657470910548,"id":4348,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10896,"timestamp":6657470910624,"id":4349,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10947,"timestamp":6657470910666,"id":4350,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11049,"timestamp":6657470910703,"id":4351,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11517,"timestamp":6657470910739,"id":4352,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11716,"timestamp":6657470910773,"id":4353,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11858,"timestamp":6657470910809,"id":4354,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11976,"timestamp":6657470910843,"id":4355,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12179,"timestamp":6657470910878,"id":4356,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12367,"timestamp":6657470910910,"id":4357,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"app-pages-browser"},"startTime":1776264417993,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":264,"timestamp":6657470926416,"id":4434,"parentId":4378,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":297,"timestamp":6657470926421,"id":4435,"parentId":4379,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":319,"timestamp":6657470926423,"id":4436,"parentId":4380,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":340,"timestamp":6657470926425,"id":4437,"parentId":4381,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":360,"timestamp":6657470926427,"id":4438,"parentId":4382,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":384,"timestamp":6657470926429,"id":4439,"parentId":4383,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":410,"timestamp":6657470926431,"id":4440,"parentId":4384,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":433,"timestamp":6657470926433,"id":4441,"parentId":4385,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":462,"timestamp":6657470926435,"id":4442,"parentId":4386,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":503,"timestamp":6657470926436,"id":4443,"parentId":4387,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":529,"timestamp":6657470926438,"id":4444,"parentId":4388,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":566,"timestamp":6657470926440,"id":4445,"parentId":4389,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":596,"timestamp":6657470926442,"id":4446,"parentId":4390,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":619,"timestamp":6657470926443,"id":4447,"parentId":4391,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":641,"timestamp":6657470926445,"id":4448,"parentId":4392,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":667,"timestamp":6657470926447,"id":4449,"parentId":4393,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":696,"timestamp":6657470926449,"id":4450,"parentId":4394,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":720,"timestamp":6657470926451,"id":4451,"parentId":4395,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":743,"timestamp":6657470926453,"id":4452,"parentId":4396,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":767,"timestamp":6657470926455,"id":4453,"parentId":4397,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":788,"timestamp":6657470926456,"id":4454,"parentId":4398,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":809,"timestamp":6657470926458,"id":4455,"parentId":4399,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":830,"timestamp":6657470926459,"id":4456,"parentId":4400,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":850,"timestamp":6657470926461,"id":4457,"parentId":4401,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":870,"timestamp":6657470926462,"id":4458,"parentId":4402,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":892,"timestamp":6657470926464,"id":4459,"parentId":4403,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":929,"timestamp":6657470926466,"id":4460,"parentId":4404,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":955,"timestamp":6657470926467,"id":4461,"parentId":4405,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":976,"timestamp":6657470926469,"id":4462,"parentId":4406,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1000,"timestamp":6657470926471,"id":4463,"parentId":4407,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1021,"timestamp":6657470926473,"id":4464,"parentId":4408,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1042,"timestamp":6657470926474,"id":4465,"parentId":4409,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1070,"timestamp":6657470926476,"id":4466,"parentId":4410,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1100,"timestamp":6657470926478,"id":4467,"parentId":4411,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1125,"timestamp":6657470926479,"id":4468,"parentId":4412,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1159,"timestamp":6657470926481,"id":4469,"parentId":4413,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1184,"timestamp":6657470926483,"id":4470,"parentId":4414,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1210,"timestamp":6657470926484,"id":4471,"parentId":4415,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1236,"timestamp":6657470926486,"id":4472,"parentId":4416,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1259,"timestamp":6657470926487,"id":4473,"parentId":4417,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1281,"timestamp":6657470926489,"id":4474,"parentId":4418,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1314,"timestamp":6657470926490,"id":4475,"parentId":4419,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1335,"timestamp":6657470926492,"id":4476,"parentId":4420,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1358,"timestamp":6657470926493,"id":4477,"parentId":4421,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1385,"timestamp":6657470926494,"id":4478,"parentId":4422,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1430,"timestamp":6657470926496,"id":4479,"parentId":4423,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1453,"timestamp":6657470926497,"id":4480,"parentId":4424,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2226,"timestamp":6657470926498,"id":4481,"parentId":4425,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2303,"timestamp":6657470926500,"id":4482,"parentId":4426,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2343,"timestamp":6657470926502,"id":4483,"parentId":4427,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2395,"timestamp":6657470926503,"id":4484,"parentId":4428,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2452,"timestamp":6657470926504,"id":4485,"parentId":4429,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2479,"timestamp":6657470926506,"id":4486,"parentId":4430,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2503,"timestamp":6657470926507,"id":4487,"parentId":4431,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2532,"timestamp":6657470926508,"id":4488,"parentId":4432,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2566,"timestamp":6657470926510,"id":4489,"parentId":4433,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3824,"timestamp":6657470926685,"id":4490,"parentId":4378,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3791,"timestamp":6657470926720,"id":4491,"parentId":4379,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3768,"timestamp":6657470926743,"id":4492,"parentId":4380,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":3860,"timestamp":6657470926766,"id":4493,"parentId":4381,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3838,"timestamp":6657470926789,"id":4494,"parentId":4382,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3814,"timestamp":6657470926814,"id":4495,"parentId":4383,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3785,"timestamp":6657470926843,"id":4496,"parentId":4384,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3761,"timestamp":6657470926868,"id":4497,"parentId":4385,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3731,"timestamp":6657470926898,"id":4498,"parentId":4386,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3688,"timestamp":6657470926941,"id":4499,"parentId":4387,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3662,"timestamp":6657470926968,"id":4500,"parentId":4388,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3622,"timestamp":6657470927008,"id":4501,"parentId":4389,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3591,"timestamp":6657470927039,"id":4502,"parentId":4390,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3567,"timestamp":6657470927064,"id":4503,"parentId":4391,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3543,"timestamp":6657470927088,"id":4504,"parentId":4392,"tags":{},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3516,"timestamp":6657470927115,"id":4505,"parentId":4393,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3485,"timestamp":6657470927146,"id":4506,"parentId":4394,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3459,"timestamp":6657470927173,"id":4507,"parentId":4395,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3435,"timestamp":6657470927197,"id":4508,"parentId":4396,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3409,"timestamp":6657470927223,"id":4509,"parentId":4397,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3387,"timestamp":6657470927246,"id":4510,"parentId":4398,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3365,"timestamp":6657470927268,"id":4511,"parentId":4399,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3343,"timestamp":6657470927290,"id":4512,"parentId":4400,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3321,"timestamp":6657470927312,"id":4513,"parentId":4401,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3300,"timestamp":6657470927334,"id":4514,"parentId":4402,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3277,"timestamp":6657470927358,"id":4515,"parentId":4403,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3238,"timestamp":6657470927397,"id":4516,"parentId":4404,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3211,"timestamp":6657470927424,"id":4517,"parentId":4405,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3189,"timestamp":6657470927447,"id":4518,"parentId":4406,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3162,"timestamp":6657470927473,"id":4519,"parentId":4407,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3140,"timestamp":6657470927496,"id":4520,"parentId":4408,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3118,"timestamp":6657470927518,"id":4521,"parentId":4409,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3089,"timestamp":6657470927548,"id":4522,"parentId":4410,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3058,"timestamp":6657470927579,"id":4523,"parentId":4411,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3031,"timestamp":6657470927606,"id":4524,"parentId":4412,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2995,"timestamp":6657470927642,"id":4525,"parentId":4413,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2969,"timestamp":6657470927669,"id":4526,"parentId":4414,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2943,"timestamp":6657470927695,"id":4527,"parentId":4415,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2915,"timestamp":6657470927723,"id":4528,"parentId":4416,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2891,"timestamp":6657470927747,"id":4529,"parentId":4417,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2867,"timestamp":6657470927771,"id":4530,"parentId":4418,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2833,"timestamp":6657470927806,"id":4531,"parentId":4419,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2811,"timestamp":6657470927828,"id":4532,"parentId":4420,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2787,"timestamp":6657470927852,"id":4533,"parentId":4421,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2758,"timestamp":6657470927882,"id":4534,"parentId":4422,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2712,"timestamp":6657470927927,"id":4535,"parentId":4423,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2694,"timestamp":6657470927952,"id":4536,"parentId":4424,"tags":{},"startTime":1776264418010,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1914,"timestamp":6657470928732,"id":4537,"parentId":4425,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1840,"timestamp":6657470928806,"id":4538,"parentId":4426,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1801,"timestamp":6657470928847,"id":4539,"parentId":4427,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1742,"timestamp":6657470928906,"id":4540,"parentId":4428,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1690,"timestamp":6657470928959,"id":4541,"parentId":4429,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1663,"timestamp":6657470928987,"id":4542,"parentId":4430,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1638,"timestamp":6657470929012,"id":4543,"parentId":4431,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1608,"timestamp":6657470929042,"id":4544,"parentId":4432,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1573,"timestamp":6657470929078,"id":4545,"parentId":4433,"tags":{},"startTime":1776264418011,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6585,"timestamp":6657470924458,"id":4378,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6617,"timestamp":6657470924519,"id":4379,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6686,"timestamp":6657470924556,"id":4380,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6721,"timestamp":6657470924592,"id":4381,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7142,"timestamp":6657470924626,"id":4382,"parentId":4118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7662,"timestamp":6657470924660,"id":4383,"parentId":4119,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7909,"timestamp":6657470924697,"id":4384,"parentId":4120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8544,"timestamp":6657470924731,"id":4385,"parentId":4120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10001,"timestamp":6657470924764,"id":4386,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10452,"timestamp":6657470924797,"id":4387,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11239,"timestamp":6657470924829,"id":4388,"parentId":4124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11953,"timestamp":6657470924864,"id":4389,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12023,"timestamp":6657470924898,"id":4390,"parentId":4119,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12167,"timestamp":6657470924932,"id":4391,"parentId":4121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12525,"timestamp":6657470924964,"id":4392,"parentId":4121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13137,"timestamp":6657470924999,"id":4393,"parentId":4121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13361,"timestamp":6657470925031,"id":4394,"parentId":4121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13531,"timestamp":6657470925066,"id":4395,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13778,"timestamp":6657470925099,"id":4396,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"app-pages-browser"},"startTime":1776264418007,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13866,"timestamp":6657470925132,"id":4397,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13913,"timestamp":6657470925165,"id":4398,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13964,"timestamp":6657470925197,"id":4399,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13993,"timestamp":6657470925229,"id":4400,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14016,"timestamp":6657470925261,"id":4401,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14249,"timestamp":6657470925292,"id":4402,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15980,"timestamp":6657470925329,"id":4403,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16280,"timestamp":6657470925360,"id":4404,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16528,"timestamp":6657470925393,"id":4405,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16853,"timestamp":6657470925431,"id":4406,"parentId":4118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17070,"timestamp":6657470925464,"id":4407,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17303,"timestamp":6657470925503,"id":4408,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18257,"timestamp":6657470925536,"id":4409,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19208,"timestamp":6657470925571,"id":4410,"parentId":4123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19735,"timestamp":6657470925606,"id":4411,"parentId":4125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20946,"timestamp":6657470925641,"id":4412,"parentId":4126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21314,"timestamp":6657470925675,"id":4413,"parentId":4127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21702,"timestamp":6657470925714,"id":4414,"parentId":4127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22005,"timestamp":6657470925751,"id":4415,"parentId":4127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22151,"timestamp":6657470925786,"id":4416,"parentId":4128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22318,"timestamp":6657470925822,"id":4417,"parentId":4128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23045,"timestamp":6657470925861,"id":4418,"parentId":4129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23089,"timestamp":6657470925894,"id":4419,"parentId":4130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23127,"timestamp":6657470925927,"id":4420,"parentId":4130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23303,"timestamp":6657470925960,"id":4421,"parentId":4128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25616,"timestamp":6657470925994,"id":4422,"parentId":4128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25760,"timestamp":6657470926028,"id":4423,"parentId":4129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27315,"timestamp":6657470926061,"id":4424,"parentId":4129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27806,"timestamp":6657470926092,"id":4425,"parentId":4130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"app-pages-browser"},"startTime":1776264418008,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":28407,"timestamp":6657470926125,"id":4426,"parentId":4130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28761,"timestamp":6657470926161,"id":4427,"parentId":4130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28908,"timestamp":6657470926196,"id":4428,"parentId":4131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29102,"timestamp":6657470926229,"id":4429,"parentId":4131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29191,"timestamp":6657470926262,"id":4430,"parentId":4132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29307,"timestamp":6657470926298,"id":4431,"parentId":4132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29683,"timestamp":6657470926332,"id":4432,"parentId":4132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29859,"timestamp":6657470926364,"id":4433,"parentId":4132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"app-pages-browser"},"startTime":1776264418009,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":239,"timestamp":6657470985198,"id":4587,"parentId":4546,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":276,"timestamp":6657470985203,"id":4588,"parentId":4547,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":305,"timestamp":6657470985206,"id":4589,"parentId":4548,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":331,"timestamp":6657470985208,"id":4590,"parentId":4549,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":354,"timestamp":6657470985210,"id":4591,"parentId":4550,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":375,"timestamp":6657470985212,"id":4592,"parentId":4551,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":408,"timestamp":6657470985213,"id":4593,"parentId":4552,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":434,"timestamp":6657470985215,"id":4594,"parentId":4553,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":455,"timestamp":6657470985217,"id":4595,"parentId":4554,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":489,"timestamp":6657470985219,"id":4596,"parentId":4555,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":512,"timestamp":6657470985220,"id":4597,"parentId":4556,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":534,"timestamp":6657470985222,"id":4598,"parentId":4557,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":555,"timestamp":6657470985224,"id":4599,"parentId":4558,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":576,"timestamp":6657470985225,"id":4600,"parentId":4559,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":623,"timestamp":6657470985227,"id":4601,"parentId":4560,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":663,"timestamp":6657470985228,"id":4602,"parentId":4561,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":748,"timestamp":6657470985230,"id":4603,"parentId":4562,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":773,"timestamp":6657470985231,"id":4604,"parentId":4563,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":826,"timestamp":6657470985232,"id":4605,"parentId":4564,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":847,"timestamp":6657470985234,"id":4606,"parentId":4565,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":870,"timestamp":6657470985235,"id":4607,"parentId":4566,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":891,"timestamp":6657470985237,"id":4608,"parentId":4567,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":913,"timestamp":6657470985238,"id":4609,"parentId":4568,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":943,"timestamp":6657470985240,"id":4610,"parentId":4569,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":967,"timestamp":6657470985241,"id":4611,"parentId":4570,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":989,"timestamp":6657470985243,"id":4612,"parentId":4571,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1014,"timestamp":6657470985244,"id":4613,"parentId":4572,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1038,"timestamp":6657470985245,"id":4614,"parentId":4573,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1072,"timestamp":6657470985247,"id":4615,"parentId":4574,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1110,"timestamp":6657470985248,"id":4616,"parentId":4575,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1133,"timestamp":6657470985249,"id":4617,"parentId":4576,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1160,"timestamp":6657470985251,"id":4618,"parentId":4577,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1188,"timestamp":6657470985252,"id":4619,"parentId":4578,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1214,"timestamp":6657470985253,"id":4620,"parentId":4579,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1236,"timestamp":6657470985255,"id":4621,"parentId":4580,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1257,"timestamp":6657470985256,"id":4622,"parentId":4581,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1285,"timestamp":6657470985257,"id":4623,"parentId":4582,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1311,"timestamp":6657470985259,"id":4624,"parentId":4583,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1341,"timestamp":6657470985260,"id":4625,"parentId":4584,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1363,"timestamp":6657470985261,"id":4626,"parentId":4585,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1387,"timestamp":6657470985263,"id":4627,"parentId":4586,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6187,"timestamp":6657470985444,"id":4628,"parentId":4546,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6155,"timestamp":6657470985481,"id":4629,"parentId":4547,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6126,"timestamp":6657470985512,"id":4630,"parentId":4548,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6098,"timestamp":6657470985540,"id":4631,"parentId":4549,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6073,"timestamp":6657470985566,"id":4632,"parentId":4550,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6051,"timestamp":6657470985589,"id":4633,"parentId":4551,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6018,"timestamp":6657470985623,"id":4634,"parentId":4552,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5991,"timestamp":6657470985650,"id":4635,"parentId":4553,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5968,"timestamp":6657470985673,"id":4636,"parentId":4554,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5933,"timestamp":6657470985710,"id":4637,"parentId":4555,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5909,"timestamp":6657470985734,"id":4638,"parentId":4556,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5886,"timestamp":6657470985758,"id":4639,"parentId":4557,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5864,"timestamp":6657470985780,"id":4640,"parentId":4558,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5842,"timestamp":6657470985803,"id":4641,"parentId":4559,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5794,"timestamp":6657470985851,"id":4642,"parentId":4560,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5753,"timestamp":6657470985893,"id":4643,"parentId":4561,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5668,"timestamp":6657470985979,"id":4644,"parentId":4562,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5642,"timestamp":6657470986006,"id":4645,"parentId":4563,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5589,"timestamp":6657470986060,"id":4646,"parentId":4564,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5566,"timestamp":6657470986083,"id":4647,"parentId":4565,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5543,"timestamp":6657470986107,"id":4648,"parentId":4566,"tags":{},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5521,"timestamp":6657470986130,"id":4649,"parentId":4567,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5497,"timestamp":6657470986154,"id":4650,"parentId":4568,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5467,"timestamp":6657470986184,"id":4651,"parentId":4569,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5443,"timestamp":6657470986209,"id":4652,"parentId":4570,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5421,"timestamp":6657470986233,"id":4653,"parentId":4571,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5395,"timestamp":6657470986259,"id":4654,"parentId":4572,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5370,"timestamp":6657470986284,"id":4655,"parentId":4573,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5335,"timestamp":6657470986320,"id":4656,"parentId":4574,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5297,"timestamp":6657470986359,"id":4657,"parentId":4575,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5273,"timestamp":6657470986384,"id":4658,"parentId":4576,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5246,"timestamp":6657470986412,"id":4659,"parentId":4577,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5217,"timestamp":6657470986441,"id":4660,"parentId":4578,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5191,"timestamp":6657470986468,"id":4661,"parentId":4579,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5168,"timestamp":6657470986492,"id":4662,"parentId":4580,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5146,"timestamp":6657470986514,"id":4663,"parentId":4581,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5117,"timestamp":6657470986544,"id":4664,"parentId":4582,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5091,"timestamp":6657470986571,"id":4665,"parentId":4583,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5061,"timestamp":6657470986602,"id":4666,"parentId":4584,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5038,"timestamp":6657470986626,"id":4667,"parentId":4585,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5013,"timestamp":6657470986651,"id":4668,"parentId":4586,"tags":{},"startTime":1776264418069,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8482,"timestamp":6657470983777,"id":4546,"parentId":4133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9232,"timestamp":6657470983858,"id":4547,"parentId":4127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10625,"timestamp":6657470983895,"id":4548,"parentId":4127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11016,"timestamp":6657470983931,"id":4549,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11109,"timestamp":6657470983965,"id":4550,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11442,"timestamp":6657470984000,"id":4551,"parentId":4133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11694,"timestamp":6657470984033,"id":4552,"parentId":4133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11833,"timestamp":6657470984067,"id":4553,"parentId":4133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12957,"timestamp":6657470984102,"id":4554,"parentId":4134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"app-pages-browser"},"startTime":1776264418066,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13181,"timestamp":6657470984135,"id":4555,"parentId":4134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13491,"timestamp":6657470984168,"id":4556,"parentId":4134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":13625,"timestamp":6657470984200,"id":4557,"parentId":4134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13685,"timestamp":6657470984234,"id":4558,"parentId":4134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13751,"timestamp":6657470984266,"id":4559,"parentId":4135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14172,"timestamp":6657470984301,"id":4560,"parentId":4135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15790,"timestamp":6657470984334,"id":4561,"parentId":4135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16223,"timestamp":6657470984368,"id":4562,"parentId":4135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17114,"timestamp":6657470984401,"id":4563,"parentId":4135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17204,"timestamp":6657470984442,"id":4564,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17314,"timestamp":6657470984474,"id":4565,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17435,"timestamp":6657470984506,"id":4566,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17524,"timestamp":6657470984538,"id":4567,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17553,"timestamp":6657470984570,"id":4568,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17825,"timestamp":6657470984602,"id":4569,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17955,"timestamp":6657470984634,"id":4570,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18404,"timestamp":6657470984664,"id":4571,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19436,"timestamp":6657470984696,"id":4572,"parentId":4136,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20605,"timestamp":6657470984728,"id":4573,"parentId":4137,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20753,"timestamp":6657470984759,"id":4574,"parentId":4137,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21125,"timestamp":6657470984791,"id":4575,"parentId":4138,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21290,"timestamp":6657470984822,"id":4576,"parentId":4138,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21902,"timestamp":6657470984853,"id":4577,"parentId":4138,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22216,"timestamp":6657470984885,"id":4578,"parentId":4139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22328,"timestamp":6657470984918,"id":4579,"parentId":4139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22379,"timestamp":6657470984949,"id":4580,"parentId":4139,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22922,"timestamp":6657470984981,"id":4581,"parentId":4140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23181,"timestamp":6657470985013,"id":4582,"parentId":4140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23880,"timestamp":6657470985044,"id":4583,"parentId":4140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23961,"timestamp":6657470985076,"id":4584,"parentId":4140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24028,"timestamp":6657470985108,"id":4585,"parentId":4141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"app-pages-browser"},"startTime":1776264418067,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24251,"timestamp":6657470985149,"id":4586,"parentId":4141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"app-pages-browser"},"startTime":1776264418068,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":229,"timestamp":6657471042298,"id":4750,"parentId":4669,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":267,"timestamp":6657471042304,"id":4751,"parentId":4670,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":289,"timestamp":6657471042307,"id":4752,"parentId":4671,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":319,"timestamp":6657471042309,"id":4753,"parentId":4672,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":344,"timestamp":6657471042311,"id":4754,"parentId":4673,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":366,"timestamp":6657471042314,"id":4755,"parentId":4674,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":388,"timestamp":6657471042316,"id":4756,"parentId":4675,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":413,"timestamp":6657471042318,"id":4757,"parentId":4676,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":436,"timestamp":6657471042320,"id":4758,"parentId":4677,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":462,"timestamp":6657471042322,"id":4759,"parentId":4678,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":486,"timestamp":6657471042324,"id":4760,"parentId":4679,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":520,"timestamp":6657471042326,"id":4761,"parentId":4680,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":542,"timestamp":6657471042328,"id":4762,"parentId":4681,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":564,"timestamp":6657471042330,"id":4763,"parentId":4682,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":599,"timestamp":6657471042332,"id":4764,"parentId":4683,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":621,"timestamp":6657471042334,"id":4765,"parentId":4684,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":657,"timestamp":6657471042336,"id":4766,"parentId":4685,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":680,"timestamp":6657471042338,"id":4767,"parentId":4686,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":705,"timestamp":6657471042340,"id":4768,"parentId":4687,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":730,"timestamp":6657471042342,"id":4769,"parentId":4688,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":753,"timestamp":6657471042344,"id":4770,"parentId":4689,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":777,"timestamp":6657471042346,"id":4771,"parentId":4690,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":808,"timestamp":6657471042348,"id":4772,"parentId":4691,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":834,"timestamp":6657471042350,"id":4773,"parentId":4692,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":856,"timestamp":6657471042351,"id":4774,"parentId":4693,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":878,"timestamp":6657471042354,"id":4775,"parentId":4694,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":906,"timestamp":6657471042355,"id":4776,"parentId":4695,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":929,"timestamp":6657471042357,"id":4777,"parentId":4696,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":964,"timestamp":6657471042360,"id":4778,"parentId":4697,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":988,"timestamp":6657471042362,"id":4779,"parentId":4698,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1034,"timestamp":6657471042363,"id":4780,"parentId":4699,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1056,"timestamp":6657471042365,"id":4781,"parentId":4700,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1079,"timestamp":6657471042367,"id":4782,"parentId":4701,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1110,"timestamp":6657471042369,"id":4783,"parentId":4702,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1137,"timestamp":6657471042370,"id":4784,"parentId":4703,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1161,"timestamp":6657471042372,"id":4785,"parentId":4704,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1186,"timestamp":6657471042374,"id":4786,"parentId":4705,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1210,"timestamp":6657471042376,"id":4787,"parentId":4706,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1233,"timestamp":6657471042377,"id":4788,"parentId":4707,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1259,"timestamp":6657471042379,"id":4789,"parentId":4708,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1291,"timestamp":6657471042380,"id":4790,"parentId":4709,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1318,"timestamp":6657471042382,"id":4791,"parentId":4710,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1346,"timestamp":6657471042384,"id":4792,"parentId":4711,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1373,"timestamp":6657471042385,"id":4793,"parentId":4712,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1400,"timestamp":6657471042387,"id":4794,"parentId":4713,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1425,"timestamp":6657471042389,"id":4795,"parentId":4714,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1451,"timestamp":6657471042390,"id":4796,"parentId":4715,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1474,"timestamp":6657471042392,"id":4797,"parentId":4716,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1509,"timestamp":6657471042393,"id":4798,"parentId":4717,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1534,"timestamp":6657471042395,"id":4799,"parentId":4718,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1558,"timestamp":6657471042396,"id":4800,"parentId":4719,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1583,"timestamp":6657471042398,"id":4801,"parentId":4720,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1606,"timestamp":6657471042399,"id":4802,"parentId":4721,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1629,"timestamp":6657471042401,"id":4803,"parentId":4722,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1653,"timestamp":6657471042402,"id":4804,"parentId":4723,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1677,"timestamp":6657471042404,"id":4805,"parentId":4724,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1700,"timestamp":6657471042405,"id":4806,"parentId":4725,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1724,"timestamp":6657471042407,"id":4807,"parentId":4726,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1747,"timestamp":6657471042408,"id":4808,"parentId":4727,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1771,"timestamp":6657471042410,"id":4809,"parentId":4728,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1796,"timestamp":6657471042411,"id":4810,"parentId":4729,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1818,"timestamp":6657471042413,"id":4811,"parentId":4730,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1842,"timestamp":6657471042414,"id":4812,"parentId":4731,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1884,"timestamp":6657471042416,"id":4813,"parentId":4732,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1914,"timestamp":6657471042417,"id":4814,"parentId":4733,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1943,"timestamp":6657471042419,"id":4815,"parentId":4734,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1976,"timestamp":6657471042420,"id":4816,"parentId":4735,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2000,"timestamp":6657471042422,"id":4817,"parentId":4736,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2024,"timestamp":6657471042423,"id":4818,"parentId":4737,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2054,"timestamp":6657471042424,"id":4819,"parentId":4738,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2076,"timestamp":6657471042425,"id":4820,"parentId":4739,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":2199,"timestamp":6657471042427,"id":4821,"parentId":4740,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2242,"timestamp":6657471042428,"id":4822,"parentId":4741,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2269,"timestamp":6657471042429,"id":4823,"parentId":4742,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2293,"timestamp":6657471042431,"id":4824,"parentId":4743,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2317,"timestamp":6657471042432,"id":4825,"parentId":4744,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2346,"timestamp":6657471042434,"id":4826,"parentId":4745,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2378,"timestamp":6657471042435,"id":4827,"parentId":4746,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2402,"timestamp":6657471042437,"id":4828,"parentId":4747,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2428,"timestamp":6657471042438,"id":4829,"parentId":4748,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2453,"timestamp":6657471042439,"id":4830,"parentId":4749,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4219,"timestamp":6657471042536,"id":4831,"parentId":4669,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4186,"timestamp":6657471042573,"id":4832,"parentId":4670,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4162,"timestamp":6657471042597,"id":4833,"parentId":4671,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4131,"timestamp":6657471042630,"id":4834,"parentId":4672,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4104,"timestamp":6657471042657,"id":4835,"parentId":4673,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4081,"timestamp":6657471042681,"id":4836,"parentId":4674,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4057,"timestamp":6657471042706,"id":4837,"parentId":4675,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4030,"timestamp":6657471042733,"id":4838,"parentId":4676,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4006,"timestamp":6657471042758,"id":4839,"parentId":4677,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3979,"timestamp":6657471042786,"id":4840,"parentId":4678,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3953,"timestamp":6657471042812,"id":4841,"parentId":4679,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3918,"timestamp":6657471042848,"id":4842,"parentId":4680,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3895,"timestamp":6657471042872,"id":4843,"parentId":4681,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3871,"timestamp":6657471042897,"id":4844,"parentId":4682,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3835,"timestamp":6657471042932,"id":4845,"parentId":4683,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3812,"timestamp":6657471042956,"id":4846,"parentId":4684,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3774,"timestamp":6657471042995,"id":4847,"parentId":4685,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3750,"timestamp":6657471043020,"id":4848,"parentId":4686,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3725,"timestamp":6657471043046,"id":4849,"parentId":4687,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3698,"timestamp":6657471043073,"id":4850,"parentId":4688,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3674,"timestamp":6657471043098,"id":4851,"parentId":4689,"tags":{},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3648,"timestamp":6657471043124,"id":4852,"parentId":4690,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3615,"timestamp":6657471043158,"id":4853,"parentId":4691,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3589,"timestamp":6657471043185,"id":4854,"parentId":4692,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3566,"timestamp":6657471043209,"id":4855,"parentId":4693,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3542,"timestamp":6657471043233,"id":4856,"parentId":4694,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3513,"timestamp":6657471043263,"id":4857,"parentId":4695,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3487,"timestamp":6657471043289,"id":4858,"parentId":4696,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3451,"timestamp":6657471043326,"id":4859,"parentId":4697,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3426,"timestamp":6657471043352,"id":4860,"parentId":4698,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3379,"timestamp":6657471043399,"id":4861,"parentId":4699,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3355,"timestamp":6657471043423,"id":4862,"parentId":4700,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3331,"timestamp":6657471043448,"id":4863,"parentId":4701,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3299,"timestamp":6657471043481,"id":4864,"parentId":4702,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3271,"timestamp":6657471043509,"id":4865,"parentId":4703,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3247,"timestamp":6657471043534,"id":4866,"parentId":4704,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3219,"timestamp":6657471043562,"id":4867,"parentId":4705,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3195,"timestamp":6657471043587,"id":4868,"parentId":4706,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3171,"timestamp":6657471043611,"id":4869,"parentId":4707,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3144,"timestamp":6657471043640,"id":4870,"parentId":4708,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3111,"timestamp":6657471043673,"id":4871,"parentId":4709,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3083,"timestamp":6657471043701,"id":4872,"parentId":4710,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3053,"timestamp":6657471043731,"id":4873,"parentId":4711,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3025,"timestamp":6657471043760,"id":4874,"parentId":4712,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2997,"timestamp":6657471043789,"id":4875,"parentId":4713,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2971,"timestamp":6657471043815,"id":4876,"parentId":4714,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2944,"timestamp":6657471043843,"id":4877,"parentId":4715,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2919,"timestamp":6657471043867,"id":4878,"parentId":4716,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2884,"timestamp":6657471043903,"id":4879,"parentId":4717,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2858,"timestamp":6657471043930,"id":4880,"parentId":4718,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2832,"timestamp":6657471043956,"id":4881,"parentId":4719,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2807,"timestamp":6657471043982,"id":4882,"parentId":4720,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2783,"timestamp":6657471044006,"id":4883,"parentId":4721,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2759,"timestamp":6657471044031,"id":4884,"parentId":4722,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2734,"timestamp":6657471044057,"id":4885,"parentId":4723,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2709,"timestamp":6657471044082,"id":4886,"parentId":4724,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2684,"timestamp":6657471044107,"id":4887,"parentId":4725,"tags":{},"startTime":1776264418126,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2659,"timestamp":6657471044133,"id":4888,"parentId":4726,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2635,"timestamp":6657471044157,"id":4889,"parentId":4727,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2611,"timestamp":6657471044182,"id":4890,"parentId":4728,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2584,"timestamp":6657471044209,"id":4891,"parentId":4729,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2561,"timestamp":6657471044233,"id":4892,"parentId":4730,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2537,"timestamp":6657471044258,"id":4893,"parentId":4731,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2494,"timestamp":6657471044301,"id":4894,"parentId":4732,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2462,"timestamp":6657471044333,"id":4895,"parentId":4733,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2433,"timestamp":6657471044364,"id":4896,"parentId":4734,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2399,"timestamp":6657471044398,"id":4897,"parentId":4735,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2374,"timestamp":6657471044423,"id":4898,"parentId":4736,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2350,"timestamp":6657471044448,"id":4899,"parentId":4737,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2318,"timestamp":6657471044480,"id":4900,"parentId":4738,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2199,"timestamp":6657471044600,"id":4901,"parentId":4739,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2172,"timestamp":6657471044628,"id":4902,"parentId":4740,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2128,"timestamp":6657471044672,"id":4903,"parentId":4741,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2101,"timestamp":6657471044700,"id":4904,"parentId":4742,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2076,"timestamp":6657471044725,"id":4905,"parentId":4743,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2051,"timestamp":6657471044751,"id":4906,"parentId":4744,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2020,"timestamp":6657471044782,"id":4907,"parentId":4745,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1987,"timestamp":6657471044815,"id":4908,"parentId":4746,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1962,"timestamp":6657471044841,"id":4909,"parentId":4747,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1936,"timestamp":6657471044867,"id":4910,"parentId":4748,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1910,"timestamp":6657471044893,"id":4911,"parentId":4749,"tags":{},"startTime":1776264418127,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7939,"timestamp":6657471039468,"id":4669,"parentId":4141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8031,"timestamp":6657471039564,"id":4670,"parentId":4141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8903,"timestamp":6657471039606,"id":4671,"parentId":4142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9020,"timestamp":6657471039647,"id":4672,"parentId":4142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9091,"timestamp":6657471039690,"id":4673,"parentId":4142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9210,"timestamp":6657471039727,"id":4674,"parentId":4142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10712,"timestamp":6657471039765,"id":4675,"parentId":4142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10864,"timestamp":6657471039801,"id":4676,"parentId":4143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10959,"timestamp":6657471039842,"id":4677,"parentId":4143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11259,"timestamp":6657471039879,"id":4678,"parentId":4144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":12004,"timestamp":6657471039914,"id":4679,"parentId":4144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12172,"timestamp":6657471039950,"id":4680,"parentId":4144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12240,"timestamp":6657471039986,"id":4681,"parentId":4144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12835,"timestamp":6657471040023,"id":4682,"parentId":4145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12963,"timestamp":6657471040058,"id":4683,"parentId":4145,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14238,"timestamp":6657471040093,"id":4684,"parentId":4146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"app-pages-browser"},"startTime":1776264418122,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14320,"timestamp":6657471040129,"id":4685,"parentId":4146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14574,"timestamp":6657471040163,"id":4686,"parentId":4147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14986,"timestamp":6657471040200,"id":4687,"parentId":4147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15181,"timestamp":6657471040233,"id":4688,"parentId":4147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15449,"timestamp":6657471040273,"id":4689,"parentId":4148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15684,"timestamp":6657471040308,"id":4690,"parentId":4148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15963,"timestamp":6657471040350,"id":4691,"parentId":4148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16039,"timestamp":6657471040385,"id":4692,"parentId":4148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16158,"timestamp":6657471040417,"id":4693,"parentId":4148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17488,"timestamp":6657471040450,"id":4694,"parentId":4117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17698,"timestamp":6657471040482,"id":4695,"parentId":4150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18105,"timestamp":6657471040515,"id":4696,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18220,"timestamp":6657471040549,"id":4697,"parentId":4149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21080,"timestamp":6657471040589,"id":4698,"parentId":4149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21230,"timestamp":6657471040621,"id":4699,"parentId":4150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21325,"timestamp":6657471040653,"id":4700,"parentId":4150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22191,"timestamp":6657471040686,"id":4701,"parentId":4150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22627,"timestamp":6657471040716,"id":4702,"parentId":4150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22782,"timestamp":6657471040749,"id":4703,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23026,"timestamp":6657471040780,"id":4704,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23087,"timestamp":6657471040812,"id":4705,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23180,"timestamp":6657471040845,"id":4706,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23486,"timestamp":6657471040877,"id":4707,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24158,"timestamp":6657471040909,"id":4708,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24492,"timestamp":6657471040941,"id":4709,"parentId":4152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24695,"timestamp":6657471040973,"id":4710,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25030,"timestamp":6657471041005,"id":4711,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25350,"timestamp":6657471041037,"id":4712,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25744,"timestamp":6657471041069,"id":4713,"parentId":4154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26377,"timestamp":6657471041100,"id":4714,"parentId":4154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"app-pages-browser"},"startTime":1776264418123,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26552,"timestamp":6657471041133,"id":4715,"parentId":4154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27357,"timestamp":6657471041166,"id":4716,"parentId":4163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27887,"timestamp":6657471041198,"id":4717,"parentId":4163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27993,"timestamp":6657471041229,"id":4718,"parentId":4154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28216,"timestamp":6657471041265,"id":4719,"parentId":4155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28285,"timestamp":6657471041296,"id":4720,"parentId":4155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28342,"timestamp":6657471041327,"id":4721,"parentId":4155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28560,"timestamp":6657471041359,"id":4722,"parentId":4155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28626,"timestamp":6657471041392,"id":4723,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28798,"timestamp":6657471041428,"id":4724,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29657,"timestamp":6657471041460,"id":4725,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29780,"timestamp":6657471041492,"id":4726,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29930,"timestamp":6657471041524,"id":4727,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30267,"timestamp":6657471041558,"id":4728,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30317,"timestamp":6657471041590,"id":4729,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30458,"timestamp":6657471041622,"id":4730,"parentId":4157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31321,"timestamp":6657471041654,"id":4731,"parentId":4157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32081,"timestamp":6657471041685,"id":4732,"parentId":4157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32474,"timestamp":6657471041717,"id":4733,"parentId":4158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33146,"timestamp":6657471041750,"id":4734,"parentId":4158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33178,"timestamp":6657471041782,"id":4735,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33267,"timestamp":6657471041815,"id":4736,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33814,"timestamp":6657471041847,"id":4737,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33855,"timestamp":6657471041880,"id":4738,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33927,"timestamp":6657471041916,"id":4739,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35375,"timestamp":6657471041950,"id":4740,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35607,"timestamp":6657471041983,"id":4741,"parentId":4161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35667,"timestamp":6657471042021,"id":4742,"parentId":4161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35747,"timestamp":6657471042055,"id":4743,"parentId":4161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36348,"timestamp":6657471042088,"id":4744,"parentId":4161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"app-pages-browser"},"startTime":1776264418124,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36937,"timestamp":6657471042120,"id":4745,"parentId":4161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"app-pages-browser"},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37053,"timestamp":6657471042151,"id":4746,"parentId":4162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"app-pages-browser"},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37315,"timestamp":6657471042183,"id":4747,"parentId":4162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"app-pages-browser"},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37540,"timestamp":6657471042215,"id":4748,"parentId":4162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"app-pages-browser"},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38140,"timestamp":6657471042246,"id":4749,"parentId":4162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776264418125,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":311,"timestamp":6657471131525,"id":4926,"parentId":4912,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":355,"timestamp":6657471131530,"id":4927,"parentId":4913,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":409,"timestamp":6657471131532,"id":4928,"parentId":4914,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":435,"timestamp":6657471131534,"id":4929,"parentId":4915,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":458,"timestamp":6657471131535,"id":4930,"parentId":4916,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":481,"timestamp":6657471131537,"id":4931,"parentId":4917,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":504,"timestamp":6657471131538,"id":4932,"parentId":4918,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":535,"timestamp":6657471131540,"id":4933,"parentId":4919,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":557,"timestamp":6657471131541,"id":4934,"parentId":4920,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":585,"timestamp":6657471131543,"id":4935,"parentId":4921,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":608,"timestamp":6657471131544,"id":4936,"parentId":4922,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":637,"timestamp":6657471131546,"id":4937,"parentId":4923,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":668,"timestamp":6657471131548,"id":4938,"parentId":4924,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":693,"timestamp":6657471131550,"id":4939,"parentId":4925,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9047,"timestamp":6657471131846,"id":4940,"parentId":4912,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9013,"timestamp":6657471131887,"id":4941,"parentId":4913,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8957,"timestamp":6657471131943,"id":4942,"parentId":4914,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8930,"timestamp":6657471131971,"id":4943,"parentId":4915,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8906,"timestamp":6657471131995,"id":4944,"parentId":4916,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8882,"timestamp":6657471132019,"id":4945,"parentId":4917,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8858,"timestamp":6657471132044,"id":4946,"parentId":4918,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8825,"timestamp":6657471132076,"id":4947,"parentId":4919,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8802,"timestamp":6657471132100,"id":4948,"parentId":4920,"tags":{},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8772,"timestamp":6657471132130,"id":4949,"parentId":4921,"tags":{},"startTime":1776264418215,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8749,"timestamp":6657471132153,"id":4950,"parentId":4922,"tags":{},"startTime":1776264418215,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8718,"timestamp":6657471132185,"id":4951,"parentId":4923,"tags":{},"startTime":1776264418215,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8685,"timestamp":6657471132217,"id":4952,"parentId":4924,"tags":{},"startTime":1776264418215,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":8659,"timestamp":6657471132244,"id":4953,"parentId":4925,"tags":{},"startTime":1776264418215,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10476,"timestamp":6657471130918,"id":4912,"parentId":4164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"app-pages-browser"},"startTime":1776264418213,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11821,"timestamp":6657471131022,"id":4913,"parentId":4164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"app-pages-browser"},"startTime":1776264418213,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":12057,"timestamp":6657471131067,"id":4914,"parentId":4164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"app-pages-browser"},"startTime":1776264418213,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12194,"timestamp":6657471131104,"id":4915,"parentId":4164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"app-pages-browser"},"startTime":1776264418213,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12235,"timestamp":6657471131140,"id":4916,"parentId":4165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12302,"timestamp":6657471131176,"id":4917,"parentId":4165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12651,"timestamp":6657471131211,"id":4918,"parentId":4165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12712,"timestamp":6657471131246,"id":4919,"parentId":4166,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13489,"timestamp":6657471131279,"id":4920,"parentId":4166,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13610,"timestamp":6657471131326,"id":4921,"parentId":4167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14406,"timestamp":6657471131361,"id":4922,"parentId":4167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14781,"timestamp":6657471131394,"id":4923,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15111,"timestamp":6657471131428,"id":4924,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16035,"timestamp":6657471131462,"id":4925,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"app-pages-browser"},"startTime":1776264418214,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":248,"timestamp":6657471149742,"id":4956,"parentId":4954,"tags":{},"startTime":1776264418232,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":288,"timestamp":6657471149748,"id":4957,"parentId":4955,"tags":{},"startTime":1776264418232,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10337,"timestamp":6657471150001,"id":4958,"parentId":4954,"tags":{},"startTime":1776264418232,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10303,"timestamp":6657471150039,"id":4959,"parentId":4955,"tags":{},"startTime":1776264418232,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11044,"timestamp":6657471149572,"id":4954,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"app-pages-browser"},"startTime":1776264418232,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11557,"timestamp":6657471149669,"id":4955,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"app-pages-browser"},"startTime":1776264418232,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":260,"timestamp":6657471165768,"id":5045,"parentId":4960,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":292,"timestamp":6657471165776,"id":5046,"parentId":4961,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":316,"timestamp":6657471165779,"id":5047,"parentId":4962,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":336,"timestamp":6657471165782,"id":5048,"parentId":4963,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":359,"timestamp":6657471165785,"id":5049,"parentId":4964,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":404,"timestamp":6657471165787,"id":5050,"parentId":4965,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":427,"timestamp":6657471165789,"id":5051,"parentId":4966,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":452,"timestamp":6657471165792,"id":5052,"parentId":4967,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":494,"timestamp":6657471165795,"id":5053,"parentId":4968,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":515,"timestamp":6657471165797,"id":5054,"parentId":4969,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":538,"timestamp":6657471165800,"id":5055,"parentId":4970,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":560,"timestamp":6657471165802,"id":5056,"parentId":4971,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":584,"timestamp":6657471165805,"id":5057,"parentId":4972,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":608,"timestamp":6657471165808,"id":5058,"parentId":4973,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":630,"timestamp":6657471165810,"id":5059,"parentId":4974,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":652,"timestamp":6657471165812,"id":5060,"parentId":4975,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":737,"timestamp":6657471165814,"id":5061,"parentId":4976,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":763,"timestamp":6657471165817,"id":5062,"parentId":4977,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":853,"timestamp":6657471165819,"id":5063,"parentId":4978,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":875,"timestamp":6657471165821,"id":5064,"parentId":4979,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":917,"timestamp":6657471165823,"id":5065,"parentId":4980,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":943,"timestamp":6657471165825,"id":5066,"parentId":4981,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":963,"timestamp":6657471165828,"id":5067,"parentId":4982,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":986,"timestamp":6657471165830,"id":5068,"parentId":4983,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1010,"timestamp":6657471165831,"id":5069,"parentId":4984,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1047,"timestamp":6657471165834,"id":5070,"parentId":4985,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1073,"timestamp":6657471165836,"id":5071,"parentId":4986,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1093,"timestamp":6657471165838,"id":5072,"parentId":4987,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1116,"timestamp":6657471165840,"id":5073,"parentId":4988,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1144,"timestamp":6657471165842,"id":5074,"parentId":4989,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1166,"timestamp":6657471165844,"id":5075,"parentId":4990,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1189,"timestamp":6657471165846,"id":5076,"parentId":4991,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1239,"timestamp":6657471165848,"id":5077,"parentId":4992,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1277,"timestamp":6657471165850,"id":5078,"parentId":4993,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1312,"timestamp":6657471165852,"id":5079,"parentId":4994,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1335,"timestamp":6657471165853,"id":5080,"parentId":4995,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1356,"timestamp":6657471165855,"id":5081,"parentId":4996,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1377,"timestamp":6657471165857,"id":5082,"parentId":4997,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1405,"timestamp":6657471165859,"id":5083,"parentId":4998,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1433,"timestamp":6657471165861,"id":5084,"parentId":4999,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1454,"timestamp":6657471165863,"id":5085,"parentId":5000,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1490,"timestamp":6657471165864,"id":5086,"parentId":5001,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1511,"timestamp":6657471165866,"id":5087,"parentId":5002,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1530,"timestamp":6657471165868,"id":5088,"parentId":5003,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1551,"timestamp":6657471165870,"id":5089,"parentId":5004,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1578,"timestamp":6657471165871,"id":5090,"parentId":5005,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1601,"timestamp":6657471165873,"id":5091,"parentId":5006,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1622,"timestamp":6657471165875,"id":5092,"parentId":5007,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1645,"timestamp":6657471165876,"id":5093,"parentId":5008,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1665,"timestamp":6657471165878,"id":5094,"parentId":5009,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1685,"timestamp":6657471165880,"id":5095,"parentId":5010,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1706,"timestamp":6657471165882,"id":5096,"parentId":5011,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1726,"timestamp":6657471165884,"id":5097,"parentId":5012,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1746,"timestamp":6657471165886,"id":5098,"parentId":5013,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1766,"timestamp":6657471165887,"id":5099,"parentId":5014,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1788,"timestamp":6657471165889,"id":5100,"parentId":5015,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1809,"timestamp":6657471165890,"id":5101,"parentId":5016,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1831,"timestamp":6657471165892,"id":5102,"parentId":5017,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1851,"timestamp":6657471165894,"id":5103,"parentId":5018,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1872,"timestamp":6657471165895,"id":5104,"parentId":5019,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1915,"timestamp":6657471165896,"id":5105,"parentId":5020,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1937,"timestamp":6657471165898,"id":5106,"parentId":5021,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1965,"timestamp":6657471165900,"id":5107,"parentId":5022,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1995,"timestamp":6657471165902,"id":5108,"parentId":5023,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2019,"timestamp":6657471165903,"id":5109,"parentId":5024,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2045,"timestamp":6657471165905,"id":5110,"parentId":5025,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2085,"timestamp":6657471165907,"id":5111,"parentId":5026,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2125,"timestamp":6657471165908,"id":5112,"parentId":5027,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2177,"timestamp":6657471165910,"id":5113,"parentId":5028,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2203,"timestamp":6657471165911,"id":5114,"parentId":5029,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2224,"timestamp":6657471165913,"id":5115,"parentId":5030,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2264,"timestamp":6657471165914,"id":5116,"parentId":5031,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2286,"timestamp":6657471165916,"id":5117,"parentId":5032,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2307,"timestamp":6657471165917,"id":5118,"parentId":5033,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2327,"timestamp":6657471165919,"id":5119,"parentId":5034,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2347,"timestamp":6657471165920,"id":5120,"parentId":5035,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2384,"timestamp":6657471165922,"id":5121,"parentId":5036,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2406,"timestamp":6657471165923,"id":5122,"parentId":5037,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2428,"timestamp":6657471165925,"id":5123,"parentId":5038,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2453,"timestamp":6657471165926,"id":5124,"parentId":5039,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2481,"timestamp":6657471165928,"id":5125,"parentId":5040,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2503,"timestamp":6657471165929,"id":5126,"parentId":5041,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2528,"timestamp":6657471165930,"id":5127,"parentId":5042,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":2661,"timestamp":6657471165932,"id":5128,"parentId":5043,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2683,"timestamp":6657471165933,"id":5129,"parentId":5044,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3351,"timestamp":6657471166035,"id":5130,"parentId":4960,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3318,"timestamp":6657471166069,"id":5131,"parentId":4961,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3291,"timestamp":6657471166097,"id":5132,"parentId":4962,"tags":{},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3268,"timestamp":6657471166120,"id":5133,"parentId":4963,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3243,"timestamp":6657471166145,"id":5134,"parentId":4964,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3196,"timestamp":6657471166193,"id":5135,"parentId":4965,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3171,"timestamp":6657471166218,"id":5136,"parentId":4966,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3144,"timestamp":6657471166246,"id":5137,"parentId":4967,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3100,"timestamp":6657471166290,"id":5138,"parentId":4968,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3076,"timestamp":6657471166314,"id":5139,"parentId":4969,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3052,"timestamp":6657471166340,"id":5140,"parentId":4970,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3028,"timestamp":6657471166364,"id":5141,"parentId":4971,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3001,"timestamp":6657471166391,"id":5142,"parentId":4972,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2975,"timestamp":6657471166418,"id":5143,"parentId":4973,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2952,"timestamp":6657471166441,"id":5144,"parentId":4974,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2927,"timestamp":6657471166466,"id":5145,"parentId":4975,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2841,"timestamp":6657471166553,"id":5146,"parentId":4976,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2813,"timestamp":6657471166581,"id":5147,"parentId":4977,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2721,"timestamp":6657471166674,"id":5148,"parentId":4978,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2698,"timestamp":6657471166698,"id":5149,"parentId":4979,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2654,"timestamp":6657471166742,"id":5150,"parentId":4980,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2627,"timestamp":6657471166769,"id":5151,"parentId":4981,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2604,"timestamp":6657471166792,"id":5152,"parentId":4982,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2579,"timestamp":6657471166817,"id":5153,"parentId":4983,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2554,"timestamp":6657471166843,"id":5154,"parentId":4984,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2514,"timestamp":6657471166883,"id":5155,"parentId":4985,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2486,"timestamp":6657471166911,"id":5156,"parentId":4986,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2465,"timestamp":6657471166933,"id":5157,"parentId":4987,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2442,"timestamp":6657471166957,"id":5158,"parentId":4988,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2411,"timestamp":6657471166988,"id":5159,"parentId":4989,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2388,"timestamp":6657471167012,"id":5160,"parentId":4990,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2364,"timestamp":6657471167036,"id":5161,"parentId":4991,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2312,"timestamp":6657471167088,"id":5162,"parentId":4992,"tags":{},"startTime":1776264418249,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2272,"timestamp":6657471167129,"id":5163,"parentId":4993,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2236,"timestamp":6657471167165,"id":5164,"parentId":4994,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2212,"timestamp":6657471167190,"id":5165,"parentId":4995,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2189,"timestamp":6657471167213,"id":5166,"parentId":4996,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2167,"timestamp":6657471167235,"id":5167,"parentId":4997,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2137,"timestamp":6657471167266,"id":5168,"parentId":4998,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2108,"timestamp":6657471167295,"id":5169,"parentId":4999,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2085,"timestamp":6657471167318,"id":5170,"parentId":5000,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2048,"timestamp":6657471167356,"id":5171,"parentId":5001,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2026,"timestamp":6657471167378,"id":5172,"parentId":5002,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2005,"timestamp":6657471167400,"id":5173,"parentId":5003,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1983,"timestamp":6657471167422,"id":5174,"parentId":5004,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1955,"timestamp":6657471167451,"id":5175,"parentId":5005,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1930,"timestamp":6657471167475,"id":5176,"parentId":5006,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1908,"timestamp":6657471167498,"id":5177,"parentId":5007,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1884,"timestamp":6657471167523,"id":5178,"parentId":5008,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1862,"timestamp":6657471167545,"id":5179,"parentId":5009,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1840,"timestamp":6657471167567,"id":5180,"parentId":5010,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1818,"timestamp":6657471167589,"id":5181,"parentId":5011,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1797,"timestamp":6657471167611,"id":5182,"parentId":5012,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1776,"timestamp":6657471167633,"id":5183,"parentId":5013,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1754,"timestamp":6657471167655,"id":5184,"parentId":5014,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1731,"timestamp":6657471167678,"id":5185,"parentId":5015,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1709,"timestamp":6657471167700,"id":5186,"parentId":5016,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1686,"timestamp":6657471167724,"id":5187,"parentId":5017,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1664,"timestamp":6657471167746,"id":5188,"parentId":5018,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1641,"timestamp":6657471167769,"id":5189,"parentId":5019,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1598,"timestamp":6657471167813,"id":5190,"parentId":5020,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1575,"timestamp":6657471167837,"id":5191,"parentId":5021,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1545,"timestamp":6657471167867,"id":5192,"parentId":5022,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1513,"timestamp":6657471167899,"id":5193,"parentId":5023,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1488,"timestamp":6657471167924,"id":5194,"parentId":5024,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1461,"timestamp":6657471167952,"id":5195,"parentId":5025,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1420,"timestamp":6657471167993,"id":5196,"parentId":5026,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1379,"timestamp":6657471168035,"id":5197,"parentId":5027,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1326,"timestamp":6657471168088,"id":5198,"parentId":5028,"tags":{},"startTime":1776264418250,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1299,"timestamp":6657471168116,"id":5199,"parentId":5029,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1276,"timestamp":6657471168139,"id":5200,"parentId":5030,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1235,"timestamp":6657471168180,"id":5201,"parentId":5031,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1211,"timestamp":6657471168204,"id":5202,"parentId":5032,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1189,"timestamp":6657471168226,"id":5203,"parentId":5033,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1168,"timestamp":6657471168248,"id":5204,"parentId":5034,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1147,"timestamp":6657471168269,"id":5205,"parentId":5035,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1109,"timestamp":6657471168307,"id":5206,"parentId":5036,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1085,"timestamp":6657471168331,"id":5207,"parentId":5037,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1063,"timestamp":6657471168354,"id":5208,"parentId":5038,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1037,"timestamp":6657471168380,"id":5209,"parentId":5039,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1008,"timestamp":6657471168410,"id":5210,"parentId":5040,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":985,"timestamp":6657471168433,"id":5211,"parentId":5041,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":858,"timestamp":6657471168560,"id":5212,"parentId":5042,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":825,"timestamp":6657471168594,"id":5213,"parentId":5043,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":801,"timestamp":6657471168618,"id":5214,"parentId":5044,"tags":{},"startTime":1776264418251,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6942,"timestamp":6657471162799,"id":4960,"parentId":4162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"app-pages-browser"},"startTime":1776264418245,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7309,"timestamp":6657471162886,"id":4961,"parentId":4177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"app-pages-browser"},"startTime":1776264418245,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7354,"timestamp":6657471162929,"id":4962,"parentId":4179,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"app-pages-browser"},"startTime":1776264418245,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7468,"timestamp":6657471162971,"id":4963,"parentId":4169,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"app-pages-browser"},"startTime":1776264418245,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8095,"timestamp":6657471163011,"id":4964,"parentId":4169,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"app-pages-browser"},"startTime":1776264418245,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8125,"timestamp":6657471163049,"id":4965,"parentId":4169,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"app-pages-browser"},"startTime":1776264418245,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8482,"timestamp":6657471163088,"id":4966,"parentId":4170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"app-pages-browser"},"startTime":1776264418245,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10288,"timestamp":6657471163126,"id":4967,"parentId":4170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10330,"timestamp":6657471163164,"id":4968,"parentId":4170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10434,"timestamp":6657471163201,"id":4969,"parentId":4170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10474,"timestamp":6657471163237,"id":4970,"parentId":4172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10794,"timestamp":6657471163273,"id":4971,"parentId":4172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11087,"timestamp":6657471163311,"id":4972,"parentId":4172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11110,"timestamp":6657471163347,"id":4973,"parentId":4172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":11232,"timestamp":6657471163383,"id":4974,"parentId":4173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13174,"timestamp":6657471163417,"id":4975,"parentId":4173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13753,"timestamp":6657471163452,"id":4976,"parentId":4175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15289,"timestamp":6657471163489,"id":4977,"parentId":4175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15447,"timestamp":6657471163524,"id":4978,"parentId":4175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16161,"timestamp":6657471163558,"id":4979,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16468,"timestamp":6657471163593,"id":4980,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16504,"timestamp":6657471163627,"id":4981,"parentId":4177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16623,"timestamp":6657471163661,"id":4982,"parentId":4178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17071,"timestamp":6657471163696,"id":4983,"parentId":4178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17594,"timestamp":6657471163730,"id":4984,"parentId":4306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18596,"timestamp":6657471163764,"id":4985,"parentId":4306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18790,"timestamp":6657471163797,"id":4986,"parentId":4306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19105,"timestamp":6657471163829,"id":4987,"parentId":4306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19810,"timestamp":6657471163862,"id":4988,"parentId":4306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19999,"timestamp":6657471163895,"id":4989,"parentId":4308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20145,"timestamp":6657471163928,"id":4990,"parentId":4308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21003,"timestamp":6657471163962,"id":4991,"parentId":4313,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21561,"timestamp":6657471163994,"id":4992,"parentId":4308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22132,"timestamp":6657471164029,"id":4993,"parentId":4312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22216,"timestamp":6657471164063,"id":4994,"parentId":4319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22275,"timestamp":6657471164097,"id":4995,"parentId":4319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"app-pages-browser"},"startTime":1776264418246,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22305,"timestamp":6657471164141,"id":4996,"parentId":4319,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23058,"timestamp":6657471164176,"id":4997,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23577,"timestamp":6657471164209,"id":4998,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23746,"timestamp":6657471164244,"id":4999,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25001,"timestamp":6657471164277,"id":5000,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25427,"timestamp":6657471164311,"id":5001,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25495,"timestamp":6657471164345,"id":5002,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25559,"timestamp":6657471164378,"id":5003,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":25929,"timestamp":6657471164412,"id":5004,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26194,"timestamp":6657471164446,"id":5005,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26397,"timestamp":6657471164480,"id":5006,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26587,"timestamp":6657471164513,"id":5007,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26643,"timestamp":6657471164546,"id":5008,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26710,"timestamp":6657471164580,"id":5009,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26736,"timestamp":6657471164641,"id":5010,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26824,"timestamp":6657471164673,"id":5011,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26865,"timestamp":6657471164705,"id":5012,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26921,"timestamp":6657471164738,"id":5013,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27013,"timestamp":6657471164770,"id":5014,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27111,"timestamp":6657471164802,"id":5015,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27287,"timestamp":6657471164833,"id":5016,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27350,"timestamp":6657471164867,"id":5017,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27446,"timestamp":6657471164898,"id":5018,"parentId":4314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29755,"timestamp":6657471164933,"id":5019,"parentId":4406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29832,"timestamp":6657471164965,"id":5020,"parentId":4378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29928,"timestamp":6657471164997,"id":5021,"parentId":4378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30466,"timestamp":6657471165028,"id":5022,"parentId":4380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30582,"timestamp":6657471165060,"id":5023,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31038,"timestamp":6657471165093,"id":5024,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"app-pages-browser"},"startTime":1776264418247,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32502,"timestamp":6657471165123,"id":5025,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33031,"timestamp":6657471165155,"id":5026,"parentId":4387,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34034,"timestamp":6657471165189,"id":5027,"parentId":4388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34442,"timestamp":6657471165221,"id":5028,"parentId":4388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":34624,"timestamp":6657471165253,"id":5029,"parentId":4409,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35810,"timestamp":6657471165283,"id":5030,"parentId":4410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36683,"timestamp":6657471165314,"id":5031,"parentId":4410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36890,"timestamp":6657471165347,"id":5032,"parentId":4410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36977,"timestamp":6657471165378,"id":5033,"parentId":4410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":36994,"timestamp":6657471165409,"id":5034,"parentId":4410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":37956,"timestamp":6657471165440,"id":5035,"parentId":4411,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":38204,"timestamp":6657471165471,"id":5036,"parentId":4411,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39165,"timestamp":6657471165502,"id":5037,"parentId":4411,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":39655,"timestamp":6657471165532,"id":5038,"parentId":4411,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40181,"timestamp":6657471165562,"id":5039,"parentId":4395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40217,"timestamp":6657471165594,"id":5040,"parentId":4395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":40818,"timestamp":6657471165625,"id":5041,"parentId":4395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42791,"timestamp":6657471165656,"id":5042,"parentId":4398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":42970,"timestamp":6657471165687,"id":5043,"parentId":4384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":43115,"timestamp":6657471165719,"id":5044,"parentId":4384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"app-pages-browser"},"startTime":1776264418248,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":318,"timestamp":6657471252301,"id":5259,"parentId":5215,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":349,"timestamp":6657471252325,"id":5260,"parentId":5216,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":376,"timestamp":6657471252327,"id":5261,"parentId":5217,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":402,"timestamp":6657471252330,"id":5262,"parentId":5218,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":423,"timestamp":6657471252332,"id":5263,"parentId":5219,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":448,"timestamp":6657471252334,"id":5264,"parentId":5220,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":483,"timestamp":6657471252336,"id":5265,"parentId":5221,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":508,"timestamp":6657471252338,"id":5266,"parentId":5222,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":533,"timestamp":6657471252340,"id":5267,"parentId":5223,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":560,"timestamp":6657471252342,"id":5268,"parentId":5224,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":585,"timestamp":6657471252344,"id":5269,"parentId":5225,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":604,"timestamp":6657471252346,"id":5270,"parentId":5226,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":644,"timestamp":6657471252347,"id":5271,"parentId":5227,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":665,"timestamp":6657471252349,"id":5272,"parentId":5228,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":690,"timestamp":6657471252351,"id":5273,"parentId":5229,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":712,"timestamp":6657471252353,"id":5274,"parentId":5230,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":744,"timestamp":6657471252355,"id":5275,"parentId":5231,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":772,"timestamp":6657471252356,"id":5276,"parentId":5232,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":804,"timestamp":6657471252358,"id":5277,"parentId":5233,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":839,"timestamp":6657471252360,"id":5278,"parentId":5234,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":869,"timestamp":6657471252361,"id":5279,"parentId":5235,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":899,"timestamp":6657471252363,"id":5280,"parentId":5236,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":923,"timestamp":6657471252365,"id":5281,"parentId":5237,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":945,"timestamp":6657471252366,"id":5282,"parentId":5238,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":972,"timestamp":6657471252368,"id":5283,"parentId":5239,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":998,"timestamp":6657471252369,"id":5284,"parentId":5240,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1019,"timestamp":6657471252371,"id":5285,"parentId":5241,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1055,"timestamp":6657471252374,"id":5286,"parentId":5242,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1084,"timestamp":6657471252375,"id":5287,"parentId":5243,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1122,"timestamp":6657471252377,"id":5288,"parentId":5244,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":1239,"timestamp":6657471252378,"id":5289,"parentId":5245,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1273,"timestamp":6657471252379,"id":5290,"parentId":5246,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1308,"timestamp":6657471252381,"id":5291,"parentId":5247,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1333,"timestamp":6657471252383,"id":5292,"parentId":5248,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1369,"timestamp":6657471252384,"id":5293,"parentId":5249,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1391,"timestamp":6657471252386,"id":5294,"parentId":5250,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1430,"timestamp":6657471252388,"id":5295,"parentId":5251,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1471,"timestamp":6657471252389,"id":5296,"parentId":5252,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1505,"timestamp":6657471252390,"id":5297,"parentId":5253,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1528,"timestamp":6657471252392,"id":5298,"parentId":5254,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1553,"timestamp":6657471252393,"id":5299,"parentId":5255,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1575,"timestamp":6657471252395,"id":5300,"parentId":5256,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1597,"timestamp":6657471252396,"id":5301,"parentId":5257,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1620,"timestamp":6657471252398,"id":5302,"parentId":5258,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6705,"timestamp":6657471252629,"id":5303,"parentId":5215,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6664,"timestamp":6657471252677,"id":5304,"parentId":5216,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6636,"timestamp":6657471252705,"id":5305,"parentId":5217,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6608,"timestamp":6657471252733,"id":5306,"parentId":5218,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6586,"timestamp":6657471252756,"id":5307,"parentId":5219,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6559,"timestamp":6657471252784,"id":5308,"parentId":5220,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6522,"timestamp":6657471252821,"id":5309,"parentId":5221,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6496,"timestamp":6657471252848,"id":5310,"parentId":5222,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6470,"timestamp":6657471252874,"id":5311,"parentId":5223,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6440,"timestamp":6657471252903,"id":5312,"parentId":5224,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6414,"timestamp":6657471252930,"id":5313,"parentId":5225,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6392,"timestamp":6657471252952,"id":5314,"parentId":5226,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6352,"timestamp":6657471252993,"id":5315,"parentId":5227,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6329,"timestamp":6657471253016,"id":5316,"parentId":5228,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6302,"timestamp":6657471253043,"id":5317,"parentId":5229,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6275,"timestamp":6657471253070,"id":5318,"parentId":5230,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6245,"timestamp":6657471253100,"id":5319,"parentId":5231,"tags":{},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6216,"timestamp":6657471253130,"id":5320,"parentId":5232,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6183,"timestamp":6657471253163,"id":5321,"parentId":5233,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6146,"timestamp":6657471253200,"id":5322,"parentId":5234,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6114,"timestamp":6657471253232,"id":5323,"parentId":5235,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6083,"timestamp":6657471253264,"id":5324,"parentId":5236,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6057,"timestamp":6657471253289,"id":5325,"parentId":5237,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6034,"timestamp":6657471253313,"id":5326,"parentId":5238,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6006,"timestamp":6657471253341,"id":5327,"parentId":5239,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5979,"timestamp":6657471253368,"id":5328,"parentId":5240,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5956,"timestamp":6657471253392,"id":5329,"parentId":5241,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5918,"timestamp":6657471253430,"id":5330,"parentId":5242,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5888,"timestamp":6657471253460,"id":5331,"parentId":5243,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5757,"timestamp":6657471253593,"id":5332,"parentId":5244,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5731,"timestamp":6657471253619,"id":5333,"parentId":5245,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5696,"timestamp":6657471253654,"id":5334,"parentId":5246,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5660,"timestamp":6657471253691,"id":5335,"parentId":5247,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5634,"timestamp":6657471253717,"id":5336,"parentId":5248,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5597,"timestamp":6657471253754,"id":5337,"parentId":5249,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5573,"timestamp":6657471253778,"id":5338,"parentId":5250,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5532,"timestamp":6657471253819,"id":5339,"parentId":5251,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5490,"timestamp":6657471253862,"id":5340,"parentId":5252,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5455,"timestamp":6657471253897,"id":5341,"parentId":5253,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5431,"timestamp":6657471253921,"id":5342,"parentId":5254,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5404,"timestamp":6657471253948,"id":5343,"parentId":5255,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5381,"timestamp":6657471253971,"id":5344,"parentId":5256,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5358,"timestamp":6657471253995,"id":5345,"parentId":5257,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":5334,"timestamp":6657471254019,"id":5346,"parentId":5258,"tags":{},"startTime":1776264418336,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9851,"timestamp":6657471250672,"id":5215,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10054,"timestamp":6657471250775,"id":5216,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10391,"timestamp":6657471250817,"id":5217,"parentId":4386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10512,"timestamp":6657471250856,"id":5218,"parentId":4410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10807,"timestamp":6657471250892,"id":5219,"parentId":4389,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11471,"timestamp":6657471250927,"id":5220,"parentId":4394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11773,"timestamp":6657471250963,"id":5221,"parentId":4395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11981,"timestamp":6657471250998,"id":5222,"parentId":4395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12474,"timestamp":6657471251031,"id":5223,"parentId":4395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13095,"timestamp":6657471251070,"id":5224,"parentId":4396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13197,"timestamp":6657471251105,"id":5225,"parentId":4388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"app-pages-browser"},"startTime":1776264418333,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13822,"timestamp":6657471251138,"id":5226,"parentId":4412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13886,"timestamp":6657471251170,"id":5227,"parentId":4412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13927,"timestamp":6657471251205,"id":5228,"parentId":4416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13939,"timestamp":6657471251238,"id":5229,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14227,"timestamp":6657471251278,"id":5230,"parentId":4424,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14513,"timestamp":6657471251315,"id":5231,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14939,"timestamp":6657471251350,"id":5232,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15153,"timestamp":6657471251385,"id":5233,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15667,"timestamp":6657471251420,"id":5234,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15802,"timestamp":6657471251453,"id":5235,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15951,"timestamp":6657471251485,"id":5236,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16020,"timestamp":6657471251520,"id":5237,"parentId":4422,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16205,"timestamp":6657471251554,"id":5238,"parentId":4423,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16329,"timestamp":6657471251587,"id":5239,"parentId":4424,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16374,"timestamp":6657471251620,"id":5240,"parentId":4424,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18496,"timestamp":6657471251656,"id":5241,"parentId":4413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18663,"timestamp":6657471251692,"id":5242,"parentId":4427,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19596,"timestamp":6657471251731,"id":5243,"parentId":4426,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19662,"timestamp":6657471251765,"id":5244,"parentId":4427,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20112,"timestamp":6657471251800,"id":5245,"parentId":4429,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21012,"timestamp":6657471251834,"id":5246,"parentId":4406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21725,"timestamp":6657471251868,"id":5247,"parentId":4547,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22158,"timestamp":6657471251901,"id":5248,"parentId":4555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22249,"timestamp":6657471251934,"id":5249,"parentId":4561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22955,"timestamp":6657471251966,"id":5250,"parentId":4562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23896,"timestamp":6657471251999,"id":5251,"parentId":4546,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24223,"timestamp":6657471252032,"id":5252,"parentId":4554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24284,"timestamp":6657471252067,"id":5253,"parentId":4554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24621,"timestamp":6657471252105,"id":5254,"parentId":4554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"app-pages-browser"},"startTime":1776264418334,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24655,"timestamp":6657471252139,"id":5255,"parentId":4554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"app-pages-browser"},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24755,"timestamp":6657471252172,"id":5256,"parentId":4555,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"app-pages-browser"},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24814,"timestamp":6657471252204,"id":5257,"parentId":4556,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"app-pages-browser"},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":24941,"timestamp":6657471252237,"id":5258,"parentId":4560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"app-pages-browser"},"startTime":1776264418335,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":267,"timestamp":6657471300210,"id":5428,"parentId":5347,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":301,"timestamp":6657471300217,"id":5429,"parentId":5348,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":324,"timestamp":6657471300220,"id":5430,"parentId":5349,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":349,"timestamp":6657471300222,"id":5431,"parentId":5350,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":372,"timestamp":6657471300235,"id":5432,"parentId":5351,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":393,"timestamp":6657471300238,"id":5433,"parentId":5352,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":426,"timestamp":6657471300241,"id":5434,"parentId":5353,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":477,"timestamp":6657471300243,"id":5435,"parentId":5354,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":508,"timestamp":6657471300245,"id":5436,"parentId":5355,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":529,"timestamp":6657471300248,"id":5437,"parentId":5356,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":553,"timestamp":6657471300250,"id":5438,"parentId":5357,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":574,"timestamp":6657471300253,"id":5439,"parentId":5358,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":598,"timestamp":6657471300255,"id":5440,"parentId":5359,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":620,"timestamp":6657471300257,"id":5441,"parentId":5360,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":644,"timestamp":6657471300260,"id":5442,"parentId":5361,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":672,"timestamp":6657471300262,"id":5443,"parentId":5362,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":700,"timestamp":6657471300264,"id":5444,"parentId":5363,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":723,"timestamp":6657471300266,"id":5445,"parentId":5364,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":745,"timestamp":6657471300269,"id":5446,"parentId":5365,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":771,"timestamp":6657471300271,"id":5447,"parentId":5366,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":799,"timestamp":6657471300273,"id":5448,"parentId":5367,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":825,"timestamp":6657471300275,"id":5449,"parentId":5368,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":855,"timestamp":6657471300278,"id":5450,"parentId":5369,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":877,"timestamp":6657471300280,"id":5451,"parentId":5370,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":898,"timestamp":6657471300282,"id":5452,"parentId":5371,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":927,"timestamp":6657471300283,"id":5453,"parentId":5372,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":957,"timestamp":6657471300287,"id":5454,"parentId":5373,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":980,"timestamp":6657471300289,"id":5455,"parentId":5374,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1002,"timestamp":6657471300291,"id":5456,"parentId":5375,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1025,"timestamp":6657471300293,"id":5457,"parentId":5376,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1046,"timestamp":6657471300296,"id":5458,"parentId":5377,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1067,"timestamp":6657471300298,"id":5459,"parentId":5378,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1089,"timestamp":6657471300300,"id":5460,"parentId":5379,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1111,"timestamp":6657471300302,"id":5461,"parentId":5380,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1133,"timestamp":6657471300304,"id":5462,"parentId":5381,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1164,"timestamp":6657471300307,"id":5463,"parentId":5382,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1186,"timestamp":6657471300309,"id":5464,"parentId":5383,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1210,"timestamp":6657471300312,"id":5465,"parentId":5384,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1249,"timestamp":6657471300314,"id":5466,"parentId":5385,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1273,"timestamp":6657471300316,"id":5467,"parentId":5386,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1312,"timestamp":6657471300318,"id":5468,"parentId":5387,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1344,"timestamp":6657471300319,"id":5469,"parentId":5388,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1369,"timestamp":6657471300321,"id":5470,"parentId":5389,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1398,"timestamp":6657471300323,"id":5471,"parentId":5390,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1424,"timestamp":6657471300325,"id":5472,"parentId":5391,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1446,"timestamp":6657471300326,"id":5473,"parentId":5392,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1470,"timestamp":6657471300328,"id":5474,"parentId":5393,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1498,"timestamp":6657471300330,"id":5475,"parentId":5394,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2266,"timestamp":6657471300332,"id":5476,"parentId":5395,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2309,"timestamp":6657471300334,"id":5477,"parentId":5396,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2350,"timestamp":6657471300336,"id":5478,"parentId":5397,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2386,"timestamp":6657471300337,"id":5479,"parentId":5398,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2441,"timestamp":6657471300339,"id":5480,"parentId":5399,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2465,"timestamp":6657471300341,"id":5481,"parentId":5400,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2486,"timestamp":6657471300343,"id":5482,"parentId":5401,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2584,"timestamp":6657471300345,"id":5483,"parentId":5402,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2615,"timestamp":6657471300347,"id":5484,"parentId":5403,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2639,"timestamp":6657471300349,"id":5485,"parentId":5404,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2667,"timestamp":6657471300351,"id":5486,"parentId":5405,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2692,"timestamp":6657471300352,"id":5487,"parentId":5406,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2741,"timestamp":6657471300354,"id":5488,"parentId":5407,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2773,"timestamp":6657471300355,"id":5489,"parentId":5408,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2801,"timestamp":6657471300357,"id":5490,"parentId":5409,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2826,"timestamp":6657471300358,"id":5491,"parentId":5410,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2852,"timestamp":6657471300361,"id":5492,"parentId":5411,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2883,"timestamp":6657471300363,"id":5493,"parentId":5412,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2928,"timestamp":6657471300364,"id":5494,"parentId":5413,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":2961,"timestamp":6657471300366,"id":5495,"parentId":5414,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3000,"timestamp":6657471300367,"id":5496,"parentId":5415,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3064,"timestamp":6657471300369,"id":5497,"parentId":5416,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3106,"timestamp":6657471300370,"id":5498,"parentId":5417,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3129,"timestamp":6657471300372,"id":5499,"parentId":5418,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3150,"timestamp":6657471300373,"id":5500,"parentId":5419,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3178,"timestamp":6657471300375,"id":5501,"parentId":5420,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3207,"timestamp":6657471300376,"id":5502,"parentId":5421,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3230,"timestamp":6657471300378,"id":5503,"parentId":5422,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3255,"timestamp":6657471300381,"id":5504,"parentId":5423,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3278,"timestamp":6657471300383,"id":5505,"parentId":5424,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3301,"timestamp":6657471300386,"id":5506,"parentId":5425,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3322,"timestamp":6657471300388,"id":5507,"parentId":5426,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":3356,"timestamp":6657471300390,"id":5508,"parentId":5427,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4529,"timestamp":6657471300484,"id":5509,"parentId":5347,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4495,"timestamp":6657471300520,"id":5510,"parentId":5348,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4470,"timestamp":6657471300545,"id":5511,"parentId":5349,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4442,"timestamp":6657471300573,"id":5512,"parentId":5350,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4408,"timestamp":6657471300608,"id":5513,"parentId":5351,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4383,"timestamp":6657471300632,"id":5514,"parentId":5352,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4348,"timestamp":6657471300668,"id":5515,"parentId":5353,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4294,"timestamp":6657471300723,"id":5516,"parentId":5354,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4262,"timestamp":6657471300755,"id":5517,"parentId":5355,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4239,"timestamp":6657471300778,"id":5518,"parentId":5356,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4213,"timestamp":6657471300805,"id":5519,"parentId":5357,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4189,"timestamp":6657471300828,"id":5520,"parentId":5358,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4164,"timestamp":6657471300854,"id":5521,"parentId":5359,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4139,"timestamp":6657471300879,"id":5522,"parentId":5360,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4113,"timestamp":6657471300905,"id":5523,"parentId":5361,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4083,"timestamp":6657471300935,"id":5524,"parentId":5362,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4052,"timestamp":6657471300967,"id":5525,"parentId":5363,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4028,"timestamp":6657471300991,"id":5526,"parentId":5364,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4003,"timestamp":6657471301016,"id":5527,"parentId":5365,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":4049,"timestamp":6657471301044,"id":5528,"parentId":5366,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4020,"timestamp":6657471301073,"id":5529,"parentId":5367,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3989,"timestamp":6657471301105,"id":5530,"parentId":5368,"tags":{},"startTime":1776264418383,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3960,"timestamp":6657471301134,"id":5531,"parentId":5369,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3936,"timestamp":6657471301158,"id":5532,"parentId":5370,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3913,"timestamp":6657471301182,"id":5533,"parentId":5371,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3883,"timestamp":6657471301212,"id":5534,"parentId":5372,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3850,"timestamp":6657471301245,"id":5535,"parentId":5373,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3825,"timestamp":6657471301270,"id":5536,"parentId":5374,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3801,"timestamp":6657471301294,"id":5537,"parentId":5375,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3776,"timestamp":6657471301320,"id":5538,"parentId":5376,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3753,"timestamp":6657471301343,"id":5539,"parentId":5377,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3730,"timestamp":6657471301367,"id":5540,"parentId":5378,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3706,"timestamp":6657471301391,"id":5541,"parentId":5379,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3682,"timestamp":6657471301415,"id":5542,"parentId":5380,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3658,"timestamp":6657471301439,"id":5543,"parentId":5381,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3625,"timestamp":6657471301472,"id":5544,"parentId":5382,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3601,"timestamp":6657471301497,"id":5545,"parentId":5383,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3574,"timestamp":6657471301524,"id":5546,"parentId":5384,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3533,"timestamp":6657471301565,"id":5547,"parentId":5385,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3508,"timestamp":6657471301590,"id":5548,"parentId":5386,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3467,"timestamp":6657471301632,"id":5549,"parentId":5387,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3433,"timestamp":6657471301665,"id":5550,"parentId":5388,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3407,"timestamp":6657471301692,"id":5551,"parentId":5389,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3376,"timestamp":6657471301723,"id":5552,"parentId":5390,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3349,"timestamp":6657471301751,"id":5553,"parentId":5391,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3326,"timestamp":6657471301774,"id":5554,"parentId":5392,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3300,"timestamp":6657471301800,"id":5555,"parentId":5393,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3270,"timestamp":6657471301830,"id":5556,"parentId":5394,"tags":{},"startTime":1776264418384,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2491,"timestamp":6657471302610,"id":5557,"parentId":5395,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2456,"timestamp":6657471302645,"id":5558,"parentId":5396,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2412,"timestamp":6657471302690,"id":5559,"parentId":5397,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2376,"timestamp":6657471302727,"id":5560,"parentId":5398,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2320,"timestamp":6657471302783,"id":5561,"parentId":5399,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2296,"timestamp":6657471302808,"id":5562,"parentId":5400,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2273,"timestamp":6657471302831,"id":5563,"parentId":5401,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2172,"timestamp":6657471302933,"id":5564,"parentId":5402,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2140,"timestamp":6657471302965,"id":5565,"parentId":5403,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2116,"timestamp":6657471302989,"id":5566,"parentId":5404,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2086,"timestamp":6657471303021,"id":5567,"parentId":5405,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2060,"timestamp":6657471303047,"id":5568,"parentId":5406,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2010,"timestamp":6657471303097,"id":5569,"parentId":5407,"tags":{},"startTime":1776264418385,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1977,"timestamp":6657471303131,"id":5570,"parentId":5408,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1947,"timestamp":6657471303161,"id":5571,"parentId":5409,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1918,"timestamp":6657471303191,"id":5572,"parentId":5410,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1893,"timestamp":6657471303216,"id":5573,"parentId":5411,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1861,"timestamp":6657471303248,"id":5574,"parentId":5412,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1815,"timestamp":6657471303295,"id":5575,"parentId":5413,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1781,"timestamp":6657471303330,"id":5576,"parentId":5414,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1741,"timestamp":6657471303369,"id":5577,"parentId":5415,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1675,"timestamp":6657471303436,"id":5578,"parentId":5416,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1633,"timestamp":6657471303479,"id":5579,"parentId":5417,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1610,"timestamp":6657471303503,"id":5580,"parentId":5418,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1587,"timestamp":6657471303526,"id":5581,"parentId":5419,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1558,"timestamp":6657471303555,"id":5582,"parentId":5420,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1528,"timestamp":6657471303586,"id":5583,"parentId":5421,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1504,"timestamp":6657471303611,"id":5584,"parentId":5422,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1476,"timestamp":6657471303639,"id":5585,"parentId":5423,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1452,"timestamp":6657471303663,"id":5586,"parentId":5424,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1427,"timestamp":6657471303688,"id":5587,"parentId":5425,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1403,"timestamp":6657471303712,"id":5588,"parentId":5426,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":1369,"timestamp":6657471303748,"id":5589,"parentId":5427,"tags":{},"startTime":1776264418386,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8629,"timestamp":6657471297092,"id":5347,"parentId":4561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"app-pages-browser"},"startTime":1776264418379,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8704,"timestamp":6657471297173,"id":5348,"parentId":4567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8985,"timestamp":6657471297214,"id":5349,"parentId":4568,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9208,"timestamp":6657471297251,"id":5350,"parentId":4569,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9485,"timestamp":6657471297291,"id":5351,"parentId":4554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9718,"timestamp":6657471297328,"id":5352,"parentId":4569,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9939,"timestamp":6657471297367,"id":5353,"parentId":4571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10243,"timestamp":6657471297401,"id":5354,"parentId":4571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10282,"timestamp":6657471297434,"id":5355,"parentId":4571,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10408,"timestamp":6657471297466,"id":5356,"parentId":4572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10507,"timestamp":6657471297500,"id":5357,"parentId":4573,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10691,"timestamp":6657471297534,"id":5358,"parentId":4585,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10788,"timestamp":6657471297568,"id":5359,"parentId":4670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11555,"timestamp":6657471297612,"id":5360,"parentId":4676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12231,"timestamp":6657471297646,"id":5361,"parentId":4678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13091,"timestamp":6657471297680,"id":5362,"parentId":4678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13265,"timestamp":6657471297711,"id":5363,"parentId":4678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13481,"timestamp":6657471297745,"id":5364,"parentId":4678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":13895,"timestamp":6657471297778,"id":5365,"parentId":4678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14242,"timestamp":6657471297812,"id":5366,"parentId":4682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14811,"timestamp":6657471297844,"id":5367,"parentId":4689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14937,"timestamp":6657471297881,"id":5368,"parentId":4695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15077,"timestamp":6657471297920,"id":5369,"parentId":4695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15101,"timestamp":6657471297951,"id":5370,"parentId":4695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16814,"timestamp":6657471297984,"id":5371,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17698,"timestamp":6657471298016,"id":5372,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17905,"timestamp":6657471298048,"id":5373,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18097,"timestamp":6657471298085,"id":5374,"parentId":4701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"app-pages-browser"},"startTime":1776264418380,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18301,"timestamp":6657471298117,"id":5375,"parentId":4701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18365,"timestamp":6657471298150,"id":5376,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18421,"timestamp":6657471298182,"id":5377,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18454,"timestamp":6657471298227,"id":5378,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18531,"timestamp":6657471298260,"id":5379,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18556,"timestamp":6657471298296,"id":5380,"parentId":4698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18853,"timestamp":6657471298327,"id":5381,"parentId":4701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":18945,"timestamp":6657471298360,"id":5382,"parentId":4701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":19147,"timestamp":6657471298392,"id":5383,"parentId":4701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20278,"timestamp":6657471298440,"id":5384,"parentId":4702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":20549,"timestamp":6657471298473,"id":5385,"parentId":4702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"}] -[{"name":"build-module-js","duration":21205,"timestamp":6657471298513,"id":5386,"parentId":4704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21543,"timestamp":6657471298550,"id":5387,"parentId":4704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21862,"timestamp":6657471298594,"id":5388,"parentId":4707,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":21913,"timestamp":6657471298628,"id":5389,"parentId":4717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22316,"timestamp":6657471298660,"id":5390,"parentId":4712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22364,"timestamp":6657471298692,"id":5391,"parentId":4712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":22705,"timestamp":6657471298724,"id":5392,"parentId":4714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23145,"timestamp":6657471298755,"id":5393,"parentId":4718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23403,"timestamp":6657471298787,"id":5394,"parentId":4718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23522,"timestamp":6657471298831,"id":5395,"parentId":4719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":23836,"timestamp":6657471298868,"id":5396,"parentId":4721,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":24435,"timestamp":6657471298899,"id":5397,"parentId":4726,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26505,"timestamp":6657471298935,"id":5398,"parentId":4728,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26633,"timestamp":6657471298967,"id":5399,"parentId":4728,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":26835,"timestamp":6657471298999,"id":5400,"parentId":4717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":27916,"timestamp":6657471299032,"id":5401,"parentId":4717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28333,"timestamp":6657471299064,"id":5402,"parentId":4748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28411,"timestamp":6657471299097,"id":5403,"parentId":4735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"app-pages-browser"},"startTime":1776264418381,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28532,"timestamp":6657471299129,"id":5404,"parentId":4735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":28651,"timestamp":6657471299160,"id":5405,"parentId":4737,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29385,"timestamp":6657471299193,"id":5406,"parentId":4740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29673,"timestamp":6657471299229,"id":5407,"parentId":4740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29784,"timestamp":6657471299261,"id":5408,"parentId":4740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":29924,"timestamp":6657471299293,"id":5409,"parentId":4740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30018,"timestamp":6657471299325,"id":5410,"parentId":4740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30182,"timestamp":6657471299357,"id":5411,"parentId":4749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":30758,"timestamp":6657471299394,"id":5412,"parentId":4749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31057,"timestamp":6657471299431,"id":5413,"parentId":4737,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":31318,"timestamp":6657471299463,"id":5414,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32125,"timestamp":6657471299494,"id":5415,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32353,"timestamp":6657471299525,"id":5416,"parentId":4912,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32388,"timestamp":6657471299565,"id":5417,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32434,"timestamp":6657471299597,"id":5418,"parentId":4913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":32675,"timestamp":6657471299629,"id":5419,"parentId":4917,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33034,"timestamp":6657471299662,"id":5420,"parentId":4918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33156,"timestamp":6657471299699,"id":5421,"parentId":4918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33425,"timestamp":6657471299740,"id":5422,"parentId":4925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33480,"timestamp":6657471299829,"id":5423,"parentId":4954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33537,"timestamp":6657471299930,"id":5424,"parentId":4955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":33574,"timestamp":6657471299984,"id":5425,"parentId":4979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35040,"timestamp":6657471300037,"id":5426,"parentId":4970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":35110,"timestamp":6657471300084,"id":5427,"parentId":4971,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"app-pages-browser"},"startTime":1776264418382,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":208,"timestamp":6657471369656,"id":5629,"parentId":5590,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":244,"timestamp":6657471369660,"id":5630,"parentId":5591,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":285,"timestamp":6657471369662,"id":5631,"parentId":5592,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":308,"timestamp":6657471369663,"id":5632,"parentId":5593,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":350,"timestamp":6657471369666,"id":5633,"parentId":5594,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":375,"timestamp":6657471369668,"id":5634,"parentId":5595,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":398,"timestamp":6657471369669,"id":5635,"parentId":5596,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":420,"timestamp":6657471369671,"id":5636,"parentId":5597,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":443,"timestamp":6657471369673,"id":5637,"parentId":5598,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":465,"timestamp":6657471369674,"id":5638,"parentId":5599,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":486,"timestamp":6657471369676,"id":5639,"parentId":5600,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":507,"timestamp":6657471369677,"id":5640,"parentId":5601,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":547,"timestamp":6657471369679,"id":5641,"parentId":5602,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":577,"timestamp":6657471369681,"id":5642,"parentId":5603,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":600,"timestamp":6657471369682,"id":5643,"parentId":5604,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":657,"timestamp":6657471369684,"id":5644,"parentId":5605,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":712,"timestamp":6657471369685,"id":5645,"parentId":5606,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":744,"timestamp":6657471369687,"id":5646,"parentId":5607,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":787,"timestamp":6657471369688,"id":5647,"parentId":5608,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":850,"timestamp":6657471369690,"id":5648,"parentId":5609,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":883,"timestamp":6657471369691,"id":5649,"parentId":5610,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":908,"timestamp":6657471369693,"id":5650,"parentId":5611,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":943,"timestamp":6657471369694,"id":5651,"parentId":5612,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":978,"timestamp":6657471369696,"id":5652,"parentId":5613,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1009,"timestamp":6657471369697,"id":5653,"parentId":5614,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1029,"timestamp":6657471369698,"id":5654,"parentId":5615,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1055,"timestamp":6657471369700,"id":5655,"parentId":5616,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1078,"timestamp":6657471369701,"id":5656,"parentId":5617,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1107,"timestamp":6657471369703,"id":5657,"parentId":5618,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1132,"timestamp":6657471369704,"id":5658,"parentId":5619,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1159,"timestamp":6657471369706,"id":5659,"parentId":5620,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1180,"timestamp":6657471369707,"id":5660,"parentId":5621,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1199,"timestamp":6657471369709,"id":5661,"parentId":5622,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1218,"timestamp":6657471369711,"id":5662,"parentId":5623,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1249,"timestamp":6657471369712,"id":5663,"parentId":5624,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1269,"timestamp":6657471369713,"id":5664,"parentId":5625,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1855,"timestamp":6657471369715,"id":5665,"parentId":5626,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1910,"timestamp":6657471369716,"id":5666,"parentId":5627,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":1934,"timestamp":6657471369718,"id":5667,"parentId":5628,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4839,"timestamp":6657471369872,"id":5668,"parentId":5590,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4808,"timestamp":6657471369906,"id":5669,"parentId":5591,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4766,"timestamp":6657471369949,"id":5670,"parentId":5592,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4739,"timestamp":6657471369976,"id":5671,"parentId":5593,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4698,"timestamp":6657471370018,"id":5672,"parentId":5594,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4672,"timestamp":6657471370044,"id":5673,"parentId":5595,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4647,"timestamp":6657471370069,"id":5674,"parentId":5596,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4624,"timestamp":6657471370092,"id":5675,"parentId":5597,"tags":{},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4599,"timestamp":6657471370117,"id":5676,"parentId":5598,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4576,"timestamp":6657471370140,"id":5677,"parentId":5599,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4554,"timestamp":6657471370163,"id":5678,"parentId":5600,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4531,"timestamp":6657471370186,"id":5679,"parentId":5601,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4491,"timestamp":6657471370227,"id":5680,"parentId":5602,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4459,"timestamp":6657471370259,"id":5681,"parentId":5603,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4434,"timestamp":6657471370284,"id":5682,"parentId":5604,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4364,"timestamp":6657471370354,"id":5683,"parentId":5605,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4317,"timestamp":6657471370402,"id":5684,"parentId":5606,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4285,"timestamp":6657471370434,"id":5685,"parentId":5607,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4241,"timestamp":6657471370478,"id":5686,"parentId":5608,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4174,"timestamp":6657471370545,"id":5687,"parentId":5609,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"}] -[{"name":"next-swc-loader","duration":4257,"timestamp":6657471370577,"id":5688,"parentId":5610,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4232,"timestamp":6657471370603,"id":5689,"parentId":5611,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4196,"timestamp":6657471370640,"id":5690,"parentId":5612,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4160,"timestamp":6657471370676,"id":5691,"parentId":5613,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4129,"timestamp":6657471370708,"id":5692,"parentId":5614,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4107,"timestamp":6657471370729,"id":5693,"parentId":5615,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4081,"timestamp":6657471370756,"id":5694,"parentId":5616,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4055,"timestamp":6657471370782,"id":5695,"parentId":5617,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4026,"timestamp":6657471370811,"id":5696,"parentId":5618,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4000,"timestamp":6657471370838,"id":5697,"parentId":5619,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3971,"timestamp":6657471370867,"id":5698,"parentId":5620,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3950,"timestamp":6657471370888,"id":5699,"parentId":5621,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3929,"timestamp":6657471370909,"id":5700,"parentId":5622,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3908,"timestamp":6657471370930,"id":5701,"parentId":5623,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3877,"timestamp":6657471370962,"id":5702,"parentId":5624,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3856,"timestamp":6657471370983,"id":5703,"parentId":5625,"tags":{},"startTime":1776264418453,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3260,"timestamp":6657471371580,"id":5704,"parentId":5626,"tags":{},"startTime":1776264418454,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3211,"timestamp":6657471371630,"id":5705,"parentId":5627,"tags":{},"startTime":1776264418454,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3188,"timestamp":6657471371654,"id":5706,"parentId":5628,"tags":{},"startTime":1776264418454,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7162,"timestamp":6657471368239,"id":5590,"parentId":4972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7281,"timestamp":6657471368334,"id":5591,"parentId":4973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7319,"timestamp":6657471368376,"id":5592,"parentId":4973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7921,"timestamp":6657471368413,"id":5593,"parentId":4976,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8102,"timestamp":6657471368455,"id":5594,"parentId":4977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8232,"timestamp":6657471368492,"id":5595,"parentId":4977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8263,"timestamp":6657471368530,"id":5596,"parentId":4978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8381,"timestamp":6657471368564,"id":5597,"parentId":4978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8474,"timestamp":6657471368602,"id":5598,"parentId":4978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8591,"timestamp":6657471368654,"id":5599,"parentId":4984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8742,"timestamp":6657471368687,"id":5600,"parentId":4984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":9931,"timestamp":6657471368721,"id":5601,"parentId":5019,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10091,"timestamp":6657471368753,"id":5602,"parentId":4997,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10169,"timestamp":6657471368785,"id":5603,"parentId":5002,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":10949,"timestamp":6657471368830,"id":5604,"parentId":4982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":11665,"timestamp":6657471368865,"id":5605,"parentId":5016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12186,"timestamp":6657471368896,"id":5606,"parentId":5010,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12262,"timestamp":6657471368928,"id":5607,"parentId":5012,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12384,"timestamp":6657471368958,"id":5608,"parentId":5014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12461,"timestamp":6657471368990,"id":5609,"parentId":5022,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12767,"timestamp":6657471369024,"id":5610,"parentId":5035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12969,"timestamp":6657471369055,"id":5611,"parentId":5035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14429,"timestamp":6657471369085,"id":5612,"parentId":5035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"app-pages-browser"},"startTime":1776264418451,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14612,"timestamp":6657471369117,"id":5613,"parentId":5035,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14702,"timestamp":6657471369148,"id":5614,"parentId":5038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":14813,"timestamp":6657471369179,"id":5615,"parentId":5039,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15097,"timestamp":6657471369208,"id":5616,"parentId":5039,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":15425,"timestamp":6657471369239,"id":5617,"parentId":5039,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16006,"timestamp":6657471369271,"id":5618,"parentId":5241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16416,"timestamp":6657471369301,"id":5619,"parentId":5241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16469,"timestamp":6657471369333,"id":5620,"parentId":5247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16521,"timestamp":6657471369365,"id":5621,"parentId":5247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16566,"timestamp":6657471369396,"id":5622,"parentId":5247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16626,"timestamp":6657471369430,"id":5623,"parentId":5247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16663,"timestamp":6657471369463,"id":5624,"parentId":5247,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":16883,"timestamp":6657471369494,"id":5625,"parentId":5221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17055,"timestamp":6657471369528,"id":5626,"parentId":5248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17099,"timestamp":6657471369564,"id":5627,"parentId":5224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17164,"timestamp":6657471369595,"id":5628,"parentId":5254,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"app-pages-browser"},"startTime":1776264418452,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":146,"timestamp":6657471393337,"id":5720,"parentId":5707,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":197,"timestamp":6657471393341,"id":5721,"parentId":5708,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":249,"timestamp":6657471393343,"id":5722,"parentId":5709,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":276,"timestamp":6657471393345,"id":5723,"parentId":5710,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":300,"timestamp":6657471393346,"id":5724,"parentId":5711,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":324,"timestamp":6657471393348,"id":5725,"parentId":5712,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":356,"timestamp":6657471393349,"id":5726,"parentId":5713,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":380,"timestamp":6657471393351,"id":5727,"parentId":5714,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":408,"timestamp":6657471393352,"id":5728,"parentId":5715,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":436,"timestamp":6657471393354,"id":5729,"parentId":5716,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":465,"timestamp":6657471393355,"id":5730,"parentId":5717,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":490,"timestamp":6657471393357,"id":5731,"parentId":5718,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":529,"timestamp":6657471393358,"id":5732,"parentId":5719,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4505,"timestamp":6657471393487,"id":5733,"parentId":5707,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4450,"timestamp":6657471393544,"id":5734,"parentId":5708,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4399,"timestamp":6657471393596,"id":5735,"parentId":5709,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4373,"timestamp":6657471393623,"id":5736,"parentId":5710,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4347,"timestamp":6657471393649,"id":5737,"parentId":5711,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4321,"timestamp":6657471393675,"id":5738,"parentId":5712,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4288,"timestamp":6657471393708,"id":5739,"parentId":5713,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4263,"timestamp":6657471393734,"id":5740,"parentId":5714,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4233,"timestamp":6657471393764,"id":5741,"parentId":5715,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4201,"timestamp":6657471393796,"id":5742,"parentId":5716,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4175,"timestamp":6657471393822,"id":5743,"parentId":5717,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4149,"timestamp":6657471393849,"id":5744,"parentId":5718,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":4107,"timestamp":6657471393891,"id":5745,"parentId":5719,"tags":{},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":5651,"timestamp":6657471392750,"id":5707,"parentId":5400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6342,"timestamp":6657471392825,"id":5708,"parentId":5356,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6607,"timestamp":6657471392865,"id":5709,"parentId":5362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6695,"timestamp":6657471392903,"id":5710,"parentId":5381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6760,"timestamp":6657471392940,"id":5711,"parentId":5388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6922,"timestamp":6657471392979,"id":5712,"parentId":5388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":6968,"timestamp":6657471393018,"id":5713,"parentId":5396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7007,"timestamp":6657471393052,"id":5714,"parentId":5397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7185,"timestamp":6657471393085,"id":5715,"parentId":5394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"app-pages-browser"},"startTime":1776264418475,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7226,"timestamp":6657471393120,"id":5716,"parentId":5394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"app-pages-browser"},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":7267,"timestamp":6657471393152,"id":5717,"parentId":5394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"app-pages-browser"},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8613,"timestamp":6657471393186,"id":5718,"parentId":5393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"app-pages-browser"},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":8683,"timestamp":6657471393218,"id":5719,"parentId":5393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"app-pages-browser"},"startTime":1776264418476,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12,"timestamp":6657471406877,"id":5752,"parentId":5746,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":48,"timestamp":6657471406881,"id":5753,"parentId":5747,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":70,"timestamp":6657471406883,"id":5754,"parentId":5748,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":91,"timestamp":6657471406885,"id":5755,"parentId":5749,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"}] -[{"name":"read-resource","duration":226,"timestamp":6657471406886,"id":5756,"parentId":5750,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":256,"timestamp":6657471406888,"id":5757,"parentId":5751,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":276,"timestamp":6657471406893,"id":5758,"parentId":5746,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":238,"timestamp":6657471406931,"id":5759,"parentId":5747,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":215,"timestamp":6657471406955,"id":5760,"parentId":5748,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":85,"timestamp":6657471407086,"id":5761,"parentId":5749,"tags":{},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":57,"timestamp":6657471407114,"id":5762,"parentId":5750,"tags":{},"startTime":1776264418490,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":26,"timestamp":6657471407146,"id":5763,"parentId":5751,"tags":{},"startTime":1776264418490,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":837,"timestamp":6657471406569,"id":5746,"parentId":5601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"app-pages-browser"},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1053,"timestamp":6657471406672,"id":5747,"parentId":5601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"app-pages-browser"},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1138,"timestamp":6657471406711,"id":5748,"parentId":5601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"app-pages-browser"},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1138,"timestamp":6657471406752,"id":5749,"parentId":5612,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"app-pages-browser"},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1634,"timestamp":6657471406793,"id":5750,"parentId":5591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"app-pages-browser"},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":1776,"timestamp":6657471406833,"id":5751,"parentId":5607,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"app-pages-browser"},"startTime":1776264418489,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":281,"timestamp":6657471412352,"id":5765,"parentId":5764,"tags":{},"startTime":1776264418495,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":47,"timestamp":6657471412639,"id":5766,"parentId":5764,"tags":{},"startTime":1776264418495,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":3493,"timestamp":6657471412268,"id":5764,"parentId":5037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/buffer/index.js","layer":"app-pages-browser"},"startTime":1776264418495,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":714450,"timestamp":6657470701375,"id":4085,"parentId":4074,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264417784,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":718815,"timestamp":6657470697092,"id":4074,"parentId":4073,"tags":{},"startTime":1776264417779,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":4896,"timestamp":6657471434942,"id":5768,"parentId":5767,"tags":{},"startTime":1776264418517,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":4,"timestamp":6657471439861,"id":5770,"parentId":5767,"tags":{},"startTime":1776264418522,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":1721,"timestamp":6657471439950,"id":5771,"parentId":5767,"tags":{},"startTime":1776264418522,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":8,"timestamp":6657471441696,"id":5772,"parentId":5767,"tags":{},"startTime":1776264418524,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6657471441719,"id":5773,"parentId":5767,"tags":{},"startTime":1776264418524,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":4107,"timestamp":6657471439853,"id":5769,"parentId":5767,"tags":{},"startTime":1776264418522,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":4988,"timestamp":6657471448977,"id":5774,"parentId":5767,"tags":{},"startTime":1776264418531,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":47787,"timestamp":6657471453977,"id":5775,"parentId":5767,"tags":{},"startTime":1776264418536,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":15342,"timestamp":6657471506736,"id":5776,"parentId":5767,"tags":{},"startTime":1776264418589,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":157,"timestamp":6657471522077,"id":5777,"parentId":5767,"tags":{},"startTime":1776264418604,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":171,"timestamp":6657471522224,"id":5778,"parentId":5767,"tags":{},"startTime":1776264418605,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":137923,"timestamp":6657471522398,"id":5779,"parentId":5767,"tags":{},"startTime":1776264418605,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":266,"timestamp":6657471663027,"id":5781,"parentId":4073,"tags":{},"startTime":1776264418745,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":477,"timestamp":6657471662822,"id":5780,"parentId":4073,"tags":{},"startTime":1776264418745,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":236189,"timestamp":6657471429475,"id":5767,"parentId":4073,"tags":{},"startTime":1776264418512,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":970810,"timestamp":6657470694911,"id":4073,"parentId":2380,"tags":{"name":"client"},"startTime":1776264417777,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":54338,"timestamp":6657471665759,"id":5782,"parentId":2380,"tags":{},"startTime":1776264418748,"traceId":"c730e3ac75d31d11"},{"name":"compile-path","duration":2521661,"timestamp":6657469201291,"id":2362,"tags":{"trigger":"/stock/[code]","isTurbopack":false},"startTime":1776264416284,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":2313191,"timestamp":6657469410459,"id":2380,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264416493,"traceId":"c730e3ac75d31d11"}] -[{"name":"client-success","duration":36,"timestamp":6657471727174,"id":5783,"parentId":3,"tags":{},"startTime":1776264418810,"traceId":"c730e3ac75d31d11"},{"name":"client-hmr-latency","duration":2374000,"timestamp":6657469411500,"id":5784,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"],"page":"/","isPageHidden":false},"startTime":1776264418869,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":3014081,"timestamp":6657469189296,"id":2360,"tags":{"url":"/stock/002370.SZ","isTurbopack":false},"startTime":1776264416272,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6657472203425,"id":5785,"parentId":2360,"tags":{"url":"/stock/002370.SZ","memory.rss":"500973568","memory.heapUsed":"405101232","memory.heapTotal":"438763520"},"startTime":1776264419286,"traceId":"c730e3ac75d31d11"},{"name":"client-success","duration":13,"timestamp":6657472873861,"id":5786,"parentId":3,"tags":{},"startTime":1776264419956,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":56774,"timestamp":6657484620694,"id":5787,"tags":{"url":"/","isTurbopack":false},"startTime":1776264431703,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6657484677603,"id":5788,"parentId":5787,"tags":{"url":"/","memory.rss":"128860160","memory.heapUsed":"343501696","memory.heapTotal":"436961280"},"startTime":1776264431760,"traceId":"c730e3ac75d31d11"},{"name":"client-success","duration":10,"timestamp":6657485264963,"id":5789,"parentId":3,"tags":{},"startTime":1776264432347,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":58621,"timestamp":6657750670843,"id":5800,"parentId":5794,"tags":{"request":"next-app-loader?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264697753,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":72046,"timestamp":6657750670833,"id":5797,"parentId":5794,"tags":{"request":"next/dist/pages/_document"},"startTime":1776264697753,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":74152,"timestamp":6657750670227,"id":5795,"parentId":5794,"tags":{"request":"next/dist/pages/_app"},"startTime":1776264697752,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":73544,"timestamp":6657750670840,"id":5799,"parentId":5794,"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":1776264697753,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":73569,"timestamp":6657750670819,"id":5796,"parentId":5794,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776264697753,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":50965,"timestamp":6657750707712,"id":5801,"parentId":5798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fmonitor%2Fpage&page=%2Fmonitor%2Fpage&appPaths=%2Fmonitor%2Fpage&pagePath=private-next-app-dir%2Fmonitor%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":1776264697789,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":70660,"timestamp":6657750761588,"id":5804,"parentId":5803,"tags":{},"startTime":1776264697843,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":70806,"timestamp":6657750761454,"id":5803,"parentId":5802,"tags":{},"startTime":1776264697843,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":72055,"timestamp":6657750761224,"id":5802,"parentId":5801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/monitor/page.tsx","layer":"rsc"},"startTime":1776264697843,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":164150,"timestamp":6657750670837,"id":5798,"parentId":5794,"tags":{"request":"next-app-loader?name=app%2Fmonitor%2Fpage&page=%2Fmonitor%2Fpage&appPaths=%2Fmonitor%2Fpage&pagePath=private-next-app-dir%2Fmonitor%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":1776264697753,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":488,"timestamp":6657750845294,"id":5815,"parentId":5793,"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%2Fmonitor%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776264697927,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":22447,"timestamp":6657750850311,"id":5818,"parentId":5817,"tags":{},"startTime":1776264697932,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":22997,"timestamp":6657750849770,"id":5817,"parentId":5816,"tags":{},"startTime":1776264697931,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":31054,"timestamp":6657750849493,"id":5816,"parentId":5815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/monitor/page.tsx","layer":"ssr"},"startTime":1776264697931,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":222033,"timestamp":6657750664967,"id":5794,"parentId":5793,"tags":{},"startTime":1776264697747,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":4436,"timestamp":6657750900124,"id":5820,"parentId":5819,"tags":{},"startTime":1776264697982,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":16,"timestamp":6657750905219,"id":5822,"parentId":5819,"tags":{},"startTime":1776264697987,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":2759,"timestamp":6657750905251,"id":5823,"parentId":5819,"tags":{},"startTime":1776264697987,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":8,"timestamp":6657750908037,"id":5824,"parentId":5819,"tags":{},"startTime":1776264697990,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":9,"timestamp":6657750908056,"id":5825,"parentId":5819,"tags":{},"startTime":1776264697990,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":5834,"timestamp":6657750904573,"id":5821,"parentId":5819,"tags":{},"startTime":1776264697986,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":1235,"timestamp":6657750913206,"id":5826,"parentId":5819,"tags":{},"startTime":1776264697995,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":5385,"timestamp":6657750914453,"id":5827,"parentId":5819,"tags":{},"startTime":1776264697996,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":1520,"timestamp":6657750921779,"id":5828,"parentId":5819,"tags":{},"startTime":1776264698003,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":65,"timestamp":6657750923299,"id":5829,"parentId":5819,"tags":{},"startTime":1776264698005,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":76,"timestamp":6657750923357,"id":5830,"parentId":5819,"tags":{},"startTime":1776264698005,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":3442,"timestamp":6657750923435,"id":5831,"parentId":5819,"tags":{},"startTime":1776264698005,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":38992,"timestamp":6657750891095,"id":5819,"parentId":5793,"tags":{},"startTime":1776264697973,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":273359,"timestamp":6657750662213,"id":5793,"parentId":5791,"tags":{"name":"server"},"startTime":1776264697744,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":8791,"timestamp":6657750935605,"id":5832,"parentId":5791,"tags":{},"startTime":1776264698017,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":352005,"timestamp":6657750636163,"id":5791,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264697718,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":19385,"timestamp":6657751032759,"id":5835,"parentId":5834,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264698114,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":19356,"timestamp":6657751032808,"id":5837,"parentId":5834,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":20923,"timestamp":6657751032813,"id":5839,"parentId":5834,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":21613,"timestamp":6657751032820,"id":5842,"parentId":5834,"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":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":30265,"timestamp":6657751032818,"id":5841,"parentId":5834,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":32146,"timestamp":6657751032816,"id":5840,"parentId":5834,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":36846,"timestamp":6657751032832,"id":5844,"parentId":5834,"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":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":45812,"timestamp":6657751032811,"id":5838,"parentId":5834,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":45814,"timestamp":6657751032822,"id":5843,"parentId":5834,"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":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":54008,"timestamp":6657751032834,"id":5845,"parentId":5834,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":63158,"timestamp":6657751032804,"id":5836,"parentId":5834,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1163,"timestamp":6657751109431,"id":5847,"parentId":5846,"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%2Fmonitor%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776264698191,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":17217,"timestamp":6657751112133,"id":5850,"parentId":5849,"tags":{},"startTime":1776264698194,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":17447,"timestamp":6657751111914,"id":5849,"parentId":5848,"tags":{},"startTime":1776264698194,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":24734,"timestamp":6657751111721,"id":5848,"parentId":5847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/monitor/page.tsx","layer":"app-pages-browser"},"startTime":1776264698193,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":109227,"timestamp":6657751032835,"id":5846,"parentId":5834,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fmonitor%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264698115,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":124362,"timestamp":6657751017735,"id":5834,"parentId":5833,"tags":{},"startTime":1776264698099,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":8394,"timestamp":6657751176000,"id":5852,"parentId":5851,"tags":{},"startTime":1776264698258,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":11,"timestamp":6657751184533,"id":5854,"parentId":5851,"tags":{},"startTime":1776264698266,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":478,"timestamp":6657751184619,"id":5855,"parentId":5851,"tags":{},"startTime":1776264698266,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":8,"timestamp":6657751185131,"id":5856,"parentId":5851,"tags":{},"startTime":1776264698267,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6657751185152,"id":5857,"parentId":5851,"tags":{},"startTime":1776264698267,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":12039,"timestamp":6657751184500,"id":5853,"parentId":5851,"tags":{},"startTime":1776264698266,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":2556,"timestamp":6657751206234,"id":5858,"parentId":5851,"tags":{},"startTime":1776264698288,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":4925,"timestamp":6657751208810,"id":5859,"parentId":5851,"tags":{},"startTime":1776264698291,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":22092,"timestamp":6657751217155,"id":5860,"parentId":5851,"tags":{},"startTime":1776264698299,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":133,"timestamp":6657751239245,"id":5861,"parentId":5851,"tags":{},"startTime":1776264698321,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":126,"timestamp":6657751239366,"id":5862,"parentId":5851,"tags":{},"startTime":1776264698321,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":2966,"timestamp":6657751239495,"id":5863,"parentId":5851,"tags":{},"startTime":1776264698321,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":78,"timestamp":6657751244218,"id":5865,"parentId":5833,"tags":{},"startTime":1776264698326,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":145,"timestamp":6657751244155,"id":5864,"parentId":5833,"tags":{},"startTime":1776264698326,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":93370,"timestamp":6657751152741,"id":5851,"parentId":5833,"tags":{},"startTime":1776264698234,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":228652,"timestamp":6657751017486,"id":5833,"parentId":5814,"tags":{"name":"client"},"startTime":1776264698099,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":6241,"timestamp":6657751246159,"id":5866,"parentId":5814,"tags":{},"startTime":1776264698328,"traceId":"c730e3ac75d31d11"},{"name":"compile-path","duration":616320,"timestamp":6657750636649,"id":5792,"tags":{"trigger":"/monitor","isTurbopack":false},"startTime":1776264697718,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":416289,"timestamp":6657750836998,"id":5814,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264697919,"traceId":"c730e3ac75d31d11"}] -[{"name":"client-success","duration":5,"timestamp":6657751257446,"id":5867,"parentId":3,"tags":{},"startTime":1776264698339,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":654540,"timestamp":6657750625257,"id":5790,"tags":{"url":"/monitor?_rsc=19zvn","isTurbopack":false},"startTime":1776264697707,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":2,"timestamp":6657751279864,"id":5868,"parentId":5790,"tags":{"url":"/monitor?_rsc=19zvn","memory.rss":"415760384","memory.heapUsed":"364827520","memory.heapTotal":"408322048"},"startTime":1776264698362,"traceId":"c730e3ac75d31d11"},{"name":"client-hmr-latency","duration":447000,"timestamp":6657750837639,"id":5870,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1776264698366,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":8393,"timestamp":6657751284288,"id":5869,"tags":{"url":"/monitor?_rsc=xj7pa","isTurbopack":false},"startTime":1776264698366,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6657751292698,"id":5871,"parentId":5869,"tags":{"url":"/monitor?_rsc=xj7pa","memory.rss":"415825920","memory.heapUsed":"366200848","memory.heapTotal":"408322048"},"startTime":1776264698374,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13075,"timestamp":6657752593022,"id":5881,"parentId":5876,"tags":{"request":"next-app-loader?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264699675,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13094,"timestamp":6657752593027,"id":5882,"parentId":5876,"tags":{"request":"next-app-loader?name=app%2Fmonitor%2Fpage&page=%2Fmonitor%2Fpage&appPaths=%2Fmonitor%2Fpage&pagePath=private-next-app-dir%2Fmonitor%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":1776264699675,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16203,"timestamp":6657752593012,"id":5879,"parentId":5876,"tags":{"request":"next/dist/pages/_document"},"startTime":1776264699675,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16440,"timestamp":6657752592926,"id":5877,"parentId":5876,"tags":{"request":"next/dist/pages/_app"},"startTime":1776264699675,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16368,"timestamp":6657752593018,"id":5880,"parentId":5876,"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":1776264699675,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16387,"timestamp":6657752593003,"id":5878,"parentId":5876,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776264699675,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":14239,"timestamp":6657752604733,"id":5884,"parentId":5883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776264699686,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":3259,"timestamp":6657752622381,"id":5887,"parentId":5886,"tags":{},"startTime":1776264699704,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":3401,"timestamp":6657752622245,"id":5886,"parentId":5885,"tags":{},"startTime":1776264699704,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":4154,"timestamp":6657752621969,"id":5885,"parentId":5884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"rsc"},"startTime":1776264699704,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":37069,"timestamp":6657752593030,"id":5883,"parentId":5876,"tags":{"request":"next-app-loader?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264699675,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1066,"timestamp":6657752646107,"id":5901,"parentId":5875,"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%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776264699728,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":13586,"timestamp":6657752650094,"id":5904,"parentId":5903,"tags":{},"startTime":1776264699732,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":13693,"timestamp":6657752650006,"id":5903,"parentId":5902,"tags":{},"startTime":1776264699732,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":19518,"timestamp":6657752649761,"id":5902,"parentId":5901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"ssr"},"startTime":1776264699731,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":88729,"timestamp":6657752590903,"id":5876,"parentId":5875,"tags":{},"startTime":1776264699673,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":3112,"timestamp":6657752690330,"id":5906,"parentId":5905,"tags":{},"startTime":1776264699772,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":5,"timestamp":6657752693492,"id":5908,"parentId":5905,"tags":{},"startTime":1776264699775,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":2686,"timestamp":6657752693509,"id":5909,"parentId":5905,"tags":{},"startTime":1776264699775,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":11,"timestamp":6657752696227,"id":5910,"parentId":5905,"tags":{},"startTime":1776264699778,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6657752696271,"id":5911,"parentId":5905,"tags":{},"startTime":1776264699778,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":5031,"timestamp":6657752693478,"id":5907,"parentId":5905,"tags":{},"startTime":1776264699775,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":763,"timestamp":6657752700146,"id":5912,"parentId":5905,"tags":{},"startTime":1776264699782,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":5829,"timestamp":6657752700941,"id":5913,"parentId":5905,"tags":{},"startTime":1776264699783,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":1348,"timestamp":6657752709554,"id":5914,"parentId":5905,"tags":{},"startTime":1776264699791,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":65,"timestamp":6657752710902,"id":5915,"parentId":5905,"tags":{},"startTime":1776264699793,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":89,"timestamp":6657752710958,"id":5916,"parentId":5905,"tags":{},"startTime":1776264699793,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":2956,"timestamp":6657752711050,"id":5917,"parentId":5905,"tags":{},"startTime":1776264699793,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":34328,"timestamp":6657752683251,"id":5905,"parentId":5875,"tags":{},"startTime":1776264699765,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":131687,"timestamp":6657752590424,"id":5875,"parentId":5873,"tags":{"name":"server"},"startTime":1776264699672,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":4878,"timestamp":6657752722138,"id":5918,"parentId":5873,"tags":{},"startTime":1776264699804,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":140137,"timestamp":6657752587312,"id":5873,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264699669,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":521,"timestamp":6657752740115,"id":5934,"parentId":5933,"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%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776264699822,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":3743,"timestamp":6657752738012,"id":5932,"parentId":5920,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fmonitor%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":4884,"timestamp":6657752737959,"id":5921,"parentId":5920,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":4879,"timestamp":6657752737992,"id":5923,"parentId":5920,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":5898,"timestamp":6657752737999,"id":5925,"parentId":5920,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":6620,"timestamp":6657752738005,"id":5928,"parentId":5920,"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":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":7605,"timestamp":6657752738003,"id":5927,"parentId":5920,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":8801,"timestamp":6657752738002,"id":5926,"parentId":5920,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":10615,"timestamp":6657752738008,"id":5930,"parentId":5920,"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":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13379,"timestamp":6657752737997,"id":5924,"parentId":5920,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13376,"timestamp":6657752738007,"id":5929,"parentId":5920,"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":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9326,"timestamp":6657752745927,"id":5937,"parentId":5936,"tags":{},"startTime":1776264699828,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9381,"timestamp":6657752745874,"id":5936,"parentId":5935,"tags":{},"startTime":1776264699828,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":13160,"timestamp":6657752745719,"id":5935,"parentId":5934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776264699827,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":22284,"timestamp":6657752738010,"id":5931,"parentId":5920,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":22597,"timestamp":6657752737988,"id":5922,"parentId":5920,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":23768,"timestamp":6657752738013,"id":5933,"parentId":5920,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264699820,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":31579,"timestamp":6657752730224,"id":5920,"parentId":5919,"tags":{},"startTime":1776264699812,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":2422,"timestamp":6657752774604,"id":5939,"parentId":5938,"tags":{},"startTime":1776264699856,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":3,"timestamp":6657752777050,"id":5941,"parentId":5938,"tags":{},"startTime":1776264699859,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":189,"timestamp":6657752777063,"id":5942,"parentId":5938,"tags":{},"startTime":1776264699859,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":3,"timestamp":6657752777268,"id":5943,"parentId":5938,"tags":{},"startTime":1776264699859,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6657752777281,"id":5944,"parentId":5938,"tags":{},"startTime":1776264699859,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":1883,"timestamp":6657752777041,"id":5940,"parentId":5938,"tags":{},"startTime":1776264699859,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":614,"timestamp":6657752781867,"id":5945,"parentId":5938,"tags":{},"startTime":1776264699864,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":4194,"timestamp":6657752782489,"id":5946,"parentId":5938,"tags":{},"startTime":1776264699864,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":7417,"timestamp":6657752788190,"id":5947,"parentId":5938,"tags":{},"startTime":1776264699870,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":87,"timestamp":6657752795607,"id":5948,"parentId":5938,"tags":{},"startTime":1776264699877,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":93,"timestamp":6657752795687,"id":5949,"parentId":5938,"tags":{},"startTime":1776264699877,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":2033,"timestamp":6657752795783,"id":5950,"parentId":5938,"tags":{},"startTime":1776264699877,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":71,"timestamp":6657752798857,"id":5952,"parentId":5919,"tags":{},"startTime":1776264699881,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":196,"timestamp":6657752798737,"id":5951,"parentId":5919,"tags":{},"startTime":1776264699880,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":36486,"timestamp":6657752764266,"id":5938,"parentId":5919,"tags":{},"startTime":1776264699846,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":70784,"timestamp":6657752730002,"id":5919,"parentId":5900,"tags":{"name":"client"},"startTime":1776264699812,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":5393,"timestamp":6657752800809,"id":5953,"parentId":5900,"tags":{},"startTime":1776264699883,"traceId":"c730e3ac75d31d11"},{"name":"compile-path","duration":219274,"timestamp":6657752587360,"id":5874,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1776264699669,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":174648,"timestamp":6657752632396,"id":5900,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264699714,"traceId":"c730e3ac75d31d11"}] -[{"name":"client-success","duration":15,"timestamp":6657752811651,"id":5954,"parentId":3,"tags":{},"startTime":1776264699893,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":244524,"timestamp":6657752584067,"id":5872,"tags":{"url":"/recommendations?_rsc=1ljsd","isTurbopack":false},"startTime":1776264699666,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6657752828622,"id":5955,"parentId":5872,"tags":{"url":"/recommendations?_rsc=1ljsd","memory.rss":"435011584","memory.heapUsed":"383813216","memory.heapTotal":"420315136"},"startTime":1776264699910,"traceId":"c730e3ac75d31d11"},{"name":"client-hmr-latency","duration":256000,"timestamp":6657752632912,"id":5957,"parentId":3,"tags":{"updatedModules":[],"page":"/monitor","isPageHidden":false},"startTime":1776264699972,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":69230,"timestamp":6657752842749,"id":5956,"tags":{"url":"/recommendations?_rsc=1808t","isTurbopack":false},"startTime":1776264699924,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":12,"timestamp":6657752912038,"id":5958,"parentId":5956,"tags":{"url":"/recommendations?_rsc=1808t","memory.rss":"435077120","memory.heapUsed":"385231760","memory.heapTotal":"420315136"},"startTime":1776264699994,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":172739,"timestamp":6657834808518,"id":5959,"tags":{"url":"/stock/001208.SZ","isTurbopack":false},"startTime":1776264781890,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6657834981348,"id":5960,"parentId":5959,"tags":{"url":"/stock/001208.SZ","memory.rss":"121683968","memory.heapUsed":"402600848","memory.heapTotal":"427180032"},"startTime":1776264782063,"traceId":"c730e3ac75d31d11"},{"name":"client-success","duration":12,"timestamp":6657835932661,"id":5961,"parentId":3,"tags":{},"startTime":1776264783014,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":31880,"timestamp":6657850314522,"id":5962,"tags":{"url":"/","isTurbopack":false},"startTime":1776264797396,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6657850346519,"id":5963,"parentId":5962,"tags":{"url":"/","memory.rss":"115179520","memory.heapUsed":"389924264","memory.heapTotal":"395296768"},"startTime":1776264797428,"traceId":"c730e3ac75d31d11"},{"name":"client-success","duration":10,"timestamp":6657850917700,"id":5964,"parentId":3,"tags":{},"startTime":1776264797999,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":39427,"timestamp":6657864571224,"id":5965,"tags":{"url":"/monitor?_rsc=19zvn","isTurbopack":false},"startTime":1776264811653,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6657864610873,"id":5966,"parentId":5965,"tags":{"url":"/monitor?_rsc=19zvn","memory.rss":"101040128","memory.heapUsed":"390845768","memory.heapTotal":"396083200"},"startTime":1776264811692,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":10223,"timestamp":6657864613877,"id":5967,"tags":{"url":"/monitor?_rsc=xj7pa","isTurbopack":false},"startTime":1776264811695,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6657864624146,"id":5968,"parentId":5967,"tags":{"url":"/monitor?_rsc=xj7pa","memory.rss":"104382464","memory.heapUsed":"391450704","memory.heapTotal":"396345344"},"startTime":1776264811706,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16111,"timestamp":6657865463631,"id":5979,"parentId":5973,"tags":{"request":"next-app-loader?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16126,"timestamp":6657865463634,"id":5980,"parentId":5973,"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":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16147,"timestamp":6657865463636,"id":5981,"parentId":5973,"tags":{"request":"next-app-loader?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":20371,"timestamp":6657865463620,"id":5976,"parentId":5973,"tags":{"request":"next/dist/pages/_document"},"startTime":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":21201,"timestamp":6657865463384,"id":5974,"parentId":5973,"tags":{"request":"next/dist/pages/_app"},"startTime":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":20965,"timestamp":6657865463624,"id":5977,"parentId":5973,"tags":{"request":"next-app-loader?name=app%2Fmonitor%2Fpage&page=%2Fmonitor%2Fpage&appPaths=%2Fmonitor%2Fpage&pagePath=private-next-app-dir%2Fmonitor%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":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":20983,"timestamp":6657865463612,"id":5975,"parentId":5973,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":13726,"timestamp":6657865477673,"id":5982,"parentId":5978,"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":1776264812559,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":6357,"timestamp":6657865493561,"id":5985,"parentId":5984,"tags":{},"startTime":1776264812575,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":6423,"timestamp":6657865493500,"id":5984,"parentId":5983,"tags":{},"startTime":1776264812575,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":7016,"timestamp":6657865493303,"id":5983,"parentId":5982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"rsc"},"startTime":1776264812575,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":37697,"timestamp":6657865463628,"id":5978,"parentId":5973,"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":1776264812545,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":465,"timestamp":6657865512990,"id":6002,"parentId":5972,"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":1776264812594,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":11234,"timestamp":6657865516453,"id":6005,"parentId":6004,"tags":{},"startTime":1776264812598,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":11314,"timestamp":6657865516379,"id":6004,"parentId":6003,"tags":{},"startTime":1776264812598,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":18844,"timestamp":6657865516096,"id":6003,"parentId":6002,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"ssr"},"startTime":1776264812598,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":798,"timestamp":6657865545970,"id":6007,"parentId":6006,"tags":{},"startTime":1776264812627,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9782,"timestamp":6657865546866,"id":6009,"parentId":6008,"tags":{},"startTime":1776264812628,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":9865,"timestamp":6657865546789,"id":6008,"parentId":6006,"tags":{},"startTime":1776264812628,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":12935,"timestamp":6657865545806,"id":6006,"parentId":6003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"ssr"},"startTime":1776264812627,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":103204,"timestamp":6657865460543,"id":5973,"parentId":5972,"tags":{},"startTime":1776264812542,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":3777,"timestamp":6657865572706,"id":6011,"parentId":6010,"tags":{},"startTime":1776264812654,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":9,"timestamp":6657865576510,"id":6013,"parentId":6010,"tags":{},"startTime":1776264812658,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":3066,"timestamp":6657865576528,"id":6014,"parentId":6010,"tags":{},"startTime":1776264812658,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":4,"timestamp":6657865579617,"id":6015,"parentId":6010,"tags":{},"startTime":1776264812661,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":7,"timestamp":6657865579630,"id":6016,"parentId":6010,"tags":{},"startTime":1776264812661,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":4531,"timestamp":6657865576500,"id":6012,"parentId":6010,"tags":{},"startTime":1776264812658,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":816,"timestamp":6657865583000,"id":6017,"parentId":6010,"tags":{},"startTime":1776264812664,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":3917,"timestamp":6657865583826,"id":6018,"parentId":6010,"tags":{},"startTime":1776264812665,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":1025,"timestamp":6657865589118,"id":6019,"parentId":6010,"tags":{},"startTime":1776264812671,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":69,"timestamp":6657865590143,"id":6020,"parentId":6010,"tags":{},"startTime":1776264812672,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":66,"timestamp":6657865590208,"id":6021,"parentId":6010,"tags":{},"startTime":1776264812672,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":2019,"timestamp":6657865590277,"id":6022,"parentId":6010,"tags":{},"startTime":1776264812672,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":27436,"timestamp":6657865567541,"id":6010,"parentId":5972,"tags":{},"startTime":1776264812649,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":142250,"timestamp":6657865459713,"id":5972,"parentId":5970,"tags":{"name":"server"},"startTime":1776264812541,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":4991,"timestamp":6657865602002,"id":6023,"parentId":5970,"tags":{},"startTime":1776264812683,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":156274,"timestamp":6657865451237,"id":5970,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264812533,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":22449,"timestamp":6657865619407,"id":6037,"parentId":6025,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fmonitor%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":22640,"timestamp":6657865619409,"id":6038,"parentId":6025,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":33607,"timestamp":6657865619354,"id":6026,"parentId":6025,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":33590,"timestamp":6657865619389,"id":6028,"parentId":6025,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":37080,"timestamp":6657865619394,"id":6030,"parentId":6025,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":38812,"timestamp":6657865619400,"id":6033,"parentId":6025,"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":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":44531,"timestamp":6657865619398,"id":6032,"parentId":6025,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":49708,"timestamp":6657865619396,"id":6031,"parentId":6025,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":56936,"timestamp":6657865619404,"id":6035,"parentId":6025,"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":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":69928,"timestamp":6657865619392,"id":6029,"parentId":6025,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":69933,"timestamp":6657865619402,"id":6034,"parentId":6025,"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":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":83712,"timestamp":6657865619405,"id":6036,"parentId":6025,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":93282,"timestamp":6657865619385,"id":6027,"parentId":6025,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":1717,"timestamp":6657865755656,"id":6040,"parentId":6039,"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":1776264812837,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":18413,"timestamp":6657865758714,"id":6043,"parentId":6042,"tags":{},"startTime":1776264812840,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":18498,"timestamp":6657865758640,"id":6042,"parentId":6041,"tags":{},"startTime":1776264812840,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":31033,"timestamp":6657865758133,"id":6041,"parentId":6040,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1776264812840,"traceId":"c730e3ac75d31d11"},{"name":"read-resource","duration":12,"timestamp":6657865804190,"id":6045,"parentId":6044,"tags":{},"startTime":1776264812886,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":9786,"timestamp":6657865804632,"id":6047,"parentId":6046,"tags":{},"startTime":1776264812886,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":10208,"timestamp":6657865804220,"id":6046,"parentId":6044,"tags":{},"startTime":1776264812886,"traceId":"c730e3ac75d31d11"},{"name":"build-module-js","duration":17205,"timestamp":6657865803617,"id":6044,"parentId":6041,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.js","layer":"app-pages-browser"},"startTime":1776264812885,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":207456,"timestamp":6657865619411,"id":6039,"parentId":6025,"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":1776264812701,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":216416,"timestamp":6657865610572,"id":6025,"parentId":6024,"tags":{},"startTime":1776264812692,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":10536,"timestamp":6657865860564,"id":6049,"parentId":6048,"tags":{},"startTime":1776264812942,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":3,"timestamp":6657865871134,"id":6051,"parentId":6048,"tags":{},"startTime":1776264812953,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":424,"timestamp":6657865871151,"id":6052,"parentId":6048,"tags":{},"startTime":1776264812953,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":4,"timestamp":6657865871596,"id":6053,"parentId":6048,"tags":{},"startTime":1776264812953,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6657865871611,"id":6054,"parentId":6048,"tags":{},"startTime":1776264812953,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":1859,"timestamp":6657865871122,"id":6050,"parentId":6048,"tags":{},"startTime":1776264812953,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":1193,"timestamp":6657865885922,"id":6055,"parentId":6048,"tags":{},"startTime":1776264812967,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":7788,"timestamp":6657865887137,"id":6056,"parentId":6048,"tags":{},"startTime":1776264812969,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":9862,"timestamp":6657865897054,"id":6057,"parentId":6048,"tags":{},"startTime":1776264812978,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":209,"timestamp":6657865906915,"id":6058,"parentId":6048,"tags":{},"startTime":1776264812988,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":114,"timestamp":6657865907104,"id":6059,"parentId":6048,"tags":{},"startTime":1776264812989,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":3887,"timestamp":6657865907221,"id":6060,"parentId":6048,"tags":{},"startTime":1776264812989,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":79,"timestamp":6657865912369,"id":6062,"parentId":6024,"tags":{},"startTime":1776264812994,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":280,"timestamp":6657865912173,"id":6061,"parentId":6024,"tags":{},"startTime":1776264812994,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":73594,"timestamp":6657865841005,"id":6048,"parentId":6024,"tags":{},"startTime":1776264812922,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":304244,"timestamp":6657865610376,"id":6024,"parentId":6001,"tags":{"name":"client"},"startTime":1776264812692,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":5079,"timestamp":6657865914640,"id":6063,"parentId":6001,"tags":{},"startTime":1776264812996,"traceId":"c730e3ac75d31d11"},{"name":"compile-path","duration":469715,"timestamp":6657865451308,"id":5971,"tags":{"trigger":"/sectors","isTurbopack":false},"startTime":1776264812533,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":418291,"timestamp":6657865502998,"id":6001,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264812584,"traceId":"c730e3ac75d31d11"}] -[{"name":"client-success","duration":2,"timestamp":6657865924042,"id":6064,"parentId":3,"tags":{},"startTime":1776264813005,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":492813,"timestamp":6657865448518,"id":5969,"tags":{"url":"/sectors?_rsc=1ljsd","isTurbopack":false},"startTime":1776264812530,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":1,"timestamp":6657865941358,"id":6065,"parentId":5969,"tags":{"url":"/sectors?_rsc=1ljsd","memory.rss":"448643072","memory.heapUsed":"379445128","memory.heapTotal":"452362240"},"startTime":1776264813023,"traceId":"c730e3ac75d31d11"},{"name":"client-hmr-latency","duration":438000,"timestamp":6657865503738,"id":6066,"parentId":3,"tags":{"updatedModules":[],"page":"/monitor","isPageHidden":false},"startTime":1776264813023,"traceId":"c730e3ac75d31d11"},{"name":"handle-request","duration":7701,"timestamp":6657865944914,"id":6067,"tags":{"url":"/sectors?_rsc=165d9","isTurbopack":false},"startTime":1776264813026,"traceId":"c730e3ac75d31d11"},{"name":"memory-usage","duration":0,"timestamp":6657865952633,"id":6068,"parentId":6067,"tags":{"url":"/sectors?_rsc=165d9","memory.rss":"448643072","memory.heapUsed":"380831552","memory.heapTotal":"452362240"},"startTime":1776264813034,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13128,"timestamp":6657867225479,"id":6078,"parentId":6073,"tags":{"request":"next-app-loader?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13139,"timestamp":6657867225482,"id":6079,"parentId":6073,"tags":{"request":"next-app-loader?name=app%2Fmonitor%2Fpage&page=%2Fmonitor%2Fpage&appPaths=%2Fmonitor%2Fpage&pagePath=private-next-app-dir%2Fmonitor%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":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13140,"timestamp":6657867225484,"id":6080,"parentId":6073,"tags":{"request":"next-app-loader?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13141,"timestamp":6657867225486,"id":6081,"parentId":6073,"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":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":15412,"timestamp":6657867225468,"id":6076,"parentId":6073,"tags":{"request":"next/dist/pages/_document"},"startTime":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16169,"timestamp":6657867225364,"id":6074,"parentId":6073,"tags":{"request":"next/dist/pages/_app"},"startTime":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16072,"timestamp":6657867225471,"id":6077,"parentId":6073,"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":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":16086,"timestamp":6657867225463,"id":6075,"parentId":6073,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":10249,"timestamp":6657867237395,"id":6083,"parentId":6082,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fdiagnose%2Fpage&page=%2Fdiagnose%2Fpage&appPaths=%2Fdiagnose%2Fpage&pagePath=private-next-app-dir%2Fdiagnose%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":1776264814319,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":2487,"timestamp":6657867249917,"id":6086,"parentId":6085,"tags":{},"startTime":1776264814331,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":2573,"timestamp":6657867249836,"id":6085,"parentId":6084,"tags":{},"startTime":1776264814331,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":3125,"timestamp":6657867249694,"id":6084,"parentId":6083,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/diagnose/page.tsx","layer":"rsc"},"startTime":1776264814331,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":28437,"timestamp":6657867225497,"id":6082,"parentId":6073,"tags":{"request":"next-app-loader?name=app%2Fdiagnose%2Fpage&page=%2Fdiagnose%2Fpage&appPaths=%2Fdiagnose%2Fpage&pagePath=private-next-app-dir%2Fdiagnose%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":1776264814307,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":551,"timestamp":6657867266382,"id":6106,"parentId":6072,"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%2Fdiagnose%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776264814348,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7773,"timestamp":6657867269333,"id":6109,"parentId":6108,"tags":{},"startTime":1776264814351,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7859,"timestamp":6657867269253,"id":6108,"parentId":6107,"tags":{},"startTime":1776264814351,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":11029,"timestamp":6657867269089,"id":6107,"parentId":6106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/diagnose/page.tsx","layer":"ssr"},"startTime":1776264814351,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":66803,"timestamp":6657867223520,"id":6073,"parentId":6072,"tags":{},"startTime":1776264814305,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":2904,"timestamp":6657867300610,"id":6111,"parentId":6110,"tags":{},"startTime":1776264814382,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":3,"timestamp":6657867303533,"id":6113,"parentId":6110,"tags":{},"startTime":1776264814385,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":2851,"timestamp":6657867303546,"id":6114,"parentId":6110,"tags":{},"startTime":1776264814385,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":6,"timestamp":6657867306413,"id":6115,"parentId":6110,"tags":{},"startTime":1776264814388,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6657867306428,"id":6116,"parentId":6110,"tags":{},"startTime":1776264814388,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":4821,"timestamp":6657867303525,"id":6112,"parentId":6110,"tags":{},"startTime":1776264814385,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":652,"timestamp":6657867309822,"id":6117,"parentId":6110,"tags":{},"startTime":1776264814391,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":4190,"timestamp":6657867310480,"id":6118,"parentId":6110,"tags":{},"startTime":1776264814392,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":906,"timestamp":6657867315901,"id":6119,"parentId":6110,"tags":{},"startTime":1776264814397,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":124,"timestamp":6657867316807,"id":6120,"parentId":6110,"tags":{},"startTime":1776264814398,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":95,"timestamp":6657867316912,"id":6121,"parentId":6110,"tags":{},"startTime":1776264814398,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":1700,"timestamp":6657867317010,"id":6122,"parentId":6110,"tags":{},"startTime":1776264814398,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":24854,"timestamp":6657867295833,"id":6110,"parentId":6072,"tags":{},"startTime":1776264814377,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":102897,"timestamp":6657867223214,"id":6072,"parentId":6070,"tags":{"name":"server"},"startTime":1776264814305,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":3078,"timestamp":6657867326129,"id":6123,"parentId":6070,"tags":{},"startTime":1776264814408,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-server","duration":108440,"timestamp":6657867220993,"id":6070,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264814302,"traceId":"c730e3ac75d31d11"},{"name":"build-module","duration":544,"timestamp":6657867339119,"id":6141,"parentId":6140,"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%2Fdiagnose%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776264814421,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":3584,"timestamp":6657867336929,"id":6137,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fmonitor%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":3617,"timestamp":6657867336931,"id":6138,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":4607,"timestamp":6657867336882,"id":6126,"parentId":6125,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":4588,"timestamp":6657867336908,"id":6128,"parentId":6125,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":5207,"timestamp":6657867336927,"id":6136,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":5551,"timestamp":6657867336913,"id":6130,"parentId":6125,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":6060,"timestamp":6657867336919,"id":6133,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":8916,"timestamp":6657867336917,"id":6132,"parentId":6125,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":13703,"timestamp":6657867336916,"id":6131,"parentId":6125,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":15263,"timestamp":6657867336925,"id":6135,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":15675,"timestamp":6657867336911,"id":6129,"parentId":6125,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":15668,"timestamp":6657867336921,"id":6134,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%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":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":15804,"timestamp":6657867336932,"id":6139,"parentId":6125,"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":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-transform","duration":7155,"timestamp":6657867347728,"id":6144,"parentId":6143,"tags":{},"startTime":1776264814429,"traceId":"c730e3ac75d31d11"},{"name":"next-swc-loader","duration":7219,"timestamp":6657867347669,"id":6143,"parentId":6142,"tags":{},"startTime":1776264814429,"traceId":"c730e3ac75d31d11"},{"name":"build-module-tsx","duration":10675,"timestamp":6657867347221,"id":6142,"parentId":6141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/diagnose/page.tsx","layer":"app-pages-browser"},"startTime":1776264814429,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":21889,"timestamp":6657867336905,"id":6127,"parentId":6125,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"add-entry","duration":23174,"timestamp":6657867336934,"id":6140,"parentId":6125,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fdiagnose%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776264814418,"traceId":"c730e3ac75d31d11"},{"name":"make","duration":28825,"timestamp":6657867331312,"id":6125,"parentId":6124,"tags":{},"startTime":1776264814413,"traceId":"c730e3ac75d31d11"},{"name":"chunk-graph","duration":2160,"timestamp":6657867366878,"id":6146,"parentId":6145,"tags":{},"startTime":1776264814448,"traceId":"c730e3ac75d31d11"},{"name":"optimize-modules","duration":3,"timestamp":6657867369051,"id":6148,"parentId":6145,"tags":{},"startTime":1776264814450,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunks","duration":259,"timestamp":6657867369070,"id":6149,"parentId":6145,"tags":{},"startTime":1776264814450,"traceId":"c730e3ac75d31d11"},{"name":"optimize-tree","duration":3,"timestamp":6657867369340,"id":6150,"parentId":6145,"tags":{},"startTime":1776264814451,"traceId":"c730e3ac75d31d11"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6657867369352,"id":6151,"parentId":6145,"tags":{},"startTime":1776264814451,"traceId":"c730e3ac75d31d11"},{"name":"optimize","duration":1459,"timestamp":6657867369046,"id":6147,"parentId":6145,"tags":{},"startTime":1776264814450,"traceId":"c730e3ac75d31d11"},{"name":"module-hash","duration":466,"timestamp":6657867373865,"id":6152,"parentId":6145,"tags":{},"startTime":1776264814455,"traceId":"c730e3ac75d31d11"},{"name":"code-generation","duration":2394,"timestamp":6657867374337,"id":6153,"parentId":6145,"tags":{},"startTime":1776264814456,"traceId":"c730e3ac75d31d11"},{"name":"hash","duration":4749,"timestamp":6657867377748,"id":6154,"parentId":6145,"tags":{},"startTime":1776264814459,"traceId":"c730e3ac75d31d11"},{"name":"code-generation-jobs","duration":84,"timestamp":6657867382496,"id":6155,"parentId":6145,"tags":{},"startTime":1776264814464,"traceId":"c730e3ac75d31d11"},{"name":"module-assets","duration":82,"timestamp":6657867382573,"id":6156,"parentId":6145,"tags":{},"startTime":1776264814464,"traceId":"c730e3ac75d31d11"},{"name":"create-chunk-assets","duration":3347,"timestamp":6657867382658,"id":6157,"parentId":6145,"tags":{},"startTime":1776264814464,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-generateClientManifest","duration":52,"timestamp":6657867386838,"id":6159,"parentId":6124,"tags":{},"startTime":1776264814468,"traceId":"c730e3ac75d31d11"},{"name":"NextJsBuildManifest-createassets","duration":108,"timestamp":6657867386785,"id":6158,"parentId":6124,"tags":{},"startTime":1776264814468,"traceId":"c730e3ac75d31d11"},{"name":"seal","duration":25656,"timestamp":6657867362570,"id":6145,"parentId":6124,"tags":{},"startTime":1776264814444,"traceId":"c730e3ac75d31d11"},{"name":"webpack-compilation","duration":57106,"timestamp":6657867331138,"id":6124,"parentId":6105,"tags":{"name":"client"},"startTime":1776264814413,"traceId":"c730e3ac75d31d11"},{"name":"emit","duration":2637,"timestamp":6657867388257,"id":6160,"parentId":6105,"tags":{},"startTime":1776264814470,"traceId":"c730e3ac75d31d11"},{"name":"compile-path","duration":170141,"timestamp":6657867221016,"id":6071,"tags":{"trigger":"/diagnose","isTurbopack":false},"startTime":1776264814302,"traceId":"c730e3ac75d31d11"},{"name":"webpack-invalidated-client","duration":135788,"timestamp":6657867255573,"id":6105,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776264814337,"traceId":"c730e3ac75d31d11"}] +[{"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"}] diff --git a/frontend/src/app/chat/page.tsx b/frontend/src/app/chat/page.tsx index 4703a362..af32c45a 100644 --- a/frontend/src/app/chat/page.tsx +++ b/frontend/src/app/chat/page.tsx @@ -3,6 +3,7 @@ import { useState, useRef, useEffect } from "react"; import { useTheme } from "next-themes"; import { streamChat, type ChatMessage } from "@/lib/api"; +import { formatMarkdown } from "@/lib/markdown"; interface DisplayMessage { role: "user" | "assistant"; @@ -216,18 +217,3 @@ export default function ChatPage() { ); } -/** Simple markdown to HTML (bold, lists, newlines) */ -function formatMarkdown(text: string): string { - let html = text - .replace(/&/g, "&") - .replace(//g, ">") - .replace(/\*\*(.+?)\*\*/g, "$1") - .replace(/^\s*[-*]\s+(.+)/gm, "
  • $1
  • ") - .replace(/\n/g, "
    "); - // Wrap consecutive
  • items in