From f3c91d5cb42fd42178100f9bccb06694f9083518 Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Wed, 21 Jan 2026 14:54:12 +0100 Subject: [PATCH] what am i doing --- .cursor/rules/codebase-index.mdc | 3454 ++++++++--------- apps/web/.next/cache/.rscinfo | 1 - apps/web/.next/package.json | 1 - apps/web/.next/server/app-paths-manifest.json | 3 - apps/web/.next/server/pages-manifest.json | 1 - .../.next/server/server-reference-manifest.js | 1 - .../server/server-reference-manifest.json | 5 - apps/web/.next/trace | 122 - apps/web/.next/types/routes.d.ts | 90 - apps/web/package.json | 2 +- apps/web/src/app/projects/page.tsx | 17 +- .../editor/assets-panel/views/captions.tsx | 2 +- .../editor/assets-panel/views/media.tsx | 2 +- .../editor/assets-panel/views/stickers.tsx | 32 +- .../editor/assets-panel/views/text.tsx | 2 +- .../{ => editor}/delete-project-dialog.tsx | 0 .../{ui => editor}/draggable-item.tsx | 0 .../{ui => editor}/editable-timecode.tsx | 0 .../src/components/editor/editor-header.tsx | 2 +- .../src/components/editor/export-button.tsx | 3 +- .../src/components/editor/timeline/index.tsx | 5 +- .../editor/timeline/timeline-toolbar.tsx | 2 +- apps/web/src/components/ui/audio-player.tsx | 132 - apps/web/src/constants/export-constants.ts | 5 + ...e-interactions.ts => use-timeline-seek.ts} | 6 +- apps/web/src/{utils => lib}/export.ts | 8 +- apps/web/src/lib/media/mediabunny.ts | 303 +- apps/web/tsconfig.tsbuildinfo | 2 +- bun.lock | 4 +- 29 files changed, 1881 insertions(+), 2326 deletions(-) delete mode 100644 apps/web/.next/cache/.rscinfo delete mode 100644 apps/web/.next/package.json delete mode 100644 apps/web/.next/server/app-paths-manifest.json delete mode 100644 apps/web/.next/server/pages-manifest.json delete mode 100644 apps/web/.next/server/server-reference-manifest.js delete mode 100644 apps/web/.next/server/server-reference-manifest.json delete mode 100644 apps/web/.next/trace delete mode 100644 apps/web/.next/types/routes.d.ts rename apps/web/src/components/{ => editor}/delete-project-dialog.tsx (100%) rename apps/web/src/components/{ui => editor}/draggable-item.tsx (100%) rename apps/web/src/components/{ui => editor}/editable-timecode.tsx (100%) delete mode 100644 apps/web/src/components/ui/audio-player.tsx rename apps/web/src/hooks/timeline/{use-timeline-interactions.ts => use-timeline-seek.ts} (97%) rename apps/web/src/{utils => lib}/export.ts (66%) diff --git a/.cursor/rules/codebase-index.mdc b/.cursor/rules/codebase-index.mdc index a058c5ef..326e37af 100644 --- a/.cursor/rules/codebase-index.mdc +++ b/.cursor/rules/codebase-index.mdc @@ -1,1765 +1,1689 @@ ---- -alwaysApply: true ---- - -# video-editor-oss Codebase Index - -**This file provides an index of exported functions, types, interfaces, classes, and constants in your codebase.** - -Updated in real-time by Twiggy. Use this to discover existing utilities and avoid duplicating code. - -## How to Use - -When implementing new features: -1. Check if similar functionality already exists -2. Reuse existing types and utilities -3. Understand the API surface of your codebase - -```typescript -## apps/web/src/constants - -captions-constants.ts - export const LANGUAGES: Language[] - -editor-constants.ts - export const PLATFORM_LAYOUTS: Record - export const PANEL_CONFIG - -export-constants.ts - export const DEFAULT_EXPORT_OPTIONS - -font-constants.ts - export interface FontOption { - value: string - label: string - category: "system" | "google" | "custom" - weights?: number[] - hasClassName?: boolean - } - export const FONT_OPTIONS: FontOption[] - export const DEFAULT_FONT - export type FontFamily = (typeof FONT_OPTIONS)[number]["value"] - export const getFontByValue = (value: string): FontOption | undefined => ... - export const getGoogleFonts = (): FontOption[] => ... - export const getSystemFonts = (): FontOption[] => ... - -project-constants.ts - export const DEFAULT_CANVAS_PRESETS: TCanvasSize[] - export const FPS_PRESETS - export const BLUR_INTENSITY_PRESETS: { label: string; value: number }[] - export const DEFAULT_CANVAS_SIZE: TCanvasSize - export const DEFAULT_FPS - export const DEFAULT_BLUR_INTENSITY - export const DEFAULT_COLOR - -site-constants.ts - export const SITE_URL - export const SITE_INFO - export type ExternalTool = { - name: string; - description: string; - url: string; - icon: React.ElementType; - } - export const EXTERNAL_TOOLS: ExternalTool[] - export const DEFAULT_LOGO_URL - export const SOCIAL_LINKS - export type Sponsor = { - name: string; - url: string; - logo: string; - description: string; - } - export const SPONSORS: Sponsor[] - -stickers-constants.ts - export const STICKER_CATEGORIES - export const STICKER_CATEGORY_CONFIG: Record< - (typeof STICKER_CATEGORIES)[number], - string | undefined - > - -text-constants.ts - export const DEFAULT_TEXT_ELEMENT: Omit - -timeline-constants.tsx - export const TRACK_COLORS: Record< - TrackType, - { background: string; } - > - export const TRACK_HEIGHTS: Record - export const TRACK_GAP - export const TIMELINE_CONSTANTS - export const TRACK_ICONS: Record - -transcription-constants.ts - export const TRANSCRIPTION_MODELS: TranscriptionModel[] - export const DEFAULT_TRANSCRIPTION_MODEL: TranscriptionModelId - export const DEFAULT_CHUNK_LENGTH_SECONDS - export const DEFAULT_STRIDE_SECONDS - export const DEFAULT_WORDS_PER_CAPTION - export const MIN_CAPTION_DURATION_SECONDS - -## apps/web/src/core - -index.ts - export class EditorCore { - instance: EditorCore | null - command: CommandManager - playback: PlaybackManager - timeline: TimelineManager - scenes: ScenesManager - project: ProjectManager - media: MediaManager - renderer: RendererManager - save: SaveManager - static getInstance(): EditorCore - static reset(): void - } - -## apps/web/src/hooks - -use-editor.ts - export function useEditor(): EditorCore - -use-file-upload.ts - export function useFileUpload({ - accept, - multiple, - onFilesSelected, - }: UseFileUploadOptions = {}) - -use-infinite-scroll.ts - export function useInfiniteScroll({ - onLoadMore, - hasMore, - isLoading, - threshold = 200, - enabled = true, - }: UseInfiniteScrollOptions) - -use-keybindings.ts - export function useKeybindingsListener() - export function useKeybindingDisabler() - export const bindings - -use-keyboard-shortcuts-help.ts - export interface KeyboardShortcut { - id: string - keys: string[] - description: string - category: string - action: TAction - icon?: React.ReactNode - } - export function useKeyboardShortcutsHelp() - -use-raf-loop.ts - export function useRafLoop(callback: ({ time }: { time: number }) => void) - -use-reveal-item.ts - export function useRevealItem( - highlightId: string | null, - onClearHighlight: () => void, - highlightDuration = 1000, - ) - -use-sound-search.ts - export function useSoundSearch({ - query, - commercialOnly, - }: { - query: string; - commercialOnly: boolean; - }) - -## apps/web/src/hooks/actions - -use-action-handler.ts - export function useActionHandler( - action: A, - handler: TActionFunc, - isActive: TActionHandlerOptions, - ) - -use-editor-actions.ts - export function useEditorActions() - -## apps/web/src/hooks/timeline - -use-edge-auto-scroll.ts - export function useEdgeAutoScroll({ - isActive, - getMouseClientX, - rulerScrollRef, - tracksScrollRef, - contentWidth, - edgeThreshold = 100, - maxScrollSpeed = 15, - }: UseEdgeAutoScrollParams): void - -use-scroll-sync.ts - export function useScrollSync({ - rulerScrollRef, - tracksScrollRef, - trackLabelsScrollRef, - bookmarksScrollRef, - }: UseScrollSyncProps) - -use-selection-box.ts - export function useSelectionBox({ - containerRef, - onSelectionComplete, - isEnabled = true, - tracksScrollRef, - zoomLevel, - }: UseSelectionBoxProps) - -use-snap-indicator-position.ts - export function useSnapIndicatorPosition({ - snapPoint, - zoomLevel, - tracks, - timelineRef, - trackLabelsRef, - tracksScrollRef, - }: UseSnapIndicatorPositionParams): SnapIndicatorPosition - -use-timeline-drag-drop.ts - export function useTimelineDragDrop({ - containerRef, - zoomLevel, - isSnappingEnabled = true, - }: UseTimelineDragDropProps) - -use-timeline-interactions.ts - export function useTimelineInteractions({ - playheadRef, - trackLabelsRef, - rulerScrollRef, - tracksScrollRef, - zoomLevel, - duration, - isSelecting, - clearSelectedElements, - seek, - }: UseTimelineInteractionsProps) - -use-timeline-playhead.ts - export function useTimelinePlayhead({ - zoomLevel, - rulerRef, - rulerScrollRef, - tracksScrollRef, - playheadRef, - }: UseTimelinePlayheadProps) - -use-timeline-snapping.ts - export interface SnapPoint { - time: number - type: "element-start" | "element-end" | "playhead" - elementId?: string - trackId?: string - } - export interface SnapResult { - snappedTime: number - snapPoint: SnapPoint | null - snapDistance: number - } - export interface UseTimelineSnappingOptions { - snapThreshold?: number - enableElementSnapping?: boolean - enablePlayheadSnapping?: boolean - } - export function useTimelineSnapping({ - snapThreshold = 10, - enableElementSnapping = true, - enablePlayheadSnapping = true, - }: UseTimelineSnappingOptions = {}) - -use-timeline-zoom.ts - export function useTimelineZoom({ - containerRef, - isInTimeline = false, - minZoom = TIMELINE_CONSTANTS.ZOOM_MIN, - }: UseTimelineZoomProps): UseTimelineZoomReturn - -## apps/web/src/hooks/timeline/element - -use-element-interaction.ts - export function useElementInteraction({ - zoomLevel, - timelineRef, - tracksContainerRef, - tracksScrollRef, - snappingEnabled, - onSnapPointChange, - }: UseElementInteractionProps) - -use-element-resize.ts - export interface ResizeState { - elementId: string - side: "left" | "right" - startX: number - initialTrimStart: number - initialTrimEnd: number - initialStartTime: number - initialDuration: number - } - export function useTimelineElementResize({ - element, - track, - zoomLevel, - onSnapPointChange, - onResizeStateChange, - }: UseTimelineElementResizeProps) - -use-element-selection.ts - export function useElementSelection() - -## apps/web/src/lib - -browser-utils.ts - export function isTypableDOMElement({ - element, - }: { - element: HTMLElement; - }): boolean - -date-utils.ts - export function formatDate({ date }: { date: Date }): string - -export.ts - export function getExportMimeType({ - format, - }: { - format: ExportFormat; - }): string - export function getExportFileExtension({ - format, - }: { - format: ExportFormat; - }): string - -iconify-api.ts - export const ICONIFY_HOSTS - export interface IconSet { - prefix: string - name: string - total: number - author?: { - name: string; - url?: string; - } - license?: { - title: string; - spdx?: string; - url?: string; - } - samples?: string[] - category?: string - palette?: boolean - } - export interface IconSearchResult { - icons: string[] - total: number - limit: number - start: number - collections: Record - } - export interface CollectionInfo { - prefix: string - total: number - title?: string - uncategorized?: string[] - categories?: Record - hidden?: string[] - aliases?: Record - } - export function getCollections( - category?: string - ): Promise> - export function getCollection( - prefix: string - ): Promise - export function searchIcons( - query: string, - limit: number = 64, - prefixes?: string[], - category?: string - ): Promise - export function buildIconSvgUrl( - host: string, - iconName: string, - params?: { - color?: string; - width?: number; - height?: number; - flip?: "horizontal" | "vertical" | "horizontal,vertical"; - rotate?: number | string; - } - ): string - export function getIconSvgUrl( - iconName: string, - params?: Parameters[2] - ): string - export function downloadSvgAsText( - iconName: string, - params?: Parameters[1] - ): Promise - export function svgToFile(svgText: string, fileName: string): File - export const POPULAR_COLLECTIONS - export function getCategoriesFromCollections( - collections: Record - ): string[] - -math-utils.ts - export function clamp({ - value, - min, - max, - }: { - value: number; - min: number; - max: number; - }): number - -platform-utils.ts - export function getPlatformSpecialKey(): string - export function getPlatformAlternateKey(): string - export function isAppleDevice(): boolean - -scene-utils.ts - export function getMainScene({ scenes }: { scenes: TScene[] }): TScene | null - export function ensureMainScene({ scenes }: { scenes: TScene[] }): TScene[] - export function buildDefaultScene({ - name, - isMain, - }: { - name: string; - isMain: boolean; - }): TScene - export function canDeleteScene({ scene }: { scene: TScene }): { - canDelete: boolean; - reason?: string; - } - export function getFallbackSceneAfterDelete({ - scenes, - deletedSceneId, - currentSceneId, - }: { - scenes: TScene[]; - deletedSceneId: string; - currentSceneId: string | null; - }): TScene | null - export function findCurrentScene({ - scenes, - currentSceneId, - }: { - scenes: TScene[]; - currentSceneId: string; - }): TScene | null - export function updateSceneInArray({ - scenes, - sceneId, - updates, - }: { - scenes: TScene[]; - sceneId: string; - updates: Partial; - }): TScene[] - -string-utils.ts - export function capitalizeFirstLetter({ string }: { string: string }) - export function uppercase({ string }: { string: string }) - -time-utils.ts - export function roundToFrame({ - time, - fps, - }: { - time: number; - fps: number; - }): number - export function formatTimeCode({ - timeInSeconds, - format = "HH:MM:SS:CS", - fps, - }: { - timeInSeconds: number; - format?: TTimeCode; - fps?: number; - }): string - export function parseTimeCode({ - timeCode, - format = "HH:MM:SS:CS", - fps, - }: { - timeCode: string; - format?: TTimeCode; - fps: number; - }): number | null - export function guessTimeCodeFormat({ - timeCode, - }: { - timeCode: string; - }): TTimeCode | null - export function timeToFrame({ - time, - fps, - }: { - time: number; - fps: number; - }): number - export function frameToTime({ - frame, - fps, - }: { - frame: number; - fps: number; - }): number - export function snapTimeToFrame({ - time, - fps, - }: { - time: number; - fps: number; - }): number - export function getSnappedSeekTime({ - rawTime, - duration, - fps, - }: { - rawTime: number; - duration: number; - fps: number; - }): number - -## apps/web/src/lib/actions - -definitions.ts - export type TActionCategory = | "playback" - | "navigation" - | "editing" - | "selection" - | "history" - | "timeline" - ... - export interface TActionDefinition { - description: string - category: TActionCategory - defaultShortcuts?: ShortcutKey[] - args?: Record - } - export const ACTIONS - export type TAction = keyof typeof ACTIONS - export function getActionDefinition(action: TAction): TActionDefinition - export function getDefaultShortcuts(): Record - -registry.ts - export function bindAction( - action: A, - handler: TActionFunc, - ) - export function unbindAction( - action: A, - handler: TActionFunc, - ) - export const invokeAction = ( - action: A, - args?: TArgOfAction, - trigger?: TInvocationTrigger, - ) => ... - -types.ts - export type TActionArgsMap = { - "seek-forward": { seconds: number } | undefined; - "seek-backward": { seconds: number } | u... - export type TActionWithArgs = keyof TActionArgsMap - export type TActionWithOptionalArgs = | TActionWithNoArgs - | TKeysWithValueUndefined - export type TActionWithNoArgs = Exclude - export type TArgOfAction = A extends TActionWithArgs - ? TActionArgsMap[A] - : undefined - export type TActionFunc = A extends TActionWithArgs - ? (arg: TArgOfAction, trigger?: TInvocationTrigger) => void - : ... - export type TInvocationTrigger = "keypress" | "mouseclick" - export type TBoundActionList = { - [A in TAction]?: Array>; - } - export type TActionHandlerOptions = | MutableRefObject - | boolean - | undefined - -## apps/web/src/lib/auth - -server.ts - export const auth - export type Auth = typeof auth - -## apps/web/src/lib/blog - -query.ts - export function getPosts() - export function getTags() - export function getSinglePost({ slug }: { slug: string }) - export function getCategories() - export function getAuthors() - export function processHtmlContent({ html }: { html: string }): Promise - -## apps/web/src/lib/db - -index.ts - export const db - -schema.ts - export const users - export const sessions - export const accounts - export const verifications - -## apps/web/src/lib/gradients - -canvas.ts - export function drawCssBackground({ - ctx, - width, - height, - css, - }: { - ctx: CanvasRenderingContext2D | OffscreenCanvasRenderingContext2D; - width: number; - height: number; - css: string; - }): void - -parser.ts - export type GradientOrientation = LinearOrientation | Array - export type Color = | { type: "hex"; value: string } - | { type: "literal"; value: string } - | { type: "rgb"; ... - export type ColorStop = Color & { length?: Distance } - export type GradientAst = { - type: GradientType; - orientation: GradientOrientation | undefined; - colorStops: Ar... - export const parseGradient = ({ code }: { code: string }): Array => ... - export const GradientParser - -## apps/web/src/lib/media - -media-utils.ts - export const SUPPORTS_AUDIO: readonly MediaType[] - export function mediaSupportsAudio({ - media, - }: { - media: MediaAsset | null | undefined; - }): boolean - export const getMediaTypeFromFile = ({ file }: { file: File }): MediaType | null => ... - -mediabunny.ts - export const initFFmpeg = (): Promise => ... - export function getVideoInfo({ - videoFile, - }: { - videoFile: File; - }): Promise<{ - duration: number; - width: number; - height: number; - fps: number; - }> - export const extractTimelineAudio = ({ - tracks, - mediaAssets, - totalDuration, - onProgress, - }: { - tracks: TimelineTrack[]; - mediaAssets: MediaAsset[]; - totalDuration: number; - onProgress?: (progress: number) => void; - }): Promise => ... - -processing.ts - export interface ProcessedMediaAsset extends Omit - export function generateThumbnail({ - videoFile, - timeInSeconds, - }: { - videoFile: File; - timeInSeconds: number; - }): Promise - export function processMediaAssets({ - files, - onProgress, - }: { - files: FileList | File[]; - onProgress?: ({ progress }: { progress: number }) => void; - }): Promise - -## apps/web/src/lib/timeline - -bookmarks.ts - export function findBookmarkIndex({ - bookmarks, - frameTime, - }: { - bookmarks: number[]; - frameTime: number; - }): number - export function isBookmarkAtTime({ - bookmarks, - frameTime, - }: { - bookmarks: number[]; - frameTime: number; - }): boolean - export function toggleBookmarkInArray({ - bookmarks, - frameTime, - }: { - bookmarks: number[]; - frameTime: number; - }): number[] - export function removeBookmarkFromArray({ - bookmarks, - frameTime, - }: { - bookmarks: number[]; - frameTime: number; - }): number[] - export function getFrameTime({ - time, - fps, - }: { - time: number; - fps: number; - }): number - -drop-utils.ts - export function computeDropTarget({ - elementType, - mouseX, - mouseY, - tracks, - playheadTime, - isExternalDrop, - elementDuration, - pixelsPerSecond, - zoomLevel, - verticalDragDirection, - startTimeOverride, - excludeElementId, - }: ComputeDropTargetParams): DropTarget - export function getDropLineY({ - dropTarget, - tracks, - }: { - dropTarget: DropTarget; - tracks: TimelineTrack[]; - }): number - -element-utils.ts - export function canElementHaveAudio( - element: TimelineElement, - ) - export function canElementBeHidden( - element: TimelineElement, - ) - export function hasMediaId( - element: TimelineElement, - ) - export function requiresMediaId({ - element, - }: { - element: CreateTimelineElement; - }): boolean - export function checkElementOverlaps({ - elements, - }: { - elements: TimelineElement[]; - }): boolean - export function resolveElementOverlaps({ - elements, - }: { - elements: TimelineElement[]; - }): TimelineElement[] - export function wouldElementOverlap({ - elements, - startTime, - endTime, - excludeElementId, - }: { - elements: TimelineElement[]; - startTime: number; - endTime: number; - excludeElementId?: string; - }): boolean - export function buildTextElement({ - raw, - startTime, - }: { - raw: Partial>; - startTime: number; - }): CreateTimelineElement - export function buildStickerElement({ - iconName, - startTime, - }: { - iconName: string; - startTime: number; - }): CreateStickerElement - export function buildUploadAudioElement({ - mediaId, - name, - duration, - startTime, - buffer, - }: { - mediaId: string; - name: string; - duration: number; - startTime: number; - buffer?: AudioBuffer; - }): CreateUploadAudioElement - export function buildLibraryAudioElement({ - sourceUrl, - name, - duration, - startTime, - buffer, - }: { - sourceUrl: string; - name: string; - duration: number; - startTime: number; - buffer?: AudioBuffer; - }): CreateLibraryAudioElement - -index.ts - export function calculateTotalDuration({ - tracks, - }: { - tracks: TimelineTrack[]; - }): number - -track-utils.ts - export function canTracktHaveAudio( - track: TimelineTrack, - ) - export function canTrackBeHidden( - track: TimelineTrack, - ) - export function getTrackColor({ type }: { type: TrackType }) - export function getTrackClasses({ type }: { type: TrackType }) - export function getTrackHeight({ type }: { type: TrackType }): number - export function getCumulativeHeightBefore({ - tracks, - trackIndex, - }: { - tracks: Array<{ type: TrackType }>; - trackIndex: number; - }): number - export function getTotalTracksHeight({ - tracks, - }: { - tracks: Array<{ type: TrackType }>; - }): number - export function buildEmptyTrack({ - id, - type, - name, - }: { - id: string; - type: TrackType; - name?: string; - }): TimelineTrack - export function getDefaultInsertIndexForTrack({ - tracks, - trackType, - }: { - tracks: TimelineTrack[]; - trackType: TrackType; - }): number - export function getHighestInsertIndexForTrack({ - tracks, - trackType, - }: { - tracks: TimelineTrack[]; - trackType: TrackType; - }): number - export function isMainTrack(track: TimelineTrack) - export function getMainTrack({ - tracks, - }: { - tracks: TimelineTrack[]; - }): TimelineTrack | null - export function ensureMainTrack({ - tracks, - }: { - tracks: TimelineTrack[]; - }): TimelineTrack[] - export function canElementGoOnTrack({ - elementType, - trackType, - }: { - elementType: ElementType; - trackType: TrackType; - }): boolean - export function validateElementTrackCompatibility({ - element, - track, - }: { - element: { type: ElementType }; - track: { type: TrackType }; - }): { isValid: boolean; errorMessage?: string } - -zoom-utils.ts - export function getTimelineZoomMin({ - duration, - containerWidth, - }: { - duration: number; - containerWidth: number | null | undefined; - }): number - -## apps/web/src/lib/utils - -audio.ts - export type CollectedAudioElement = Omit< - AudioElement, - "type" | "mediaId" | "volume" | "id" | "name" | "sourceType" | "sourceU... - export function createAudioContext(): AudioContext - export interface DecodedAudio { - samples: Float32Array - sampleRate: number - } - export function decodeAudioToFloat32({ - audioBlob, - }: { - audioBlob: Blob; - }): Promise - export function collectAudioElements({ - tracks, - mediaAssets, - audioContext, - }: { - tracks: TimelineTrack[]; - mediaAssets: MediaAsset[]; - audioContext: AudioContext; - }): Promise - export function collectAudioMixSources({ - tracks, - mediaAssets, - }: { - tracks: TimelineTrack[]; - mediaAssets: MediaAsset[]; - }): Promise - export function createTimelineAudioBuffer({ - tracks, - mediaAssets, - duration, - sampleRate = 44100, - }: { - tracks: TimelineTrack[]; - mediaAssets: MediaAsset[]; - duration: number; - sampleRate?: number; - }): Promise - -blog-query.ts - export function getPosts() - export function getTags() - export function getSinglePost({ slug }: { slug: string }) - export function getCategories() - export function getAuthors() - export function processHtmlContent({ html }: { html: string }): Promise - -browser.ts - export function isTypableDOMElement({ - element, - }: { - element: HTMLElement; - }): boolean - -date.ts - export function formatDate({ date }: { date: Date }): string - -editor.ts - export function dimensionToAspectRatio({ - width, - height, - }: { - width: number; - height: number; - }): string - -id.ts - export function generateUUID(): string - -math.ts - export function clamp({ - value, - min, - max, - }: { - value: number; - min: number; - max: number; - }): number - -platform.ts - export function getPlatformSpecialKey(): string - export function getPlatformAlternateKey(): string - export function isAppleDevice(): boolean - -time.ts - export function roundToFrame({ - time, - fps, - }: { - time: number; - fps: number; - }): number - export function formatTimeCode({ - timeInSeconds, - format = "HH:MM:SS:CS", - fps, - }: { - timeInSeconds: number; - format?: TTimeCode; - fps?: number; - }): string - export function parseTimeCode({ - timeCode, - format = "HH:MM:SS:CS", - fps, - }: { - timeCode: string; - format?: TTimeCode; - fps: number; - }): number | null - export function guessTimeCodeFormat({ - timeCode, - }: { - timeCode: string; - }): TTimeCode | null - export function timeToFrame({ - time, - fps, - }: { - time: number; - fps: number; - }): number - export function frameToTime({ - frame, - fps, - }: { - frame: number; - fps: number; - }): number - export function snapTimeToFrame({ - time, - fps, - }: { - time: number; - fps: number; - }): number - export function getSnappedSeekTime({ - rawTime, - duration, - fps, - }: { - rawTime: number; - duration: number; - fps: number; - }): number - -ui.ts - export function cn(...inputs: ClassValue[]): string - -## apps/web/src/services/media - -video-cache.ts - export class VideoCache { - sinks - initPromises - async getFrameAt({ - mediaId, - file, - time, - }: { - mediaId: string; - file: File; - time: number; - }): Promise - clearVideo({ mediaId }: { mediaId: string }): void - clearAll(): void - getStats() - } - export const videoCache - -## apps/web/src/services/renderer - -canvas-renderer.ts - export type CanvasRendererParams = { - width: number; - height: number; - fps: number; - } - export class CanvasRenderer { - canvas: OffscreenCanvas | HTMLCanvasElement - context: OffscreenCanvasRenderingContext2D | CanvasRenderingContext2D - width: number - height: number - fps: number - constructor({ width, height, fps }: CanvasRendererParams) - setSize({ width, height }: { width: number; height: number }) - async render({ node, time }: { node: BaseNode; time: number }) - async renderToCanvas({ - node, - time, - targetCanvas, - }: { - node: BaseNode; - time: number; - targetCanvas: HTMLCanvasElement; - }) - } - -scene-builder.ts - export type BuildSceneParams = { - canvasSize: TCanvasSize; - tracks: TimelineTrack[]; - mediaAssets: MediaAsset[]; - duration: ... - export function buildScene(params: BuildSceneParams) - -scene-exporter.ts - export type ExportFormat = "mp4" | "webm" - export type ExportQuality = "low" | "medium" | "high" | "very_high" - export type SceneExporterEvents = { - progress: [progress: number]; - complete: [buffer: ArrayBuffer]; - error: [error: Error]; ... - export class SceneExporter extends EventEmitter { - renderer: CanvasRenderer - format: ExportFormat - quality: ExportQuality - includeAudio: boolean - audioBuffer: AudioBuffer - cancelled - constructor(params: ExportParams) - cancel() - async export(rootNode: RootNode) - } - -## apps/web/src/services/storage - -indexeddb-adapter.ts - export class IndexedDBAdapter implements StorageAdapter { - dbName: string - storeName: string - version: number - constructor(dbName: string, storeName: string, version = 1) - async get(key: string): Promise - async set(key: string, value: T): Promise - async remove(key: string): Promise - async list(): Promise - async getAll(): Promise - async clear(): Promise - } - -opfs-adapter.ts - export class OPFSAdapter implements StorageAdapter { - directoryName: string - constructor(directoryName = "media") - async get(key: string): Promise - async set(key: string, file: File): Promise - async remove(key: string): Promise - async list(): Promise - async clear(): Promise - static isSupported(): boolean - } - -storage-service.ts - export const storageService - -types.ts - export interface StorageAdapter { - get(key: string): Promise - set(key: string, value: T): Promise - remove(key: string): Promise - list(): Promise - clear(): Promise - } - export interface MediaAssetData { - id: string - name: string - type: MediaType - size: number - lastModified: number - width?: number - height?: number - duration?: number - fps?: number - ephemeral?: boolean - thumbnailUrl?: string - sourceStickerIconName?: string - } - export type SerializedScene = Omit & { - createdAt: string; - updatedAt: string; - } - export type SerializedProjectMetadata = Omit< - TProjectMetadata, - "createdAt" | "updatedAt" - > & { - createdAt: string; - updatedAt... - export type SerializedProject = Omit & { - metadata: SerializedProjectMetadata; - scenes: Seri... - export interface StorageConfig { - projectsDb: string - mediaDb: string - savedSoundsDb: string - version: number - } - -## apps/web/src/services/transcription - -index.ts - export const transcriptionService - -worker.ts - export type WorkerMessage = | { type: "init"; modelId: string } - | { type: "transcribe"; audio: Float32Array; language: st... - export type WorkerResponse = | { type: "init-progress"; progress: number } - | { type: "init-complete" } - | { type: "init... - -## apps/web/src/stores - -assets-panel-store.ts - export const TAB_KEYS - export type Tab = (typeof TAB_KEYS)[number] - export const tabs - export const useAssetsPanelStore - -editor-store.ts - export const useEditorStore - -keybindings-store.ts - export const defaultKeybindings: KeybindingConfig - export interface KeybindingConflict { - key: ShortcutKey - existingAction: TActionWithOptionalArgs - newAction: TActionWithOptionalArgs - } - export const useKeybindingsStore - -panel-store.ts - export interface PanelSizes { - tools: number - preview: number - properties: number - mainContent: number - timeline: number - } - export type PanelId = keyof PanelSizes - export const usePanelStore - -sounds-store.ts - export const useSoundsStore - -stickers-store.ts - export const useStickersStore - -text-properties-store.ts - export type TextPropertiesTab = "text" | "transform" - export interface TextPropertiesTabMeta { - value: TextPropertiesTab - label: string - } - export const TEXT_PROPERTIES_TABS: ReadonlyArray - export function isTextPropertiesTab(value: string) - export const useTextPropertiesStore - -timeline-store.ts - export const useTimelineStore - -## apps/web/src/types - -assets.ts - export type MediaType = "image" | "video" | "audio" - export interface MediaAsset extends Omit { - file: File - url?: string - } - -blog.ts - export type Post = { - id: string; - slug: string; - title: string; - content: string; - description: string; - ... - export type Pagination = { - limit: number; - currpage: number; - nextPage: number | null; - prevPage: number | null; ... - export type MarblePostList = { - posts: Post[]; - pagination: Pagination; - } - export type MarblePost = { - post: Post; - } - export type Tag = { - id: string; - name: string; - slug: string; - } - export type MarbleTag = { - tag: Tag; - } - export type MarbleTagList = { - tags: Tag[]; - pagination: Pagination; - } - export type Category = { - id: string; - name: string; - slug: string; - } - export type MarbleCategory = { - category: Category; - } - export type MarbleCategoryList = { - categories: Category[]; - pagination: Pagination; - } - export type Author = { - id: string; - name: string; - image: string; - } - export type MarbleAuthor = { - author: Author; - } - export type MarbleAuthorList = { - authors: Author[]; - pagination: Pagination; - } - -drag.ts - export interface MediaDragData extends BaseDragData { - type: "media" - mediaType: "image" | "video" | "audio" - } - export interface TextDragData extends BaseDragData { - type: "text" - content: string - } - export interface StickerDragData extends BaseDragData { - type: "sticker" - iconName: string - } - export type TimelineDragData = MediaDragData | TextDragData | StickerDragData - -editor.ts - export type TPlatformLayout = "tiktok" - -export.ts - export const EXPORT_QUALITY_VALUES - export const EXPORT_FORMAT_VALUES - export type ExportFormat = (typeof EXPORT_FORMAT_VALUES)[number] - export type ExportQuality = (typeof EXPORT_QUALITY_VALUES)[number] - export interface ExportOptions { - format: ExportFormat - quality: ExportQuality - fps?: number - includeAudio?: boolean - onProgress?: ({ progress }: { progress: number }) => void - onCancel?: () => boolean - } - export interface ExportResult { - success: boolean - buffer?: ArrayBuffer - error?: string - cancelled?: boolean - } - -keybinding.ts - export type ModifierKeys = | "ctrl" - | "alt" - | "shift" - | "ctrl+shift" - | "alt+shift" - | "ctrl+alt" - | "ctrl+alt+shift" - export type Key = | "a" - | "b" - | "c" - | "d" - | "e" - | "f" - | "g" - | "h" - | "i" - | "j" - | "k" - | "l" - |... - export type ModifierBasedShortcutKey = `${ModifierKeys}+${Key}` - export type SingleCharacterShortcutKey = `${Key}` - export type ShortcutKey = ModifierBasedShortcutKey | SingleCharacterShortcutKey - export type KeybindingConfig = { - [key in ShortcutKey]?: TActionWithOptionalArgs; - } - -project.ts - export type TBackground = | { - type: "color"; - color: string; - } - | { - type: "blur"; - blurIntensity: number; - } - export interface TCanvasSize { - width: number - height: number - } - export interface TProjectMetadata { - id: string - name: string - thumbnail?: string - createdAt: Date - updatedAt: Date - } - export interface TProjectSettings { - fps: number - canvasSize: TCanvasSize - originalCanvasSize?: TCanvasSize | null - background: TBackground - } - export interface TProject { - metadata: TProjectMetadata - scenes: TScene[] - currentSceneId: string - settings: TProjectSettings - version: number - } - -sounds.ts - export interface SoundEffect { - id: number - name: string - description: string - url: string - previewUrl?: string - downloadUrl?: string - duration: number - filesize: number - type: string - channels: number - bitrate: number - bitdepth: number - samplerate: number - username: string - tags: string[] - license: string - created: string - downloads: number - rating: number - ratingCount: number - } - export interface SavedSound { - id: number - name: string - username: string - previewUrl?: string - downloadUrl?: string - duration: number - tags: string[] - license: string - savedAt: string - } - export interface SavedSoundsData { - sounds: SavedSound[] - lastModified: string - } - -stickers.ts - export type StickerCategory = (typeof STICKER_CATEGORIES)[number] - -time.ts - export type TTimeCode = "MM:SS" | "HH:MM:SS" | "HH:MM:SS:CS" | "HH:MM:SS:FF" - -timeline.ts - export interface TScene { - id: string - name: string - isMain: boolean - tracks: TimelineTrack[] - bookmarks: number[] - createdAt: Date - updatedAt: Date - } - export type TrackType = "video" | "text" | "audio" | "sticker" - export interface VideoTrack extends BaseTrack { - type: "video" - elements: (VideoElement | ImageElement)[] - isMain: boolean - muted: boolean - hidden: boolean - } - export interface TextTrack extends BaseTrack { - type: "text" - elements: TextElement[] - hidden: boolean - } - export interface AudioTrack extends BaseTrack { - type: "audio" - elements: AudioElement[] - muted: boolean - } - export interface StickerTrack extends BaseTrack { - type: "sticker" - elements: StickerElement[] - hidden: boolean - } - export type TimelineTrack = VideoTrack | TextTrack | AudioTrack | StickerTrack - export interface Transform { - scale: number - position: { - x: number; - y: number; - } - rotate: number - } - export interface UploadAudioElement extends BaseAudioElement { - sourceType: "upload" - mediaId: string - } - export interface LibraryAudioElement extends BaseAudioElement { - sourceType: "library" - sourceUrl: string - } - export type AudioElement = UploadAudioElement | LibraryAudioElement - export interface VideoElement extends BaseTimelineElement { - type: "video" - mediaId: string - muted?: boolean - hidden?: boolean - transform: Transform - opacity: number - } - export interface ImageElement extends BaseTimelineElement { - type: "image" - mediaId: string - hidden?: boolean - transform: Transform - opacity: number - } - export interface TextElement extends BaseTimelineElement { - type: "text" - content: string - fontSize: number - fontFamily: string - color: string - backgroundColor: string - textAlign: "left" | "center" | "right" - fontWeight: "normal" | "bold" - fontStyle: "normal" | "italic" - textDecoration: "none" | "underline" | "line-through" - hidden?: boolean - transform: Transform - opacity: number - } - export interface StickerElement extends BaseTimelineElement { - type: "sticker" - iconName: string - hidden?: boolean - transform: Transform - opacity: number - color?: string - } - export type TimelineElement = | AudioElement - | VideoElement - | ImageElement - | TextElement - | StickerElement - export type ElementType = TimelineElement["type"] - export type CreateUploadAudioElement = Omit - export type CreateLibraryAudioElement = Omit - export type CreateAudioElement = | CreateUploadAudioElement - | CreateLibraryAudioElement - export type CreateVideoElement = Omit - export type CreateImageElement = Omit - export type CreateTextElement = Omit - export type CreateStickerElement = Omit - export type CreateTimelineElement = | CreateAudioElement - | CreateVideoElement - | CreateImageElement - | CreateTextElement - | Crea... - export interface ElementDragState { - isDragging: boolean - elementId: string | null - trackId: string | null - startMouseX: number - startMouseY: number - startElementTime: number - clickOffsetTime: number - currentTime: number - currentMouseY: number - } - export interface DropTarget { - trackIndex: number - isNewTrack: boolean - insertPosition: "above" | "below" | null - xPosition: number - } - export interface ComputeDropTargetParams { - elementType: ElementType - mouseX: number - mouseY: number - tracks: TimelineTrack[] - playheadTime: number - isExternalDrop: boolean - elementDuration: number - pixelsPerSecond: number - zoomLevel: number - verticalDragDirection?: "up" | "down" | null - startTimeOverride?: number - excludeElementId?: string - } - export interface ClipboardItem { - trackId: string - trackType: TrackType - element: CreateTimelineElement - } - -transcription.ts - export interface TranscriptionSegment { - text: string - start: number - end: number - } - export interface TranscriptionResult { - text: string - segments: TranscriptionSegment[] - language: string - } - export type TranscriptionStatus = | "idle" - | "loading-model" - | "transcribing" - | "complete" - | "error" - export interface TranscriptionProgress { - status: TranscriptionStatus - progress: number - message?: string - } - export type TranscriptionModelId = | "whisper-tiny" - | "whisper-small" - | "whisper-medium" - | "whisper-large-v3-turbo" - export interface TranscriptionModel { - id: TranscriptionModelId - name: string - huggingFaceId: string - description: string - } - export interface CaptionChunk { - text: string - startTime: number - duration: number - } - -## apps/web/src/utils - -geometry.ts - export function dimensionToAspectRatio({ - width, - height, - }: { - width: number; - height: number; - }): string - -math.ts - export function clamp({ - value, - min, - max, - }: { - value: number; - min: number; - max: number; - }): number - -platform.ts - export function getPlatformSpecialKey(): string - export function getPlatformAlternateKey(): string - export function isAppleDevice(): boolean - -ui.ts - export function cn(...inputs: ClassValue[]): string - -## packages/ui/src/icons - -index.tsx - export function GoogleIcon({ className }: { className?: string }) - export function GithubIcon({ className }: { className?: string }) - export function VercelIcon({ className }: { className?: string }) - export function BackgroundIcon({ className }: { className?: string }) - export function MarbleIcon({ - className = "", - size = 32, - }: { - className?: string; - size?: number; - }) - export function DataBuddyIcon({ - className = "", - size = 32, - }: { - className?: string; - size?: number; - }) - export function SocialsIcon({ - className = "", - size = 32, - }: { - className?: string; - size?: number; - }) - export function TransitionUpIcon({ - className = "", - size = 16, - }: { - className?: string; - size?: number; - }) - export function MenuIcon({ - className = "", - size = 16, - }: { - className?: string; - size?: number; - }) - -``` - ---- - -*Generated and maintained by [Twiggy](https://github.com/twiggy-tools/Twiggy)* +--- +alwaysApply: true +--- + +# video-editor-oss Codebase Index + +**This file provides an index of exported functions, types, interfaces, classes, and constants in your codebase.** + +Updated in real-time by Twiggy. Use this to discover existing utilities and avoid duplicating code. + +## How to Use + +When implementing new features: +1. Check if similar functionality already exists +2. Reuse existing types and utilities +3. Understand the API surface of your codebase + +```typescript +## apps/web/src/constants + +captions-constants.ts + export const LANGUAGES: Language[] + +editor-constants.ts + export const PLATFORM_LAYOUTS: Record + export const PANEL_CONFIG + +export-constants.ts + export const DEFAULT_EXPORT_OPTIONS + export const EXPORT_MIME_TYPES + +font-constants.ts + export interface FontOption { + value: string + label: string + category: "system" | "google" | "custom" + weights?: number[] + hasClassName?: boolean + } + export const FONT_OPTIONS: FontOption[] + export const DEFAULT_FONT + export type FontFamily = (typeof FONT_OPTIONS)[number]["value"] + export const getFontByValue = (value: string): FontOption | undefined => ... + export const getGoogleFonts = (): FontOption[] => ... + export const getSystemFonts = (): FontOption[] => ... + +project-constants.ts + export const DEFAULT_CANVAS_PRESETS: TCanvasSize[] + export const FPS_PRESETS + export const BLUR_INTENSITY_PRESETS: { label: string; value: number }[] + export const DEFAULT_CANVAS_SIZE: TCanvasSize + export const DEFAULT_FPS + export const DEFAULT_BLUR_INTENSITY + export const DEFAULT_COLOR + +site-constants.ts + export const SITE_URL + export const SITE_INFO + export type ExternalTool = { + name: string; + description: string; + url: string; + icon: React.ElementType; + } + export const EXTERNAL_TOOLS: ExternalTool[] + export const DEFAULT_LOGO_URL + export const SOCIAL_LINKS + export type Sponsor = { + name: string; + url: string; + logo: string; + description: string; + } + export const SPONSORS: Sponsor[] + +stickers-constants.ts + export const STICKER_CATEGORIES + export const STICKER_CATEGORY_CONFIG: Record< + (typeof STICKER_CATEGORIES)[number], + string | undefined + > + +text-constants.ts + export const DEFAULT_TEXT_ELEMENT: Omit + +timeline-constants.tsx + export const TRACK_COLORS: Record + export const TRACK_HEIGHTS: Record + export const TRACK_GAP + export const TIMELINE_CONSTANTS + export const TRACK_ICONS: Record + +transcription-constants.ts + export const TRANSCRIPTION_MODELS: TranscriptionModel[] + export const DEFAULT_TRANSCRIPTION_MODEL: TranscriptionModelId + export const DEFAULT_CHUNK_LENGTH_SECONDS + export const DEFAULT_STRIDE_SECONDS + export const DEFAULT_WORDS_PER_CAPTION + export const MIN_CAPTION_DURATION_SECONDS + +## apps/web/src/core + +index.ts + export class EditorCore { + instance: EditorCore | null + command: CommandManager + playback: PlaybackManager + timeline: TimelineManager + scenes: ScenesManager + project: ProjectManager + media: MediaManager + renderer: RendererManager + save: SaveManager + static getInstance(): EditorCore + static reset(): void + } + +## apps/web/src/hooks + +use-editor.ts + export function useEditor(): EditorCore + +use-file-upload.ts + export function useFileUpload({ + accept, + multiple, + onFilesSelected, + }: UseFileUploadOptions = {}) + +use-infinite-scroll.ts + export function useInfiniteScroll({ + onLoadMore, + hasMore, + isLoading, + threshold = 200, + enabled = true, + }: UseInfiniteScrollOptions) + +use-keybindings.ts + export function useKeybindingsListener() + export function useKeybindingDisabler() + export const bindings + +use-keyboard-shortcuts-help.ts + export interface KeyboardShortcut { + id: string + keys: string[] + description: string + category: string + action: TAction + icon?: React.ReactNode + } + export function useKeyboardShortcutsHelp() + +use-raf-loop.ts + export function useRafLoop(callback: ({ time }: { time: number }) => void) + +use-reveal-item.ts + export function useRevealItem( + highlightId: string | null, + onClearHighlight: () => void, + highlightDuration = 1000, + ) + +use-sound-search.ts + export function useSoundSearch({ + query, + commercialOnly, + }: { + query: string; + commercialOnly: boolean; + }) + +## apps/web/src/hooks/actions + +use-action-handler.ts + export function useActionHandler( + action: A, + handler: TActionFunc, + isActive: TActionHandlerOptions, + ) + +use-editor-actions.ts + export function useEditorActions() + +## apps/web/src/hooks/timeline + +use-edge-auto-scroll.ts + export function useEdgeAutoScroll({ + isActive, + getMouseClientX, + rulerScrollRef, + tracksScrollRef, + contentWidth, + edgeThreshold = 100, + maxScrollSpeed = 15, + }: UseEdgeAutoScrollParams): void + +use-scroll-sync.ts + export function useScrollSync({ + rulerScrollRef, + tracksScrollRef, + trackLabelsScrollRef, + bookmarksScrollRef, + }: UseScrollSyncProps) + +use-selection-box.ts + export function useSelectionBox({ + containerRef, + onSelectionComplete, + isEnabled = true, + tracksScrollRef, + zoomLevel, + }: UseSelectionBoxProps) + +use-snap-indicator-position.ts + export function useSnapIndicatorPosition({ + snapPoint, + zoomLevel, + tracks, + timelineRef, + trackLabelsRef, + tracksScrollRef, + }: UseSnapIndicatorPositionParams): SnapIndicatorPosition + +use-timeline-drag-drop.ts + export function useTimelineDragDrop({ + containerRef, + zoomLevel, + isSnappingEnabled = true, + }: UseTimelineDragDropProps) + +use-timeline-playhead.ts + export function useTimelinePlayhead({ + zoomLevel, + rulerRef, + rulerScrollRef, + tracksScrollRef, + playheadRef, + }: UseTimelinePlayheadProps) + +use-timeline-seek.ts + export function useTimelineSeek({ + playheadRef, + trackLabelsRef, + rulerScrollRef, + tracksScrollRef, + zoomLevel, + duration, + isSelecting, + clearSelectedElements, + seek, + }: UseTimelineSeekProps) + +use-timeline-snapping.ts + export interface SnapPoint { + time: number + type: "element-start" | "element-end" | "playhead" + elementId?: string + trackId?: string + } + export interface SnapResult { + snappedTime: number + snapPoint: SnapPoint | null + snapDistance: number + } + export interface UseTimelineSnappingOptions { + snapThreshold?: number + enableElementSnapping?: boolean + enablePlayheadSnapping?: boolean + } + export function useTimelineSnapping({ + snapThreshold = 10, + enableElementSnapping = true, + enablePlayheadSnapping = true, + }: UseTimelineSnappingOptions = {}) + +use-timeline-zoom.ts + export function useTimelineZoom({ + containerRef, + isInTimeline = false, + minZoom = TIMELINE_CONSTANTS.ZOOM_MIN, + }: UseTimelineZoomProps): UseTimelineZoomReturn + +## apps/web/src/hooks/timeline/element + +use-element-interaction.ts + export function useElementInteraction({ + zoomLevel, + timelineRef, + tracksContainerRef, + tracksScrollRef, + snappingEnabled, + onSnapPointChange, + }: UseElementInteractionProps) + +use-element-resize.ts + export interface ResizeState { + elementId: string + side: "left" | "right" + startX: number + initialTrimStart: number + initialTrimEnd: number + initialStartTime: number + initialDuration: number + } + export function useTimelineElementResize({ + element, + track, + zoomLevel, + onSnapPointChange, + onResizeStateChange, + }: UseTimelineElementResizeProps) + +use-element-selection.ts + export function useElementSelection() + +## apps/web/src/lib + +drag-data.ts + export function setDragData({ + dataTransfer, + dragData, + }: { + dataTransfer: DataTransfer; + dragData: TimelineDragData; + }): void + export function getDragData({ + dataTransfer, + }: { + dataTransfer: DataTransfer; + }): TimelineDragData | null + export function hasDragData({ + dataTransfer, + }: { + dataTransfer: DataTransfer; + }): boolean + export function clearDragData(): void + +export.ts + export function getExportMimeType({ + format, + }: { + format: ExportFormat; + }): string + export function getExportFileExtension({ + format, + }: { + format: ExportFormat; + }): string + +iconify-api.ts + export const ICONIFY_HOSTS + export interface IconSet { + prefix: string + name: string + total: number + author?: { + name: string; + url?: string; + } + license?: { + title: string; + spdx?: string; + url?: string; + } + samples?: string[] + category?: string + palette?: boolean + } + export interface IconSearchResult { + icons: string[] + total: number + limit: number + start: number + collections: Record + } + export interface CollectionInfo { + prefix: string + total: number + title?: string + uncategorized?: string[] + categories?: Record + hidden?: string[] + aliases?: Record + } + export function getCollections( + category?: string, + ): Promise> + export function getCollection( + prefix: string, + ): Promise + export function searchIcons( + query: string, + limit: number = 64, + prefixes?: string[], + category?: string, + ): Promise + export function buildIconSvgUrl( + host: string, + iconName: string, + params?: { + color?: string; + width?: number; + height?: number; + flip?: "horizontal" | "vertical" | "horizontal,vertical"; + rotate?: number | string; + }, + ): string + export function getIconSvgUrl( + iconName: string, + params?: Parameters[2], + ): string + export function downloadSvgAsText( + iconName: string, + params?: Parameters[1], + ): Promise + export function svgToFile(svgText: string, fileName: string): File + export const POPULAR_COLLECTIONS + export function getCategoriesFromCollections( + collections: Record, + ): string[] + +rate-limit.ts + export const baseRateLimit + export function checkRateLimit({ request }: { request: Request }) + +scenes.ts + export function getMainScene({ scenes }: { scenes: TScene[] }): TScene | null + export function ensureMainScene({ scenes }: { scenes: TScene[] }): TScene[] + export function buildDefaultScene({ + name, + isMain, + }: { + name: string; + isMain: boolean; + }): TScene + export function canDeleteScene({ scene }: { scene: TScene }): { + canDelete: boolean; + reason?: string; + } + export function getFallbackSceneAfterDelete({ + scenes, + deletedSceneId, + currentSceneId, + }: { + scenes: TScene[]; + deletedSceneId: string; + currentSceneId: string | null; + }): TScene | null + export function findCurrentScene({ + scenes, + currentSceneId, + }: { + scenes: TScene[]; + currentSceneId: string; + }): TScene | null + export function updateSceneInArray({ + scenes, + sceneId, + updates, + }: { + scenes: TScene[]; + sceneId: string; + updates: Partial; + }): TScene[] + +time.ts + export function roundToFrame({ + time, + fps, + }: { + time: number; + fps: number; + }): number + export function formatTimeCode({ + timeInSeconds, + format = "HH:MM:SS:CS", + fps, + }: { + timeInSeconds: number; + format?: TTimeCode; + fps?: number; + }): string + export function parseTimeCode({ + timeCode, + format = "HH:MM:SS:CS", + fps, + }: { + timeCode: string; + format?: TTimeCode; + fps: number; + }): number | null + export function guessTimeCodeFormat({ + timeCode, + }: { + timeCode: string; + }): TTimeCode | null + export function timeToFrame({ + time, + fps, + }: { + time: number; + fps: number; + }): number + export function frameToTime({ + frame, + fps, + }: { + frame: number; + fps: number; + }): number + export function snapTimeToFrame({ + time, + fps, + }: { + time: number; + fps: number; + }): number + export function getSnappedSeekTime({ + rawTime, + duration, + fps, + }: { + rawTime: number; + duration: number; + fps: number; + }): number + +## apps/web/src/lib/actions + +definitions.ts + export type TActionCategory = | "playback" + | "navigation" + | "editing" + | "selection" + | "history" + | "timeline" + | "con... + export interface TActionDefinition { + description: string + category: TActionCategory + defaultShortcuts?: ShortcutKey[] + args?: Record + } + export const ACTIONS + export type TAction = keyof typeof ACTIONS + export function getActionDefinition(action: TAction): TActionDefinition + export function getDefaultShortcuts(): Record + +registry.ts + export function bindAction( + action: A, + handler: TActionFunc, + ) + export function unbindAction( + action: A, + handler: TActionFunc, + ) + export const invokeAction = ( + action: A, + args?: TArgOfAction, + trigger?: TInvocationTrigger, + ) => ... + +types.ts + export type TActionArgsMap = { + "seek-forward": { seconds: number } | undefined; + "seek-backward": { seconds: number } | und... + export type TActionWithArgs = keyof TActionArgsMap + export type TActionWithOptionalArgs = | TActionWithNoArgs + | TKeysWithValueUndefined + export type TActionWithNoArgs = Exclude + export type TArgOfAction = A extends TActionWithArgs + ? TActionArgsMap[A] + : undefined + export type TActionFunc = A extends TActionWithArgs + ? (arg: TArgOfAction, trigger?: TInvocationTrigger) => void + : (_... + export type TInvocationTrigger = "keypress" | "mouseclick" + export type TBoundActionList = { + [A in TAction]?: Array>; + } + export type TActionHandlerOptions = | MutableRefObject + | boolean + | undefined + +## apps/web/src/lib/auth + +server.ts + export const auth + export type Auth = typeof auth + +## apps/web/src/lib/blog + +query.ts + export function getPosts() + export function getTags() + export function getSinglePost({ slug }: { slug: string }) + export function getCategories() + export function getAuthors() + export function processHtmlContent({ + html, + }: { + html: string; + }): Promise + +## apps/web/src/lib/db + +index.ts + export const db + +schema.ts + export const users + export const sessions + export const accounts + export const verifications + +## apps/web/src/lib/gradients + +canvas.ts + export function drawCssBackground({ + ctx, + width, + height, + css, + }: { + ctx: CanvasRenderingContext2D | OffscreenCanvasRenderingContext2D; + width: number; + height: number; + css: string; + }): void + +parser.ts + export type GradientOrientation = LinearOrientation | Array + export type Color = | { type: "hex"; value: string } + | { type: "literal"; value: string } + | { type: "rgb"; value:... + export type ColorStop = Color & { length?: Distance } + export type GradientAst = { + type: GradientType; + orientation: GradientOrientation | undefined; + colorStops: Array => ... + export const GradientParser + +## apps/web/src/lib/media + +audio.ts + export type CollectedAudioElement = Omit< + AudioElement, + "type" | "mediaId" | "volume" | "id" | "name" | "sourceType" | "sourceUrl... + export function createAudioContext(): AudioContext + export interface DecodedAudio { + samples: Float32Array + sampleRate: number + } + export function decodeAudioToFloat32({ + audioBlob, + }: { + audioBlob: Blob; + }): Promise + export function collectAudioElements({ + tracks, + mediaAssets, + audioContext, + }: { + tracks: TimelineTrack[]; + mediaAssets: MediaAsset[]; + audioContext: AudioContext; + }): Promise + export function collectAudioMixSources({ + tracks, + mediaAssets, + }: { + tracks: TimelineTrack[]; + mediaAssets: MediaAsset[]; + }): Promise + export function createTimelineAudioBuffer({ + tracks, + mediaAssets, + duration, + sampleRate = 44100, + }: { + tracks: TimelineTrack[]; + mediaAssets: MediaAsset[]; + duration: number; + sampleRate?: number; + }): Promise + +media-utils.ts + export const SUPPORTS_AUDIO: readonly MediaType[] + export function mediaSupportsAudio({ + media, + }: { + media: MediaAsset | null | undefined; + }): boolean + export const getMediaTypeFromFile = ({ + file, + }: { + file: File; + }): MediaType | null => ... + +mediabunny.ts + export function getVideoInfo({ + videoFile, + }: { + videoFile: File; + }): Promise<{ + duration: number; + width: number; + height: number; + fps: number; + }> + export const extractTimelineAudio = ({ + tracks, + mediaAssets, + totalDuration, + onProgress, + }: { + tracks: TimelineTrack[]; + mediaAssets: MediaAsset[]; + totalDuration: number; + onProgress?: (progress: number) => void; + }): Promise => ... + +processing.ts + export interface ProcessedMediaAsset extends Omit + export function generateThumbnail({ + videoFile, + timeInSeconds, + }: { + videoFile: File; + timeInSeconds: number; + }): Promise + export function processMediaAssets({ + files, + onProgress, + }: { + files: FileList | File[]; + onProgress?: ({ progress }: { progress: number }) => void; + }): Promise + +## apps/web/src/lib/timeline + +bookmarks.ts + export function findBookmarkIndex({ + bookmarks, + frameTime, + }: { + bookmarks: number[]; + frameTime: number; + }): number + export function isBookmarkAtTime({ + bookmarks, + frameTime, + }: { + bookmarks: number[]; + frameTime: number; + }): boolean + export function toggleBookmarkInArray({ + bookmarks, + frameTime, + }: { + bookmarks: number[]; + frameTime: number; + }): number[] + export function removeBookmarkFromArray({ + bookmarks, + frameTime, + }: { + bookmarks: number[]; + frameTime: number; + }): number[] + export function getFrameTime({ + time, + fps, + }: { + time: number; + fps: number; + }): number + +drop-utils.ts + export function computeDropTarget({ + elementType, + mouseX, + mouseY, + tracks, + playheadTime, + isExternalDrop, + elementDuration, + pixelsPerSecond, + zoomLevel, + verticalDragDirection, + startTimeOverride, + excludeElementId, + }: ComputeDropTargetParams): DropTarget + export function getDropLineY({ + dropTarget, + tracks, + }: { + dropTarget: DropTarget; + tracks: TimelineTrack[]; + }): number + +element-utils.ts + export function canElementHaveAudio( + element: TimelineElement, + ) + export function canElementBeHidden( + element: TimelineElement, + ) + export function hasMediaId( + element: TimelineElement, + ) + export function requiresMediaId({ + element, + }: { + element: CreateTimelineElement; + }): boolean + export function checkElementOverlaps({ + elements, + }: { + elements: TimelineElement[]; + }): boolean + export function resolveElementOverlaps({ + elements, + }: { + elements: TimelineElement[]; + }): TimelineElement[] + export function wouldElementOverlap({ + elements, + startTime, + endTime, + excludeElementId, + }: { + elements: TimelineElement[]; + startTime: number; + endTime: number; + excludeElementId?: string; + }): boolean + export function buildTextElement({ + raw, + startTime, + }: { + raw: Partial>; + startTime: number; + }): CreateTimelineElement + export function buildStickerElement({ + iconName, + startTime, + }: { + iconName: string; + startTime: number; + }): CreateStickerElement + export function buildUploadAudioElement({ + mediaId, + name, + duration, + startTime, + buffer, + }: { + mediaId: string; + name: string; + duration: number; + startTime: number; + buffer?: AudioBuffer; + }): CreateUploadAudioElement + export function buildLibraryAudioElement({ + sourceUrl, + name, + duration, + startTime, + buffer, + }: { + sourceUrl: string; + name: string; + duration: number; + startTime: number; + buffer?: AudioBuffer; + }): CreateLibraryAudioElement + +index.ts + export function calculateTotalDuration({ + tracks, + }: { + tracks: TimelineTrack[]; + }): number + +track-utils.ts + export function canTracktHaveAudio( + track: TimelineTrack, + ) + export function canTrackBeHidden( + track: TimelineTrack, + ) + export function getTrackColor({ type }: { type: TrackType }) + export function getTrackClasses({ type }: { type: TrackType }) + export function getTrackHeight({ type }: { type: TrackType }): number + export function getCumulativeHeightBefore({ + tracks, + trackIndex, + }: { + tracks: Array<{ type: TrackType }>; + trackIndex: number; + }): number + export function getTotalTracksHeight({ + tracks, + }: { + tracks: Array<{ type: TrackType }>; + }): number + export function buildEmptyTrack({ + id, + type, + name, + }: { + id: string; + type: TrackType; + name?: string; + }): TimelineTrack + export function getDefaultInsertIndexForTrack({ + tracks, + trackType, + }: { + tracks: TimelineTrack[]; + trackType: TrackType; + }): number + export function getHighestInsertIndexForTrack({ + tracks, + trackType, + }: { + tracks: TimelineTrack[]; + trackType: TrackType; + }): number + export function isMainTrack(track: TimelineTrack) + export function getMainTrack({ + tracks, + }: { + tracks: TimelineTrack[]; + }): TimelineTrack | null + export function ensureMainTrack({ + tracks, + }: { + tracks: TimelineTrack[]; + }): TimelineTrack[] + export function canElementGoOnTrack({ + elementType, + trackType, + }: { + elementType: ElementType; + trackType: TrackType; + }): boolean + export function validateElementTrackCompatibility({ + element, + track, + }: { + element: { type: ElementType }; + track: { type: TrackType }; + }): { isValid: boolean; errorMessage?: string } + +zoom-utils.ts + export function getTimelineZoomMin({ + duration, + containerWidth, + }: { + duration: number; + containerWidth: number | null | undefined; + }): number + +## apps/web/src/lib/transcription + +caption.ts + export function buildCaptionChunks({ + segments, + wordsPerChunk = DEFAULT_WORDS_PER_CAPTION, + minDuration = MIN_CAPTION_DURATION_SECONDS, + }: { + segments: TranscriptionSegment[]; + wordsPerChunk?: number; + minDuration?: number; + }): CaptionChunk[] + +## apps/web/src/services/media + +video-cache.ts + export class VideoCache { + sinks + initPromises + async getFrameAt({ + mediaId, + file, + time, + }: { + mediaId: string; + file: File; + time: number; + }): Promise + clearVideo({ mediaId }: { mediaId: string }): void + clearAll(): void + getStats() + } + export const videoCache + +## apps/web/src/services/renderer + +canvas-renderer.ts + export type CanvasRendererParams = { + width: number; + height: number; + fps: number; + } + export class CanvasRenderer { + canvas: OffscreenCanvas | HTMLCanvasElement + context: OffscreenCanvasRenderingContext2D | CanvasRenderingContext2D + width: number + height: number + fps: number + constructor({ width, height, fps }: CanvasRendererParams) + setSize({ width, height }: { width: number; height: number }) + async render({ node, time }: { node: BaseNode; time: number }) + async renderToCanvas({ + node, + time, + targetCanvas, + }: { + node: BaseNode; + time: number; + targetCanvas: HTMLCanvasElement; + }) + } + +scene-builder.ts + export type BuildSceneParams = { + canvasSize: TCanvasSize; + tracks: TimelineTrack[]; + mediaAssets: MediaAsset[]; + duration: ... + export function buildScene(params: BuildSceneParams) + +scene-exporter.ts + export type ExportFormat = "mp4" | "webm" + export type ExportQuality = "low" | "medium" | "high" | "very_high" + export type SceneExporterEvents = { + progress: [progress: number]; + complete: [buffer: ArrayBuffer]; + error: [error: Error]; + c... + export class SceneExporter extends EventEmitter { + renderer: CanvasRenderer + format: ExportFormat + quality: ExportQuality + includeAudio: boolean + audioBuffer: AudioBuffer + cancelled + constructor(params: ExportParams) + cancel() + async export(rootNode: RootNode) + } + +## apps/web/src/services/storage + +indexeddb-adapter.ts + export class IndexedDBAdapter implements StorageAdapter { + dbName: string + storeName: string + version: number + constructor(dbName: string, storeName: string, version = 1) + async get(key: string): Promise + async set(key: string, value: T): Promise + async remove(key: string): Promise + async list(): Promise + async getAll(): Promise + async clear(): Promise + } + +opfs-adapter.ts + export class OPFSAdapter implements StorageAdapter { + directoryName: string + constructor(directoryName = "media") + async get(key: string): Promise + async set(key: string, file: File): Promise + async remove(key: string): Promise + async list(): Promise + async clear(): Promise + static isSupported(): boolean + } + +storage-service.ts + export const storageService + +types.ts + export interface StorageAdapter { + get(key: string): Promise + set(key: string, value: T): Promise + remove(key: string): Promise + list(): Promise + clear(): Promise + } + export interface MediaAssetData { + id: string + name: string + type: MediaType + size: number + lastModified: number + width?: number + height?: number + duration?: number + fps?: number + ephemeral?: boolean + thumbnailUrl?: string + sourceStickerIconName?: string + } + export type SerializedScene = Omit & { + createdAt: string; + updatedAt: string; + } + export type SerializedProjectMetadata = Omit< + TProjectMetadata, + "createdAt" | "updatedAt" + > & { + createdAt: string; + updatedAt: str... + export type SerializedProject = Omit & { + metadata: SerializedProjectMetadata; + scenes: Serial... + export interface StorageConfig { + projectsDb: string + mediaDb: string + savedSoundsDb: string + version: number + } + +## apps/web/src/services/transcription + +index.ts + export const transcriptionService + +worker.ts + export type WorkerMessage = | { type: "init"; modelId: string } + | { type: "transcribe"; audio: Float32Array; language: stri... + export type WorkerResponse = | { type: "init-progress"; progress: number } + | { type: "init-complete" } + | { type: "init-err... + +## apps/web/src/stores + +assets-panel-store.ts + export const TAB_KEYS + export type Tab = (typeof TAB_KEYS)[number] + export const tabs + export const useAssetsPanelStore + +editor-store.ts + export const useEditorStore + +keybindings-store.ts + export const defaultKeybindings: KeybindingConfig + export interface KeybindingConflict { + key: ShortcutKey + existingAction: TActionWithOptionalArgs + newAction: TActionWithOptionalArgs + } + export const useKeybindingsStore + +panel-store.ts + export interface PanelSizes { + tools: number + preview: number + properties: number + mainContent: number + timeline: number + } + export type PanelId = keyof PanelSizes + export const usePanelStore + +sounds-store.ts + export const useSoundsStore + +stickers-store.ts + export const useStickersStore + +text-properties-store.ts + export type TextPropertiesTab = "text" | "transform" + export interface TextPropertiesTabMeta { + value: TextPropertiesTab + label: string + } + export const TEXT_PROPERTIES_TABS: ReadonlyArray + export function isTextPropertiesTab(value: string) + export const useTextPropertiesStore + +timeline-store.ts + export const useTimelineStore + +## apps/web/src/types + +assets.ts + export type MediaType = "image" | "video" | "audio" + export interface MediaAsset extends Omit< + MediaAssetData, + "size" | "lastModified" + > { + file: File + url?: string + } + +blog.ts + export type Post = { + id: string; + slug: string; + title: string; + content: string; + description: string; + cove... + export type Pagination = { + limit: number; + currpage: number; + nextPage: number | null; + prevPage: number | null; + to... + export type MarblePostList = { + posts: Post[]; + pagination: Pagination; + } + export type MarblePost = { + post: Post; + } + export type Tag = { + id: string; + name: string; + slug: string; + } + export type MarbleTag = { + tag: Tag; + } + export type MarbleTagList = { + tags: Tag[]; + pagination: Pagination; + } + export type Category = { + id: string; + name: string; + slug: string; + } + export type MarbleCategory = { + category: Category; + } + export type MarbleCategoryList = { + categories: Category[]; + pagination: Pagination; + } + export type Author = { + id: string; + name: string; + image: string; + } + export type MarbleAuthor = { + author: Author; + } + export type MarbleAuthorList = { + authors: Author[]; + pagination: Pagination; + } + +drag.ts + export interface MediaDragData extends BaseDragData { + type: "media" + mediaType: "image" | "video" | "audio" + } + export interface TextDragData extends BaseDragData { + type: "text" + content: string + } + export interface StickerDragData extends BaseDragData { + type: "sticker" + iconName: string + } + export type TimelineDragData = MediaDragData | TextDragData | StickerDragData + +editor.ts + export type TPlatformLayout = "tiktok" + +export.ts + export const EXPORT_QUALITY_VALUES + export const EXPORT_FORMAT_VALUES + export type ExportFormat = (typeof EXPORT_FORMAT_VALUES)[number] + export type ExportQuality = (typeof EXPORT_QUALITY_VALUES)[number] + export interface ExportOptions { + format: ExportFormat + quality: ExportQuality + fps?: number + includeAudio?: boolean + onProgress?: ({ progress }: { progress: number }) => void + onCancel?: () => boolean + } + export interface ExportResult { + success: boolean + buffer?: ArrayBuffer + error?: string + cancelled?: boolean + } + +keybinding.ts + export type ModifierKeys = | "ctrl" + | "alt" + | "shift" + | "ctrl+shift" + | "alt+shift" + | "ctrl+alt" + | "ctrl+alt+shift" + export type Key = | "a" + | "b" + | "c" + | "d" + | "e" + | "f" + | "g" + | "h" + | "i" + | "j" + | "k" + | "l" + |... + export type ModifierBasedShortcutKey = `${ModifierKeys}+${Key}` + export type SingleCharacterShortcutKey = `${Key}` + export type ShortcutKey = ModifierBasedShortcutKey | SingleCharacterShortcutKey + export type KeybindingConfig = { + [key in ShortcutKey]?: TActionWithOptionalArgs; + } + +project.ts + export type TBackground = | { + type: "color"; + color: string; + } + | { + type: "blur"; + blurIntensity... + export interface TCanvasSize { + width: number + height: number + } + export interface TProjectMetadata { + id: string + name: string + thumbnail?: string + createdAt: Date + updatedAt: Date + } + export interface TProjectSettings { + fps: number + canvasSize: TCanvasSize + originalCanvasSize?: TCanvasSize | null + background: TBackground + } + export interface TProject { + metadata: TProjectMetadata + scenes: TScene[] + currentSceneId: string + settings: TProjectSettings + version: number + } + +sounds.ts + export interface SoundEffect { + id: number + name: string + description: string + url: string + previewUrl?: string + downloadUrl?: string + duration: number + filesize: number + type: string + channels: number + bitrate: number + bitdepth: number + samplerate: number + username: string + tags: string[] + license: string + created: string + downloads: number + rating: number + ratingCount: number + } + export interface SavedSound { + id: number + name: string + username: string + previewUrl?: string + downloadUrl?: string + duration: number + tags: string[] + license: string + savedAt: string + } + export interface SavedSoundsData { + sounds: SavedSound[] + lastModified: string + } + +stickers.ts + export type StickerCategory = (typeof STICKER_CATEGORIES)[number] + +time.ts + export type TTimeCode = "MM:SS" | "HH:MM:SS" | "HH:MM:SS:CS" | "HH:MM:SS:FF" + +timeline.ts + export interface TScene { + id: string + name: string + isMain: boolean + tracks: TimelineTrack[] + bookmarks: number[] + createdAt: Date + updatedAt: Date + } + export type TrackType = "video" | "text" | "audio" | "sticker" + export interface VideoTrack extends BaseTrack { + type: "video" + elements: (VideoElement | ImageElement)[] + isMain: boolean + muted: boolean + hidden: boolean + } + export interface TextTrack extends BaseTrack { + type: "text" + elements: TextElement[] + hidden: boolean + } + export interface AudioTrack extends BaseTrack { + type: "audio" + elements: AudioElement[] + muted: boolean + } + export interface StickerTrack extends BaseTrack { + type: "sticker" + elements: StickerElement[] + hidden: boolean + } + export type TimelineTrack = VideoTrack | TextTrack | AudioTrack | StickerTrack + export interface Transform { + scale: number + position: { + x: number; + y: number; + } + rotate: number + } + export interface UploadAudioElement extends BaseAudioElement { + sourceType: "upload" + mediaId: string + } + export interface LibraryAudioElement extends BaseAudioElement { + sourceType: "library" + sourceUrl: string + } + export type AudioElement = UploadAudioElement | LibraryAudioElement + export interface VideoElement extends BaseTimelineElement { + type: "video" + mediaId: string + muted?: boolean + hidden?: boolean + transform: Transform + opacity: number + } + export interface ImageElement extends BaseTimelineElement { + type: "image" + mediaId: string + hidden?: boolean + transform: Transform + opacity: number + } + export interface TextElement extends BaseTimelineElement { + type: "text" + content: string + fontSize: number + fontFamily: string + color: string + backgroundColor: string + textAlign: "left" | "center" | "right" + fontWeight: "normal" | "bold" + fontStyle: "normal" | "italic" + textDecoration: "none" | "underline" | "line-through" + hidden?: boolean + transform: Transform + opacity: number + } + export interface StickerElement extends BaseTimelineElement { + type: "sticker" + iconName: string + hidden?: boolean + transform: Transform + opacity: number + color?: string + } + export type TimelineElement = | AudioElement + | VideoElement + | ImageElement + | TextElement + | StickerElement + export type ElementType = TimelineElement["type"] + export type CreateUploadAudioElement = Omit + export type CreateLibraryAudioElement = Omit + export type CreateAudioElement = | CreateUploadAudioElement + | CreateLibraryAudioElement + export type CreateVideoElement = Omit + export type CreateImageElement = Omit + export type CreateTextElement = Omit + export type CreateStickerElement = Omit + export type CreateTimelineElement = | CreateAudioElement + | CreateVideoElement + | CreateImageElement + | CreateTextElement + | Crea... + export interface ElementDragState { + isDragging: boolean + elementId: string | null + trackId: string | null + startMouseX: number + startMouseY: number + startElementTime: number + clickOffsetTime: number + currentTime: number + currentMouseY: number + } + export interface DropTarget { + trackIndex: number + isNewTrack: boolean + insertPosition: "above" | "below" | null + xPosition: number + } + export interface ComputeDropTargetParams { + elementType: ElementType + mouseX: number + mouseY: number + tracks: TimelineTrack[] + playheadTime: number + isExternalDrop: boolean + elementDuration: number + pixelsPerSecond: number + zoomLevel: number + verticalDragDirection?: "up" | "down" | null + startTimeOverride?: number + excludeElementId?: string + } + export interface ClipboardItem { + trackId: string + trackType: TrackType + element: CreateTimelineElement + } + +transcription.ts + export interface TranscriptionSegment { + text: string + start: number + end: number + } + export interface TranscriptionResult { + text: string + segments: TranscriptionSegment[] + language: string + } + export type TranscriptionStatus = | "idle" + | "loading-model" + | "transcribing" + | "complete" + | "error" + export interface TranscriptionProgress { + status: TranscriptionStatus + progress: number + message?: string + } + export type TranscriptionModelId = | "whisper-tiny" + | "whisper-small" + | "whisper-medium" + | "whisper-large-v3-turbo" + export interface TranscriptionModel { + id: TranscriptionModelId + name: string + huggingFaceId: string + description: string + } + export interface CaptionChunk { + text: string + startTime: number + duration: number + } + +## apps/web/src/utils + +browser.ts + export function isTypableDOMElement({ + element, + }: { + element: HTMLElement; + }): boolean + +date.ts + export function formatDate({ date }: { date: Date }): string + +geometry.ts + export function dimensionToAspectRatio({ + width, + height, + }: { + width: number; + height: number; + }): string + +id.ts + export function generateUUID(): string + +math.ts + export function clamp({ + value, + min, + max, + }: { + value: number; + min: number; + max: number; + }): number + +platform.ts + export function getPlatformSpecialKey(): string + export function getPlatformAlternateKey(): string + export function isAppleDevice(): boolean + +string-utils.ts + export function capitalizeFirstLetter({ string }: { string: string }) + export function uppercase({ string }: { string: string }) + +ui.ts + export function cn(...inputs: ClassValue[]): string + +## packages/ui/src/icons + +index.tsx + export function GoogleIcon({ className }: { className?: string }) + export function GithubIcon({ className }: { className?: string }) + export function VercelIcon({ className }: { className?: string }) + export function BackgroundIcon({ className }: { className?: string }) + export function MarbleIcon({ + className = "", + size = 32, + }: { + className?: string; + size?: number; + }) + export function DataBuddyIcon({ + className = "", + size = 32, + }: { + className?: string; + size?: number; + }) + export function SocialsIcon({ + className = "", + size = 32, + }: { + className?: string; + size?: number; + }) + export function TransitionUpIcon({ + className = "", + size = 16, + }: { + className?: string; + size?: number; + }) + export function MenuIcon({ + className = "", + size = 16, + }: { + className?: string; + size?: number; + }) + +``` + +--- + +*Generated and maintained by [Twiggy](https://github.com/twiggy-tools/Twiggy)* diff --git a/apps/web/.next/cache/.rscinfo b/apps/web/.next/cache/.rscinfo deleted file mode 100644 index 978ef2f4..00000000 --- a/apps/web/.next/cache/.rscinfo +++ /dev/null @@ -1 +0,0 @@ -{"encryption.key":"6csmILMKXW5vUdcKm142jEES+lg717F52EbuARHN44o=","encryption.expire_at":1769323998372} \ No newline at end of file diff --git a/apps/web/.next/package.json b/apps/web/.next/package.json deleted file mode 100644 index 7156107e..00000000 --- a/apps/web/.next/package.json +++ /dev/null @@ -1 +0,0 @@ -{"type": "commonjs"} \ No newline at end of file diff --git a/apps/web/.next/server/app-paths-manifest.json b/apps/web/.next/server/app-paths-manifest.json deleted file mode 100644 index 9c46bc8b..00000000 --- a/apps/web/.next/server/app-paths-manifest.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "/editor/[project_id]/page": "app/editor/[project_id]/page.js" -} \ No newline at end of file diff --git a/apps/web/.next/server/pages-manifest.json b/apps/web/.next/server/pages-manifest.json deleted file mode 100644 index 9e26dfee..00000000 --- a/apps/web/.next/server/pages-manifest.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/apps/web/.next/server/server-reference-manifest.js b/apps/web/.next/server/server-reference-manifest.js deleted file mode 100644 index ab5b3ec4..00000000 --- a/apps/web/.next/server/server-reference-manifest.js +++ /dev/null @@ -1 +0,0 @@ -self.__RSC_SERVER_MANIFEST="{\n \"node\": {},\n \"edge\": {},\n \"encryptionKey\": \"6csmILMKXW5vUdcKm142jEES+lg717F52EbuARHN44o=\"\n}" \ No newline at end of file diff --git a/apps/web/.next/server/server-reference-manifest.json b/apps/web/.next/server/server-reference-manifest.json deleted file mode 100644 index 7a7d909f..00000000 --- a/apps/web/.next/server/server-reference-manifest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "node": {}, - "edge": {}, - "encryptionKey": "6csmILMKXW5vUdcKm142jEES+lg717F52EbuARHN44o=" -} \ No newline at end of file diff --git a/apps/web/.next/trace b/apps/web/.next/trace deleted file mode 100644 index e682ce23..00000000 --- a/apps/web/.next/trace +++ /dev/null @@ -1,122 +0,0 @@ -[{"name":"generate-buildid","duration":125,"timestamp":56715092071,"id":4,"parentId":1,"tags":{},"startTime":1768114398364,"traceId":"8aec7491c5703468"},{"name":"load-custom-routes","duration":1244,"timestamp":56715092249,"id":5,"parentId":1,"tags":{},"startTime":1768114398364,"traceId":"8aec7491c5703468"},{"name":"create-dist-dir","duration":2958,"timestamp":56715241605,"id":6,"parentId":1,"tags":{},"startTime":1768114398513,"traceId":"8aec7491c5703468"},{"name":"create-pages-mapping","duration":175,"timestamp":56715266195,"id":7,"parentId":1,"tags":{},"startTime":1768114398538,"traceId":"8aec7491c5703468"},{"name":"collect-app-files","duration":1936,"timestamp":56715266402,"id":8,"parentId":1,"tags":{},"startTime":1768114398538,"traceId":"8aec7491c5703468"},{"name":"create-app-mapping","duration":3330,"timestamp":56715268365,"id":9,"parentId":1,"tags":{},"startTime":1768114398540,"traceId":"8aec7491c5703468"},{"name":"create-app-layouts","duration":118,"timestamp":56715271723,"id":10,"parentId":1,"tags":{},"startTime":1768114398543,"traceId":"8aec7491c5703468"},{"name":"collect-default-files","duration":1604,"timestamp":56715273930,"id":12,"parentId":1,"tags":{},"startTime":1768114398546,"traceId":"8aec7491c5703468"},{"name":"generate-route-types","duration":18964,"timestamp":56715272163,"id":11,"parentId":1,"tags":{},"startTime":1768114398544,"traceId":"8aec7491c5703468"},{"name":"public-dir-conflict-check","duration":329,"timestamp":56715291205,"id":13,"parentId":1,"tags":{},"startTime":1768114398563,"traceId":"8aec7491c5703468"},{"name":"generate-routes-manifest","duration":1060,"timestamp":56715291659,"id":14,"parentId":1,"tags":{},"startTime":1768114398563,"traceId":"8aec7491c5703468"},{"name":"next-build","duration":19940380,"timestamp":56713732677,"id":1,"tags":{"buildMode":"default","isTurboBuild":"false","version":"15.5.7","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1768114397004,"traceId":"8aec7491c5703468"}] -[{"name":"next-dev","duration":6447156,"timestamp":78704275696,"id":1,"tags":{},"startTime":1768391487527,"traceId":"679d437539d37232"}] -[{"name":"hot-reloader","duration":43,"timestamp":82845320637,"id":3,"tags":{"version":"15.5.7"},"startTime":1768395628572,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":482768,"timestamp":82845389250,"id":4,"tags":{"trigger":"middleware"},"startTime":1768395628640,"traceId":"4f86108d950ca415"}] -[{"name":"setup-dev-bundler","duration":1007556,"timestamp":82845319597,"id":2,"parentId":1,"tags":{},"startTime":1768395628571,"traceId":"4f86108d950ca415"},{"name":"start-dev-server","duration":2039524,"timestamp":82844786333,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"10778271744","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"316022784","memory.heapTotal":"131014656","memory.heapUsed":"86063768"},"startTime":1768395628037,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":87735,"timestamp":82866270215,"id":5,"tags":{"url":"/"},"startTime":1768395649521,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":5259430,"timestamp":82866360998,"id":8,"tags":{"trigger":"/"},"startTime":1768395649612,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":41972,"timestamp":82871624256,"id":9,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395654875,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":6235453,"timestamp":82866359108,"id":6,"tags":{"url":"/"},"startTime":1768395649610,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":82872594613,"id":10,"parentId":6,"tags":{"url":"/","memory.rss":"1086369792","memory.heapUsed":"180067392","memory.heapTotal":"246329344"},"startTime":1768395655846,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3272,"timestamp":82873008315,"id":11,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395656259,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":5982,"timestamp":83053512203,"id":12,"tags":{"url":"/"},"startTime":1768395836763,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":91406,"timestamp":83053522960,"id":14,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395836774,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":88571,"timestamp":83053625189,"id":15,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395836876,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":293970,"timestamp":83053518916,"id":13,"tags":{"url":"/"},"startTime":1768395836770,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83053812949,"id":16,"parentId":13,"tags":{"url":"/","memory.rss":"1010798592","memory.heapUsed":"162507248","memory.heapTotal":"171737088"},"startTime":1768395837064,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":5886,"timestamp":83054719534,"id":17,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395837971,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4091,"timestamp":83063511027,"id":18,"tags":{"url":"/"},"startTime":1768395846762,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":81644,"timestamp":83063518701,"id":20,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395846770,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":66412,"timestamp":83063607930,"id":21,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395846859,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":258930,"timestamp":83063515773,"id":19,"tags":{"url":"/"},"startTime":1768395846767,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83063774785,"id":22,"parentId":19,"tags":{"url":"/","memory.rss":"1028505600","memory.heapUsed":"164226488","memory.heapTotal":"181415936"},"startTime":1768395847026,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3774,"timestamp":83064185668,"id":23,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395847437,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2902,"timestamp":83083591748,"id":24,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395866843,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":155000,"timestamp":83083432637,"id":28,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768395866916,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":114751,"timestamp":83083596582,"id":27,"tags":{"trigger":"/"},"startTime":1768395866848,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":57195,"timestamp":83083715900,"id":29,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395866967,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":619650,"timestamp":83083595116,"id":25,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395866846,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83084214814,"id":30,"parentId":25,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1078276096","memory.heapUsed":"209905256","memory.heapTotal":"238825472"},"startTime":1768395867466,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2218,"timestamp":83084367585,"id":31,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395867619,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4761,"timestamp":83085230821,"id":32,"tags":{"url":"/"},"startTime":1768395868482,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":91153,"timestamp":83085240348,"id":34,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395868492,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":88537,"timestamp":83085339302,"id":35,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395868590,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":427801,"timestamp":83085236312,"id":33,"tags":{"url":"/"},"startTime":1768395868487,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83085664161,"id":36,"parentId":33,"tags":{"url":"/","memory.rss":"1100787712","memory.heapUsed":"225797416","memory.heapTotal":"280813568"},"startTime":1768395868915,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":6605,"timestamp":83086101304,"id":37,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395869352,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2332,"timestamp":83091424665,"id":38,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395874676,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":135000,"timestamp":83091287285,"id":42,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768395874726,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":82522,"timestamp":83091428671,"id":41,"tags":{"trigger":"/"},"startTime":1768395874680,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":54104,"timestamp":83091516020,"id":43,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395874767,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":307482,"timestamp":83091427332,"id":39,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395874679,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83091734855,"id":44,"parentId":39,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1148866560","memory.heapUsed":"248098344","memory.heapTotal":"309981184"},"startTime":1768395874986,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2298,"timestamp":83091851539,"id":45,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395875103,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3173,"timestamp":83094978722,"id":46,"tags":{"url":"/manifest.json"},"startTime":1768395878230,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3529,"timestamp":83094988880,"id":47,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395878240,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":645,"timestamp":83094993900,"id":48,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395878245,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":232,"timestamp":83094994595,"id":49,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395878246,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":284,"timestamp":83094995797,"id":50,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395878247,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":200,"timestamp":83094996115,"id":51,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395878247,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3155,"timestamp":83125293235,"id":52,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395908545,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3047,"timestamp":83125308982,"id":56,"tags":{"url":"/"},"startTime":1768395908560,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":308000,"timestamp":83125115926,"id":59,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768395908695,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":261094,"timestamp":83125300142,"id":55,"tags":{"trigger":"/"},"startTime":1768395908552,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":266416,"timestamp":83125314184,"id":58,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395908566,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":5240,"timestamp":83125650495,"id":62,"tags":{"url":"/"},"startTime":1768395908902,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":144551,"timestamp":83125576906,"id":60,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395908828,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":452509,"timestamp":83125587429,"id":61,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395908839,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":993337,"timestamp":83125312488,"id":57,"tags":{"url":"/"},"startTime":1768395908564,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":8,"timestamp":83126305915,"id":65,"parentId":57,"tags":{"url":"/","memory.rss":"1185116160","memory.heapUsed":"304549504","memory.heapTotal":"361881600"},"startTime":1768395909557,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1044449,"timestamp":83125296829,"id":53,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395908548,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83126341328,"id":66,"parentId":53,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1187639296","memory.heapUsed":"306518096","memory.heapTotal":"361881600"},"startTime":1768395909593,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":720493,"timestamp":83125662379,"id":64,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395908914,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":111283,"timestamp":83126391654,"id":67,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395909643,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":13639,"timestamp":83126599831,"id":68,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395909851,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":382,"timestamp":83126615797,"id":69,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395909867,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":375,"timestamp":83126616235,"id":70,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395909868,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":472,"timestamp":83126619140,"id":71,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395909871,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":302,"timestamp":83126619676,"id":72,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395909871,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":971666,"timestamp":83125656749,"id":63,"tags":{"url":"/"},"startTime":1768395908908,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83126628473,"id":73,"parentId":63,"tags":{"url":"/","memory.rss":"1201815552","memory.heapUsed":"301869424","memory.heapTotal":"363499520"},"startTime":1768395909880,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":10571,"timestamp":83127624543,"id":74,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395910876,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2632,"timestamp":83131990906,"id":75,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395915242,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1745,"timestamp":83132004848,"id":79,"tags":{"url":"/"},"startTime":1768395915256,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":94479,"timestamp":83131995943,"id":78,"tags":{"trigger":"/"},"startTime":1768395915247,"traceId":"4f86108d950ca415"}] -[{"name":"client-hmr-latency","duration":141000,"timestamp":83131860666,"id":83,"parentId":3,"tags":{"updatedModules":["[project]/node_modules/.bun/next@15.5.7+6dbf9a050bc9aadb/node_modules/next/dist/client/request-idle-callback.js","[project]/node_modules/.bun/next@15.5.7+6dbf9a050bc9aadb/node_modules/next/dist/client/script.js"],"page":"/","isPageHidden":false},"startTime":1768395915348,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":88086,"timestamp":83132008669,"id":81,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395915260,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":93960,"timestamp":83132096407,"id":82,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395915348,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":347030,"timestamp":83131993917,"id":76,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395915245,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83132340995,"id":85,"parentId":76,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1264558080","memory.heapUsed":"340922472","memory.heapTotal":"468545536"},"startTime":1768395915592,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":242333,"timestamp":83132098748,"id":84,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395915350,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":409134,"timestamp":83132006928,"id":80,"tags":{"url":"/"},"startTime":1768395915258,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83132416096,"id":86,"parentId":80,"tags":{"url":"/","memory.rss":"1289498624","memory.heapUsed":"380846160","memory.heapTotal":"489680896"},"startTime":1768395915667,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2915,"timestamp":83132479905,"id":87,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395915731,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":188,"timestamp":83132483508,"id":88,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395915735,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":127,"timestamp":83132483725,"id":89,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395915735,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":144,"timestamp":83132484132,"id":90,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395915736,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":102,"timestamp":83132484295,"id":91,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395915736,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3059,"timestamp":83134172937,"id":92,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395917424,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2179,"timestamp":83140181328,"id":93,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395923433,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2270,"timestamp":83140199457,"id":97,"tags":{"url":"/"},"startTime":1768395923451,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":246000,"timestamp":83140037788,"id":100,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768395923570,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":186680,"timestamp":83140186357,"id":96,"tags":{"trigger":"/"},"startTime":1768395923438,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":179026,"timestamp":83140204392,"id":99,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395923456,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":88114,"timestamp":83140380455,"id":101,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395923632,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":516146,"timestamp":83140184105,"id":94,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395923435,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83140700294,"id":103,"parentId":94,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1366806528","memory.heapUsed":"398598288","memory.heapTotal":"516112384"},"startTime":1768395923952,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":315363,"timestamp":83140385280,"id":102,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395923637,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":641904,"timestamp":83140202372,"id":98,"tags":{"url":"/"},"startTime":1768395923454,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83140844303,"id":104,"parentId":98,"tags":{"url":"/","memory.rss":"1380261888","memory.heapUsed":"412189800","memory.heapTotal":"541003776"},"startTime":1768395924096,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2034,"timestamp":83140932197,"id":105,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395924184,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":182,"timestamp":83140934816,"id":106,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395924186,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":109,"timestamp":83140935024,"id":107,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395924186,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":132,"timestamp":83140935457,"id":108,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395924187,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":95,"timestamp":83140935608,"id":109,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395924187,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2278,"timestamp":83148982565,"id":110,"tags":{"url":"/"},"startTime":1768395932234,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":116000,"timestamp":83148858102,"id":114,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768395932281,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":78793,"timestamp":83148986844,"id":113,"tags":{"trigger":"/"},"startTime":1768395932238,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":72884,"timestamp":83149073701,"id":115,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395932325,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":395771,"timestamp":83148985385,"id":111,"tags":{"url":"/"},"startTime":1768395932237,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83149381191,"id":116,"parentId":111,"tags":{"url":"/","memory.rss":"1431900160","memory.heapUsed":"462884464","memory.heapTotal":"576544768"},"startTime":1768395932633,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2313,"timestamp":83149462325,"id":117,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395932714,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":169,"timestamp":83149465351,"id":118,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395932717,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":99,"timestamp":83149465547,"id":119,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395932717,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":107,"timestamp":83149465897,"id":120,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395932717,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":77,"timestamp":83149466020,"id":121,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395932717,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1956,"timestamp":83151131936,"id":122,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395934383,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":6961,"timestamp":83177647324,"id":123,"tags":{"url":"/"},"startTime":1768395960899,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":108063,"timestamp":83177659642,"id":126,"tags":{"trigger":"/"},"startTime":1768395960911,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":92077,"timestamp":83177776329,"id":127,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395961028,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":5466,"timestamp":83178284587,"id":128,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395961536,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":339,"timestamp":83178292546,"id":129,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395961544,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":241,"timestamp":83178292926,"id":130,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395961544,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":331,"timestamp":83178295001,"id":131,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395961546,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":262,"timestamp":83178295387,"id":132,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395961547,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":645830,"timestamp":83177655921,"id":124,"tags":{"url":"/"},"startTime":1768395960907,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83178301796,"id":133,"parentId":124,"tags":{"url":"/","memory.rss":"1382141952","memory.heapUsed":"489396248","memory.heapTotal":"550809600"},"startTime":1768395961553,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4277,"timestamp":83179277475,"id":134,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395962529,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2368,"timestamp":83197255827,"id":135,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395980507,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1767,"timestamp":83197271654,"id":139,"tags":{"url":"/"},"startTime":1768395980522,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":147000,"timestamp":83197110953,"id":142,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768395980563,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":103183,"timestamp":83197261301,"id":138,"tags":{"trigger":"/"},"startTime":1768395980512,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":98863,"timestamp":83197276206,"id":141,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395980527,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":71043,"timestamp":83197372433,"id":143,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395980623,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":304341,"timestamp":83197259537,"id":136,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395980510,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83197563908,"id":145,"parentId":136,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1347670016","memory.heapUsed":"447171216","memory.heapTotal":"481832960"},"startTime":1768395980815,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":188413,"timestamp":83197377195,"id":144,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395980628,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":346265,"timestamp":83197273848,"id":140,"tags":{"url":"/"},"startTime":1768395980525,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":8,"timestamp":83197620162,"id":146,"parentId":140,"tags":{"url":"/","memory.rss":"1369448448","memory.heapUsed":"472722344","memory.heapTotal":"495845376"},"startTime":1768395980871,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1623,"timestamp":83197713091,"id":147,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395980964,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":256,"timestamp":83197715433,"id":148,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395980966,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":150,"timestamp":83197715718,"id":149,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395980967,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":160,"timestamp":83197716549,"id":150,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395980967,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":120,"timestamp":83197716727,"id":151,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395980968,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":5366,"timestamp":83198744832,"id":152,"tags":{"url":"/"},"startTime":1768395981996,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":187267,"timestamp":83198762018,"id":154,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395982013,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":116743,"timestamp":83198961131,"id":155,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395982212,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2955,"timestamp":83199153419,"id":156,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395982404,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":394,"timestamp":83199157265,"id":157,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395982408,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":262,"timestamp":83199157691,"id":158,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395982408,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":310,"timestamp":83199158772,"id":159,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395982410,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":256,"timestamp":83199159113,"id":160,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768395982410,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":407964,"timestamp":83198755653,"id":153,"tags":{"url":"/"},"startTime":1768395982006,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83199163662,"id":161,"parentId":153,"tags":{"url":"/","memory.rss":"1347575808","memory.heapUsed":"449296880","memory.heapTotal":"483082240"},"startTime":1768395982414,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":6106,"timestamp":83199985780,"id":162,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395983237,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1930,"timestamp":83215827714,"id":163,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395999079,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":156,"timestamp":83215830589,"id":164,"parentId":3,"tags":{"inputPage":"/"},"startTime":1768395999081,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":82,"timestamp":83215830763,"id":165,"parentId":3,"tags":{"inputPage":"/"},"startTime":1768395999082,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":116,"timestamp":83215831146,"id":166,"parentId":3,"tags":{"inputPage":"/"},"startTime":1768395999082,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":78,"timestamp":83215831277,"id":167,"parentId":3,"tags":{"inputPage":"/"},"startTime":1768395999082,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":154000,"timestamp":83215643005,"id":171,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768395999097,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":107410,"timestamp":83215834239,"id":170,"tags":{"trigger":"/"},"startTime":1768395999085,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":89309,"timestamp":83215950192,"id":172,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768395999201,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":346279,"timestamp":83215832495,"id":168,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768395999083,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83216178809,"id":173,"parentId":168,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1434361856","memory.heapUsed":"504274880","memory.heapTotal":"568889344"},"startTime":1768395999430,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2173,"timestamp":83216411412,"id":174,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768395999662,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4928,"timestamp":83262003507,"id":175,"tags":{"url":"/"},"startTime":1768396045255,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":90664,"timestamp":83262014437,"id":177,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396045266,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":81931,"timestamp":83262112282,"id":178,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396045364,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":361401,"timestamp":83262009573,"id":176,"tags":{"url":"/"},"startTime":1768396045261,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83262371019,"id":179,"parentId":176,"tags":{"url":"/","memory.rss":"1346478080","memory.heapUsed":"457190360","memory.heapTotal":"485158912"},"startTime":1768396045623,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1869,"timestamp":83350524141,"id":180,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768396133776,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":124000,"timestamp":83350395054,"id":184,"parentId":3,"tags":{"updatedModules":[],"page":"/","isPageHidden":false},"startTime":1768396133816,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":74136,"timestamp":83350528295,"id":183,"tags":{"trigger":"/"},"startTime":1768396133780,"traceId":"4f86108d950ca415"}] -[{"name":"ensure-page","duration":60859,"timestamp":83350608507,"id":185,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396133860,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":326125,"timestamp":83350526782,"id":181,"tags":{"url":"/?_rsc=fsnpp"},"startTime":1768396133778,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83350852948,"id":186,"parentId":181,"tags":{"url":"/?_rsc=fsnpp","memory.rss":"1400840192","memory.heapUsed":"490643576","memory.heapTotal":"557228032"},"startTime":1768396134104,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":167227,"timestamp":83351073666,"id":187,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768396134325,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2379,"timestamp":83351242788,"id":189,"tags":{"url":"/landing-page-dark.png"},"startTime":1768396134494,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1714,"timestamp":83351803311,"id":190,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768396135055,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":809056,"timestamp":83351074811,"id":188,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768396134326,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83351883903,"id":191,"parentId":188,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1403817984","memory.heapUsed":"501466008","memory.heapTotal":"557461504"},"startTime":1768396135135,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4405,"timestamp":83353887231,"id":192,"tags":{"url":"/"},"startTime":1768396137139,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":96056,"timestamp":83353896008,"id":194,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396137147,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":88793,"timestamp":83354000887,"id":195,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396137252,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":6642,"timestamp":83354488100,"id":196,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396137739,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":431,"timestamp":83354496563,"id":197,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396137748,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":282,"timestamp":83354497045,"id":198,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396137748,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":375,"timestamp":83354498599,"id":199,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396137750,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":280,"timestamp":83354499018,"id":200,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396137750,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":625844,"timestamp":83353892407,"id":193,"tags":{"url":"/"},"startTime":1768396137144,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83354518299,"id":201,"parentId":193,"tags":{"url":"/","memory.rss":"1438863360","memory.heapUsed":"521370552","memory.heapTotal":"565153792"},"startTime":1768396137770,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":32747,"timestamp":83355153342,"id":202,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768396138405,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":36688,"timestamp":83355159589,"id":203,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768396138411,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83355196324,"id":204,"parentId":203,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1453060096","memory.heapUsed":"515462552","memory.heapTotal":"633311232"},"startTime":1768396138448,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4628,"timestamp":83355695374,"id":205,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768396138947,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4637,"timestamp":83370008931,"id":206,"tags":{"url":"/"},"startTime":1768396153260,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":5723,"timestamp":83373823057,"id":209,"tags":{"url":"/"},"startTime":1768396157074,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":5710023,"timestamp":83370018540,"id":208,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396153270,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":2290477,"timestamp":83373832963,"id":211,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396157084,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":414519,"timestamp":83375734076,"id":212,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396158985,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":6224663,"timestamp":83370014612,"id":207,"tags":{"url":"/"},"startTime":1768396153266,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":7,"timestamp":83376239330,"id":214,"parentId":207,"tags":{"url":"/","memory.rss":"1393360896","memory.heapUsed":"502609536","memory.heapTotal":"512180224"},"startTime":1768396159491,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":171480,"timestamp":83376132320,"id":213,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396159384,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4896,"timestamp":83376419849,"id":215,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396159671,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":456,"timestamp":83376431491,"id":216,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396159683,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":309,"timestamp":83376432008,"id":217,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396159683,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":406,"timestamp":83376434537,"id":218,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396159686,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":371,"timestamp":83376435011,"id":219,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768396159686,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":2620371,"timestamp":83373830244,"id":210,"tags":{"url":"/"},"startTime":1768396157082,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":5,"timestamp":83376450676,"id":220,"parentId":210,"tags":{"url":"/","memory.rss":"1401024512","memory.heapUsed":"508334768","memory.heapTotal":"524177408"},"startTime":1768396159702,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4739,"timestamp":83376799127,"id":221,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768396160050,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":7518,"timestamp":83376800806,"id":222,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768396160052,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83376808376,"id":223,"parentId":222,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1404538880","memory.heapUsed":"507030872","memory.heapTotal":"526012416"},"startTime":1768396160060,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3007,"timestamp":83377504912,"id":224,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768396160756,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":186000,"timestamp":83609570623,"id":225,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/handlebars.tsx"],"page":"/","isPageHidden":false},"startTime":1768396393022,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":139000,"timestamp":83616945665,"id":226,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/handlebars.tsx"],"page":"/","isPageHidden":false},"startTime":1768396400366,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3761,"timestamp":83620774926,"id":227,"tags":{"url":"/"},"startTime":1768396404026,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":107206,"timestamp":83620783010,"id":229,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396404034,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":85589,"timestamp":83620898523,"id":230,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396404150,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":996002,"timestamp":83620779420,"id":228,"tags":{"url":"/"},"startTime":1768396404031,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83621775461,"id":231,"parentId":228,"tags":{"url":"/","memory.rss":"1477758976","memory.heapUsed":"573425120","memory.heapTotal":"621117440"},"startTime":1768396405027,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4889,"timestamp":83622097477,"id":232,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768396405349,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":6452,"timestamp":83622106061,"id":233,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768396405357,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":1,"timestamp":83622112561,"id":235,"parentId":233,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1486819328","memory.heapUsed":"576989520","memory.heapTotal":"621580288"},"startTime":1768396405364,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3236,"timestamp":83622112495,"id":234,"tags":{"url":"/landing-page-dark.png"},"startTime":1768396405364,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3706,"timestamp":83622586359,"id":236,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768396405838,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":385000,"timestamp":83817934905,"id":237,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/handlebars.tsx"],"page":"/","isPageHidden":true},"startTime":1768396601590,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4734,"timestamp":83868466545,"id":238,"tags":{"url":"/"},"startTime":1768396651718,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":106358,"timestamp":83868476769,"id":240,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396651728,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":69234,"timestamp":83868589718,"id":241,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396651841,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":1087856,"timestamp":83868473642,"id":239,"tags":{"url":"/"},"startTime":1768396651725,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":4,"timestamp":83869561548,"id":242,"parentId":239,"tags":{"url":"/","memory.rss":"1509244928","memory.heapUsed":"598627872","memory.heapTotal":"668528640"},"startTime":1768396652813,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3911,"timestamp":83869885039,"id":243,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768396653136,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4860,"timestamp":83869892494,"id":244,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768396653144,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":1,"timestamp":83869897396,"id":246,"parentId":244,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1513578496","memory.heapUsed":"602412984","memory.heapTotal":"668991488"},"startTime":1768396653149,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3157,"timestamp":83869897340,"id":245,"tags":{"url":"/landing-page-dark.png"},"startTime":1768396653149,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3044,"timestamp":83870359752,"id":247,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768396653611,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":187000,"timestamp":83923151491,"id":248,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/handlebars.tsx"],"page":"/","isPageHidden":false},"startTime":1768396706620,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3982,"timestamp":83937168025,"id":249,"tags":{"url":"/"},"startTime":1768396720419,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":104241,"timestamp":83937176122,"id":251,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396720427,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":79276,"timestamp":83937288395,"id":252,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396720539,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":590671,"timestamp":83937172798,"id":250,"tags":{"url":"/"},"startTime":1768396720424,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":7,"timestamp":83937763565,"id":254,"parentId":250,"tags":{"url":"/","memory.rss":"1588658176","memory.heapUsed":"659587144","memory.heapTotal":"737325056"},"startTime":1768396721014,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":13709,"timestamp":83937752301,"id":253,"tags":{"url":"/"},"startTime":1768396721003,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":175897,"timestamp":83937774108,"id":256,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396721025,"traceId":"4f86108d950ca415"},{"name":"ensure-page","duration":82795,"timestamp":83937957864,"id":257,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768396721209,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":389763,"timestamp":83937769195,"id":255,"tags":{"url":"/"},"startTime":1768396721020,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":3,"timestamp":83938158999,"id":258,"parentId":255,"tags":{"url":"/","memory.rss":"1578168320","memory.heapUsed":"615673144","memory.heapTotal":"718053376"},"startTime":1768396721410,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":5017,"timestamp":83938278402,"id":259,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768396721529,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":9017,"timestamp":83938280477,"id":260,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768396721531,"traceId":"4f86108d950ca415"},{"name":"memory-usage","duration":1,"timestamp":83938289545,"id":262,"parentId":260,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1580658688","memory.heapUsed":"618818624","memory.heapTotal":"718053376"},"startTime":1768396721540,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":4649,"timestamp":83938289480,"id":261,"tags":{"url":"/landing-page-dark.png"},"startTime":1768396721540,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3958,"timestamp":83938591475,"id":263,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768396721842,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":156000,"timestamp":84041698912,"id":264,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768396825122,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":451000,"timestamp":84211343984,"id":265,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768396995074,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":140000,"timestamp":84222977434,"id":266,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397006399,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":141000,"timestamp":84224517546,"id":267,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397007940,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":141000,"timestamp":84239194975,"id":268,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397022617,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":138000,"timestamp":84242866844,"id":269,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397026293,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":139000,"timestamp":84245920838,"id":270,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397029343,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":156000,"timestamp":84250609555,"id":271,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397034048,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":140000,"timestamp":84293683266,"id":272,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397077106,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":139000,"timestamp":84301225071,"id":273,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397084648,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":140000,"timestamp":84305462872,"id":274,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397088887,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":128000,"timestamp":84309095126,"id":275,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397092505,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":124000,"timestamp":84313601540,"id":276,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397097008,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":154000,"timestamp":84316660781,"id":277,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397100100,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":143000,"timestamp":84336391315,"id":278,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397119801,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":140000,"timestamp":84356330868,"id":279,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397139752,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":139000,"timestamp":84358810214,"id":280,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397142230,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":138000,"timestamp":84360884368,"id":281,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397144306,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":154000,"timestamp":84363020690,"id":282,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397146458,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":278000,"timestamp":84366373249,"id":283,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":false},"startTime":1768397149945,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":26000,"timestamp":85257324958,"id":284,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":true},"startTime":1768398040606,"traceId":"4f86108d950ca415"}] -[{"name":"client-hmr-latency","duration":1000,"timestamp":85257353686,"id":285,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":true},"startTime":1768398040607,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":0,"timestamp":85257355390,"id":286,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":true},"startTime":1768398040612,"traceId":"4f86108d950ca415"},{"name":"client-hmr-latency","duration":0,"timestamp":85257360249,"id":287,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/landing/hero.tsx"],"page":"/","isPageHidden":true},"startTime":1768398040614,"traceId":"4f86108d950ca415"},{"name":"handle-request","duration":3442,"timestamp":85272502631,"id":288,"tags":{"url":"/projects?_rsc=vusbg"},"startTime":1768398055754,"traceId":"4f86108d950ca415"},{"name":"compile-path","duration":2079423,"timestamp":85272510491,"id":291,"tags":{"trigger":"/projects"},"startTime":1768398055762,"traceId":"4f86108d950ca415"}] -[{"name":"hot-reloader","duration":49,"timestamp":4738053393,"id":3,"tags":{"version":"15.5.7"},"startTime":1768451217327,"traceId":"5affc6e7fd441da6"},{"name":"compile-path","duration":798853,"timestamp":4739717914,"id":4,"tags":{"trigger":"middleware"},"startTime":1768451218992,"traceId":"5affc6e7fd441da6"}] -[{"name":"hot-reloader","duration":48,"timestamp":1140298511,"id":3,"tags":{"version":"15.5.7"},"startTime":1768459230573,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":638079,"timestamp":1141803743,"id":4,"tags":{"trigger":"middleware"},"startTime":1768459232078,"traceId":"fe5b0ccdabecd374"}] -[{"name":"setup-dev-bundler","duration":2774799,"timestamp":1140297365,"id":2,"parentId":1,"tags":{},"startTime":1768459230572,"traceId":"fe5b0ccdabecd374"},{"name":"start-dev-server","duration":5029056,"timestamp":1138637989,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"16774639616","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"310423552","memory.heapTotal":"131940352","memory.heapUsed":"73032568"},"startTime":1768459228912,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":77053,"timestamp":1145931867,"id":5,"tags":{"url":"/"},"startTime":1768459236206,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":9473490,"timestamp":1146015111,"id":8,"tags":{"trigger":"/"},"startTime":1768459236289,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":121227,"timestamp":1155499197,"id":9,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768459245773,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":10302004,"timestamp":1146011228,"id":6,"tags":{"url":"/"},"startTime":1768459236286,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":5,"timestamp":1156313296,"id":10,"parentId":6,"tags":{"url":"/","memory.rss":"1109966848","memory.heapUsed":"163117624","memory.heapTotal":"297086976"},"startTime":1768459246588,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":90385,"timestamp":1156932408,"id":11,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768459247207,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":92757,"timestamp":1156934979,"id":12,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768459247209,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":0,"timestamp":1157027772,"id":14,"parentId":12,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1117716480","memory.heapUsed":"169154072","memory.heapTotal":"297611264"},"startTime":1768459247302,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1989,"timestamp":1157027723,"id":13,"tags":{"url":"/landing-page-dark.png"},"startTime":1768459247302,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4344,"timestamp":1159814152,"id":15,"tags":{"url":"/projects?_rsc=vusbg"},"startTime":1768459250088,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":1964225,"timestamp":1159823673,"id":18,"tags":{"trigger":"/projects"},"startTime":1768459250098,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":96950,"timestamp":1161796219,"id":19,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768459252071,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2155333,"timestamp":1159819315,"id":16,"tags":{"url":"/projects?_rsc=vusbg"},"startTime":1768459250094,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":5,"timestamp":1161974696,"id":20,"parentId":16,"tags":{"url":"/projects?_rsc=vusbg","memory.rss":"1289637888","memory.heapUsed":"186082784","memory.heapTotal":"300945408"},"startTime":1768459252249,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4322,"timestamp":1169821394,"id":21,"tags":{"url":"/manifest.json"},"startTime":1768459260096,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":5256,"timestamp":1169832544,"id":22,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459260107,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":773,"timestamp":1169839830,"id":23,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459260114,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":276,"timestamp":1169840673,"id":24,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459260115,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":402,"timestamp":1169842160,"id":25,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459260116,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":496,"timestamp":1169842607,"id":26,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459260117,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":203000,"timestamp":1201089240,"id":27,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768459291615,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4963,"timestamp":1205747243,"id":28,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=qdzqe"},"startTime":1768459296021,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":285,"timestamp":1205753019,"id":29,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459296027,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":287,"timestamp":1205753347,"id":30,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459296027,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":242,"timestamp":1205754833,"id":31,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459296028,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":222,"timestamp":1205755113,"id":32,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459296029,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":4119704,"timestamp":1205760093,"id":35,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768459296034,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":65225,"timestamp":1209897728,"id":36,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459300171,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4683662,"timestamp":1205756738,"id":33,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=qdzqe"},"startTime":1768459296030,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":8,"timestamp":1210440491,"id":37,"parentId":33,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=qdzqe","memory.rss":"1522176000","memory.heapUsed":"169699848","memory.heapTotal":"185929728"},"startTime":1768459300714,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2430,"timestamp":1303349402,"id":38,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459393623,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":175,"timestamp":1303352489,"id":39,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459393626,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":108,"timestamp":1303352694,"id":40,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459393626,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":124,"timestamp":1303353158,"id":41,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459393626,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":98,"timestamp":1303353302,"id":42,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459393627,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":171000,"timestamp":1303151852,"id":45,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-keyboard-shortcuts-help.ts"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768459393659,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2217,"timestamp":1303415888,"id":46,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768459393689,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":88165,"timestamp":1303355422,"id":44,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459393629,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":69667,"timestamp":1303447839,"id":47,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459393721,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":521246,"timestamp":1303354011,"id":43,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459393627,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":1303875312,"id":48,"parentId":43,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1535950848","memory.heapUsed":"241641368","memory.heapTotal":"287465472"},"startTime":1768459394149,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2557,"timestamp":1304048460,"id":49,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459394322,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":179,"timestamp":1304051609,"id":50,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459394325,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":104,"timestamp":1304051813,"id":51,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459394325,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":120,"timestamp":1304052227,"id":52,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459394326,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":92,"timestamp":1304052363,"id":53,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459394326,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4954,"timestamp":1326898369,"id":54,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459417172,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":297,"timestamp":1326904703,"id":55,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459417178,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":276,"timestamp":1326905034,"id":56,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459417178,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":257,"timestamp":1326906216,"id":57,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459417180,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":215,"timestamp":1326906504,"id":58,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459417180,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":91706,"timestamp":1326910315,"id":60,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459417184,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":100789,"timestamp":1327011279,"id":61,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459417285,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3924,"timestamp":1327286409,"id":62,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459417560,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":333,"timestamp":1327291651,"id":63,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459417565,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":248,"timestamp":1327292023,"id":64,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459417565,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":560,"timestamp":1327294719,"id":65,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459417568,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":319,"timestamp":1327295331,"id":66,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459417569,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":391260,"timestamp":1326907412,"id":59,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459417181,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":1327298741,"id":67,"parentId":59,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1468256256","memory.heapUsed":"222071880","memory.heapTotal":"236539904"},"startTime":1768459417572,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3557,"timestamp":1441747355,"id":68,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459532022,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":185,"timestamp":1441751627,"id":69,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459532026,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":96,"timestamp":1441751838,"id":70,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459532026,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":180,"timestamp":1441752354,"id":71,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459532027,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":159,"timestamp":1441752560,"id":72,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459532027,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":192000,"timestamp":1441524216,"id":75,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/editor/[project_id]/page.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768459532051,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":89044,"timestamp":1441756405,"id":74,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459532031,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":54369,"timestamp":1441848916,"id":76,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459532123,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":748920,"timestamp":1441753723,"id":73,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459532028,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":1442502688,"id":77,"parentId":73,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1541664768","memory.heapUsed":"265109528","memory.heapTotal":"314748928"},"startTime":1768459532777,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1949,"timestamp":1442547558,"id":78,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459532822,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":149,"timestamp":1442549892,"id":79,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459532824,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":89,"timestamp":1442550067,"id":80,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459532824,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":109,"timestamp":1442550404,"id":81,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459532825,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":79,"timestamp":1442550527,"id":82,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459532825,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2565,"timestamp":1471594016,"id":83,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459561868,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":177,"timestamp":1471597222,"id":84,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459561872,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":113,"timestamp":1471597420,"id":85,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459561872,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":144,"timestamp":1471597996,"id":86,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459561872,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":107,"timestamp":1471598156,"id":87,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459561872,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":139000,"timestamp":1471437696,"id":90,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768459561912,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":70261,"timestamp":1471600591,"id":89,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459561875,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":56363,"timestamp":1471675145,"id":91,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768459561949,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":349623,"timestamp":1471599245,"id":88,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768459561874,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":1471948915,"id":92,"parentId":88,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1554497536","memory.heapUsed":"285335720","memory.heapTotal":"348979200"},"startTime":1768459562223,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1792,"timestamp":1472000490,"id":93,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459562275,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":164,"timestamp":1472002683,"id":94,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459562277,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":92,"timestamp":1472002865,"id":95,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459562277,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":117,"timestamp":1472003256,"id":96,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459562278,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":78,"timestamp":1472003384,"id":97,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768459562278,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1887,"timestamp":1473934393,"id":98,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768459564209,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":322000,"timestamp":1583585723,"id":99,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/providers/editor-provider.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":true},"startTime":1768459674230,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":310000,"timestamp":1588775290,"id":100,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":true},"startTime":1768459679427,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3749,"timestamp":2202024269,"id":101,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768460292297,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":436,"timestamp":2202028785,"id":102,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768460292302,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":231,"timestamp":2202029263,"id":103,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768460292302,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":342,"timestamp":2202030048,"id":104,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768460292303,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":272,"timestamp":2202030424,"id":105,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768460292304,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":103705,"timestamp":2202035698,"id":107,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768460292309,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":84788,"timestamp":2202148154,"id":108,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768460292421,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":9468,"timestamp":2202903288,"id":109,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768460293177,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":337,"timestamp":2202917997,"id":110,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768460293191,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":255,"timestamp":2202918368,"id":111,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768460293192,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":307,"timestamp":2202920212,"id":112,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768460293193,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":264,"timestamp":2202920547,"id":113,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768460293194,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":926490,"timestamp":2202031850,"id":106,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768460292305,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":2202958407,"id":114,"parentId":106,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1591246848","memory.heapUsed":"253627328","memory.heapTotal":"416522240"},"startTime":1768460293232,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3684,"timestamp":2204058776,"id":115,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768460294332,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":199000,"timestamp":2298406366,"id":116,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460389160,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":234000,"timestamp":2317932061,"id":117,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460408470,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":318000,"timestamp":2323446260,"id":118,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460414170,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":215000,"timestamp":2326331818,"id":119,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460416849,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":218000,"timestamp":2331137089,"id":120,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460421869,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":169000,"timestamp":2338351248,"id":121,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/button.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460428948,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":408000,"timestamp":2345914625,"id":122,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460436734,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":221000,"timestamp":2352807216,"id":123,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460443338,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":255000,"timestamp":2364776816,"id":124,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/button.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460455363,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":152000,"timestamp":2368752972,"id":125,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/button.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460459271,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":354000,"timestamp":2376729701,"id":126,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/button.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460467434,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":493000,"timestamp":2385205735,"id":127,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/button.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460476033,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":206000,"timestamp":2400858282,"id":128,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/button.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460491479,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":876047,"timestamp":2423003153,"id":131,"tags":{"trigger":"/api/sounds/search"},"startTime":1768460513277,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":80709,"timestamp":2423887735,"id":132,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460514161,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":6018568,"timestamp":2422998998,"id":129,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768460513273,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":2429017653,"id":133,"parentId":129,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1613201408","memory.heapUsed":"292012312","memory.heapTotal":"316116992"},"startTime":1768460519292,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":92492,"timestamp":2429024518,"id":135,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460519299,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":148748,"timestamp":2429123881,"id":136,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460519398,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4958004,"timestamp":2429020519,"id":134,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768460519295,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":2433978610,"id":137,"parentId":134,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1634267136","memory.heapUsed":"306378840","memory.heapTotal":"354074624"},"startTime":1768460524253,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":77634,"timestamp":2436922727,"id":139,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460527197,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":78471,"timestamp":2437009664,"id":140,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460527284,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4895646,"timestamp":2436920781,"id":138,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768460527195,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":2441816522,"id":141,"parentId":138,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1602822144","memory.heapUsed":"293616280","memory.heapTotal":"304910336"},"startTime":1768460532091,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":361000,"timestamp":2507334428,"id":142,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/panel-base-view.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460598002,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":214000,"timestamp":2511618578,"id":143,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/panel-base-view.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460602138,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":399000,"timestamp":2514158265,"id":144,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/panel-base-view.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460604920,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":290000,"timestamp":2517243987,"id":145,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/panel-base-view.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460607838,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":302000,"timestamp":2519191213,"id":146,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/panel-base-view.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460609807,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":431000,"timestamp":2530763207,"id":147,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/panel-base-view.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460621480,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":279000,"timestamp":2594408546,"id":148,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460685105,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":266000,"timestamp":2598494202,"id":149,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460689172,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":265000,"timestamp":2604038333,"id":150,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460694712,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":307000,"timestamp":2628096462,"id":151,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460718816,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":153000,"timestamp":2630895734,"id":152,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460721614,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":417000,"timestamp":2642550317,"id":153,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460733387,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":153000,"timestamp":2645441708,"id":154,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460736134,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":236000,"timestamp":2651078422,"id":155,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460741921,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":137000,"timestamp":2655734746,"id":156,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460746435,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":153000,"timestamp":2658349460,"id":157,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460748987,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":186000,"timestamp":2683063647,"id":158,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/tabs.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460773856,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":83759,"timestamp":2694046010,"id":160,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460784320,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":81208,"timestamp":2694137555,"id":161,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460784412,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4836547,"timestamp":2694044549,"id":159,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768460784319,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":2698881160,"id":162,"parentId":159,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1629966336","memory.heapUsed":"293238368","memory.heapTotal":"332890112"},"startTime":1768460789155,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":351000,"timestamp":2738254875,"id":163,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/stickers.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460828907,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":233000,"timestamp":2767214538,"id":164,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/stickers.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768460857751,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":79251,"timestamp":2788159786,"id":166,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460878434,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":84580,"timestamp":2788247295,"id":167,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460878521,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4856189,"timestamp":2788158303,"id":165,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768460878432,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":2793014552,"id":168,"parentId":165,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1651761152","memory.heapUsed":"316242792","memory.heapTotal":"345075712"},"startTime":1768460883288,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":153842,"timestamp":2793024492,"id":170,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460883298,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":79923,"timestamp":2793185957,"id":171,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460883460,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4900429,"timestamp":2793019905,"id":169,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768460883294,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":2797920370,"id":172,"parentId":169,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1647742976","memory.heapUsed":"291447016","memory.heapTotal":"334462976"},"startTime":1768460888194,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":99897,"timestamp":2797925550,"id":174,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460888199,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":87778,"timestamp":2798032958,"id":175,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768460888307,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4875111,"timestamp":2797921882,"id":173,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768460888196,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":2802797032,"id":176,"parentId":173,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1653084160","memory.heapUsed":"312904072","memory.heapTotal":"386887680"},"startTime":1768460893071,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":86062,"timestamp":3169339715,"id":178,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768461259613,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":80021,"timestamp":3169432662,"id":179,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768461259706,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4818814,"timestamp":3169337105,"id":177,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768461259611,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":3174156058,"id":180,"parentId":177,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1068560384","memory.heapUsed":"311530728","memory.heapTotal":"384155648"},"startTime":1768461264430,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":99184,"timestamp":3174162865,"id":182,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768461264437,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":80943,"timestamp":3174265722,"id":183,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768461264539,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4851147,"timestamp":3174157769,"id":181,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768461264431,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":3179009059,"id":184,"parentId":181,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1085452288","memory.heapUsed":"307536032","memory.heapTotal":"324550656"},"startTime":1768461269283,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2676,"timestamp":3205129795,"id":185,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461295403,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":168,"timestamp":3205132929,"id":186,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295407,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":97,"timestamp":3205133117,"id":187,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295407,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":137,"timestamp":3205133573,"id":188,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295407,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":98,"timestamp":3205133724,"id":189,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295407,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":149000,"timestamp":3204988975,"id":193,"parentId":3,"tags":{"updatedModules":[],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768461295447,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":77525,"timestamp":3205136133,"id":192,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768461295410,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":55896,"timestamp":3205218179,"id":194,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461295492,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":255190,"timestamp":3205134579,"id":190,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461295408,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3205389804,"id":195,"parentId":190,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx","memory.rss":"1098559488","memory.heapUsed":"326945152","memory.heapTotal":"383434752"},"startTime":1768461295663,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2877,"timestamp":3205398243,"id":196,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461295672,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":244,"timestamp":3205402957,"id":197,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295677,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":187,"timestamp":3205403237,"id":198,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295677,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":218,"timestamp":3205404507,"id":199,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295678,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":133,"timestamp":3205404751,"id":200,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295678,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":92938,"timestamp":3205409068,"id":202,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461295683,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":65609,"timestamp":3205506113,"id":203,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461295780,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":194298,"timestamp":3205405774,"id":201,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461295679,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3205600111,"id":204,"parentId":201,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx","memory.rss":"1092812800","memory.heapUsed":"298783328","memory.heapTotal":"375906304"},"startTime":1768461295874,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1636,"timestamp":3205610027,"id":205,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461295884,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":157,"timestamp":3205612046,"id":206,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295886,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":95,"timestamp":3205612220,"id":207,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295886,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":121,"timestamp":3205612635,"id":208,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295886,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":80,"timestamp":3205612771,"id":209,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461295886,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":66590,"timestamp":3205614323,"id":211,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461295888,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":56764,"timestamp":3205685543,"id":212,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461295959,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":163216,"timestamp":3205613191,"id":210,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461295887,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3205776450,"id":213,"parentId":210,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx","memory.rss":"1092931584","memory.heapUsed":"310740608","memory.heapTotal":"375906304"},"startTime":1768461296050,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3834,"timestamp":3206069613,"id":214,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461296343,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":299,"timestamp":3206074621,"id":215,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461296348,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":200,"timestamp":3206074952,"id":216,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461296349,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":252,"timestamp":3206077157,"id":217,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461296351,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":194,"timestamp":3206077441,"id":218,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461296351,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":262,"timestamp":3206080993,"id":219,"parentId":3,"tags":{"inputPage":"/editor/[project_id]"},"startTime":1768461296355,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":205,"timestamp":3206081290,"id":220,"parentId":3,"tags":{"inputPage":"/editor/[project_id]"},"startTime":1768461296355,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":152000,"timestamp":3205888652,"id":224,"parentId":3,"tags":{"updatedModules":[],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768461296364,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":13063,"timestamp":3206137071,"id":225,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461296411,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":759042,"timestamp":3206086174,"id":223,"tags":{"trigger":"/_not-found/page"},"startTime":1768461296360,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":149656,"timestamp":3206848402,"id":226,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1768461297122,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1308656,"timestamp":3206081739,"id":221,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461296355,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":7,"timestamp":3207390459,"id":227,"parentId":221,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx","memory.rss":"1138716672","memory.heapUsed":"333006888","memory.heapTotal":"451137536"},"startTime":1768461297664,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":13219,"timestamp":3207439618,"id":228,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461297713,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":299,"timestamp":3207454308,"id":229,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461297728,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":207,"timestamp":3207454636,"id":230,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461297728,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":276,"timestamp":3207455524,"id":231,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461297729,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":204,"timestamp":3207455839,"id":232,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461297730,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":100267,"timestamp":3207461703,"id":235,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768461297735,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":308458,"timestamp":3207571666,"id":236,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461297845,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":482348,"timestamp":3207456747,"id":233,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461297730,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":3207939280,"id":237,"parentId":233,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx","memory.rss":"1144594432","memory.heapUsed":"344829064","memory.heapTotal":"451399680"},"startTime":1768461298213,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":7490,"timestamp":3207940310,"id":238,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461298214,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":336,"timestamp":3207949064,"id":239,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298223,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":242,"timestamp":3207949442,"id":240,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298223,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":246,"timestamp":3207950485,"id":241,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298224,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":222,"timestamp":3207950773,"id":242,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298224,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":120063,"timestamp":3207958870,"id":244,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461298233,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":118043,"timestamp":3208086549,"id":245,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461298360,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":320240,"timestamp":3207951744,"id":243,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx"},"startTime":1768461298225,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":3208272042,"id":246,"parentId":243,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=86qvx","memory.rss":"1155706880","memory.heapUsed":"357799496","memory.heapTotal":"452321280"},"startTime":1768461298546,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3574,"timestamp":3208273662,"id":247,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298547,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":309,"timestamp":3208277934,"id":248,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298552,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":248,"timestamp":3208278277,"id":249,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298552,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":250,"timestamp":3208279116,"id":250,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298553,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":219,"timestamp":3208279397,"id":251,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298553,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":112756,"timestamp":3208288358,"id":253,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461298562,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":103651,"timestamp":3208410134,"id":254,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461298684,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":744278,"timestamp":3208281836,"id":252,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461298556,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":3209026178,"id":255,"parentId":252,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1215926272","memory.heapUsed":"392207536","memory.heapTotal":"484098048"},"startTime":1768461299300,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4367,"timestamp":3209032760,"id":256,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461299306,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":312,"timestamp":3209038150,"id":257,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461299312,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":2274,"timestamp":3209038494,"id":258,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461299312,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":583,"timestamp":3209041954,"id":259,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461299316,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":305,"timestamp":3209042584,"id":260,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461299316,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":90456,"timestamp":3237109277,"id":262,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768461327383,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":77089,"timestamp":3237208153,"id":263,"parentId":3,"tags":{"inputPage":"/api/sounds/search/route"},"startTime":1768461327482,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4897908,"timestamp":3237102329,"id":261,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads"},"startTime":1768461327377,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3242000288,"id":264,"parentId":261,"tags":{"url":"/api/sounds/search?page_size=50&sort=downloads","memory.rss":"1112915968","memory.heapUsed":"353668168","memory.heapTotal":"379228160"},"startTime":1768461332274,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4124,"timestamp":3313369396,"id":265,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461403643,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":326,"timestamp":3313374516,"id":266,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461403648,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":215,"timestamp":3313374872,"id":267,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461403648,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":296,"timestamp":3313375834,"id":268,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461403649,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":273,"timestamp":3313376161,"id":269,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461403649,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":87680,"timestamp":3313380214,"id":271,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461403653,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":88301,"timestamp":3313475957,"id":272,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461403749,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":5862,"timestamp":3313685982,"id":273,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461403959,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":373,"timestamp":3313699297,"id":274,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461403972,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":243,"timestamp":3313699709,"id":275,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461403973,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":347,"timestamp":3313703978,"id":276,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461403977,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":251,"timestamp":3313704378,"id":277,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461403978,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":379680,"timestamp":3313377168,"id":270,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461403650,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":3313756894,"id":278,"parentId":270,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1122242560","memory.heapUsed":"341027528","memory.heapTotal":"384270336"},"startTime":1768461404030,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":5469,"timestamp":3314743700,"id":279,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461405017,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2386,"timestamp":3328587982,"id":280,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461418861,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":233153,"timestamp":3328593558,"id":283,"tags":{"trigger":"/projects"},"startTime":1768461418867,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":99983,"timestamp":3328837514,"id":284,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461419111,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":511295,"timestamp":3328590886,"id":281,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461418864,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3329102222,"id":285,"parentId":281,"tags":{"url":"/projects?_rsc=fi02c","memory.rss":"1163972608","memory.heapUsed":"360871696","memory.heapTotal":"423882752"},"startTime":1768461419375,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3982,"timestamp":3335162323,"id":286,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461425436,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":270,"timestamp":3335167262,"id":287,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461425440,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":179,"timestamp":3335167558,"id":288,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461425441,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":217,"timestamp":3335168622,"id":289,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461425442,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":157,"timestamp":3335168862,"id":290,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461425442,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":84379,"timestamp":3335172258,"id":292,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461425445,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":90879,"timestamp":3335264715,"id":293,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461425538,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3552,"timestamp":3335466192,"id":294,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461425739,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":344,"timestamp":3335472256,"id":295,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461425745,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":265,"timestamp":3335472640,"id":296,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461425746,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":304346,"timestamp":3335169637,"id":291,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461425443,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":3335474035,"id":297,"parentId":291,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1146490880","memory.heapUsed":"373955784","memory.heapTotal":"429973504"},"startTime":1768461425747,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":384,"timestamp":3335475185,"id":298,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461425748,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":263,"timestamp":3335475609,"id":299,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461425749,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":12032,"timestamp":3336525436,"id":300,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461426799,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2766,"timestamp":3339230942,"id":301,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461429504,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":93430,"timestamp":3339236672,"id":303,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461429510,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":78111,"timestamp":3339336633,"id":304,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461429610,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":217130,"timestamp":3339234395,"id":302,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461429508,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":3339451577,"id":305,"parentId":302,"tags":{"url":"/projects?_rsc=fi02c","memory.rss":"1164447744","memory.heapUsed":"375175328","memory.heapTotal":"431620096"},"startTime":1768461429725,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3394,"timestamp":3355697025,"id":306,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461445970,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":240,"timestamp":3355701190,"id":307,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461445974,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":262,"timestamp":3355701454,"id":308,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461445975,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":274,"timestamp":3355702370,"id":309,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461445976,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":191,"timestamp":3355702669,"id":310,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461445976,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":85330,"timestamp":3355707023,"id":312,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461445980,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":90012,"timestamp":3355798633,"id":313,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461446072,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":303185,"timestamp":3355703401,"id":311,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461445977,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":3356006643,"id":314,"parentId":311,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1183428608","memory.heapUsed":"375002344","memory.heapTotal":"437387264"},"startTime":1768461446280,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4434,"timestamp":3356012080,"id":315,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461446285,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":309,"timestamp":3356018469,"id":316,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461446292,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":227,"timestamp":3356018810,"id":317,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461446292,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":342,"timestamp":3356020059,"id":318,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461446293,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":222,"timestamp":3356020431,"id":319,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461446294,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":6794,"timestamp":3357097962,"id":320,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461447371,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2316,"timestamp":3359651709,"id":321,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461449925,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":94829,"timestamp":3359656639,"id":323,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461449930,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":75860,"timestamp":3359757732,"id":324,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461450031,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":215723,"timestamp":3359654610,"id":322,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461449928,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":3359870383,"id":325,"parentId":322,"tags":{"url":"/projects?_rsc=fi02c","memory.rss":"1194041344","memory.heapUsed":"376887696","memory.heapTotal":"438931456"},"startTime":1768461450144,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3980,"timestamp":3372889846,"id":326,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461463163,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":267,"timestamp":3372894542,"id":327,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461463168,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":190,"timestamp":3372894838,"id":328,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461463168,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":218,"timestamp":3372895625,"id":329,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461463169,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":173,"timestamp":3372895869,"id":330,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461463169,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":86223,"timestamp":3372899103,"id":332,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461463172,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":92181,"timestamp":3372994306,"id":333,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461463268,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4072,"timestamp":3373201992,"id":334,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461463475,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":338,"timestamp":3373207666,"id":335,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461463481,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":244,"timestamp":3373208042,"id":336,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461463481,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":311,"timestamp":3373209785,"id":337,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461463483,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":231,"timestamp":3373210134,"id":338,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461463483,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":316263,"timestamp":3372896596,"id":331,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461463170,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3373212901,"id":339,"parentId":331,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1196687360","memory.heapUsed":"374898096","memory.heapTotal":"439394304"},"startTime":1768461463486,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":7598,"timestamp":3374333663,"id":340,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461464608,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":154000,"timestamp":3458631167,"id":341,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768461549100,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1728,"timestamp":3462551496,"id":342,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461552825,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":167,"timestamp":3462553632,"id":343,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461552827,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":543,"timestamp":3462553821,"id":344,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461552827,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":135,"timestamp":3462554711,"id":345,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461552828,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":82,"timestamp":3462554864,"id":346,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461552828,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":259000,"timestamp":3462277248,"id":349,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/editor-header.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768461552859,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":95838,"timestamp":3462557355,"id":348,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461552831,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":63722,"timestamp":3462660522,"id":350,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461552934,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":571550,"timestamp":3462555470,"id":347,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461552829,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3463127059,"id":351,"parentId":347,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1182756864","memory.heapUsed":"487563640","memory.heapTotal":"574971904"},"startTime":1768461553401,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2363,"timestamp":3463196802,"id":352,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461553470,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2454,"timestamp":3463197672,"id":353,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461553471,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":148,"timestamp":3463200754,"id":354,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461553474,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":111,"timestamp":3463200919,"id":355,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461553475,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":134,"timestamp":3463201421,"id":356,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461553475,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":85,"timestamp":3463201569,"id":357,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461553475,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1976,"timestamp":3465677012,"id":358,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461555951,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":139000,"timestamp":3471234196,"id":359,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/providers/editor-provider.tsx"],"page":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","isPageHidden":false},"startTime":1768461561676,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4431,"timestamp":3550392924,"id":360,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461640667,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":332,"timestamp":3550398393,"id":361,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461640673,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":280,"timestamp":3550398758,"id":362,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461640673,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":214,"timestamp":3550399736,"id":363,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461640674,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":172,"timestamp":3550399975,"id":364,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461640674,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":111737,"timestamp":3550405024,"id":366,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461640679,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":103614,"timestamp":3550525025,"id":367,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768461640799,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":5050,"timestamp":3551266409,"id":368,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461641541,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":293,"timestamp":3551273174,"id":369,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461641547,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":221,"timestamp":3551273500,"id":370,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461641548,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":262,"timestamp":3551275019,"id":371,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461641549,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":211,"timestamp":3551275315,"id":372,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461641549,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":877234,"timestamp":3550400753,"id":365,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768461640675,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3551278027,"id":373,"parentId":365,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b","memory.rss":"1162301440","memory.heapUsed":"472244680","memory.heapTotal":"541880320"},"startTime":1768461641552,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4307,"timestamp":3552396837,"id":374,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461642671,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2609,"timestamp":3554045010,"id":375,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461644319,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":159790,"timestamp":3554052717,"id":377,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461644327,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":95287,"timestamp":3554219745,"id":378,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461644494,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":534359,"timestamp":3554048363,"id":376,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768461644322,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":4,"timestamp":3554582772,"id":379,"parentId":376,"tags":{"url":"/projects?_rsc=fi02c","memory.rss":"1234317312","memory.heapUsed":"502862632","memory.heapTotal":"554364928"},"startTime":1768461644857,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3014,"timestamp":3558946661,"id":380,"tags":{"url":"/projects"},"startTime":1768461649221,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":87200,"timestamp":3558953111,"id":382,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461649227,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":84824,"timestamp":3559049144,"id":383,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461649323,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":5940,"timestamp":3559512404,"id":384,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461649787,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":321,"timestamp":3559526284,"id":385,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461649800,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":238,"timestamp":3559526641,"id":386,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461649801,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":330,"timestamp":3559535797,"id":387,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461649810,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":226,"timestamp":3559536166,"id":388,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461649810,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":621905,"timestamp":3558950393,"id":381,"tags":{"url":"/projects"},"startTime":1768461649225,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":3559572344,"id":389,"parentId":381,"tags":{"url":"/projects","memory.rss":"1249841152","memory.heapUsed":"532728360","memory.heapTotal":"645115904"},"startTime":1768461649846,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2978,"timestamp":3560528474,"id":390,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461650803,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":4100,"timestamp":3588809847,"id":391,"tags":{"url":"/projects"},"startTime":1768461679084,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":86325,"timestamp":3588819697,"id":393,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461679094,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":94075,"timestamp":3588916481,"id":394,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768461679191,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":320431,"timestamp":3588814720,"id":392,"tags":{"url":"/projects"},"startTime":1768461679089,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":3589135212,"id":395,"parentId":392,"tags":{"url":"/projects","memory.rss":"1137905664","memory.heapUsed":"458428960","memory.heapTotal":"469131264"},"startTime":1768461679409,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2930,"timestamp":3589135928,"id":396,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461679410,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":362,"timestamp":3589141135,"id":397,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461679415,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":225,"timestamp":3589141541,"id":398,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461679416,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":349,"timestamp":3589144741,"id":399,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461679419,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":265,"timestamp":3589145456,"id":400,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768461679420,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2814,"timestamp":3590093669,"id":401,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768461680368,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3386,"timestamp":12295631253,"id":402,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=dz2vc"},"startTime":1768470385905,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":285,"timestamp":12295636287,"id":403,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768470385910,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":197,"timestamp":12295636606,"id":404,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768470385910,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":233,"timestamp":12295637812,"id":405,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768470385911,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":551,"timestamp":12295638071,"id":406,"parentId":3,"tags":{"inputPage":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b"},"startTime":1768470385911,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":90571,"timestamp":12295642927,"id":408,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768470385916,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":86294,"timestamp":12295741170,"id":409,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768470386015,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":264360,"timestamp":12295639660,"id":407,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=dz2vc"},"startTime":1768470385913,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":12295904119,"id":410,"parentId":407,"tags":{"url":"/editor/cf1e0d8c-aeca-4710-968e-774e9c5e426b?_rsc=dz2vc","memory.rss":"956559360","memory.heapUsed":"465251568","memory.heapTotal":"477458432"},"startTime":1768470386177,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2508,"timestamp":12299143743,"id":411,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768470389417,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":86897,"timestamp":12299149182,"id":413,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470389423,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":83328,"timestamp":12299243664,"id":414,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470389517,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":219496,"timestamp":12299146918,"id":412,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768470389420,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":12299366460,"id":415,"parentId":412,"tags":{"url":"/projects?_rsc=fi02c","memory.rss":"971890688","memory.heapUsed":"471028280","memory.heapTotal":"492011520"},"startTime":1768470389640,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2277,"timestamp":12310658185,"id":416,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768470400932,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":82704,"timestamp":12310663227,"id":418,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470400937,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":91994,"timestamp":12310753321,"id":419,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470401027,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":217300,"timestamp":12310661101,"id":417,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768470400934,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":12310878450,"id":420,"parentId":417,"tags":{"url":"/projects?_rsc=fi02c","memory.rss":"980348928","memory.heapUsed":"473348192","memory.heapTotal":"478117888"},"startTime":1768470401152,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2538,"timestamp":12365900353,"id":421,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768470456174,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":84377,"timestamp":12365907582,"id":423,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470456181,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":100585,"timestamp":12365998137,"id":424,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470456272,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":226378,"timestamp":12365904870,"id":422,"tags":{"url":"/projects?_rsc=fi02c"},"startTime":1768470456179,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":12366131303,"id":425,"parentId":422,"tags":{"url":"/projects?_rsc=fi02c","memory.rss":"980914176","memory.heapUsed":"476022096","memory.heapTotal":"486244352"},"startTime":1768470456405,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3230,"timestamp":12507626677,"id":426,"tags":{"url":"/projects"},"startTime":1768470597901,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":81957,"timestamp":12507634990,"id":428,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470597909,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":85356,"timestamp":12507723795,"id":429,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768470597998,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":318720,"timestamp":12507630794,"id":427,"tags":{"url":"/projects"},"startTime":1768470597905,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":12507949569,"id":430,"parentId":427,"tags":{"url":"/projects","memory.rss":"832614400","memory.heapUsed":"483608096","memory.heapTotal":"499879936"},"startTime":1768470598224,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":5402,"timestamp":12507956793,"id":431,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768470598231,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":355,"timestamp":12507964792,"id":432,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768470598239,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":233,"timestamp":12507965188,"id":433,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768470598239,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":301,"timestamp":12507967420,"id":434,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768470598242,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":252,"timestamp":12507967764,"id":435,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768470598242,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":3820,"timestamp":12509008776,"id":436,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768470599283,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":488000,"timestamp":12578578109,"id":437,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470669372,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":440000,"timestamp":12581843855,"id":438,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470672586,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":425000,"timestamp":12697957999,"id":439,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470788683,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":188000,"timestamp":12701047192,"id":440,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470791560,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":414000,"timestamp":12712645946,"id":441,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470803360,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":174000,"timestamp":12716795391,"id":442,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470807292,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":416000,"timestamp":12719980232,"id":443,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470810697,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":107000,"timestamp":12888782385,"id":444,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768470979787,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":187000,"timestamp":12906270370,"id":445,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768470996775,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":194000,"timestamp":13122046898,"id":446,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471212562,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":189000,"timestamp":13125141602,"id":447,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471215641,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":174000,"timestamp":13128655071,"id":448,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471219139,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1965,"timestamp":13153908820,"id":449,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768471244183,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":155,"timestamp":13153911779,"id":450,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471244186,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":85,"timestamp":13153911955,"id":451,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471244186,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":114,"timestamp":13153912803,"id":452,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471244187,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":70,"timestamp":13153912932,"id":453,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471244187,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":99,"timestamp":13153913323,"id":454,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471244188,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":79,"timestamp":13153913438,"id":455,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471244188,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":71145,"timestamp":13153913949,"id":457,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1768471244188,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":206000,"timestamp":13153720335,"id":459,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471244322,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":63088,"timestamp":13153986904,"id":458,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1768471244261,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":230508,"timestamp":13153913625,"id":456,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768471244188,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":2,"timestamp":13154144175,"id":460,"parentId":456,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"747188224","memory.heapUsed":"482921808","memory.heapTotal":"495927296"},"startTime":1768471244418,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":6866,"timestamp":13154176563,"id":461,"tags":{"url":"/projects"},"startTime":1768471244451,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":98821,"timestamp":13154185332,"id":464,"tags":{"trigger":"/projects"},"startTime":1768471244460,"traceId":"fe5b0ccdabecd374"}] -[{"name":"ensure-page","duration":57524,"timestamp":13154292806,"id":465,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768471244567,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":652767,"timestamp":13154183802,"id":462,"tags":{"url":"/projects"},"startTime":1768471244458,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":1,"timestamp":13154836603,"id":466,"parentId":462,"tags":{"url":"/projects","memory.rss":"831275008","memory.heapUsed":"501662408","memory.heapTotal":"584953856"},"startTime":1768471245111,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":1976,"timestamp":13154892602,"id":467,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768471245167,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":151,"timestamp":13154894989,"id":468,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768471245169,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":79,"timestamp":13154895159,"id":469,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768471245169,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":108,"timestamp":13154895496,"id":470,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768471245170,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":74,"timestamp":13154895616,"id":471,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768471245170,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":174000,"timestamp":13181220260,"id":472,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471271708,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":201000,"timestamp":13186435380,"id":473,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471276948,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":174000,"timestamp":13191970669,"id":474,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471282470,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":173000,"timestamp":13194072952,"id":475,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471284557,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":175000,"timestamp":13199673030,"id":476,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471290154,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":174000,"timestamp":13200723423,"id":477,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471291205,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":174000,"timestamp":13203662907,"id":478,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471294144,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":2016,"timestamp":13212916093,"id":479,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768471303190,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":153,"timestamp":13212918575,"id":480,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471303192,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":99,"timestamp":13212918749,"id":481,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471303192,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":120,"timestamp":13212919923,"id":482,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471303194,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":77,"timestamp":13212920059,"id":483,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471303194,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":112,"timestamp":13212920666,"id":484,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471303194,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":77,"timestamp":13212920799,"id":485,"parentId":3,"tags":{"inputPage":"/projects"},"startTime":1768471303194,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":67168,"timestamp":13212921436,"id":487,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1768471303195,"traceId":"fe5b0ccdabecd374"},{"name":"client-hmr-latency","duration":234000,"timestamp":13212727588,"id":489,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768471303285,"traceId":"fe5b0ccdabecd374"},{"name":"ensure-page","duration":66910,"timestamp":13212995355,"id":488,"parentId":3,"tags":{"inputPage":"/_not-found/page"},"startTime":1768471303269,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":167644,"timestamp":13212921009,"id":486,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768471303195,"traceId":"fe5b0ccdabecd374"},{"name":"memory-usage","duration":3,"timestamp":13213088694,"id":490,"parentId":486,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"818171904","memory.heapUsed":"496374976","memory.heapTotal":"507416576"},"startTime":1768471303362,"traceId":"fe5b0ccdabecd374"},{"name":"handle-request","duration":7166,"timestamp":13213101020,"id":491,"tags":{"url":"/projects"},"startTime":1768471303375,"traceId":"fe5b0ccdabecd374"},{"name":"compile-path","duration":77687,"timestamp":13213110332,"id":494,"tags":{"trigger":"/projects"},"startTime":1768471303384,"traceId":"fe5b0ccdabecd374"}] -[{"name":"hot-reloader","duration":53,"timestamp":606853350,"id":3,"tags":{"version":"15.5.7"},"startTime":1768471965126,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":387137,"timestamp":608236700,"id":4,"tags":{"trigger":"middleware"},"startTime":1768471966509,"traceId":"5e673718d1fe9e3e"}] -[{"name":"setup-dev-bundler","duration":2217066,"timestamp":606852192,"id":2,"parentId":1,"tags":{},"startTime":1768471965125,"traceId":"5e673718d1fe9e3e"},{"name":"start-dev-server","duration":4119509,"timestamp":605365190,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"18729742336","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"309780480","memory.heapTotal":"131678208","memory.heapUsed":"72951000"},"startTime":1768471963638,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":88700,"timestamp":633472160,"id":5,"tags":{"url":"/projects"},"startTime":1768471991745,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":8178381,"timestamp":633570742,"id":8,"tags":{"trigger":"/projects"},"startTime":1768471991843,"traceId":"5e673718d1fe9e3e"}] -[{"name":"ensure-page","duration":73645,"timestamp":641756723,"id":9,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472000029,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":9296210,"timestamp":633563223,"id":6,"tags":{"url":"/projects"},"startTime":1768471991836,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":12,"timestamp":642859623,"id":10,"parentId":6,"tags":{"url":"/projects","memory.rss":"1053442048","memory.heapUsed":"125649920","memory.heapTotal":"211693568"},"startTime":1768472001132,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":12077,"timestamp":643735645,"id":11,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768472002008,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":205000,"timestamp":668564459,"id":12,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472027070,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":203000,"timestamp":713950297,"id":13,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472072444,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":3112,"timestamp":761886863,"id":14,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472120159,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":183000,"timestamp":761710175,"id":18,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472120210,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":69379,"timestamp":761892079,"id":17,"tags":{"trigger":"/projects"},"startTime":1768472120164,"traceId":"5e673718d1fe9e3e"}] -[{"name":"ensure-page","duration":54361,"timestamp":761966156,"id":19,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472120238,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":207490,"timestamp":761890442,"id":15,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472120162,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":3,"timestamp":762097977,"id":20,"parentId":15,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"988360704","memory.heapUsed":"134865024","memory.heapTotal":"177152000"},"startTime":1768472120370,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2142,"timestamp":762222607,"id":21,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768472120494,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":172000,"timestamp":766639768,"id":22,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472125110,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":173000,"timestamp":772270430,"id":23,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472130740,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":186000,"timestamp":781874456,"id":24,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472140350,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":187000,"timestamp":784353005,"id":25,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472142828,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":174000,"timestamp":787034042,"id":26,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472145504,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":3129,"timestamp":790946644,"id":27,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472149218,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":268000,"timestamp":790681802,"id":31,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472149260,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":99464,"timestamp":790952189,"id":30,"tags":{"trigger":"/projects"},"startTime":1768472149224,"traceId":"5e673718d1fe9e3e"}] -[{"name":"ensure-page","duration":537097,"timestamp":791056423,"id":32,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472149328,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":721357,"timestamp":790950771,"id":28,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472149222,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":3,"timestamp":791672180,"id":33,"parentId":28,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"1004306432","memory.heapUsed":"146426520","memory.heapTotal":"183513088"},"startTime":1768472149944,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2249,"timestamp":791819062,"id":34,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768472150091,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":188000,"timestamp":794979534,"id":35,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472153465,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":185000,"timestamp":798267523,"id":36,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472156740,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":170000,"timestamp":1233253558,"id":37,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472591723,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":175000,"timestamp":1243633100,"id":38,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472602101,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":172000,"timestamp":1333676584,"id":39,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472692148,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":170000,"timestamp":1336226018,"id":40,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472694697,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":175000,"timestamp":1337501622,"id":41,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472695973,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":171000,"timestamp":1373077507,"id":42,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472731549,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":3378,"timestamp":1383231482,"id":43,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472741504,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":168000,"timestamp":1383104815,"id":47,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/utils.ts"],"page":"/projects","isPageHidden":false},"startTime":1768472741575,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":96864,"timestamp":1383237049,"id":46,"tags":{"trigger":"/projects"},"startTime":1768472741509,"traceId":"5e673718d1fe9e3e"}] -[{"name":"ensure-page","duration":56513,"timestamp":1383338875,"id":48,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472741611,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":291018,"timestamp":1383235350,"id":44,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472741508,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":3,"timestamp":1383526419,"id":49,"parentId":44,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"1009790976","memory.heapUsed":"159208240","memory.heapTotal":"183582720"},"startTime":1768472741799,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2177,"timestamp":1383672401,"id":50,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768472741945,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2244,"timestamp":1385641342,"id":51,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472743914,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":164000,"timestamp":1385530072,"id":55,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/utils.ts"],"page":"/projects","isPageHidden":false},"startTime":1768472744034,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":115886,"timestamp":1385645378,"id":54,"tags":{"trigger":"/projects"},"startTime":1768472743918,"traceId":"5e673718d1fe9e3e"}] -[{"name":"ensure-page","duration":58425,"timestamp":1385764695,"id":56,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472744037,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":249974,"timestamp":1385644026,"id":52,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768472743916,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":3,"timestamp":1385894033,"id":57,"parentId":52,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"1040654336","memory.heapUsed":"173597720","memory.heapTotal":"195428352"},"startTime":1768472744166,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2871,"timestamp":1386035349,"id":58,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768472744308,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":173000,"timestamp":1391699094,"id":59,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472750172,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":175000,"timestamp":1450265689,"id":60,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472808744,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2388,"timestamp":1451721203,"id":61,"tags":{"url":"/projects"},"startTime":1768472809994,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":187000,"timestamp":1451524082,"id":64,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472810032,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":67034,"timestamp":1451725655,"id":63,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472809998,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":1883,"timestamp":1451808896,"id":66,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768472810081,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":64670,"timestamp":1451797183,"id":65,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472810070,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":510262,"timestamp":1451724337,"id":62,"tags":{"url":"/projects"},"startTime":1768472809997,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":4,"timestamp":1452234650,"id":67,"parentId":62,"tags":{"url":"/projects","memory.rss":"1083473920","memory.heapUsed":"214522152","memory.heapTotal":"273833984"},"startTime":1768472810507,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":169000,"timestamp":1503491196,"id":68,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472861959,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2625,"timestamp":1507765953,"id":69,"tags":{"url":"/projects"},"startTime":1768472866038,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":171000,"timestamp":1507585362,"id":72,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768472866087,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2271,"timestamp":1507823105,"id":73,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768472866095,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":73946,"timestamp":1507771124,"id":71,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472866043,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":53603,"timestamp":1507847788,"id":74,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768472866120,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":373642,"timestamp":1507769715,"id":70,"tags":{"url":"/projects"},"startTime":1768472866042,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":2,"timestamp":1508143395,"id":75,"parentId":70,"tags":{"url":"/projects","memory.rss":"1116700672","memory.heapUsed":"247282400","memory.heapTotal":"275525632"},"startTime":1768472866415,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":177000,"timestamp":1591139407,"id":76,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472949611,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":267000,"timestamp":1593458897,"id":77,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472952023,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":176000,"timestamp":1602364009,"id":78,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768472960831,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":180000,"timestamp":1641773577,"id":79,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768473000254,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":171000,"timestamp":1645885687,"id":80,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768473004354,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":173000,"timestamp":1649452654,"id":81,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768473007918,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":173000,"timestamp":1651602558,"id":82,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768473010067,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":190000,"timestamp":1852098266,"id":83,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768473210575,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":5000,"timestamp":2564261972,"id":84,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768473922565,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":4000,"timestamp":2564292171,"id":85,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922579,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564306527,"id":86,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922588,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":3000,"timestamp":2564315083,"id":87,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922602,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564329632,"id":88,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922611,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564338392,"id":89,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922620,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564347188,"id":90,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922633,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564360298,"id":91,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922641,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564368616,"id":92,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922649,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564377358,"id":93,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922657,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564384731,"id":94,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922665,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":6435,"timestamp":2564400596,"id":95,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768473922673,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":6000,"timestamp":2564396836,"id":97,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922683,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564410809,"id":100,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx","[project]/node_modules/.bun/lucide-react@0.468.0+f4eacebf2041cd4f/node_modules/lucide-react/dist/esm/icons/search.js"],"page":"/projects","isPageHidden":false},"startTime":1768473922700,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564419115,"id":101,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922702,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564429812,"id":102,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922708,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564436090,"id":103,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922717,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564444514,"id":104,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922724,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564451870,"id":105,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922732,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564459805,"id":106,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922740,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":0,"timestamp":2564468924,"id":107,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922747,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564475872,"id":108,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922754,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":0,"timestamp":2564482673,"id":109,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922763,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564490645,"id":110,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922769,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":0,"timestamp":2564497100,"id":111,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922773,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564500109,"id":112,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922778,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":99799,"timestamp":2564411925,"id":99,"tags":{"trigger":"/projects"},"startTime":1768473922684,"traceId":"5e673718d1fe9e3e"}] -[{"name":"client-hmr-latency","duration":1000,"timestamp":2564505533,"id":113,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922792,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564515978,"id":115,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922801,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":4000,"timestamp":2564528476,"id":117,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922814,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":10265,"timestamp":2564537419,"id":116,"tags":{"url":"/projects"},"startTime":1768473922810,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564539628,"id":118,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922831,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564550234,"id":120,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922842,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":3000,"timestamp":2564564451,"id":121,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922854,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":3000,"timestamp":2564573647,"id":122,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922854,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564581317,"id":124,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922872,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":4000,"timestamp":2564594665,"id":125,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922880,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564602799,"id":126,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922886,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564610116,"id":127,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922919,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564616372,"id":128,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922919,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":3000,"timestamp":2564621490,"id":129,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922919,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564627579,"id":130,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922919,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564632646,"id":131,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922919,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":0,"timestamp":2564639710,"id":132,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922919,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564643945,"id":133,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922931,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564649366,"id":134,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922948,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564654781,"id":135,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922948,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":0,"timestamp":2564660912,"id":136,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922948,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":14000,"timestamp":2564665071,"id":137,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922966,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":15000,"timestamp":2564683506,"id":138,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922984,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564704642,"id":139,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473922984,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564711580,"id":140,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923001,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564717691,"id":141,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923001,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564724017,"id":142,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923027,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":2000,"timestamp":2564731197,"id":143,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923027,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":9000,"timestamp":2564737030,"id":144,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923039,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":6000,"timestamp":2564755211,"id":145,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923039,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":4000,"timestamp":2564764653,"id":146,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923098,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":1000,"timestamp":2564772765,"id":147,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":false},"startTime":1768473923098,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":5594,"timestamp":2564976105,"id":148,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768473923249,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":556845,"timestamp":2564522598,"id":114,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768473922795,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":922708,"timestamp":2564407928,"id":96,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768473922680,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":4,"timestamp":2565330760,"id":149,"parentId":96,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"1108439040","memory.heapUsed":"222039272","memory.heapTotal":"244572160"},"startTime":1768473923603,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":3947,"timestamp":2565332615,"id":150,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768473923605,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":766062,"timestamp":2564592996,"id":123,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768473922866,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":102145,"timestamp":2565343719,"id":152,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768473923616,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":105136,"timestamp":2565363946,"id":153,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768473923636,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":1229538,"timestamp":2564568043,"id":119,"tags":{"url":"/projects"},"startTime":1768473922841,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":3,"timestamp":2565797621,"id":156,"parentId":119,"tags":{"url":"/projects","memory.rss":"1145925632","memory.heapUsed":"245328240","memory.heapTotal":"309997568"},"startTime":1768473924070,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":11647,"timestamp":2565788068,"id":155,"tags":{"url":"/projects"},"startTime":1768473924061,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":421883,"timestamp":2565454380,"id":154,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768473923727,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":590466,"timestamp":2565337621,"id":151,"tags":{"url":"/projects?_rsc=1mrh3"},"startTime":1768473923610,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":5,"timestamp":2565928138,"id":159,"parentId":151,"tags":{"url":"/projects?_rsc=1mrh3","memory.rss":"1147244544","memory.heapUsed":"253650936","memory.heapTotal":"310984704"},"startTime":1768473924201,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":136296,"timestamp":2565806832,"id":158,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768473924079,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":95097,"timestamp":2565948794,"id":160,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768473924221,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":363064,"timestamp":2565801841,"id":157,"tags":{"url":"/projects"},"startTime":1768473924074,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":6,"timestamp":2566164955,"id":161,"parentId":157,"tags":{"url":"/projects","memory.rss":"1158135808","memory.heapUsed":"266056856","memory.heapTotal":"312295424"},"startTime":1768473924437,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":5587,"timestamp":2566930973,"id":162,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768473925204,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":203000,"timestamp":3940788127,"id":163,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768475299293,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":206000,"timestamp":3944449221,"id":164,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768475302991,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":3684,"timestamp":3958966752,"id":165,"tags":{"url":"/projects"},"startTime":1768475317240,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":3492,"timestamp":3959015238,"id":168,"tags":{"url":"/projects"},"startTime":1768475317288,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":197000,"timestamp":3958740965,"id":171,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768475317328,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":120453,"timestamp":3958973981,"id":167,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475317247,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":111915,"timestamp":3959023698,"id":170,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475317297,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":110955,"timestamp":3959102365,"id":172,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475317375,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":1054596,"timestamp":3958971256,"id":166,"tags":{"url":"/projects"},"startTime":1768475317244,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":4,"timestamp":3960025900,"id":174,"parentId":166,"tags":{"url":"/projects","memory.rss":"748204032","memory.heapUsed":"319778048","memory.heapTotal":"377692160"},"startTime":1768475318299,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":909260,"timestamp":3959145402,"id":173,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475317418,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":1275765,"timestamp":3959020598,"id":169,"tags":{"url":"/projects"},"startTime":1768475317294,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":2,"timestamp":3960296408,"id":175,"parentId":169,"tags":{"url":"/projects","memory.rss":"804446208","memory.heapUsed":"330667880","memory.heapTotal":"442318848"},"startTime":1768475318569,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":3284,"timestamp":3975621663,"id":176,"tags":{"url":"/projects"},"startTime":1768475333895,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2804,"timestamp":3975625665,"id":177,"tags":{"url":"/projects"},"startTime":1768475333899,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":196000,"timestamp":3975415716,"id":180,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768475333955,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":95833,"timestamp":3975635655,"id":179,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475333909,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":66953,"timestamp":3975738406,"id":181,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475334011,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":480858,"timestamp":3975633035,"id":178,"tags":{"url":"/projects"},"startTime":1768475333906,"traceId":"5e673718d1fe9e3e"},{"name":"memory-usage","duration":2,"timestamp":3976113941,"id":182,"parentId":178,"tags":{"url":"/projects","memory.rss":"747474944","memory.heapUsed":"305562048","memory.heapTotal":"370786304"},"startTime":1768475334387,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":2050,"timestamp":3977664688,"id":183,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768475335938,"traceId":"5e673718d1fe9e3e"},{"name":"client-hmr-latency","duration":172000,"timestamp":3988730775,"id":184,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/app/projects/page.tsx"],"page":"/projects","isPageHidden":true},"startTime":1768475347214,"traceId":"5e673718d1fe9e3e"},{"name":"handle-request","duration":6991,"timestamp":4001673087,"id":185,"tags":{"url":"/editor/1c860a40-1f9d-425a-b56c-a2c36cb05255?_rsc=qdzqe"},"startTime":1768475359946,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":983,"timestamp":4001681627,"id":186,"parentId":3,"tags":{"inputPage":"/editor/1c860a40-1f9d-425a-b56c-a2c36cb05255"},"startTime":1768475359954,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":257,"timestamp":4001682677,"id":187,"parentId":3,"tags":{"inputPage":"/editor/1c860a40-1f9d-425a-b56c-a2c36cb05255"},"startTime":1768475359955,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":327,"timestamp":4001684122,"id":188,"parentId":3,"tags":{"inputPage":"/editor/1c860a40-1f9d-425a-b56c-a2c36cb05255"},"startTime":1768475359957,"traceId":"5e673718d1fe9e3e"},{"name":"ensure-page","duration":253,"timestamp":4001684499,"id":189,"parentId":3,"tags":{"inputPage":"/editor/1c860a40-1f9d-425a-b56c-a2c36cb05255"},"startTime":1768475359957,"traceId":"5e673718d1fe9e3e"},{"name":"compile-path","duration":8185258,"timestamp":4001691438,"id":192,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768475359964,"traceId":"5e673718d1fe9e3e"}] -[{"name":"next-dev","duration":3727137827,"timestamp":602233159,"id":1,"tags":{},"startTime":1768471960506,"traceId":"5e673718d1fe9e3e"}] -[{"name":"hot-reloader","duration":47,"timestamp":4334081693,"id":3,"tags":{"version":"15.5.7"},"startTime":1768475692354,"traceId":"65b0bf41699e0a50"},{"name":"compile-path","duration":82629,"timestamp":4334144477,"id":4,"tags":{"trigger":"middleware"},"startTime":1768475692416,"traceId":"65b0bf41699e0a50"}] -[{"name":"setup-dev-bundler","duration":507891,"timestamp":4334080555,"id":2,"parentId":1,"tags":{},"startTime":1768475692353,"traceId":"65b0bf41699e0a50"},{"name":"start-dev-server","duration":1125150,"timestamp":4333537574,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"10549579776","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"315891712","memory.heapTotal":"131538944","memory.heapUsed":"86033888"},"startTime":1768475691810,"traceId":"65b0bf41699e0a50"},{"name":"handle-request","duration":39471,"timestamp":4334664586,"id":5,"tags":{"url":"/projects"},"startTime":1768475692937,"traceId":"65b0bf41699e0a50"},{"name":"compile-path","duration":2618943,"timestamp":4334707058,"id":8,"tags":{"trigger":"/projects"},"startTime":1768475692979,"traceId":"65b0bf41699e0a50"}] -[{"name":"next-dev","duration":46408662,"timestamp":4332958453,"id":1,"tags":{},"startTime":1768475691231,"traceId":"65b0bf41699e0a50"}] -[{"name":"hot-reloader","duration":47,"timestamp":4381635462,"id":3,"tags":{"version":"15.5.7"},"startTime":1768475739907,"traceId":"89f9953773b9656e"},{"name":"compile-path","duration":87419,"timestamp":4381692893,"id":4,"tags":{"trigger":"middleware"},"startTime":1768475739965,"traceId":"89f9953773b9656e"}] -[{"name":"setup-dev-bundler","duration":500698,"timestamp":4381634268,"id":2,"parentId":1,"tags":{},"startTime":1768475739906,"traceId":"89f9953773b9656e"},{"name":"start-dev-server","duration":1125418,"timestamp":4381077549,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"10010611712","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"315215872","memory.heapTotal":"130752512","memory.heapUsed":"86045232"},"startTime":1768475739350,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":40585,"timestamp":4382658924,"id":5,"tags":{"url":"/projects"},"startTime":1768475740931,"traceId":"89f9953773b9656e"},{"name":"compile-path","duration":2651712,"timestamp":4382702597,"id":8,"tags":{"trigger":"/projects"},"startTime":1768475740975,"traceId":"89f9953773b9656e"}] -[{"name":"ensure-page","duration":54704,"timestamp":4385390840,"id":9,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475743663,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":3101029,"timestamp":4382701004,"id":6,"tags":{"url":"/projects"},"startTime":1768475740973,"traceId":"89f9953773b9656e"},{"name":"memory-usage","duration":5,"timestamp":4385802112,"id":10,"parentId":6,"tags":{"url":"/projects","memory.rss":"1074438144","memory.heapUsed":"176072520","memory.heapTotal":"268599296"},"startTime":1768475744074,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":2973,"timestamp":4385875289,"id":11,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475744147,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":367,"timestamp":4385878843,"id":12,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475744151,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":130,"timestamp":4385879241,"id":13,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475744151,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":135,"timestamp":4385879842,"id":14,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475744152,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":122,"timestamp":4385880002,"id":15,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475744152,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":2736,"timestamp":4388258580,"id":16,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768475746531,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":6711,"timestamp":4439559246,"id":17,"tags":{"url":"/projects"},"startTime":1768475797831,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":115120,"timestamp":4439570369,"id":19,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475797842,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":94922,"timestamp":4439689140,"id":20,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768475797961,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":4182,"timestamp":4439935530,"id":21,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475798208,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":574,"timestamp":4439941067,"id":22,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475798213,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":298,"timestamp":4439941691,"id":23,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475798214,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":332,"timestamp":4439943817,"id":24,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475798216,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":254,"timestamp":4439944192,"id":25,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768475798216,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":383023,"timestamp":4439566871,"id":18,"tags":{"url":"/projects"},"startTime":1768475797839,"traceId":"89f9953773b9656e"},{"name":"memory-usage","duration":4,"timestamp":4439949964,"id":26,"parentId":18,"tags":{"url":"/projects","memory.rss":"1013395456","memory.heapUsed":"134378744","memory.heapTotal":"142684160"},"startTime":1768475798222,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":11966,"timestamp":4441024705,"id":27,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768475799297,"traceId":"89f9953773b9656e"},{"name":"client-hmr-latency","duration":203000,"timestamp":4475031516,"id":28,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/storage/storage-service.ts"],"page":"/projects","isPageHidden":false},"startTime":1768475833587,"traceId":"89f9953773b9656e"},{"name":"client-hmr-latency","duration":233000,"timestamp":4487115101,"id":29,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/storage/storage-service.ts"],"page":"/projects","isPageHidden":false},"startTime":1768475845695,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":13734,"timestamp":49341704355,"id":30,"tags":{"url":"/"},"startTime":1768520699956,"traceId":"89f9953773b9656e"},{"name":"compile-path","duration":2192453,"timestamp":49341725864,"id":33,"tags":{"trigger":"/"},"startTime":1768520699977,"traceId":"89f9953773b9656e"}] -[{"name":"ensure-page","duration":72011,"timestamp":49343930722,"id":34,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768520702182,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":2735640,"timestamp":49341719926,"id":31,"tags":{"url":"/"},"startTime":1768520699971,"traceId":"89f9953773b9656e"},{"name":"memory-usage","duration":6,"timestamp":49344455667,"id":35,"parentId":31,"tags":{"url":"/","memory.rss":"949882880","memory.heapUsed":"187062760","memory.heapTotal":"254349312"},"startTime":1768520702707,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":7503,"timestamp":49344786241,"id":36,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768520703038,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":86820,"timestamp":49344795618,"id":37,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768520703047,"traceId":"89f9953773b9656e"},{"name":"memory-usage","duration":2,"timestamp":49344882502,"id":39,"parentId":37,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"956616704","memory.heapUsed":"191762688","memory.heapTotal":"254873600"},"startTime":1768520703134,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":4290,"timestamp":49344882424,"id":38,"tags":{"url":"/landing-page-dark.png"},"startTime":1768520703134,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":4481,"timestamp":49348043707,"id":40,"tags":{"url":"/projects?_rsc=vusbg"},"startTime":1768520706295,"traceId":"89f9953773b9656e"},{"name":"compile-path","duration":86944,"timestamp":49348052040,"id":43,"tags":{"trigger":"/projects"},"startTime":1768520706303,"traceId":"89f9953773b9656e"}] -[{"name":"ensure-page","duration":82282,"timestamp":49348146520,"id":44,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768520706398,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":299022,"timestamp":49348048958,"id":41,"tags":{"url":"/projects?_rsc=vusbg"},"startTime":1768520706300,"traceId":"89f9953773b9656e"},{"name":"memory-usage","duration":4,"timestamp":49348348035,"id":45,"parentId":41,"tags":{"url":"/projects?_rsc=vusbg","memory.rss":"886992896","memory.heapUsed":"231663936","memory.heapTotal":"274882560"},"startTime":1768520706599,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":4499,"timestamp":49357057925,"id":46,"tags":{"url":"/projects"},"startTime":1768520715308,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":71352,"timestamp":49357065910,"id":48,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768520715316,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":64427,"timestamp":49357148543,"id":49,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768520715399,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":582229,"timestamp":49357063271,"id":47,"tags":{"url":"/projects"},"startTime":1768520715314,"traceId":"89f9953773b9656e"},{"name":"memory-usage","duration":4,"timestamp":49357645574,"id":50,"parentId":47,"tags":{"url":"/projects","memory.rss":"849747968","memory.heapUsed":"205122336","memory.heapTotal":"242069504"},"startTime":1768520715896,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":4716,"timestamp":49358073766,"id":51,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768520716324,"traceId":"89f9953773b9656e"},{"name":"handle-request","duration":3182,"timestamp":49366712889,"id":52,"tags":{"url":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69?_rsc=qdzqe"},"startTime":1768520724963,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":699,"timestamp":49366716901,"id":53,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768520724967,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":266,"timestamp":49366717663,"id":54,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768520724968,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":254,"timestamp":49366718847,"id":55,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768520724969,"traceId":"89f9953773b9656e"},{"name":"ensure-page","duration":240,"timestamp":49366719135,"id":56,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768520724970,"traceId":"89f9953773b9656e"},{"name":"compile-path","duration":3161411,"timestamp":49366725229,"id":59,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768520724976,"traceId":"89f9953773b9656e"}] -[{"name":"hot-reloader","duration":48,"timestamp":4122417733,"id":3,"tags":{"version":"15.5.7"},"startTime":1768558016691,"traceId":"dc6a3ab27912533c"},{"name":"compile-path","duration":409863,"timestamp":4123823577,"id":4,"tags":{"trigger":"middleware"},"startTime":1768558018097,"traceId":"dc6a3ab27912533c"}] -[{"name":"setup-dev-bundler","duration":2275641,"timestamp":4122416567,"id":2,"parentId":1,"tags":{},"startTime":1768558016690,"traceId":"dc6a3ab27912533c"},{"name":"start-dev-server","duration":4496263,"timestamp":4120690109,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"9691627520","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"310255616","memory.heapTotal":"131416064","memory.heapUsed":"72824272"},"startTime":1768558014964,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":77268,"timestamp":4437094055,"id":5,"tags":{"url":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768558331367,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":672,"timestamp":4437174228,"id":6,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768558331447,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":198,"timestamp":4437174936,"id":7,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768558331448,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":234,"timestamp":4437175852,"id":8,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768558331449,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":190,"timestamp":4437176167,"id":9,"parentId":3,"tags":{"inputPage":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768558331449,"traceId":"dc6a3ab27912533c"},{"name":"compile-path","duration":11316529,"timestamp":4437181758,"id":12,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768558331455,"traceId":"dc6a3ab27912533c"}] -[{"name":"ensure-page","duration":99340,"timestamp":4448507191,"id":13,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768558342780,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":12937845,"timestamp":4437177668,"id":10,"tags":{"url":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69"},"startTime":1768558331450,"traceId":"dc6a3ab27912533c"},{"name":"memory-usage","duration":8,"timestamp":4450115602,"id":14,"parentId":10,"tags":{"url":"/editor/277cacfb-7511-4cca-8b3c-c4dcfc662a69","memory.rss":"1361240064","memory.heapUsed":"174142456","memory.heapTotal":"227016704"},"startTime":1768558344388,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":5906,"timestamp":4457466016,"id":15,"tags":{"url":"/projects?_rsc=1mamz"},"startTime":1768558351739,"traceId":"dc6a3ab27912533c"},{"name":"compile-path","duration":1069456,"timestamp":4457477769,"id":18,"tags":{"trigger":"/projects"},"startTime":1768558351751,"traceId":"dc6a3ab27912533c"}] -[{"name":"ensure-page","duration":108610,"timestamp":4458555285,"id":19,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768558352828,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":1262769,"timestamp":4457472807,"id":16,"tags":{"url":"/projects?_rsc=1mamz"},"startTime":1768558351746,"traceId":"dc6a3ab27912533c"},{"name":"memory-usage","duration":5,"timestamp":4458735651,"id":20,"parentId":16,"tags":{"url":"/projects?_rsc=1mamz","memory.rss":"1319882752","memory.heapUsed":"154326152","memory.heapTotal":"163155968"},"startTime":1768558353008,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":4026,"timestamp":4459898815,"id":21,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=qdzqe"},"startTime":1768558354172,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":290,"timestamp":4459903695,"id":22,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558354176,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":251,"timestamp":4459904030,"id":23,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558354177,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":240,"timestamp":4459906324,"id":24,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558354179,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":176,"timestamp":4459906596,"id":25,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558354179,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":91983,"timestamp":4459910151,"id":27,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768558354183,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":104166,"timestamp":4460009414,"id":28,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768558354282,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":269416,"timestamp":4459907704,"id":26,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=qdzqe"},"startTime":1768558354180,"traceId":"dc6a3ab27912533c"},{"name":"memory-usage","duration":7,"timestamp":4460177174,"id":29,"parentId":26,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=qdzqe","memory.rss":"1327616000","memory.heapUsed":"160632344","memory.heapTotal":"175185920"},"startTime":1768558354450,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":395000,"timestamp":4599527000,"id":30,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558494221,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":248000,"timestamp":4602540363,"id":31,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558497073,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":372000,"timestamp":4604065223,"id":32,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558498724,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":226000,"timestamp":4606678055,"id":33,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558501199,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":5407,"timestamp":4618870428,"id":34,"tags":{"url":"/manifest.json"},"startTime":1768558513143,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":5396,"timestamp":4618878584,"id":35,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768558513151,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":334,"timestamp":4618885302,"id":36,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768558513158,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":319,"timestamp":4618885684,"id":37,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768558513158,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":625,"timestamp":4618888267,"id":38,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768558513161,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":237,"timestamp":4618888934,"id":39,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768558513162,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":487000,"timestamp":4680946253,"id":40,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558576122,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":269000,"timestamp":4689638129,"id":41,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558584271,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":251000,"timestamp":4692044562,"id":42,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558586638,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":222000,"timestamp":4694002122,"id":43,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558588901,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":217000,"timestamp":4695943859,"id":44,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558590816,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":227000,"timestamp":4697670683,"id":45,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558592613,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":221000,"timestamp":4708619989,"id":46,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558603140,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":265000,"timestamp":4709912833,"id":47,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558604480,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":250000,"timestamp":4726606970,"id":48,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558621155,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":219000,"timestamp":4730462362,"id":49,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558624971,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":217000,"timestamp":4734024302,"id":50,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558628530,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":219000,"timestamp":4737380901,"id":51,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558631902,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":237000,"timestamp":4739211787,"id":52,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558633749,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":211000,"timestamp":4740204772,"id":53,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558634769,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":247000,"timestamp":4905799219,"id":54,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/captions.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558800337,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":290000,"timestamp":4908917432,"id":55,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/captions.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558803498,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":3489,"timestamp":4912473513,"id":56,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768558806746,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":269,"timestamp":4912477665,"id":57,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558806750,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":204,"timestamp":4912477970,"id":58,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558806750,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":200,"timestamp":4912479871,"id":59,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558806752,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":98,"timestamp":4912480095,"id":60,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558806752,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":279000,"timestamp":4912239612,"id":64,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/captions.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558806806,"traceId":"dc6a3ab27912533c"},{"name":"compile-path","duration":92997,"timestamp":4912482870,"id":63,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768558806755,"traceId":"dc6a3ab27912533c"}] -[{"name":"ensure-page","duration":85832,"timestamp":4912581660,"id":65,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768558806854,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":358565,"timestamp":4912480985,"id":61,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768558806753,"traceId":"dc6a3ab27912533c"},{"name":"memory-usage","duration":3,"timestamp":4912839602,"id":66,"parentId":61,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz","memory.rss":"1339736064","memory.heapUsed":"162891504","memory.heapTotal":"184623104"},"startTime":1768558807112,"traceId":"dc6a3ab27912533c"},{"name":"client-hmr-latency","duration":191000,"timestamp":4913642197,"id":67,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-timeline-zoom.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768558808244,"traceId":"dc6a3ab27912533c"},{"name":"handle-request","duration":3324,"timestamp":4918609284,"id":68,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768558812882,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":178,"timestamp":4918613355,"id":69,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558812886,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":85,"timestamp":4918613558,"id":70,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558812886,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":109,"timestamp":4918613899,"id":71,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558812886,"traceId":"dc6a3ab27912533c"},{"name":"ensure-page","duration":71,"timestamp":4918614025,"id":72,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768558812886,"traceId":"dc6a3ab27912533c"},{"name":"compile-path","duration":77128,"timestamp":4918616121,"id":75,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768558812888,"traceId":"dc6a3ab27912533c"}] -[{"name":"next-dev","duration":1106495037,"timestamp":4117343352,"id":1,"tags":{},"startTime":1768558011617,"traceId":"dc6a3ab27912533c"}] -[{"name":"hot-reloader","duration":61,"timestamp":5227714396,"id":3,"tags":{"version":"15.5.7"},"startTime":1768559121988,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":81263,"timestamp":5227772948,"id":4,"tags":{"trigger":"middleware"},"startTime":1768559122046,"traceId":"5ef2924dee457795"}] -[{"name":"setup-dev-bundler","duration":496007,"timestamp":5227713005,"id":2,"parentId":1,"tags":{},"startTime":1768559121986,"traceId":"5ef2924dee457795"},{"name":"start-dev-server","duration":1132586,"timestamp":5227145327,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"7277891584","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"315908096","memory.heapTotal":"131014656","memory.heapUsed":"86138064"},"startTime":1768559121419,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":81685,"timestamp":5237085602,"id":5,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559131359,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":875,"timestamp":5237171058,"id":6,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559131444,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":201,"timestamp":5237171982,"id":7,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559131445,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":195,"timestamp":5237172898,"id":8,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559131446,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":151,"timestamp":5237173144,"id":9,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559131446,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":6084649,"timestamp":5237177686,"id":12,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768559131451,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":49435,"timestamp":5243267938,"id":13,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768559137541,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":7059984,"timestamp":5237174672,"id":10,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559131448,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":5244234702,"id":14,"parentId":10,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1364328448","memory.heapUsed":"155294240","memory.heapTotal":"274112512"},"startTime":1768559138508,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3173,"timestamp":5244381454,"id":15,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559138655,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":219,"timestamp":5244385453,"id":16,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559138659,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":275,"timestamp":5244385703,"id":17,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559138659,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":197,"timestamp":5244386584,"id":18,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559138660,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":139,"timestamp":5244386805,"id":19,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559138660,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2147,"timestamp":5248825120,"id":20,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768559143098,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":248000,"timestamp":5345946214,"id":21,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-timeline-zoom.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768559240551,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6327,"timestamp":5390986377,"id":22,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559285260,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":357,"timestamp":5390993542,"id":23,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559285267,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":320,"timestamp":5390993951,"id":24,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559285267,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":249,"timestamp":5390994965,"id":25,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559285268,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":254,"timestamp":5390995246,"id":26,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559285268,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":117941,"timestamp":5391000667,"id":28,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768559285274,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":82077,"timestamp":5391125493,"id":29,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768559285399,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":25237,"timestamp":5391653332,"id":30,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559285926,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":411,"timestamp":5391681099,"id":31,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559285954,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":276,"timestamp":5391681551,"id":32,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559285955,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":284,"timestamp":5391683302,"id":33,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559285956,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":242,"timestamp":5391683622,"id":34,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559285957,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":700748,"timestamp":5390996444,"id":27,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559285270,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":5391697312,"id":35,"parentId":27,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1319120896","memory.heapUsed":"165380472","memory.heapTotal":"239898624"},"startTime":1768559285970,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":7944,"timestamp":5392841005,"id":36,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768559287114,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":7453,"timestamp":5414968937,"id":37,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559309241,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":303,"timestamp":5414977405,"id":38,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559309249,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":193,"timestamp":5414977738,"id":39,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559309250,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":227,"timestamp":5414978888,"id":40,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559309251,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":183,"timestamp":5414979143,"id":41,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559309251,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90449,"timestamp":5414984980,"id":43,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768559309257,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90336,"timestamp":5415083658,"id":44,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768559309356,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":323506,"timestamp":5414980155,"id":42,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559309252,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":5415303750,"id":45,"parentId":42,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1303306240","memory.heapUsed":"168377344","memory.heapTotal":"176459776"},"startTime":1768559309576,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5099,"timestamp":5415330571,"id":46,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559309603,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":304,"timestamp":5415336300,"id":47,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559309608,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":203,"timestamp":5415336633,"id":48,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559309609,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":392,"timestamp":5415339543,"id":49,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559309612,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":316,"timestamp":5415339974,"id":50,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559309612,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5539,"timestamp":5416474095,"id":51,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768559310746,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":2748000,"timestamp":5473351353,"id":52,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-timeline-zoom.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768559370480,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6831,"timestamp":5512347191,"id":53,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559406620,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":316,"timestamp":5512354827,"id":54,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559406627,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":216,"timestamp":5512355179,"id":55,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559406628,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":240,"timestamp":5512355996,"id":56,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559406628,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":210,"timestamp":5512356266,"id":57,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559406629,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":105258,"timestamp":5512360318,"id":59,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768559406633,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86913,"timestamp":5512473177,"id":60,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768559406746,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":920414,"timestamp":5512357209,"id":58,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768559406630,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":5513277700,"id":61,"parentId":58,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1373102080","memory.heapUsed":"222369840","memory.heapTotal":"281522176"},"startTime":1768559407550,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6670,"timestamp":5513281771,"id":62,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559407554,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":347,"timestamp":5513290793,"id":63,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559407563,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":235,"timestamp":5513291180,"id":64,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559407564,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":283,"timestamp":5513292663,"id":65,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559407565,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":290,"timestamp":5513292976,"id":66,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768559407565,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3654,"timestamp":5514511565,"id":67,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768559408784,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":155000,"timestamp":5551587016,"id":68,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-timeline-zoom.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768559446143,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":231000,"timestamp":6217788080,"id":69,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560112326,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":228000,"timestamp":6225446916,"id":70,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560119980,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":6270339557,"id":71,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560164875,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5062,"timestamp":6289043334,"id":72,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560183316,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":299,"timestamp":6289049660,"id":73,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560183323,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":205,"timestamp":6289049990,"id":74,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560183323,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":280,"timestamp":6289051153,"id":75,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560183324,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":478,"timestamp":6289051461,"id":76,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560183324,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":106475,"timestamp":6289056290,"id":78,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768560183329,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":59480,"timestamp":6289172247,"id":79,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768560183445,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":567848,"timestamp":6289053521,"id":77,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560183326,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":6289621449,"id":80,"parentId":77,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1365037056","memory.heapUsed":"209588184","memory.heapTotal":"268304384"},"startTime":1768560183894,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4672,"timestamp":6289626732,"id":81,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560183900,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":345,"timestamp":6289633010,"id":82,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560183906,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":230,"timestamp":6289633389,"id":83,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560183906,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":335,"timestamp":6289635153,"id":84,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560183908,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":214,"timestamp":6289635518,"id":85,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560183908,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6165,"timestamp":6290782163,"id":86,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768560185055,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2608,"timestamp":6308568984,"id":87,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560202842,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":231,"timestamp":6308572245,"id":88,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560202845,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":298,"timestamp":6308572500,"id":89,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560202845,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":212,"timestamp":6308573638,"id":90,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560202847,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":428,"timestamp":6308573876,"id":91,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560202847,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":105421,"timestamp":6308578918,"id":93,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768560202852,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":80089,"timestamp":6308690976,"id":94,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768560202964,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":317770,"timestamp":6308575021,"id":92,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768560202848,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":6308892868,"id":95,"parentId":92,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1383755776","memory.heapUsed":"192706584","memory.heapTotal":"252743680"},"startTime":1768560203166,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4445,"timestamp":6308894383,"id":96,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560203167,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":450,"timestamp":6308900468,"id":97,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560203173,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":254,"timestamp":6308900955,"id":98,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560203174,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":256,"timestamp":6308902434,"id":99,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560203175,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":222,"timestamp":6308902716,"id":100,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768560203176,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6874,"timestamp":6310008851,"id":101,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768560204282,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":6414641814,"id":102,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560309145,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":376000,"timestamp":6522691145,"id":103,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560417371,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":389000,"timestamp":6533630227,"id":104,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560428326,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":389000,"timestamp":6537232676,"id":105,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560431912,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":309000,"timestamp":6557729986,"id":106,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560452342,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":437000,"timestamp":6560764888,"id":107,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560455511,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":587000,"timestamp":6566571083,"id":108,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560461489,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":378000,"timestamp":6594284889,"id":109,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560488959,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":322000,"timestamp":6598046796,"id":110,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560492678,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":270000,"timestamp":6623155201,"id":111,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560517727,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":156000,"timestamp":6651111511,"id":112,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/constants/timeline-constants.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560545573,"traceId":"5ef2924dee457795"}] -[{"name":"client-hmr-latency","duration":200000,"timestamp":6940895220,"id":113,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768560835576,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":7352535016,"id":114,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768561247244,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4881,"timestamp":7361318483,"id":115,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561255591,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":439,"timestamp":7361324909,"id":116,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561255597,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":327,"timestamp":7361325437,"id":117,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561255597,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":297,"timestamp":7361326766,"id":118,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561255599,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":223,"timestamp":7361327091,"id":119,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561255599,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":106450,"timestamp":7361331117,"id":121,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768561255603,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86472,"timestamp":7361444015,"id":122,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768561255716,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4681,"timestamp":7362344649,"id":123,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561256617,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":304,"timestamp":7362370296,"id":124,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561256642,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":203,"timestamp":7362370630,"id":125,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561256643,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":249,"timestamp":7362372275,"id":126,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561256644,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":204,"timestamp":7362372551,"id":127,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561256645,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1047300,"timestamp":7361328320,"id":120,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561255600,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":7362375703,"id":128,"parentId":120,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"843808768","memory.heapUsed":"173519552","memory.heapTotal":"319463424"},"startTime":1768561256648,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6794,"timestamp":7363521449,"id":129,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768561257794,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":155000,"timestamp":7434747873,"id":130,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-action-handler.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768561329206,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4948,"timestamp":7495981311,"id":131,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561390255,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":335,"timestamp":7495987543,"id":132,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561390261,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":225,"timestamp":7495987916,"id":133,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561390261,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":324,"timestamp":7495989150,"id":134,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561390262,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":230,"timestamp":7495989505,"id":135,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561390263,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":111683,"timestamp":7495994240,"id":137,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768561390268,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86654,"timestamp":7496113573,"id":138,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768561390387,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1007623,"timestamp":7495990926,"id":136,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768561390264,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":7496998626,"id":139,"parentId":136,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"812941312","memory.heapUsed":"197954752","memory.heapTotal":"259670016"},"startTime":1768561391272,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4423,"timestamp":7497006296,"id":140,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561391280,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":182,"timestamp":7497011553,"id":141,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561391285,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":274,"timestamp":7497011754,"id":142,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561391285,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":218,"timestamp":7497012855,"id":143,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561391286,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":283,"timestamp":7497013096,"id":144,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768561391286,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1921,"timestamp":7500936183,"id":145,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768561395209,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":8155658919,"id":146,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768562050325,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":8464979263,"id":147,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562359532,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":203000,"timestamp":8554897013,"id":148,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562449438,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":185000,"timestamp":8643486931,"id":149,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562538000,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3139,"timestamp":8645626043,"id":150,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562539899,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":284,"timestamp":8645630033,"id":151,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562539903,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":198,"timestamp":8645630344,"id":152,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562539904,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":198,"timestamp":8645631029,"id":153,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562539904,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":271,"timestamp":8645631248,"id":154,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562539904,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":112954,"timestamp":8645637645,"id":156,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768562539911,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90488,"timestamp":8645759563,"id":157,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768562540033,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":640378,"timestamp":8645632544,"id":155,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562539906,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":8646273000,"id":158,"parentId":155,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"651804672","memory.heapUsed":"194297008","memory.heapTotal":"303640576"},"startTime":1768562540546,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5170,"timestamp":8646277297,"id":159,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562540551,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":382,"timestamp":8646283948,"id":160,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562540557,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":253,"timestamp":8646284372,"id":161,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562540558,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":244,"timestamp":8646285644,"id":162,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562540559,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":203,"timestamp":8646285911,"id":163,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562540559,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4162,"timestamp":8647448868,"id":164,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768562541722,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":248000,"timestamp":8671005027,"id":165,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562565603,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5383,"timestamp":8672654429,"id":166,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562566928,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":278,"timestamp":8672661093,"id":167,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562566934,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":176,"timestamp":8672661398,"id":168,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562566935,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":204,"timestamp":8672662424,"id":169,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562566936,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":164,"timestamp":8672662651,"id":170,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562566936,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86131,"timestamp":8672667752,"id":172,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768562566941,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":57964,"timestamp":8672758458,"id":173,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768562567032,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":572362,"timestamp":8672663434,"id":171,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562566937,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":8673235878,"id":174,"parentId":171,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"624189440","memory.heapUsed":"202548872","memory.heapTotal":"264871936"},"startTime":1768562567509,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4667,"timestamp":8673237782,"id":175,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562567511,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":311,"timestamp":8673243552,"id":176,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562567517,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":193,"timestamp":8673243891,"id":177,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562567517,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":218,"timestamp":8673244915,"id":178,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562567518,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":177,"timestamp":8673245153,"id":179,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562567518,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4780,"timestamp":8674282287,"id":180,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768562568556,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":203000,"timestamp":8683234946,"id":181,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562577769,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":200000,"timestamp":8791101793,"id":182,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562685607,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":380000,"timestamp":8793250396,"id":183,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562687926,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":358000,"timestamp":8801037186,"id":184,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562695697,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":383000,"timestamp":8804150258,"id":185,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562698840,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":247000,"timestamp":8807739546,"id":186,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-tick.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562702276,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":295000,"timestamp":8820090531,"id":187,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/constants/timeline-constants.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562714677,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":312000,"timestamp":8824013086,"id":188,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/constants/timeline-constants.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562718812,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":171000,"timestamp":8826814816,"id":189,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/constants/timeline-constants.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562721738,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":283000,"timestamp":8829166192,"id":190,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/constants/timeline-constants.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562723928,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":173000,"timestamp":8835791814,"id":191,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/constants/timeline-constants.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768562730263,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5491,"timestamp":8850383630,"id":192,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562744657,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":530,"timestamp":8850390809,"id":193,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562744664,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":281,"timestamp":8850391388,"id":194,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562744664,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":295,"timestamp":8850392664,"id":195,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562744666,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":317,"timestamp":8850393064,"id":196,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562744666,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":115010,"timestamp":8850400126,"id":198,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768562744673,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":83163,"timestamp":8850521905,"id":199,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768562744795,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":7202,"timestamp":8851061600,"id":200,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562745335,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":385,"timestamp":8851088361,"id":201,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562745361,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":262,"timestamp":8851088781,"id":202,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562745362,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":304,"timestamp":8851090765,"id":203,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562745364,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":228,"timestamp":8851091095,"id":204,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768562745364,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":700266,"timestamp":8850394144,"id":197,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768562744667,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":8851094529,"id":205,"parentId":197,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"606052352","memory.heapUsed":"172834224","memory.heapTotal":"272375808"},"startTime":1768562745368,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3427,"timestamp":8852318090,"id":206,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768562746591,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":319000,"timestamp":10422450561,"id":207,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/storage/storage-service.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768564317094,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4962,"timestamp":10441545124,"id":208,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564335818,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":395,"timestamp":10441551413,"id":209,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564335825,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":190,"timestamp":10441551842,"id":210,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564335825,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":222,"timestamp":10441552886,"id":211,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564335826,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":181,"timestamp":10441553130,"id":212,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564335826,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":109092,"timestamp":10441557642,"id":214,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564335831,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":87013,"timestamp":10441671714,"id":215,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564335945,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":880752,"timestamp":10441554018,"id":213,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564335827,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":10442434857,"id":216,"parentId":213,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"497561600","memory.heapUsed":"198667808","memory.heapTotal":"261214208"},"startTime":1768564336708,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4393,"timestamp":10442436284,"id":217,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564336710,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":455,"timestamp":10442441988,"id":218,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564336715,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":249,"timestamp":10442442487,"id":219,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564336716,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":479,"timestamp":10442443787,"id":220,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564336717,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":324,"timestamp":10442444535,"id":221,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564336718,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5054,"timestamp":10443533447,"id":222,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564337807,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4376,"timestamp":10483089625,"id":223,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564377363,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":361,"timestamp":10483094790,"id":224,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564377368,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":281,"timestamp":10483095190,"id":225,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564377368,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":261,"timestamp":10483096149,"id":226,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564377369,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":231,"timestamp":10483096439,"id":227,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564377369,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":83293,"timestamp":10483101392,"id":229,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564377374,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":81398,"timestamp":10483193547,"id":230,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564377466,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":273330,"timestamp":10483097491,"id":228,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564377370,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":10483370897,"id":231,"parentId":228,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"529043456","memory.heapUsed":"193721544","memory.heapTotal":"255184896"},"startTime":1768564377644,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4696,"timestamp":10483378343,"id":232,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564377651,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":338,"timestamp":10483384721,"id":233,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564377658,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":427,"timestamp":10483385138,"id":234,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564377658,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":353,"timestamp":10483386653,"id":235,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564377660,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":291,"timestamp":10483387037,"id":236,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564377660,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6449,"timestamp":10484431045,"id":237,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564378704,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3295,"timestamp":10502785295,"id":238,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564397058,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":320,"timestamp":10502789890,"id":239,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564397063,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":215,"timestamp":10502790245,"id":240,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564397063,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":220,"timestamp":10502791074,"id":241,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564397064,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":170,"timestamp":10502791316,"id":242,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564397064,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":80279,"timestamp":10502795088,"id":244,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564397068,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":83246,"timestamp":10502883618,"id":245,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564397157,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":278096,"timestamp":10502792093,"id":243,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564397065,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":10503070258,"id":246,"parentId":243,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"519274496","memory.heapUsed":"180097968","memory.heapTotal":"223465472"},"startTime":1768564397343,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4648,"timestamp":10503076149,"id":247,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564397349,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":311,"timestamp":10503082200,"id":248,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564397355,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":537,"timestamp":10503082548,"id":249,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564397355,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":293,"timestamp":10503084578,"id":250,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564397358,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":236,"timestamp":10503084903,"id":251,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564397358,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3036,"timestamp":10504530064,"id":252,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564398803,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":10563915174,"id":253,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564458451,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2375,"timestamp":10591492065,"id":254,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564485765,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":195,"timestamp":10591495030,"id":255,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564485768,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":98,"timestamp":10591495251,"id":256,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564485768,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":115,"timestamp":10591495713,"id":257,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564485769,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":85,"timestamp":10591495843,"id":258,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564485769,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":10591245151,"id":261,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx","[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564485791,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":84388,"timestamp":10591497515,"id":260,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564485770,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":68696,"timestamp":10591587914,"id":262,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564485861,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":724593,"timestamp":10591496270,"id":259,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564485769,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":10592220927,"id":263,"parentId":259,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"741199872","memory.heapUsed":"229978208","memory.heapTotal":"277356544"},"startTime":1768564486494,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1922,"timestamp":10592259417,"id":264,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564486532,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":156,"timestamp":10592261844,"id":265,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564486535,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90,"timestamp":10592262017,"id":266,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564486535,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":122,"timestamp":10592262501,"id":267,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564486535,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":76,"timestamp":10592262634,"id":268,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564486535,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2117,"timestamp":10592276122,"id":269,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564486549,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1831,"timestamp":10595346023,"id":270,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564489619,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":168000,"timestamp":10595265452,"id":271,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564489727,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":283000,"timestamp":10609154683,"id":272,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564503740,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":336000,"timestamp":10619745514,"id":273,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564514391,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":10622670064,"id":274,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564517173,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":10633707614,"id":275,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564528226,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":10636594170,"id":276,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564531114,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":200000,"timestamp":10639300658,"id":277,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564533802,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":358000,"timestamp":10642435068,"id":278,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564537096,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":10668441334,"id":279,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564562940,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":186000,"timestamp":10670489136,"id":280,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564564963,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":10672656414,"id":281,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564567174,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":212000,"timestamp":10674297742,"id":282,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564568811,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":208000,"timestamp":10676176381,"id":283,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564570695,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":183000,"timestamp":10707382376,"id":284,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564601877,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":10715671000,"id":285,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564610193,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2128,"timestamp":10719351816,"id":286,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564613625,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":162,"timestamp":10719354972,"id":287,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564613628,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":229,"timestamp":10719355155,"id":288,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564613628,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":114,"timestamp":10719355815,"id":289,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564613629,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":71,"timestamp":10719355941,"id":290,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564613629,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":10719110909,"id":293,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564613655,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":80015,"timestamp":10719357850,"id":292,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564613631,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1706,"timestamp":10719455283,"id":295,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564613728,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":60805,"timestamp":10719445074,"id":294,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564613718,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":428758,"timestamp":10719356305,"id":291,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564613629,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":2,"timestamp":10719785104,"id":296,"parentId":291,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"767721472","memory.heapUsed":"242213912","memory.heapTotal":"282750976"},"startTime":1768564614058,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4828,"timestamp":10719991119,"id":297,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564614264,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":155,"timestamp":10719996337,"id":298,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564614269,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":104,"timestamp":10719996509,"id":299,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564614269,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":124,"timestamp":10719996975,"id":300,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564614270,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77,"timestamp":10719997111,"id":301,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564614270,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2290,"timestamp":10724650086,"id":302,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564618923,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":172,"timestamp":10724652860,"id":303,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564618926,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":89,"timestamp":10724653051,"id":304,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564618926,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":182,"timestamp":10724653463,"id":305,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564618926,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":82,"timestamp":10724653662,"id":306,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564618927,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":183000,"timestamp":10724455147,"id":309,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564618974,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":69672,"timestamp":10724655892,"id":308,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564618929,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":55204,"timestamp":10724729688,"id":310,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564619003,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":372366,"timestamp":10724654201,"id":307,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564618927,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":10725026625,"id":311,"parentId":307,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"797442048","memory.heapUsed":"275752880","memory.heapTotal":"356569088"},"startTime":1768564619299,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2306,"timestamp":10725068481,"id":312,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564619341,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":351,"timestamp":10725071229,"id":313,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564619344,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":100,"timestamp":10725071604,"id":314,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564619344,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":139,"timestamp":10725072753,"id":315,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564619346,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77,"timestamp":10725072904,"id":316,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564619346,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1837,"timestamp":10727016894,"id":317,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564621290,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":126000,"timestamp":10727979981,"id":318,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564622394,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1558,"timestamp":10728126000,"id":319,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564622399,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":129,"timestamp":10728127938,"id":320,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564622401,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79,"timestamp":10728128083,"id":321,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564622401,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":109,"timestamp":10728128408,"id":322,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564622401,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":85,"timestamp":10728128528,"id":323,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564622401,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":76630,"timestamp":10728130541,"id":325,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564622403,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":55530,"timestamp":10728211722,"id":326,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564622485,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":395945,"timestamp":10728129120,"id":324,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564622402,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":10728525102,"id":327,"parentId":324,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"846028800","memory.heapUsed":"270867936","memory.heapTotal":"380514304"},"startTime":1768564622798,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2032,"timestamp":10728557416,"id":328,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564622830,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":224,"timestamp":10728559913,"id":329,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564622833,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":126,"timestamp":10728560155,"id":330,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564622833,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":201,"timestamp":10728560667,"id":331,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564622834,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":150,"timestamp":10728560885,"id":332,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564622834,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1640,"timestamp":10730551090,"id":333,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564624824,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1678,"timestamp":10731396496,"id":334,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564625669,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":146,"timestamp":10731398525,"id":335,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564625671,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":98,"timestamp":10731398685,"id":336,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564625672,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":135,"timestamp":10731399114,"id":337,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564625672,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":82,"timestamp":10731399264,"id":338,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564625672,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":943,"timestamp":10731401149,"id":340,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564625674,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":1389918,"timestamp":10731403860,"id":342,"tags":{"trigger":"/_error"},"startTime":1768564625677,"traceId":"5ef2924dee457795"}] -[{"name":"handle-request","duration":1704245,"timestamp":10731399791,"id":339,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564625673,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":10733104059,"id":343,"parentId":339,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1115295744","memory.heapUsed":"316642920","memory.heapTotal":"399519744"},"startTime":1768564627377,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4490,"timestamp":10733198559,"id":344,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564627471,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":221,"timestamp":10733203743,"id":345,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564627477,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":91,"timestamp":10733203983,"id":346,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564627477,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":109,"timestamp":10733204452,"id":347,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564627477,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79,"timestamp":10733204572,"id":348,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564627477,"traceId":"5ef2924dee457795"},{"name":"navigation-to-hydration","duration":3260000,"timestamp":10731368969,"id":349,"parentId":3,"tags":{"pathname":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","query":""},"startTime":1768564628902,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4089,"timestamp":10761328923,"id":350,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564655602,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":280,"timestamp":10761334035,"id":351,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564655607,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":184,"timestamp":10761334342,"id":352,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564655607,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":216,"timestamp":10761335241,"id":353,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564655608,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":158,"timestamp":10761335479,"id":354,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564655608,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":158932,"timestamp":10761340485,"id":356,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564655613,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":59403,"timestamp":10761504020,"id":357,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564655777,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":594446,"timestamp":10761336204,"id":355,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564655609,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":10761930701,"id":359,"parentId":355,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"994631680","memory.heapUsed":"254207792","memory.heapTotal":"318148608"},"startTime":1768564656204,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5106,"timestamp":10761927991,"id":358,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564656201,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":283,"timestamp":10761935334,"id":360,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564656208,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":193,"timestamp":10761935646,"id":361,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564656209,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":247,"timestamp":10761937061,"id":362,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564656210,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":200,"timestamp":10761937332,"id":363,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564656210,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":6128,"timestamp":10763150106,"id":364,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564657423,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":466000,"timestamp":10778576564,"id":365,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564673350,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":254000,"timestamp":10785065254,"id":366,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564679620,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":344000,"timestamp":10789027352,"id":367,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564683674,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":304000,"timestamp":10801401454,"id":368,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564696010,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5146,"timestamp":10844353993,"id":369,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564738626,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":313,"timestamp":10844360305,"id":370,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564738633,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":287,"timestamp":10844360655,"id":371,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564738633,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":244,"timestamp":10844361749,"id":372,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564738634,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":240,"timestamp":10844362282,"id":373,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564738635,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":101060,"timestamp":10844367212,"id":375,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564738640,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":63367,"timestamp":10844472660,"id":376,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564738745,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":980607,"timestamp":10844363206,"id":374,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564738636,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":10845343874,"id":377,"parentId":374,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1024225280","memory.heapUsed":"267593736","memory.heapTotal":"329240576"},"startTime":1768564739616,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4772,"timestamp":10845345509,"id":378,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564739618,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":357,"timestamp":10845351547,"id":379,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564739624,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":237,"timestamp":10845351939,"id":380,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564739624,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":279,"timestamp":10845353304,"id":381,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564739626,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":202,"timestamp":10845353611,"id":382,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564739626,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3048,"timestamp":10846480817,"id":383,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564740753,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":363000,"timestamp":10869176472,"id":384,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564763830,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3002,"timestamp":10871728370,"id":385,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564766001,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":488,"timestamp":10871732120,"id":386,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564766004,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":241,"timestamp":10871732647,"id":387,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564766005,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":259,"timestamp":10871733775,"id":388,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564766006,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":191,"timestamp":10871734062,"id":389,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564766006,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":92062,"timestamp":10871739747,"id":391,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564766012,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77886,"timestamp":10871836145,"id":392,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768564766109,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":7881,"timestamp":10872690925,"id":393,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564766963,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":392,"timestamp":10872705358,"id":394,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564766978,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":251,"timestamp":10872705786,"id":395,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564766978,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":349,"timestamp":10872707785,"id":396,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564766980,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":296,"timestamp":10872708169,"id":397,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768564766981,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1007625,"timestamp":10871734894,"id":390,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768564766007,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":10872742564,"id":398,"parentId":390,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1076342784","memory.heapUsed":"249806624","memory.heapTotal":"407896064"},"startTime":1768564767015,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3602,"timestamp":10873874094,"id":399,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768564768146,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":345000,"timestamp":10876162067,"id":400,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564770815,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":435000,"timestamp":10885154496,"id":401,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564779884,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":550000,"timestamp":10888489388,"id":402,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564783349,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":10903662474,"id":403,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564798215,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":10907907533,"id":404,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564802410,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":237000,"timestamp":10912370446,"id":405,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564806909,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":10916862490,"id":406,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564811399,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":375000,"timestamp":10923022170,"id":407,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564817683,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":345000,"timestamp":10930035275,"id":408,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564824684,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":340000,"timestamp":10932030738,"id":409,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564826675,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":316000,"timestamp":10945534058,"id":410,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564840160,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":512000,"timestamp":10948830511,"id":411,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564843651,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":234000,"timestamp":10957740445,"id":412,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564852261,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":313000,"timestamp":10965817114,"id":413,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564860437,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":328000,"timestamp":10972033275,"id":414,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564866664,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":10979541225,"id":415,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564874108,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":394000,"timestamp":10985066796,"id":416,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564879806,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":364000,"timestamp":11053369914,"id":417,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564948033,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":406000,"timestamp":11064282150,"id":418,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564959021,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":11067719700,"id":419,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564962256,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":210000,"timestamp":11069440595,"id":420,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564963955,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":214000,"timestamp":11074855581,"id":421,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768564969374,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":239000,"timestamp":11486637639,"id":422,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768565381197,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2898,"timestamp":11498129189,"id":423,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565392403,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":221,"timestamp":11498132861,"id":424,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565392406,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":151,"timestamp":11498133109,"id":425,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565392406,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":151,"timestamp":11498133795,"id":426,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565392407,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":137,"timestamp":11498133960,"id":427,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565392407,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":238000,"timestamp":11497857031,"id":430,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768565392433,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":92230,"timestamp":11498138110,"id":429,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768565392411,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1795,"timestamp":11498252643,"id":432,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768565392526,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":66916,"timestamp":11498239784,"id":431,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768565392513,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":727663,"timestamp":11498136231,"id":428,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565392410,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":11498863940,"id":433,"parentId":428,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1048739840","memory.heapUsed":"248223048","memory.heapTotal":"306253824"},"startTime":1768565393137,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1840,"timestamp":11498958860,"id":434,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565393232,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":151,"timestamp":11498961118,"id":435,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565393234,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":92,"timestamp":11498961286,"id":436,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565393235,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":118,"timestamp":11498961679,"id":437,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565393235,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79,"timestamp":11498961814,"id":438,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565393235,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":199000,"timestamp":11552586986,"id":439,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768565447106,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2020,"timestamp":11554056732,"id":440,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565448329,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":174,"timestamp":11554059151,"id":441,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565448332,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":112,"timestamp":11554059345,"id":442,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565448332,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":120,"timestamp":11554060383,"id":443,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565448333,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73,"timestamp":11554060518,"id":444,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565448333,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":161000,"timestamp":11553868644,"id":447,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx","[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768565448375,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79655,"timestamp":11554062501,"id":446,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768565448335,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3757,"timestamp":11554217789,"id":449,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768565448490,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":71080,"timestamp":11554158455,"id":448,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768565448431,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":393901,"timestamp":11554060933,"id":445,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768565448333,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":2,"timestamp":11554454867,"id":450,"parentId":445,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1099554816","memory.heapUsed":"281937128","memory.heapTotal":"353751040"},"startTime":1768565448727,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2042,"timestamp":11554787055,"id":451,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565449059,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":166,"timestamp":11554789628,"id":452,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565449062,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":131,"timestamp":11554789813,"id":453,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565449062,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":112,"timestamp":11554790247,"id":454,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565449063,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90,"timestamp":11554790372,"id":455,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768565449063,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":282000,"timestamp":12274076986,"id":456,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-scroll-sync.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768566168834,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":237000,"timestamp":12287375934,"id":457,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-scroll-sync.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768566182126,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":220000,"timestamp":12294179924,"id":458,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx","[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768566188858,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":12394893029,"id":459,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566289419,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":565000,"timestamp":12401229202,"id":460,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566296210,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":305000,"timestamp":12405088491,"id":461,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566299706,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":376000,"timestamp":12408380970,"id":462,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566303168,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":384000,"timestamp":12416785151,"id":463,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566311577,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":251000,"timestamp":12419630380,"id":464,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566314280,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":394000,"timestamp":12423993076,"id":465,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566318797,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":328000,"timestamp":12430997788,"id":466,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566325729,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":206000,"timestamp":12442703694,"id":467,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566337678,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":207000,"timestamp":12444730920,"id":468,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566339505,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":214000,"timestamp":12446724002,"id":469,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566341236,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":370000,"timestamp":12502091973,"id":470,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566396773,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":401000,"timestamp":12506163926,"id":471,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566400878,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":294000,"timestamp":12510173478,"id":472,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566404751,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":12514653082,"id":473,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566409170,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":12519365795,"id":474,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566414067,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":393000,"timestamp":12523560145,"id":475,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566418353,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":390000,"timestamp":12541945257,"id":476,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566436629,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":388000,"timestamp":12543582350,"id":477,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566438371,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":347000,"timestamp":12550051234,"id":478,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566444855,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":229000,"timestamp":12561752106,"id":479,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566456502,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":546000,"timestamp":12566477356,"id":480,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566461433,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":383000,"timestamp":12586889988,"id":481,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566481597,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":12596262763,"id":482,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566490840,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":292000,"timestamp":12602091667,"id":483,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566496761,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":497000,"timestamp":12628753531,"id":484,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566523656,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":759000,"timestamp":12662223407,"id":485,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566557309,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2794,"timestamp":12710000317,"id":486,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768566604273,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":185,"timestamp":12710003759,"id":487,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604276,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":101,"timestamp":12710003965,"id":488,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604277,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":129,"timestamp":12710004501,"id":489,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604277,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":94,"timestamp":12710004651,"id":490,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604277,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2339,"timestamp":12710028030,"id":494,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604301,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":179,"timestamp":12710030991,"id":495,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604304,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90,"timestamp":12710031189,"id":496,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604304,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":190,"timestamp":12710032143,"id":497,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604305,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":84,"timestamp":12710032349,"id":498,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604305,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2001,"timestamp":12710043218,"id":501,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604316,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":173,"timestamp":12710046044,"id":502,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604319,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":95,"timestamp":12710046239,"id":503,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604319,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":154,"timestamp":12710046851,"id":504,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604319,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":97,"timestamp":12710047043,"id":505,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604320,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":119584,"timestamp":12710007611,"id":493,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768566604280,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":131992,"timestamp":12710006970,"id":492,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768566604280,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":109518,"timestamp":12710049056,"id":507,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768566604322,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86138,"timestamp":12710135491,"id":508,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768566604408,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":557498,"timestamp":12710032901,"id":499,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604305,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":12710590427,"id":511,"parentId":499,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1028239360","memory.heapUsed":"302895312","memory.heapTotal":"343576576"},"startTime":1768566604863,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":231000,"timestamp":12709780048,"id":512,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmark.tsx","[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566604864,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":460259,"timestamp":12710141308,"id":509,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768566604414,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":643262,"timestamp":12710005092,"id":491,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768566604278,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":12710648415,"id":513,"parentId":491,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1002000384","memory.heapUsed":"249730552","memory.heapTotal":"322486272"},"startTime":1768566604921,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":503580,"timestamp":12710163189,"id":510,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768566604436,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":672266,"timestamp":12710047432,"id":506,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566604320,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":32,"timestamp":12710719728,"id":514,"parentId":506,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1002950656","memory.heapUsed":"261565872","memory.heapTotal":"322719744"},"startTime":1768566604992,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2537,"timestamp":12710787069,"id":515,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768566605060,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":172,"timestamp":12710790306,"id":516,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768566605063,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":106,"timestamp":12710790494,"id":517,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768566605063,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":143,"timestamp":12710791033,"id":518,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768566605064,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":76,"timestamp":12710791186,"id":519,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768566605064,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1726,"timestamp":12713852635,"id":520,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768566608125,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":181000,"timestamp":12717045337,"id":521,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566611532,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":375000,"timestamp":12728338359,"id":522,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566623015,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":377000,"timestamp":12731904309,"id":523,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566626584,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":422000,"timestamp":12894361686,"id":524,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566789088,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":158000,"timestamp":13033804940,"id":525,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/keyboard-shortcuts-help.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566928250,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":142000,"timestamp":13036134892,"id":526,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/keyboard-shortcuts-help.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566930576,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":333000,"timestamp":13041099539,"id":527,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/sounds.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566935710,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":13042304956,"id":528,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/sounds.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566936837,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":223000,"timestamp":13043889148,"id":529,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/sounds.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566938410,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":13049561087,"id":530,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/sounds.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566944076,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":13050891057,"id":531,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/sounds.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566945409,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":220000,"timestamp":13056357527,"id":532,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/sounds.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566950875,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":13065090852,"id":533,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/sounds.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566959606,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":139000,"timestamp":13072191929,"id":534,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/color-picker.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566966632,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":232000,"timestamp":13095980587,"id":535,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-bookmarks-row.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566990512,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2434,"timestamp":13105043834,"id":536,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768566999317,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":181,"timestamp":13105047031,"id":537,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566999320,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":93,"timestamp":13105047230,"id":538,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566999320,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":124,"timestamp":13105047761,"id":539,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566999320,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":80,"timestamp":13105047897,"id":540,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768566999321,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":74726,"timestamp":13105050425,"id":543,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768566999323,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":59730,"timestamp":13105130541,"id":544,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768566999403,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":265091,"timestamp":13105048402,"id":541,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768566999321,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":13105313548,"id":545,"parentId":541,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"860246016","memory.heapUsed":"279064136","memory.heapTotal":"306475008"},"startTime":1768566999586,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":460000,"timestamp":13104822864,"id":546,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx","[project]/apps/web/src/components/editor/timeline/bookmarks.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768566999650,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2000,"timestamp":13106427665,"id":547,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768567000700,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":13134212742,"id":548,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567028815,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":342000,"timestamp":13138734018,"id":549,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/drag-line.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567033356,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":221000,"timestamp":13139767746,"id":550,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/drag-line.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567034287,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":230000,"timestamp":13142138683,"id":551,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/drag-line.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567036683,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":232000,"timestamp":13143658835,"id":552,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/drag-line.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567038212,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1889,"timestamp":13144051954,"id":553,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567038325,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":160,"timestamp":13144054239,"id":554,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567038327,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":196,"timestamp":13144054415,"id":555,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567038327,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":122,"timestamp":13144054961,"id":556,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567038328,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":100,"timestamp":13144055094,"id":557,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567038328,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":71260,"timestamp":13144056904,"id":559,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768567038330,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":62460,"timestamp":13144137967,"id":560,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768567038411,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4351,"timestamp":13144980204,"id":561,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768567039253,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":937518,"timestamp":13144055493,"id":558,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567038328,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":13144993045,"id":562,"parentId":558,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"894902272","memory.heapUsed":"302792200","memory.heapTotal":"367026176"},"startTime":1768567039266,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1542,"timestamp":13145102002,"id":563,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768567039375,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":144,"timestamp":13145103939,"id":564,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768567039377,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":81,"timestamp":13145104105,"id":565,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768567039377,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":123,"timestamp":13145104578,"id":566,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768567039377,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":100,"timestamp":13145104711,"id":567,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768567039377,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2246,"timestamp":13336124285,"id":568,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768567230398,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":155,"timestamp":13336127105,"id":569,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567230401,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90,"timestamp":13336127277,"id":570,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567230401,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":128,"timestamp":13336127812,"id":571,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567230401,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":169,"timestamp":13336127953,"id":572,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768567230401,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":69749,"timestamp":13336130256,"id":575,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768567230404,"traceId":"5ef2924dee457795"}] -[{"name":"client-hmr-latency","duration":272000,"timestamp":13335890750,"id":577,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567230533,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":56689,"timestamp":13336211663,"id":576,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768567230485,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":379659,"timestamp":13336128536,"id":573,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768567230402,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":13336508246,"id":578,"parentId":573,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"902819840","memory.heapUsed":"303565592","memory.heapTotal":"347701248"},"startTime":1768567230782,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":13341046617,"id":579,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567235624,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":13528691065,"id":580,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567423286,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":379000,"timestamp":13840220453,"id":581,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567734891,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":155000,"timestamp":13842965628,"id":582,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/constants/timeline-constants.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567737428,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":201000,"timestamp":13939918018,"id":583,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567834452,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":13942135682,"id":584,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567836685,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":228000,"timestamp":13946726744,"id":585,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567841288,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":13956207675,"id":586,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567850775,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":234000,"timestamp":13960982566,"id":587,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567855554,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":13963557649,"id":588,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567858110,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":264000,"timestamp":13964816202,"id":589,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567859426,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":263000,"timestamp":13966130074,"id":590,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567860750,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":13967219607,"id":591,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768567861772,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":213000,"timestamp":14308365978,"id":592,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/captions.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568202880,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":250000,"timestamp":14312503308,"id":593,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/media.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568207054,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":14326415703,"id":594,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/captions.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568220933,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":232000,"timestamp":14357975277,"id":595,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/captions.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568252508,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":14358654259,"id":596,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/captions.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568253172,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":585000,"timestamp":14426904615,"id":597,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568321800,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":14435545717,"id":598,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568330120,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":14442114676,"id":599,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568336662,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":14456170455,"id":600,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568350723,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":14459449975,"id":601,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568354016,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":14485417521,"id":602,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568379985,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":179000,"timestamp":14501429622,"id":603,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568395942,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":204000,"timestamp":14519836964,"id":604,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568414371,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":203000,"timestamp":14522648105,"id":605,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568417185,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":367000,"timestamp":14524090811,"id":606,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568418765,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2729,"timestamp":14556851931,"id":607,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568451124,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":159,"timestamp":14556855276,"id":608,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568451128,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86,"timestamp":14556855450,"id":609,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568451128,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":102,"timestamp":14556855804,"id":610,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568451128,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":66,"timestamp":14556855915,"id":611,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568451128,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":68476,"timestamp":14556857738,"id":614,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768568451130,"traceId":"5ef2924dee457795"}] -[{"name":"client-hmr-latency","duration":232000,"timestamp":14556631218,"id":616,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568451239,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":58323,"timestamp":14556933700,"id":615,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768568451206,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":812115,"timestamp":14556856458,"id":612,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568451129,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":14557668613,"id":617,"parentId":612,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"892641280","memory.heapUsed":"326828288","memory.heapTotal":"351297536"},"startTime":1768568451941,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":188000,"timestamp":14640183016,"id":618,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568534684,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2342,"timestamp":14658071609,"id":619,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568552344,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":174,"timestamp":14658074569,"id":620,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568552347,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":101,"timestamp":14658074761,"id":621,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568552347,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":140,"timestamp":14658075603,"id":622,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568552348,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":123,"timestamp":14658075756,"id":623,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568552348,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":72865,"timestamp":14658078336,"id":626,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768568552351,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":70494,"timestamp":14658159212,"id":627,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768568552431,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":135000,"timestamp":14658012187,"id":628,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568553056,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":712472,"timestamp":14658076528,"id":624,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568552349,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":14658789045,"id":629,"parentId":624,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"885661696","memory.heapUsed":"313391376","memory.heapTotal":"335572992"},"startTime":1768568553061,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":221000,"timestamp":14660178430,"id":630,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568554744,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2004,"timestamp":14668740753,"id":631,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568563013,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":150,"timestamp":14668743216,"id":632,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568563015,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":75,"timestamp":14668743381,"id":633,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568563016,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":108,"timestamp":14668743727,"id":634,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568563016,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73,"timestamp":14668743844,"id":635,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568563016,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":70661,"timestamp":14668745658,"id":638,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768568563018,"traceId":"5ef2924dee457795"}] -[{"name":"client-hmr-latency","duration":218000,"timestamp":14668531752,"id":640,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568563127,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":82109,"timestamp":14668823362,"id":639,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768568563096,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":255299,"timestamp":14668744175,"id":636,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568563016,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":14668999513,"id":641,"parentId":636,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"903565312","memory.heapUsed":"331391080","memory.heapTotal":"364503040"},"startTime":1768568563272,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":14673036753,"id":642,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568567597,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":14675387978,"id":643,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568569949,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":14678994158,"id":644,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568573544,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":250000,"timestamp":14682735130,"id":645,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568577325,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":212000,"timestamp":14686844160,"id":646,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568581387,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":234000,"timestamp":14688207389,"id":647,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568582775,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":183000,"timestamp":14711701439,"id":648,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568606430,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":14712790520,"id":649,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568607342,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":14723427306,"id":650,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568618020,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":14726321434,"id":651,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx","[project]/node_modules/.bun/lucide-react@0.468.0+f4eacebf2041cd4f/node_modules/lucide-react/dist/esm/icons/link.js"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568620878,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":185000,"timestamp":14731824083,"id":652,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568626338,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":232000,"timestamp":14733016480,"id":653,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768568627568,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":265000,"timestamp":14748185325,"id":654,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568642785,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":256000,"timestamp":14749479775,"id":655,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx","[project]/node_modules/.bun/lucide-react@0.468.0+f4eacebf2041cd4f/node_modules/lucide-react/dist/esm/icons/magnet.js"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568644072,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":360000,"timestamp":14753222949,"id":656,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568647941,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":14757821054,"id":657,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568652394,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":201000,"timestamp":14776727240,"id":658,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568671265,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":14792932027,"id":659,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568687482,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":204000,"timestamp":14816920269,"id":660,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568711466,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":188000,"timestamp":14821656473,"id":661,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568716199,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":14840300118,"id":662,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568734819,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":14843791830,"id":663,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568738347,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":14846207803,"id":664,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568740785,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":14868167871,"id":665,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568762691,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":234000,"timestamp":14870667292,"id":666,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568765256,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":190000,"timestamp":14914033070,"id":667,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568808540,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":223000,"timestamp":14921202545,"id":668,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568815766,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3111,"timestamp":14929647429,"id":669,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568823921,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":140,"timestamp":14929651104,"id":670,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568823924,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":76,"timestamp":14929651257,"id":671,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568823925,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":120,"timestamp":14929651747,"id":672,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568823925,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79,"timestamp":14929651878,"id":673,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568823925,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":212000,"timestamp":14929444708,"id":677,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568823992,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":68546,"timestamp":14929654373,"id":676,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768568823928,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":71218,"timestamp":14929759222,"id":678,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768568824032,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":342149,"timestamp":14929652334,"id":674,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768568823926,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":14929994519,"id":679,"parentId":674,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"925216768","memory.heapUsed":"347143416","memory.heapTotal":"365064192"},"startTime":1768568824268,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1924,"timestamp":14935262798,"id":680,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568829536,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":139,"timestamp":14935265117,"id":681,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568829538,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77,"timestamp":14935265270,"id":682,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568829539,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":121,"timestamp":14935265681,"id":683,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568829539,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":81,"timestamp":14935265813,"id":684,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568829539,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":75957,"timestamp":14935267716,"id":687,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768568829541,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":65910,"timestamp":14935352560,"id":688,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768568829626,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":498995,"timestamp":14935266272,"id":685,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768568829540,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":14935765305,"id":689,"parentId":685,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1004220416","memory.heapUsed":"414680824","memory.heapTotal":"442572800"},"startTime":1768568830039,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1942,"timestamp":14935893652,"id":690,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768568830167,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":139,"timestamp":14935895969,"id":691,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768568830169,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":89,"timestamp":14935896122,"id":692,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768568830169,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":103,"timestamp":14935896458,"id":693,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768568830170,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":76,"timestamp":14935896570,"id":694,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768568830170,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2494,"timestamp":14937274610,"id":695,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768568831548,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":200000,"timestamp":14970144204,"id":696,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568864670,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":14973048652,"id":697,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568867616,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":403000,"timestamp":14975173419,"id":698,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568869907,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":418000,"timestamp":14981908707,"id":699,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568876638,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":388000,"timestamp":14993819257,"id":700,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568888515,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":351000,"timestamp":15001444721,"id":701,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568896113,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":229000,"timestamp":15027809461,"id":702,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568922371,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":236000,"timestamp":15031895968,"id":703,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768568926480,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":405000,"timestamp":15134816683,"id":704,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569029528,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":386000,"timestamp":15143028119,"id":705,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569037784,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":198000,"timestamp":15203762410,"id":706,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569098270,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":15209304726,"id":707,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569103850,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":229000,"timestamp":15213693068,"id":708,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569108251,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":267000,"timestamp":15239512604,"id":709,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569134166,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":200000,"timestamp":15265967795,"id":710,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569160475,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":201000,"timestamp":15270449340,"id":711,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569164957,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":214000,"timestamp":15272179323,"id":712,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569166696,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":248000,"timestamp":15277140166,"id":713,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569171681,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2845,"timestamp":15293020840,"id":714,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768569187294,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":152,"timestamp":15293024151,"id":715,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569187297,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":82,"timestamp":15293024319,"id":716,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569187297,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":104,"timestamp":15293024699,"id":717,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569187297,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77,"timestamp":15293024813,"id":718,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569187298,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":247000,"timestamp":15292732460,"id":722,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569187395,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":105848,"timestamp":15293027045,"id":721,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768569187300,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":98586,"timestamp":15293144265,"id":723,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768569187417,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":379339,"timestamp":15293025280,"id":719,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768569187298,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":1678,"timestamp":15293404689,"id":724,"parentId":719,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"986308608","memory.heapUsed":"425472376","memory.heapTotal":"441356288"},"startTime":1768569187679,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4648,"timestamp":15294036134,"id":725,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768569188309,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":15297645520,"id":726,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569192173,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":345000,"timestamp":15301396769,"id":727,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569196039,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":15316000169,"id":728,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569210535,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":198000,"timestamp":15354931602,"id":729,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/tabbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569249442,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":540000,"timestamp":15375769191,"id":730,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569270620,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":200000,"timestamp":15400694824,"id":731,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569295223,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":371000,"timestamp":15408954200,"id":732,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569303685,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":15409832587,"id":733,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569304391,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":181000,"timestamp":15423549386,"id":734,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569318067,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":15427713847,"id":735,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569322289,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1785,"timestamp":15434045793,"id":736,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768569328319,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":154,"timestamp":15434047999,"id":737,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569328321,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":78,"timestamp":15434048167,"id":738,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569328322,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":137,"timestamp":15434048705,"id":739,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569328322,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":133,"timestamp":15434048857,"id":740,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569328322,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":71767,"timestamp":15434051131,"id":743,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768569328325,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":68161,"timestamp":15434132110,"id":744,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768569328405,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":243295,"timestamp":15434049454,"id":741,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768569328323,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":15434292789,"id":745,"parentId":741,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"996511744","memory.heapUsed":"418155016","memory.heapTotal":"447143936"},"startTime":1768569328566,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":243000,"timestamp":15433812983,"id":746,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569328573,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2395,"timestamp":15434981383,"id":747,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768569329255,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":185000,"timestamp":15441626604,"id":748,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569336144,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":332000,"timestamp":15468288994,"id":749,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569362927,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":203000,"timestamp":15474152495,"id":750,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569368694,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":351000,"timestamp":15475933524,"id":751,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569370596,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":363000,"timestamp":15481054747,"id":752,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569375725,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":328000,"timestamp":15491485205,"id":753,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569386121,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":379000,"timestamp":15498116547,"id":754,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569392819,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":347000,"timestamp":15509909433,"id":755,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569404568,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":310000,"timestamp":15518431553,"id":756,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569413046,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":15553048935,"id":757,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569447605,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":15561417629,"id":758,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569455985,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":236000,"timestamp":15565513950,"id":759,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569460087,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":15567979181,"id":760,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569462531,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":15569652938,"id":761,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569464207,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":249000,"timestamp":15582512414,"id":762,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569477107,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":15593346319,"id":763,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569487913,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":365000,"timestamp":15599117420,"id":764,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569493839,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":201000,"timestamp":15688204887,"id":765,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569582742,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":224000,"timestamp":15698804481,"id":766,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569593367,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":238000,"timestamp":15701851016,"id":767,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569596425,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":227000,"timestamp":15716114141,"id":768,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569610687,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":186000,"timestamp":15810572491,"id":769,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/actions/definitions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569705119,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":168000,"timestamp":15813159523,"id":770,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/actions/definitions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569707682,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":153000,"timestamp":15814690735,"id":771,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/actions/definitions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569709201,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":168000,"timestamp":15844599952,"id":772,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/actions/definitions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569739138,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":152000,"timestamp":15850638880,"id":773,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/actions/definitions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569745166,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":161000,"timestamp":15885101455,"id":774,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569779560,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":170000,"timestamp":15887911381,"id":775,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569782384,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":154000,"timestamp":15889747013,"id":776,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569784204,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":151000,"timestamp":15893704575,"id":777,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569788161,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":2000,"timestamp":15895348664,"id":778,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569789638,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":158000,"timestamp":15898657038,"id":779,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569793117,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":154000,"timestamp":15903059894,"id":780,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569797503,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":155000,"timestamp":15906639242,"id":781,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569801097,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":145000,"timestamp":15909220527,"id":782,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-editor-actions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569803668,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":15921728272,"id":783,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768569816261,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":232000,"timestamp":15949938703,"id":784,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569844515,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":234000,"timestamp":15971212293,"id":785,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569865783,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":232000,"timestamp":15973854807,"id":786,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569868423,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":186000,"timestamp":15993483374,"id":787,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569888003,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":242000,"timestamp":16001055896,"id":788,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569895635,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":232000,"timestamp":16007987581,"id":789,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569902548,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":16035105307,"id":790,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569929645,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":16043706040,"id":791,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569938283,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":215000,"timestamp":16046311144,"id":792,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569940870,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":250000,"timestamp":16049982736,"id":793,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569944572,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2251,"timestamp":16095361130,"id":794,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768569989633,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":136,"timestamp":16095363826,"id":795,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569989636,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":69,"timestamp":16095363975,"id":796,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569989636,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":93,"timestamp":16095364311,"id":797,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569989637,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":59,"timestamp":16095364412,"id":798,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768569989637,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":64839,"timestamp":16095366696,"id":801,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768569989639,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":62289,"timestamp":16095437684,"id":802,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768569989710,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":238381,"timestamp":16095364750,"id":799,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768569989637,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":16095603169,"id":803,"parentId":799,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1022164992","memory.heapUsed":"443625664","memory.heapTotal":"461553664"},"startTime":1768569989875,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":16095154163,"id":804,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569990176,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1834,"timestamp":16096717236,"id":805,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768569990990,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":192000,"timestamp":16104179265,"id":806,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768569998708,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":16109813610,"id":807,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570004342,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":185000,"timestamp":16111912350,"id":808,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570006424,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":277000,"timestamp":16117989624,"id":809,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570012604,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":246000,"timestamp":16120519454,"id":810,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570015110,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":237000,"timestamp":16125853775,"id":811,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570020430,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":185000,"timestamp":16128854849,"id":812,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570023374,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":216000,"timestamp":16134214316,"id":813,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570028773,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":249000,"timestamp":16136954958,"id":814,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570031539,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":16150131624,"id":815,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570044692,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":185000,"timestamp":16168753958,"id":816,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570063273,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3295,"timestamp":16190299838,"id":817,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768570084573,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":204,"timestamp":16190303800,"id":818,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768570084577,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":103,"timestamp":16190304028,"id":819,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768570084577,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":125,"timestamp":16190304650,"id":820,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768570084578,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":168,"timestamp":16190304788,"id":821,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768570084578,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":70733,"timestamp":16190307216,"id":824,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768570084580,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":61103,"timestamp":16190385220,"id":825,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768570084658,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":227102,"timestamp":16190305345,"id":822,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768570084578,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":16190532481,"id":826,"parentId":822,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1023447040","memory.heapUsed":"438732448","memory.heapTotal":"472461312"},"startTime":1768570084806,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":195000,"timestamp":16190113481,"id":827,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570084966,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2115,"timestamp":16191587394,"id":828,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768570085861,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":16203104348,"id":829,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570097649,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":249000,"timestamp":16205683351,"id":830,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570100279,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":402000,"timestamp":16208933859,"id":831,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570103682,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":168000,"timestamp":16638580046,"id":832,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-selection-box.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570533148,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":150000,"timestamp":16639989122,"id":833,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-selection-box.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768570534630,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":145000,"timestamp":16914745720,"id":834,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-selection-box.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768570809323,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":170000,"timestamp":17243729854,"id":835,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-selection-box.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571138273,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":156000,"timestamp":17247788351,"id":836,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-element-interaction.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571142322,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":183000,"timestamp":17252704982,"id":837,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571147191,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":213000,"timestamp":17257522873,"id":838,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/bookmarks.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571152022,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":156000,"timestamp":17262465657,"id":839,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-timeline-interactions.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571157003,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":200000,"timestamp":17275343023,"id":840,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571169927,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":161000,"timestamp":17287251164,"id":841,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-selection-box.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571181783,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":217000,"timestamp":17290974802,"id":842,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571185556,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":140000,"timestamp":18033010614,"id":843,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-selection-box.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571927471,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2082,"timestamp":18039327163,"id":844,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571933599,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":165,"timestamp":18039329670,"id":845,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571933602,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":118,"timestamp":18039329853,"id":846,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571933602,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":106,"timestamp":18039330307,"id":847,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571933602,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86,"timestamp":18039330423,"id":848,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571933603,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":139000,"timestamp":18039174045,"id":851,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/use-selection-box.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768571933673,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73962,"timestamp":18039332467,"id":850,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768571933605,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":63173,"timestamp":18039412286,"id":852,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768571933684,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":904433,"timestamp":18039330959,"id":849,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571933603,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":18040235469,"id":853,"parentId":849,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"960532480","memory.heapUsed":"486233616","memory.heapTotal":"612089856"},"startTime":1768571934508,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1841,"timestamp":18040277181,"id":854,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571934549,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":142,"timestamp":18040279390,"id":855,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571934552,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":80,"timestamp":18040279546,"id":856,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571934552,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":99,"timestamp":18040279893,"id":857,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571934552,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":71,"timestamp":18040280000,"id":858,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571934552,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3426,"timestamp":18044790416,"id":859,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768571939063,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4220,"timestamp":18047803946,"id":860,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571942076,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":630,"timestamp":18047809248,"id":861,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571942081,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":239,"timestamp":18047809922,"id":862,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571942082,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":274,"timestamp":18047810837,"id":863,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571942083,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":187,"timestamp":18047811137,"id":864,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571942083,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":97820,"timestamp":18047815860,"id":866,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768571942088,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":82018,"timestamp":18047921753,"id":867,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768571942194,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1077551,"timestamp":18047812008,"id":865,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571942084,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":18048889630,"id":868,"parentId":865,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1085521920","memory.heapUsed":"557208712","memory.heapTotal":"643457024"},"startTime":1768571943162,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3923,"timestamp":18048894814,"id":869,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571943167,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":340,"timestamp":18048900447,"id":870,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571943173,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":230,"timestamp":18048900820,"id":871,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571943173,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":527,"timestamp":18048902559,"id":872,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571943175,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":242,"timestamp":18048903119,"id":873,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571943175,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1812,"timestamp":18051467461,"id":874,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768571945740,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4394,"timestamp":18081022295,"id":875,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571975295,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":331,"timestamp":18081029834,"id":876,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571975303,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":220,"timestamp":18081030194,"id":877,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571975303,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":275,"timestamp":18081031186,"id":878,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571975304,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":372,"timestamp":18081031487,"id":879,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571975305,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":87087,"timestamp":18081036363,"id":881,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768571975309,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":59526,"timestamp":18081127666,"id":882,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768571975401,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":263885,"timestamp":18081032574,"id":880,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768571975306,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":18081296512,"id":883,"parentId":880,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"951365632","memory.heapUsed":"463261296","memory.heapTotal":"473993216"},"startTime":1768571975570,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4244,"timestamp":18081305912,"id":884,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571975579,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":252,"timestamp":18081311477,"id":885,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571975585,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":165,"timestamp":18081311752,"id":886,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571975585,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":204,"timestamp":18081312639,"id":887,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571975586,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":260,"timestamp":18081312865,"id":888,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768571975586,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":5077,"timestamp":18082378500,"id":889,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768571976652,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":246000,"timestamp":18168287180,"id":890,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768572062884,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":249000,"timestamp":18173350056,"id":891,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768572068017,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4171,"timestamp":19326679037,"id":892,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573220951,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":320,"timestamp":19326684578,"id":893,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573220957,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":203,"timestamp":19326684928,"id":894,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573220957,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":231,"timestamp":19326685823,"id":895,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573220958,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":197,"timestamp":19326686075,"id":896,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573220958,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":120948,"timestamp":19326689533,"id":898,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768573220961,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":171412,"timestamp":19326830730,"id":899,"parentId":3,"tags":{"inputPage":"/_error"},"startTime":1768573221103,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":544469,"timestamp":19326686945,"id":897,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573220959,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":19327231448,"id":900,"parentId":897,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1067597824","memory.heapUsed":"499566096","memory.heapTotal":"512049152"},"startTime":1768573221503,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":7200,"timestamp":19327272285,"id":901,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573221544,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":279,"timestamp":19327280717,"id":902,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573221553,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":204,"timestamp":19327281018,"id":903,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573221553,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":216,"timestamp":19327282012,"id":904,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573221554,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":170,"timestamp":19327282246,"id":905,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573221554,"traceId":"5ef2924dee457795"},{"name":"navigation-to-hydration","duration":1717000,"timestamp":19326670749,"id":906,"parentId":3,"tags":{"pathname":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","query":""},"startTime":1768573223249,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2817,"timestamp":19843185662,"id":907,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573737459,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":216,"timestamp":19843189022,"id":908,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573737462,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":143,"timestamp":19843189256,"id":909,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573737462,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":114,"timestamp":19843189714,"id":910,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573737463,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73,"timestamp":19843189838,"id":911,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573737463,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":155000,"timestamp":19843021482,"id":915,"parentId":3,"tags":{"updatedModules":[],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768573737483,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":149727,"timestamp":19843192257,"id":914,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768573737465,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":53686,"timestamp":19843346527,"id":916,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768573737620,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":622352,"timestamp":19843190206,"id":912,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768573737463,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":19843812602,"id":917,"parentId":912,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1106587648","memory.heapUsed":"490588544","memory.heapTotal":"560295936"},"startTime":1768573738086,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2070,"timestamp":19843962173,"id":918,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573738235,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":166,"timestamp":19843964650,"id":919,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573738238,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":93,"timestamp":19843964833,"id":920,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573738238,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":129,"timestamp":19843965308,"id":921,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573738238,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":92,"timestamp":19843965448,"id":922,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768573738239,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":120000,"timestamp":19847579361,"id":923,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768573742044,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1644,"timestamp":19848152242,"id":924,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768573742425,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":155000,"timestamp":19850669584,"id":925,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768573745584,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":172000,"timestamp":19962594215,"id":926,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768573857058,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":149000,"timestamp":19964905557,"id":927,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768573859927,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":171000,"timestamp":19967210865,"id":928,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768573861685,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":188000,"timestamp":20378344682,"id":929,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574272837,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":267000,"timestamp":20381777614,"id":930,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574276332,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":204000,"timestamp":20386189306,"id":931,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574280698,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":222000,"timestamp":20387597863,"id":932,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574282124,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":222000,"timestamp":20389562318,"id":933,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574284085,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":221000,"timestamp":20405954155,"id":934,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574300477,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":221000,"timestamp":20410711490,"id":935,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574305237,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2703,"timestamp":20422256900,"id":936,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768574316530,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":154,"timestamp":20422260186,"id":937,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574316533,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":81,"timestamp":20422260353,"id":938,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574316534,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":125,"timestamp":20422260843,"id":939,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574316534,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":78,"timestamp":20422260979,"id":940,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574316534,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":241000,"timestamp":20422019399,"id":944,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574316551,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":73842,"timestamp":20422263057,"id":943,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768574316536,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":68671,"timestamp":20422344716,"id":945,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574316618,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":228020,"timestamp":20422261536,"id":941,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768574316535,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":20422489608,"id":946,"parentId":941,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1102794752","memory.heapUsed":"534572960","memory.heapTotal":"560865280"},"startTime":1768574316763,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1597,"timestamp":20422867786,"id":947,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768574317141,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":220000,"timestamp":20427575062,"id":948,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574322106,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":205000,"timestamp":20461543194,"id":949,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574356035,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":220000,"timestamp":20463692593,"id":950,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574358213,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":188000,"timestamp":20498138250,"id":951,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768574392630,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2753,"timestamp":20643673554,"id":952,"tags":{"url":"/projects?_rsc=17exn"},"startTime":1768574537946,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":1133898,"timestamp":20643683565,"id":955,"tags":{"trigger":"/projects"},"startTime":1768574537956,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":183248,"timestamp":20644826376,"id":956,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768574539099,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1380030,"timestamp":20643679809,"id":953,"tags":{"url":"/projects?_rsc=17exn"},"startTime":1768574537952,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":20645059886,"id":957,"parentId":953,"tags":{"url":"/projects?_rsc=17exn","memory.rss":"1169436672","memory.heapUsed":"452813176","memory.heapTotal":"530509824"},"startTime":1768574539332,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":3046,"timestamp":20646135809,"id":958,"tags":{"url":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23?_rsc=qdzqe"},"startTime":1768574540408,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":214,"timestamp":20646139530,"id":959,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574540412,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":143,"timestamp":20646139765,"id":960,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574540412,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":237,"timestamp":20646140601,"id":961,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574540413,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":228,"timestamp":20646140860,"id":962,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574540413,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":93614,"timestamp":20646144138,"id":964,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574540416,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":83844,"timestamp":20646247401,"id":965,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574540520,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":302250,"timestamp":20646141779,"id":963,"tags":{"url":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23?_rsc=qdzqe"},"startTime":1768574540414,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":20646444087,"id":966,"parentId":963,"tags":{"url":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23?_rsc=qdzqe","memory.rss":"1188691968","memory.heapUsed":"471379008","memory.heapTotal":"532647936"},"startTime":1768574540716,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2623,"timestamp":20651302154,"id":967,"tags":{"url":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23?_rsc=qdzqe"},"startTime":1768574545574,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":240,"timestamp":20651305391,"id":968,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574545578,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":165,"timestamp":20651305651,"id":969,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574545578,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":177,"timestamp":20651306319,"id":970,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574545579,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":148,"timestamp":20651306514,"id":971,"parentId":3,"tags":{"inputPage":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23"},"startTime":1768574545579,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79692,"timestamp":20651309210,"id":973,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574545582,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":81799,"timestamp":20651402272,"id":974,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574545675,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":223066,"timestamp":20651307120,"id":972,"tags":{"url":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23?_rsc=qdzqe"},"startTime":1768574545579,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":20651530230,"id":975,"parentId":972,"tags":{"url":"/editor/b0206912-14a0-40a8-961f-93b03d3a0f23?_rsc=qdzqe","memory.rss":"1187217408","memory.heapUsed":"473915520","memory.heapTotal":"532332544"},"startTime":1768574545803,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2476,"timestamp":20657373738,"id":976,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=qdzqe"},"startTime":1768574551646,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":202,"timestamp":20657376926,"id":977,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574551649,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":139,"timestamp":20657377147,"id":978,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574551649,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":182,"timestamp":20657377875,"id":979,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574551650,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":153,"timestamp":20657378075,"id":980,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574551650,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":85265,"timestamp":20657381504,"id":982,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574551654,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":89191,"timestamp":20657473904,"id":983,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574551746,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":245310,"timestamp":20657378780,"id":981,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=qdzqe"},"startTime":1768574551651,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":20657624138,"id":984,"parentId":981,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=qdzqe","memory.rss":"1181528064","memory.heapUsed":"471247472","memory.heapTotal":"571129856"},"startTime":1768574551896,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":20836417630,"id":985,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574730920,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":206000,"timestamp":20840377011,"id":986,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574734886,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":236000,"timestamp":20860589137,"id":987,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574755112,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2444,"timestamp":20904765345,"id":988,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768574799038,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":189,"timestamp":20904768222,"id":989,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574799041,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":78,"timestamp":20904768424,"id":990,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574799041,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":259,"timestamp":20904768750,"id":991,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574799042,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73,"timestamp":20904769020,"id":992,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574799042,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":196000,"timestamp":20904577652,"id":996,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574799084,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":76460,"timestamp":20904770862,"id":995,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768574799044,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":66274,"timestamp":20904857991,"id":997,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574799131,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":247235,"timestamp":20904769402,"id":993,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768574799042,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":20905016674,"id":998,"parentId":993,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz","memory.rss":"1212846080","memory.heapUsed":"489386136","memory.heapTotal":"574001152"},"startTime":1768574799290,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":220000,"timestamp":20914011598,"id":999,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574808533,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":20928513476,"id":1000,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574823003,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":234000,"timestamp":20930602046,"id":1001,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574825123,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":20942679184,"id":1002,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574837196,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":222000,"timestamp":20948256028,"id":1003,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574842764,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":20951153317,"id":1004,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574845675,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":20955279304,"id":1005,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574849784,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":20960742125,"id":1006,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574855263,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":20964012053,"id":1007,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574858517,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1638,"timestamp":20973324121,"id":1008,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768574867597,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":118,"timestamp":20973326097,"id":1009,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574867599,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":85,"timestamp":20973326224,"id":1010,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574867600,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":95,"timestamp":20973326557,"id":1011,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574867600,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":63,"timestamp":20973326663,"id":1012,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768574867600,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":242000,"timestamp":20973088345,"id":1016,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574867645,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":62164,"timestamp":20973328064,"id":1015,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768574867601,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":58446,"timestamp":20973397645,"id":1017,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768574867671,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":208174,"timestamp":20973326966,"id":1013,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768574867600,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":6,"timestamp":20973535194,"id":1018,"parentId":1013,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz","memory.rss":"1253568512","memory.heapUsed":"544939192","memory.heapTotal":"594542592"},"startTime":1768574867809,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":20975553094,"id":1019,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574870091,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":186000,"timestamp":21015858641,"id":1020,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574910349,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":21033301442,"id":1021,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574927792,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":204000,"timestamp":21068786698,"id":1022,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574963528,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":206000,"timestamp":21070882520,"id":1023,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768574965392,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2309,"timestamp":21273079482,"id":1024,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768575167352,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":128,"timestamp":21273082220,"id":1025,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167354,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":74,"timestamp":21273082360,"id":1026,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167354,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":99,"timestamp":21273082661,"id":1027,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167355,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":63,"timestamp":21273082768,"id":1028,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167355,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":70788,"timestamp":21273084875,"id":1031,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768575167357,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":60439,"timestamp":21273163836,"id":1032,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575167436,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":246146,"timestamp":21273083680,"id":1029,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768575167356,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":21273329860,"id":1033,"parentId":1029,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz","memory.rss":"1240444928","memory.heapUsed":"514206912","memory.heapTotal":"535015424"},"startTime":1768575167602,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":214000,"timestamp":21272874966,"id":1034,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/delete-elements.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575167910,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2042,"timestamp":21273653327,"id":1035,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768575167925,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":160,"timestamp":21273655858,"id":1036,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167928,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":80,"timestamp":21273656032,"id":1037,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167928,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":151,"timestamp":21273656419,"id":1038,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167928,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":80,"timestamp":21273656580,"id":1039,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575167929,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":65587,"timestamp":21273658419,"id":1041,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575167930,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":61096,"timestamp":21273779221,"id":1042,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575168051,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":236829,"timestamp":21273657074,"id":1040,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz"},"startTime":1768575167929,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":21273893937,"id":1043,"parentId":1040,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=e27kz","memory.rss":"1239658496","memory.heapUsed":"518887376","memory.heapTotal":"538107904"},"startTime":1768575168166,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":483000,"timestamp":21304068003,"id":1044,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/track-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575198846,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":207000,"timestamp":21324186794,"id":1045,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/delete-elements.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575218690,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":205000,"timestamp":21325717851,"id":1046,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/delete-elements.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575220467,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":240000,"timestamp":21329101672,"id":1047,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/delete-elements.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575223626,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":21383348793,"id":1048,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575277886,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":250000,"timestamp":21386668456,"id":1049,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575281232,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1927,"timestamp":21387024678,"id":1050,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575281298,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":163,"timestamp":21387027051,"id":1051,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575281300,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":97,"timestamp":21387027230,"id":1052,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575281300,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":109,"timestamp":21387027661,"id":1053,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575281301,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":74,"timestamp":21387027780,"id":1054,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575281301,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":75588,"timestamp":21387030124,"id":1056,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575281303,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":71302,"timestamp":21387113139,"id":1057,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575281386,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":767310,"timestamp":21387028937,"id":1055,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575281302,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":21387796282,"id":1058,"parentId":1055,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1282564096","memory.heapUsed":"568034888","memory.heapTotal":"664522752"},"startTime":1768575282069,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1885,"timestamp":21388020342,"id":1059,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575282294,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":141,"timestamp":21388022601,"id":1060,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575282296,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":84,"timestamp":21388022757,"id":1061,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575282296,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":104,"timestamp":21388023089,"id":1062,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575282296,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":87,"timestamp":21388023203,"id":1063,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575282296,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2270,"timestamp":21388031321,"id":1064,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768575282305,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1943,"timestamp":21391614120,"id":1065,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768575285887,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":21399072787,"id":1066,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575293597,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":219000,"timestamp":21401812775,"id":1067,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575296336,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":387000,"timestamp":21403507940,"id":1068,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575298209,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2377,"timestamp":21407189207,"id":1069,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575301462,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":174,"timestamp":21407192247,"id":1070,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575301465,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":103,"timestamp":21407192439,"id":1071,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575301466,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":148,"timestamp":21407193035,"id":1072,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575301466,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":104,"timestamp":21407193240,"id":1073,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575301466,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":249000,"timestamp":21406927069,"id":1076,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/scenes-view.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575301514,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":83976,"timestamp":21407195953,"id":1075,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575301469,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":64731,"timestamp":21407292588,"id":1077,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575301566,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":606882,"timestamp":21407193757,"id":1074,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575301467,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":21407800684,"id":1078,"parentId":1074,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1303814144","memory.heapUsed":"596983112","memory.heapTotal":"648503296"},"startTime":1768575302074,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2189,"timestamp":21407988520,"id":1079,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575302262,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":156,"timestamp":21407991311,"id":1080,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575302265,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":97,"timestamp":21407991482,"id":1081,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575302265,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":129,"timestamp":21407991934,"id":1082,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575302265,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":83,"timestamp":21407992074,"id":1083,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768575302265,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1753,"timestamp":21410728607,"id":1084,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768575305002,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2458,"timestamp":21472380915,"id":1085,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768575366654,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":171,"timestamp":21472383785,"id":1086,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575366657,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":89,"timestamp":21472383972,"id":1087,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575366657,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":111,"timestamp":21472384353,"id":1088,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575366658,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":81,"timestamp":21472384473,"id":1089,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768575366658,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":79565,"timestamp":21472386957,"id":1092,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768575366660,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":66348,"timestamp":21472475012,"id":1093,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768575366748,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":94000,"timestamp":21472265347,"id":1094,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/drop-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575366909,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":252577,"timestamp":21472385005,"id":1090,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768575366658,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":21472637614,"id":1095,"parentId":1090,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1307348992","memory.heapUsed":"562989824","memory.heapTotal":"581836800"},"startTime":1768575366911,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1747,"timestamp":21472995528,"id":1096,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768575367269,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":195000,"timestamp":21475765816,"id":1097,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/drop-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575370340,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":158000,"timestamp":21479784413,"id":1098,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/drop-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575374310,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":205000,"timestamp":21649139405,"id":1099,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575543723,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":155000,"timestamp":21654732671,"id":1100,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575549190,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":423000,"timestamp":21660571139,"id":1101,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575555298,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":184000,"timestamp":21664127105,"id":1102,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575558601,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":157000,"timestamp":21672812242,"id":1103,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/track/toggle-track-mute.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575567725,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":170000,"timestamp":21679047145,"id":1104,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/scene-builder.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575573521,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":214000,"timestamp":22032020914,"id":1105,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/track/toggle-track-mute.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575926540,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":170000,"timestamp":22085875038,"id":1106,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/track/toggle-track-mute.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768575980349,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":437000,"timestamp":22118118615,"id":1107,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/track/toggle-track-mute.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576012846,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":22130744722,"id":1108,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576025301,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":283000,"timestamp":22148729018,"id":1109,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576043381,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":235000,"timestamp":22149913040,"id":1110,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576044523,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":202000,"timestamp":22158860794,"id":1111,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576053414,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":236000,"timestamp":22160314045,"id":1112,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576054923,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":236000,"timestamp":22166581980,"id":1113,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576061185,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":193000,"timestamp":22211003005,"id":1114,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576105561,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":224000,"timestamp":22215359945,"id":1115,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576109948,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":221000,"timestamp":22217905125,"id":1116,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576112500,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":205000,"timestamp":22220921724,"id":1117,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576115493,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":22233305190,"id":1118,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576127867,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":209000,"timestamp":22235537255,"id":1119,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576130116,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":221000,"timestamp":22236606852,"id":1120,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576131189,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":222000,"timestamp":22239312838,"id":1121,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576133902,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":190000,"timestamp":22359666891,"id":1122,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576254215,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":221000,"timestamp":22368696967,"id":1123,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576263294,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":186000,"timestamp":22457607066,"id":1124,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576352146,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":233000,"timestamp":22512361447,"id":1125,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576406906,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2157,"timestamp":22525853758,"id":1126,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576420127,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":153,"timestamp":22525856350,"id":1127,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576420129,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":84,"timestamp":22525856516,"id":1128,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576420130,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":121,"timestamp":22525857021,"id":1129,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576420130,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":88,"timestamp":22525857153,"id":1130,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576420130,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":204000,"timestamp":22525633720,"id":1133,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576420165,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":76754,"timestamp":22525858978,"id":1132,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768576420132,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":66564,"timestamp":22525945906,"id":1134,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768576420219,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1407318,"timestamp":22525857639,"id":1131,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576420131,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":22527265009,"id":1135,"parentId":1131,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1334259712","memory.heapUsed":"659857000","memory.heapTotal":"696918016"},"startTime":1768576421538,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2735,"timestamp":22527339922,"id":1136,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576421613,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":219,"timestamp":22527343161,"id":1137,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576421616,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":102,"timestamp":22527343399,"id":1138,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576421617,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":105,"timestamp":22527343771,"id":1139,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576421617,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77,"timestamp":22527343884,"id":1140,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576421617,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1779,"timestamp":22527517148,"id":1141,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768576421790,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2254,"timestamp":22530710113,"id":1142,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768576424983,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":194000,"timestamp":22569107645,"id":1143,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-ruler.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576463608,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2441,"timestamp":22739081841,"id":1144,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768576633355,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":169,"timestamp":22739085052,"id":1145,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633358,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":91,"timestamp":22739085236,"id":1146,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633358,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":132,"timestamp":22739085841,"id":1147,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633359,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":85,"timestamp":22739085983,"id":1148,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633359,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1854,"timestamp":22739105183,"id":1152,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633378,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":196,"timestamp":22739108464,"id":1153,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633382,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":104,"timestamp":22739108679,"id":1154,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633382,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":139,"timestamp":22739109204,"id":1155,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633382,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":108,"timestamp":22739109357,"id":1156,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633382,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2440,"timestamp":22739113827,"id":1157,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633387,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":222,"timestamp":22739118443,"id":1158,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633391,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":141,"timestamp":22739118693,"id":1159,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633392,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":179,"timestamp":22739119591,"id":1160,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633393,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":115,"timestamp":22739119788,"id":1161,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633393,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":190000,"timestamp":22738903731,"id":1164,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576633413,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":108615,"timestamp":22739088276,"id":1151,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768576633361,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":100120,"timestamp":22739123230,"id":1163,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768576633396,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":90243,"timestamp":22739205722,"id":1165,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768576633479,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":807467,"timestamp":22739086451,"id":1149,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768576633359,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":22739893953,"id":1167,"parentId":1149,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1152811008","memory.heapUsed":"588213176","memory.heapTotal":"633802752"},"startTime":1768576634167,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1844,"timestamp":22739901627,"id":1168,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768576634175,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":127,"timestamp":22739904291,"id":1169,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576634177,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77,"timestamp":22739904431,"id":1170,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576634177,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":116,"timestamp":22739905155,"id":1171,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576634178,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86,"timestamp":22739905283,"id":1172,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576634178,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":681113,"timestamp":22739228235,"id":1166,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768576633501,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1402288,"timestamp":22739120359,"id":1162,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768576633393,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":2,"timestamp":22740522682,"id":1175,"parentId":1162,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1168932864","memory.heapUsed":"599131896","memory.heapTotal":"691933184"},"startTime":1768576634796,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":677427,"timestamp":22739907214,"id":1174,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768576634180,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":25052,"timestamp":22740583877,"id":1176,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576634857,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":244,"timestamp":22740610040,"id":1177,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576634883,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":117,"timestamp":22740610305,"id":1178,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576634883,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":126,"timestamp":22740611155,"id":1180,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576634884,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":95,"timestamp":22740611294,"id":1181,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768576634884,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":77013,"timestamp":22740610987,"id":1179,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768576634884,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":863853,"timestamp":22739905706,"id":1173,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768576634179,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":5,"timestamp":22740769591,"id":1182,"parentId":1173,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1195446272","memory.heapUsed":"639343488","memory.heapTotal":"703823872"},"startTime":1768576635043,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1739,"timestamp":22744317132,"id":1183,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768576638590,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":172000,"timestamp":22754189901,"id":1184,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576648659,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":212000,"timestamp":22758342909,"id":1185,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576652844,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":177000,"timestamp":22779810833,"id":1186,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576674296,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":160000,"timestamp":22824669125,"id":1187,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768576719126,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":255000,"timestamp":23241873555,"id":1188,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/audio-utils.ts","[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577136421,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2142,"timestamp":23242275181,"id":1189,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577136548,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":159,"timestamp":23242277744,"id":1190,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577136551,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":92,"timestamp":23242277916,"id":1191,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577136551,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":105,"timestamp":23242278274,"id":1192,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577136551,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":87,"timestamp":23242278390,"id":1193,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577136551,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":79971,"timestamp":23242280088,"id":1196,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768577136553,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":63498,"timestamp":23242370194,"id":1197,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577136643,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":302620,"timestamp":23242278765,"id":1194,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577136552,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":23242581419,"id":1198,"parentId":1194,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1239662592","memory.heapUsed":"636352192","memory.heapTotal":"710758400"},"startTime":1768577136854,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2082,"timestamp":23243836588,"id":1199,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768577138109,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1607,"timestamp":23250249393,"id":1200,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577144522,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":131,"timestamp":23250251338,"id":1201,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577144524,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":84,"timestamp":23250251483,"id":1202,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577144524,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":91,"timestamp":23250251835,"id":1203,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577144525,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79,"timestamp":23250251934,"id":1204,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577144525,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":69177,"timestamp":23250253638,"id":1207,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768577144526,"traceId":"5ef2924dee457795"}] -[{"name":"client-hmr-latency","duration":164000,"timestamp":23250092801,"id":1209,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577144654,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73556,"timestamp":23250332052,"id":1208,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577144605,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":204856,"timestamp":23250252315,"id":1205,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577144525,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":23250457211,"id":1210,"parentId":1205,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1241202688","memory.heapUsed":"654280208","memory.heapTotal":"712331264"},"startTime":1768577144730,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1840,"timestamp":23251712017,"id":1211,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768577145985,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":171000,"timestamp":23276195552,"id":1212,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577170658,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":171000,"timestamp":23279956462,"id":1213,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577174430,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":187000,"timestamp":23321724655,"id":1214,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577216215,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":192000,"timestamp":23343763683,"id":1215,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577238696,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":171000,"timestamp":23354111214,"id":1216,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577248586,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":173000,"timestamp":23429380880,"id":1217,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577323861,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":169000,"timestamp":23549007202,"id":1218,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577443483,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":200000,"timestamp":23554784491,"id":1219,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/audio-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577449274,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":154000,"timestamp":23557239325,"id":1220,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/audio-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577452129,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":153000,"timestamp":23570242780,"id":1221,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577464700,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":171000,"timestamp":23575408233,"id":1222,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/audio-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577469872,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":230000,"timestamp":23585471429,"id":1223,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/export-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577480010,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":218000,"timestamp":23640606050,"id":1224,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577535128,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":185000,"timestamp":23641672868,"id":1225,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577536147,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":162000,"timestamp":23710730871,"id":1226,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/renderer-manager.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577605756,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2195,"timestamp":24001174218,"id":1227,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577895447,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":163,"timestamp":24001177071,"id":1228,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577895450,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":95,"timestamp":24001177250,"id":1229,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577895450,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":135,"timestamp":24001177797,"id":1230,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577895451,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":98,"timestamp":24001177943,"id":1231,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577895451,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":168000,"timestamp":24001016781,"id":1235,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577895508,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":65410,"timestamp":24001180390,"id":1234,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768577895453,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":56707,"timestamp":24001254652,"id":1236,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577895528,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":276826,"timestamp":24001178461,"id":1232,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577895451,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":24001455327,"id":1237,"parentId":1232,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1102340096","memory.heapUsed":"565489856","memory.heapTotal":"583434240"},"startTime":1768577895728,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1821,"timestamp":24001784806,"id":1238,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577896058,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":133,"timestamp":24001786989,"id":1239,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577896060,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":86,"timestamp":24001787135,"id":1240,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577896060,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":111,"timestamp":24001787530,"id":1241,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577896061,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":70,"timestamp":24001787651,"id":1242,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577896061,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":72455,"timestamp":24001789820,"id":1244,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577896063,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":65527,"timestamp":24001927490,"id":1245,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577896200,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":247714,"timestamp":24001788078,"id":1243,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577896061,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":24002035823,"id":1246,"parentId":1243,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1114173440","memory.heapUsed":"562758776","memory.heapTotal":"588623872"},"startTime":1768577896309,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1612,"timestamp":24002380504,"id":1247,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768577896654,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1569,"timestamp":24009147249,"id":1248,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577903420,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":133,"timestamp":24009149212,"id":1249,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577903422,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":71,"timestamp":24009149357,"id":1250,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577903422,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":92,"timestamp":24009149687,"id":1251,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577903423,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73,"timestamp":24009149787,"id":1252,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577903423,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":60579,"timestamp":24009151368,"id":1255,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768577903424,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":62398,"timestamp":24009219609,"id":1256,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577903493,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":171116,"timestamp":24009150177,"id":1253,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577903423,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":3,"timestamp":24009321322,"id":1257,"parentId":1253,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1118314496","memory.heapUsed":"575771816","memory.heapTotal":"616935424"},"startTime":1768577903594,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":166000,"timestamp":24008989195,"id":1258,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577904001,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1689,"timestamp":24009741265,"id":1259,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577904014,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":126,"timestamp":24009743346,"id":1260,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577904016,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":78,"timestamp":24009743485,"id":1261,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577904016,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":93,"timestamp":24009743815,"id":1262,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577904017,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":85,"timestamp":24009743917,"id":1263,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577904017,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":66164,"timestamp":24009745510,"id":1265,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577904019,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":115707,"timestamp":24009873789,"id":1266,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577904147,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":318542,"timestamp":24009744349,"id":1264,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577904017,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":7,"timestamp":24010062968,"id":1267,"parentId":1264,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1124294656","memory.heapUsed":"563670808","memory.heapTotal":"616935424"},"startTime":1768577904336,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":2153,"timestamp":24010531319,"id":1268,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768577904804,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1794,"timestamp":24016697043,"id":1269,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577910970,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":251,"timestamp":24016699241,"id":1270,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577910972,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":84,"timestamp":24016699509,"id":1271,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577910973,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":135,"timestamp":24016699868,"id":1272,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577910973,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":89,"timestamp":24016700016,"id":1273,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577910973,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":181000,"timestamp":24016523371,"id":1277,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768577911032,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":67549,"timestamp":24016701713,"id":1276,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768577910975,"traceId":"5ef2924dee457795"}] -[{"name":"ensure-page","duration":66733,"timestamp":24016777620,"id":1278,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577911051,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":199544,"timestamp":24016700385,"id":1274,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577910973,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":24016899972,"id":1279,"parentId":1274,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1139867648","memory.heapUsed":"563994232","memory.heapTotal":"617431040"},"startTime":1768577911173,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1766,"timestamp":24017426502,"id":1280,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577911700,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":136,"timestamp":24017428773,"id":1281,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577911702,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":73,"timestamp":24017428921,"id":1282,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577911702,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":126,"timestamp":24017429285,"id":1283,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577911702,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":79,"timestamp":24017429423,"id":1284,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768577911702,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":61810,"timestamp":24017431386,"id":1286,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577911704,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":65874,"timestamp":24017500114,"id":1287,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768577911773,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":178567,"timestamp":24017429829,"id":1285,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768577911703,"traceId":"5ef2924dee457795"},{"name":"memory-usage","duration":4,"timestamp":24017608438,"id":1288,"parentId":1285,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj","memory.rss":"1140707328","memory.heapUsed":"576228520","memory.heapTotal":"617893888"},"startTime":1768577911881,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":1976,"timestamp":24018171049,"id":1289,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768577912444,"traceId":"5ef2924dee457795"},{"name":"client-hmr-latency","duration":474000,"timestamp":24465656648,"id":1290,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/mediabunny-utils.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768578360440,"traceId":"5ef2924dee457795"},{"name":"handle-request","duration":4968,"timestamp":33118536239,"id":1291,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e?_rsc=6p1dj"},"startTime":1768587012809,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":302,"timestamp":33118543897,"id":1292,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587012817,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":202,"timestamp":33118544234,"id":1293,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587012817,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":349,"timestamp":33118546196,"id":1294,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587012819,"traceId":"5ef2924dee457795"},{"name":"ensure-page","duration":281,"timestamp":33118546580,"id":1295,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587012820,"traceId":"5ef2924dee457795"},{"name":"compile-path","duration":6948,"timestamp":33118552368,"id":1298,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768587012825,"traceId":"5ef2924dee457795"}] -[{"name":"next-dev","duration":27898722804,"timestamp":5226557118,"id":1,"tags":{},"startTime":1768559120830,"traceId":"5ef2924dee457795"}] -[{"name":"hot-reloader","duration":51,"timestamp":33132454274,"id":3,"tags":{"version":"15.5.7"},"startTime":1768587026727,"traceId":"c8165952c9f52684"},{"name":"compile-path","duration":231119,"timestamp":33132597801,"id":4,"tags":{"trigger":"middleware"},"startTime":1768587026870,"traceId":"c8165952c9f52684"}] -[{"name":"setup-dev-bundler","duration":920578,"timestamp":33132452812,"id":2,"parentId":1,"tags":{},"startTime":1768587026725,"traceId":"c8165952c9f52684"},{"name":"start-dev-server","duration":2755844,"timestamp":33131048099,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"7747702784","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"310075392","memory.heapTotal":"130629632","memory.heapUsed":"73170920"},"startTime":1768587025321,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":90645,"timestamp":33133810586,"id":5,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587028083,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":958,"timestamp":33133904428,"id":6,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587028177,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":192,"timestamp":33133905453,"id":7,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587028178,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":218,"timestamp":33133906993,"id":8,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587028179,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":175,"timestamp":33133907285,"id":9,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587028180,"traceId":"c8165952c9f52684"},{"name":"compile-path","duration":12497822,"timestamp":33133912491,"id":12,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768587028185,"traceId":"c8165952c9f52684"}] -[{"name":"compile-path","duration":2384553,"timestamp":33146419194,"id":14,"tags":{"trigger":"/_error"},"startTime":1768587040691,"traceId":"c8165952c9f52684"}] -[{"name":"handle-request","duration":15544817,"timestamp":33133909181,"id":10,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587028181,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":2351,"timestamp":33149454106,"id":15,"parentId":10,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1497214976","memory.heapUsed":"91451384","memory.heapTotal":"105840640"},"startTime":1768587043729,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":72171,"timestamp":33149559706,"id":16,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587043832,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":402,"timestamp":33149669353,"id":17,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587043942,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":263,"timestamp":33149669821,"id":18,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587043942,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":407,"timestamp":33149690941,"id":19,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587043963,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":18146,"timestamp":33149691400,"id":20,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587043964,"traceId":"c8165952c9f52684"},{"name":"navigation-to-hydration","duration":20550000,"timestamp":33131020294,"id":21,"parentId":3,"tags":{"pathname":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","query":""},"startTime":1768587045843,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":4148,"timestamp":33171748681,"id":22,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587066021,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":326,"timestamp":33171754264,"id":23,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587066027,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":194,"timestamp":33171754657,"id":24,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587066027,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":169,"timestamp":33171755858,"id":25,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587066028,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":122,"timestamp":33171756049,"id":26,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587066028,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":298000,"timestamp":33171442185,"id":30,"parentId":3,"tags":{"updatedModules":[],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587066076,"traceId":"c8165952c9f52684"},{"name":"compile-path","duration":217974,"timestamp":33171760267,"id":29,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768587066033,"traceId":"c8165952c9f52684"}] -[{"name":"ensure-page","duration":85176,"timestamp":33171991882,"id":31,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768587066264,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":1557344,"timestamp":33171756948,"id":27,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587066029,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":6,"timestamp":33173314592,"id":32,"parentId":27,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1488470016","memory.heapUsed":"188833152","memory.heapTotal":"232112128"},"startTime":1768587067587,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":4814,"timestamp":33173341818,"id":33,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587067614,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":318,"timestamp":33173347814,"id":34,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587067620,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":694,"timestamp":33173348177,"id":35,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587067620,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":175,"timestamp":33173349334,"id":36,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587067622,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":126,"timestamp":33173349533,"id":37,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587067622,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":5146,"timestamp":33178414060,"id":38,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768587072686,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":483000,"timestamp":33180044083,"id":39,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587074866,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":8243,"timestamp":33183297598,"id":40,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587077570,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":709,"timestamp":33183307672,"id":41,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587077580,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":151,"timestamp":33183308420,"id":42,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587077581,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":282,"timestamp":33183310037,"id":43,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587077582,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":183,"timestamp":33183310366,"id":44,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587077583,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":463000,"timestamp":33182798748,"id":47,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587077636,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":187950,"timestamp":33183317448,"id":46,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768587077590,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":7235,"timestamp":33183655042,"id":49,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768587077927,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":141980,"timestamp":33183520612,"id":48,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768587077793,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":948300,"timestamp":33183311428,"id":45,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768587077584,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":3,"timestamp":33184259783,"id":50,"parentId":45,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1592983552","memory.heapUsed":"204195664","memory.heapTotal":"265814016"},"startTime":1768587078532,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":5462,"timestamp":33184413802,"id":51,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587078686,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":366,"timestamp":33184420368,"id":52,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587078693,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":206,"timestamp":33184420837,"id":53,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587078693,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":184,"timestamp":33184421561,"id":54,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587078694,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":137,"timestamp":33184421770,"id":55,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768587078694,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":326000,"timestamp":33353478164,"id":56,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/scene-builder.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587248110,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":364000,"timestamp":33390262719,"id":57,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/nodes/text-node.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587284926,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":277000,"timestamp":33567876105,"id":58,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/scene-builder.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587462452,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":341000,"timestamp":33572519210,"id":59,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/nodes/text-node.ts","[project]/apps/web/src/services/renderer/scene-builder.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587467157,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":359000,"timestamp":33607775325,"id":60,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/scene-builder.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587502439,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":329000,"timestamp":33709063172,"id":61,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/scene-builder.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768587603696,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":497000,"timestamp":33735868131,"id":62,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/services/renderer/scene-builder.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":true},"startTime":1768587630668,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":242000,"timestamp":34272642997,"id":63,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/storage/storage-service.ts"],"page":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","isPageHidden":false},"startTime":1768588167229,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":6108,"timestamp":34420516474,"id":64,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768588314789,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":430,"timestamp":34420523901,"id":65,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768588314797,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":355,"timestamp":34420524383,"id":66,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768588314797,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":271,"timestamp":34420526617,"id":67,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768588314800,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":191,"timestamp":34420526923,"id":68,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768588314800,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":131825,"timestamp":34420531468,"id":70,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768588314804,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":122731,"timestamp":34420675776,"id":71,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768588314949,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":816334,"timestamp":34420527968,"id":69,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768588314801,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":5,"timestamp":34421344388,"id":72,"parentId":69,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"1535913984","memory.heapUsed":"229205328","memory.heapTotal":"269504512"},"startTime":1768588315617,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":4908,"timestamp":34421398159,"id":73,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768588315671,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":376,"timestamp":34421403891,"id":74,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768588315677,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":238,"timestamp":34421404307,"id":75,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768588315677,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":363,"timestamp":34421405494,"id":76,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768588315678,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":1128,"timestamp":34421405901,"id":77,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768588315679,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":4325,"timestamp":34423699889,"id":78,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768588317973,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":20858,"timestamp":45413006908,"id":79,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599307258,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":645,"timestamp":45413030344,"id":80,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599307281,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":315,"timestamp":45413031026,"id":81,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599307282,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":296,"timestamp":45413032036,"id":82,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599307283,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":231,"timestamp":45413032357,"id":83,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599307283,"traceId":"c8165952c9f52684"},{"name":"compile-path","duration":272047,"timestamp":45413044356,"id":86,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768599307295,"traceId":"c8165952c9f52684"}] -[{"name":"ensure-page","duration":124527,"timestamp":45413331520,"id":87,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599307582,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":1402487,"timestamp":45413033887,"id":84,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599307285,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":6,"timestamp":45414436554,"id":88,"parentId":84,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"642637824","memory.heapUsed":"228859576","memory.heapTotal":"296968192"},"startTime":1768599308687,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":5420,"timestamp":45414458995,"id":89,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599308710,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":375,"timestamp":45414465313,"id":90,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599308716,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":358,"timestamp":45414465765,"id":91,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599308716,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":929,"timestamp":45414466984,"id":92,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599308718,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":423,"timestamp":45414467998,"id":93,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599308719,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":26502,"timestamp":45416002452,"id":94,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768599310253,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":4880,"timestamp":45483836376,"id":95,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599378087,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":411,"timestamp":45483843181,"id":96,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599378093,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":259,"timestamp":45483843640,"id":97,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599378094,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":302,"timestamp":45483844837,"id":98,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599378095,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":232,"timestamp":45483845178,"id":99,"parentId":3,"tags":{"inputPage":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599378095,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":90459,"timestamp":45483850028,"id":101,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599378100,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":99459,"timestamp":45483948654,"id":102,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599378199,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":769756,"timestamp":45483846440,"id":100,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e"},"startTime":1768599378097,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":4,"timestamp":45484616265,"id":103,"parentId":100,"tags":{"url":"/editor/dcc6c21d-cde2-41d6-a414-024c4b526f4e","memory.rss":"613384192","memory.heapUsed":"204679608","memory.heapTotal":"213819392"},"startTime":1768599378866,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":4266,"timestamp":45484621876,"id":104,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599378872,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":318,"timestamp":45484627314,"id":105,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599378878,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":253,"timestamp":45484627666,"id":106,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599378878,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":304,"timestamp":45484629079,"id":107,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599378879,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":245,"timestamp":45484629429,"id":108,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599378880,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":7702,"timestamp":45485762553,"id":109,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768599380013,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":3573,"timestamp":45487397929,"id":110,"tags":{"url":"/projects?_rsc=17exn"},"startTime":1768599381648,"traceId":"c8165952c9f52684"},{"name":"compile-path","duration":1193257,"timestamp":45487404955,"id":113,"tags":{"trigger":"/projects"},"startTime":1768599381655,"traceId":"c8165952c9f52684"}] -[{"name":"ensure-page","duration":98891,"timestamp":45488611733,"id":114,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768599382862,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":1392736,"timestamp":45487402174,"id":111,"tags":{"url":"/projects?_rsc=17exn"},"startTime":1768599381652,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":5,"timestamp":45488794998,"id":115,"parentId":111,"tags":{"url":"/projects?_rsc=17exn","memory.rss":"819933184","memory.heapUsed":"211156960","memory.heapTotal":"227880960"},"startTime":1768599383045,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":2703,"timestamp":45490359065,"id":116,"tags":{"url":"/editor/adcc1013-d0c5-492b-84d1-1ca67606b13b?_rsc=qdzqe"},"startTime":1768599384609,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":238,"timestamp":45490362352,"id":117,"parentId":3,"tags":{"inputPage":"/editor/adcc1013-d0c5-492b-84d1-1ca67606b13b"},"startTime":1768599384613,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":192,"timestamp":45490362616,"id":118,"parentId":3,"tags":{"inputPage":"/editor/adcc1013-d0c5-492b-84d1-1ca67606b13b"},"startTime":1768599384613,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":215,"timestamp":45490363559,"id":119,"parentId":3,"tags":{"inputPage":"/editor/adcc1013-d0c5-492b-84d1-1ca67606b13b"},"startTime":1768599384614,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":171,"timestamp":45490363801,"id":120,"parentId":3,"tags":{"inputPage":"/editor/adcc1013-d0c5-492b-84d1-1ca67606b13b"},"startTime":1768599384614,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":85399,"timestamp":45490367127,"id":122,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599384617,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":101393,"timestamp":45490459921,"id":123,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599384710,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":261287,"timestamp":45490364544,"id":121,"tags":{"url":"/editor/adcc1013-d0c5-492b-84d1-1ca67606b13b?_rsc=qdzqe"},"startTime":1768599384615,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":8,"timestamp":45490625917,"id":124,"parentId":121,"tags":{"url":"/editor/adcc1013-d0c5-492b-84d1-1ca67606b13b?_rsc=qdzqe","memory.rss":"827064320","memory.heapUsed":"221273024","memory.heapTotal":"248528896"},"startTime":1768599384876,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":3849,"timestamp":45602875376,"id":125,"tags":{"url":"/projects?_rsc=141d3"},"startTime":1768599497126,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":88482,"timestamp":45602884182,"id":127,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768599497135,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":91899,"timestamp":45602984774,"id":128,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768599497235,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":240045,"timestamp":45602879956,"id":126,"tags":{"url":"/projects?_rsc=141d3"},"startTime":1768599497131,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":44,"timestamp":45603120081,"id":129,"parentId":126,"tags":{"url":"/projects?_rsc=141d3","memory.rss":"810254336","memory.heapUsed":"216601008","memory.heapTotal":"247832576"},"startTime":1768599497371,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":2511,"timestamp":45604541102,"id":130,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=qdzqe"},"startTime":1768599498792,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":223,"timestamp":45604544243,"id":131,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599498795,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":165,"timestamp":45604544488,"id":132,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599498795,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":234,"timestamp":45604545181,"id":133,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599498796,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":186,"timestamp":45604545444,"id":134,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599498796,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":79211,"timestamp":45604548693,"id":136,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599498799,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":88214,"timestamp":45604638142,"id":137,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599498889,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":246354,"timestamp":45604546300,"id":135,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=qdzqe"},"startTime":1768599498797,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":6,"timestamp":45604792709,"id":138,"parentId":135,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=qdzqe","memory.rss":"820416512","memory.heapUsed":"214194280","memory.heapTotal":"221065216"},"startTime":1768599499043,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":200000,"timestamp":45932474840,"id":139,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599827028,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":1931,"timestamp":45937682197,"id":140,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=zqrb1"},"startTime":1768599831932,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":180,"timestamp":45937684700,"id":141,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599831935,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":107,"timestamp":45937684897,"id":142,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599831935,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":124,"timestamp":45937685342,"id":143,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599831935,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":91,"timestamp":45937685480,"id":144,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599831935,"traceId":"c8165952c9f52684"},{"name":"compile-path","duration":67809,"timestamp":45937688014,"id":147,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768599831938,"traceId":"c8165952c9f52684"}] -[{"name":"client-hmr-latency","duration":239000,"timestamp":45937453421,"id":149,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599832061,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":60988,"timestamp":45937762430,"id":148,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599832012,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":225408,"timestamp":45937686558,"id":145,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=zqrb1"},"startTime":1768599831937,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":4,"timestamp":45937912004,"id":150,"parentId":145,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=zqrb1","memory.rss":"842125312","memory.heapUsed":"239156552","memory.heapTotal":"256192512"},"startTime":1768599832162,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":226000,"timestamp":45944455282,"id":151,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599839030,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":2303,"timestamp":45967015303,"id":152,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=zqrb1"},"startTime":1768599861265,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":170,"timestamp":45967018167,"id":153,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599861268,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":101,"timestamp":45967018359,"id":154,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599861268,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":129,"timestamp":45967018787,"id":155,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599861269,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":83,"timestamp":45967018933,"id":156,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599861269,"traceId":"c8165952c9f52684"},{"name":"compile-path","duration":74066,"timestamp":45967021077,"id":159,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768599861271,"traceId":"c8165952c9f52684"}] -[{"name":"client-hmr-latency","duration":243000,"timestamp":45966781904,"id":161,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599861411,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":67860,"timestamp":45967101219,"id":160,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599861351,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":712246,"timestamp":45967019351,"id":157,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=zqrb1"},"startTime":1768599861269,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":3,"timestamp":45967731631,"id":162,"parentId":157,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda?_rsc=zqrb1","memory.rss":"868921344","memory.heapUsed":"249045368","memory.heapTotal":"286392320"},"startTime":1768599861982,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":240000,"timestamp":45969403741,"id":163,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599864024,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":215000,"timestamp":45974144785,"id":164,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599868699,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":236000,"timestamp":45976490040,"id":165,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599871067,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":247000,"timestamp":45978525569,"id":166,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599873106,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":443000,"timestamp":45986689858,"id":167,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599881448,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":185000,"timestamp":45997834628,"id":168,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599892364,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":222000,"timestamp":45999676526,"id":169,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599894245,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":2508,"timestamp":46004591529,"id":170,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599898842,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":194,"timestamp":46004594689,"id":171,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599898845,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":106,"timestamp":46004594906,"id":172,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599898845,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":148,"timestamp":46004595528,"id":173,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599898846,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":104,"timestamp":46004595691,"id":174,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599898846,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":206000,"timestamp":46004348447,"id":177,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768599898859,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":70991,"timestamp":46004597482,"id":176,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599898848,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":62716,"timestamp":46004676095,"id":178,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599898927,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":1767257,"timestamp":46004596215,"id":175,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599898847,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":2,"timestamp":46006363498,"id":179,"parentId":175,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","memory.rss":"1123766272","memory.heapUsed":"371452632","memory.heapTotal":"467333120"},"startTime":1768599900614,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":1995,"timestamp":46006455070,"id":180,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599900705,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":166,"timestamp":46006457608,"id":181,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599900708,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":116,"timestamp":46006457793,"id":182,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599900708,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":155,"timestamp":46006458319,"id":183,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599900709,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":87,"timestamp":46006458488,"id":184,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599900709,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":2132,"timestamp":46008534083,"id":185,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768599902785,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":3190,"timestamp":46020430731,"id":186,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599914681,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":440,"timestamp":46020435026,"id":187,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599914685,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":260,"timestamp":46020435512,"id":188,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599914686,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":247,"timestamp":46020436836,"id":189,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599914687,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":190,"timestamp":46020437112,"id":190,"parentId":3,"tags":{"inputPage":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599914688,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":172312,"timestamp":46020441575,"id":192,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599914692,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":83053,"timestamp":46020623091,"id":193,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768599914874,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":765115,"timestamp":46020438090,"id":191,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda"},"startTime":1768599914689,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":4,"timestamp":46021203279,"id":194,"parentId":191,"tags":{"url":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","memory.rss":"1197002752","memory.heapUsed":"409847216","memory.heapTotal":"496857088"},"startTime":1768599915454,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":5304,"timestamp":46021204608,"id":195,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599915455,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":303,"timestamp":46021210995,"id":196,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599915461,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":214,"timestamp":46021211331,"id":197,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599915462,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":238,"timestamp":46021212306,"id":198,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599915463,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":217,"timestamp":46021212570,"id":199,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768599915463,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":32724,"timestamp":46022360024,"id":200,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768599916610,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":1096000,"timestamp":46252855997,"id":201,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":true},"startTime":1768600148330,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":392000,"timestamp":46260861378,"id":202,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768600155734,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":232000,"timestamp":46266620358,"id":203,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/drop-utils.ts"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768600161200,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":210000,"timestamp":46269990411,"id":204,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-resize.ts"],"page":"/editor/8bbda9f5-96a5-44f2-afbc-b07c3de3ebda","isPageHidden":false},"startTime":1768600164491,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":4266,"timestamp":46444205278,"id":205,"tags":{"url":"/projects?_rsc=f3d7o"},"startTime":1768600338456,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":89456,"timestamp":46444213251,"id":207,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768600338464,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":84447,"timestamp":46444310909,"id":208,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768600338562,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":231731,"timestamp":46444210202,"id":206,"tags":{"url":"/projects?_rsc=f3d7o"},"startTime":1768600338461,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":3,"timestamp":46444441977,"id":209,"parentId":206,"tags":{"url":"/projects?_rsc=f3d7o","memory.rss":"977145856","memory.heapUsed":"332389536","memory.heapTotal":"338509824"},"startTime":1768600338693,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":2397,"timestamp":46446698960,"id":210,"tags":{"url":"/editor/f4332970-d621-480a-a209-ad4d6b64304f?_rsc=qdzqe"},"startTime":1768600340950,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":223,"timestamp":46446702146,"id":211,"parentId":3,"tags":{"inputPage":"/editor/f4332970-d621-480a-a209-ad4d6b64304f"},"startTime":1768600340953,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":170,"timestamp":46446702393,"id":212,"parentId":3,"tags":{"inputPage":"/editor/f4332970-d621-480a-a209-ad4d6b64304f"},"startTime":1768600340953,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":199,"timestamp":46446703201,"id":213,"parentId":3,"tags":{"inputPage":"/editor/f4332970-d621-480a-a209-ad4d6b64304f"},"startTime":1768600340954,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":150,"timestamp":46446703421,"id":214,"parentId":3,"tags":{"inputPage":"/editor/f4332970-d621-480a-a209-ad4d6b64304f"},"startTime":1768600340954,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":109318,"timestamp":46446707818,"id":216,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768600340959,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":82110,"timestamp":46446826241,"id":217,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768600341077,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":347271,"timestamp":46446704162,"id":215,"tags":{"url":"/editor/f4332970-d621-480a-a209-ad4d6b64304f?_rsc=qdzqe"},"startTime":1768600340955,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":4,"timestamp":46447051476,"id":218,"parentId":215,"tags":{"url":"/editor/f4332970-d621-480a-a209-ad4d6b64304f?_rsc=qdzqe","memory.rss":"1016324096","memory.heapUsed":"353069144","memory.heapTotal":"388005888"},"startTime":1768600341302,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":201000,"timestamp":46563272093,"id":219,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/drop-utils.ts"],"page":"/editor/f4332970-d621-480a-a209-ad4d6b64304f","isPageHidden":false},"startTime":1768600457814,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":151000,"timestamp":46574506495,"id":220,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/f4332970-d621-480a-a209-ad4d6b64304f","isPageHidden":false},"startTime":1768600468996,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":3527,"timestamp":46667028501,"id":221,"tags":{"url":"/projects?_rsc=px2w3"},"startTime":1768600561279,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":87175,"timestamp":46667037087,"id":223,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768600561288,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":92070,"timestamp":46667134845,"id":224,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768600561386,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":233761,"timestamp":46667032868,"id":222,"tags":{"url":"/projects?_rsc=px2w3"},"startTime":1768600561284,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":3,"timestamp":46667266676,"id":225,"parentId":222,"tags":{"url":"/projects?_rsc=px2w3","memory.rss":"1008771072","memory.heapUsed":"336030280","memory.heapTotal":"376852480"},"startTime":1768600561518,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":3225,"timestamp":46668204407,"id":226,"tags":{"url":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499?_rsc=qdzqe"},"startTime":1768600562455,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":277,"timestamp":46668208344,"id":227,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768600562459,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":197,"timestamp":46668208650,"id":228,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768600562460,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":221,"timestamp":46668209392,"id":229,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768600562460,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":178,"timestamp":46668209635,"id":230,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768600562461,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":139905,"timestamp":46668213669,"id":232,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768600562465,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":88259,"timestamp":46668362592,"id":233,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768600562614,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":370614,"timestamp":46668210340,"id":231,"tags":{"url":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499?_rsc=qdzqe"},"startTime":1768600562461,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":2,"timestamp":46668580996,"id":234,"parentId":231,"tags":{"url":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499?_rsc=qdzqe","memory.rss":"1014132736","memory.heapUsed":"344920368","memory.heapTotal":"369029120"},"startTime":1768600562832,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":6000,"timestamp":46769476479,"id":235,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499","isPageHidden":true},"startTime":1768600663983,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":217000,"timestamp":46773074498,"id":236,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/drop-utils.ts"],"page":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499","isPageHidden":true},"startTime":1768600669326,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":307000,"timestamp":46777182058,"id":237,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-resize.ts"],"page":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499","isPageHidden":true},"startTime":1768600671814,"traceId":"c8165952c9f52684"},{"name":"client-hmr-latency","duration":2000,"timestamp":47565521149,"id":238,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499","isPageHidden":true},"startTime":1768601460960,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":8141,"timestamp":48066993002,"id":239,"tags":{"url":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768601961244,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":368,"timestamp":48067002490,"id":240,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768601961254,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":257,"timestamp":48067002903,"id":241,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768601961254,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":272,"timestamp":48067003856,"id":242,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768601961255,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":279,"timestamp":48067004158,"id":243,"parentId":3,"tags":{"inputPage":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768601961255,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":116756,"timestamp":48067008686,"id":245,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768601961260,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":101581,"timestamp":48067134630,"id":246,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768601961386,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":863764,"timestamp":48067005197,"id":244,"tags":{"url":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499"},"startTime":1768601961256,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":3,"timestamp":48067869021,"id":247,"parentId":244,"tags":{"url":"/editor/0a2a4d86-895f-40d9-8596-948f899a9499","memory.rss":"757456896","memory.heapUsed":"415861200","memory.heapTotal":"452272128"},"startTime":1768601962120,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":5963,"timestamp":48067875911,"id":248,"tags":{"url":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768601962127,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":394,"timestamp":48067882989,"id":249,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768601962134,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":310,"timestamp":48067883461,"id":250,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768601962135,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":354,"timestamp":48067892541,"id":251,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768601962144,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":237,"timestamp":48067892931,"id":252,"parentId":3,"tags":{"inputPage":"/.well-known/appspecific/com.chrome.devtools.json"},"startTime":1768601962144,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":5257,"timestamp":48068942536,"id":253,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768601963194,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":3449,"timestamp":48071259950,"id":254,"tags":{"url":"/projects?_rsc=gdw93"},"startTime":1768601965511,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":90771,"timestamp":48071269311,"id":256,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768601965520,"traceId":"c8165952c9f52684"},{"name":"ensure-page","duration":87677,"timestamp":48071368627,"id":257,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768601965620,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":234754,"timestamp":48071264431,"id":255,"tags":{"url":"/projects?_rsc=gdw93"},"startTime":1768601965515,"traceId":"c8165952c9f52684"},{"name":"memory-usage","duration":3,"timestamp":48071499232,"id":258,"parentId":255,"tags":{"url":"/projects?_rsc=gdw93","memory.rss":"805535744","memory.heapUsed":"420528880","memory.heapTotal":"496742400"},"startTime":1768601965750,"traceId":"c8165952c9f52684"},{"name":"handle-request","duration":2686,"timestamp":48074800985,"id":259,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=qdzqe"},"startTime":1768601969052,"traceId":"c8165952c9f52684"}] -[{"name":"hot-reloader","duration":45,"timestamp":5223132316,"id":3,"tags":{"version":"15.5.7"},"startTime":1768665158405,"traceId":"66d1e786753f3916"},{"name":"compile-path","duration":365135,"timestamp":5224596067,"id":4,"tags":{"trigger":"middleware"},"startTime":1768665159869,"traceId":"66d1e786753f3916"}] -[{"name":"setup-dev-bundler","duration":2271250,"timestamp":5223131230,"id":2,"parentId":1,"tags":{},"startTime":1768665158404,"traceId":"66d1e786753f3916"},{"name":"start-dev-server","duration":4047528,"timestamp":5221718000,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"18065559552","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"309362688","memory.heapTotal":"131678208","memory.heapUsed":"73039696"},"startTime":1768665156991,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":69127,"timestamp":5238424976,"id":5,"tags":{"url":"/"},"startTime":1768665173698,"traceId":"66d1e786753f3916"},{"name":"compile-path","duration":7158978,"timestamp":5238500042,"id":8,"tags":{"trigger":"/"},"startTime":1768665173773,"traceId":"66d1e786753f3916"}] -[{"name":"ensure-page","duration":78704,"timestamp":5245666793,"id":9,"parentId":3,"tags":{"inputPage":"/page"},"startTime":1768665180940,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":8300159,"timestamp":5238496095,"id":6,"tags":{"url":"/"},"startTime":1768665173769,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":17,"timestamp":5246796370,"id":10,"parentId":6,"tags":{"url":"/","memory.rss":"1192030208","memory.heapUsed":"185078400","memory.heapTotal":"246743040"},"startTime":1768665182070,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6734,"timestamp":5247117677,"id":11,"tags":{"url":"/logos/opencut/svg/logo.svg"},"startTime":1768665182391,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":79200,"timestamp":5247128083,"id":12,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75"},"startTime":1768665182401,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":1,"timestamp":5247207333,"id":14,"parentId":12,"tags":{"url":"/_next/image?url=%2Flanding-page-dark.png&w=1920&q=75","memory.rss":"1204903936","memory.heapUsed":"190659808","memory.heapTotal":"248315904"},"startTime":1768665182480,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3944,"timestamp":5247207244,"id":13,"tags":{"url":"/landing-page-dark.png"},"startTime":1768665182480,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5659,"timestamp":5247599221,"id":15,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768665182872,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3653,"timestamp":5248547109,"id":16,"tags":{"url":"/projects?_rsc=vusbg"},"startTime":1768665183820,"traceId":"66d1e786753f3916"},{"name":"compile-path","duration":1899331,"timestamp":5248555061,"id":19,"tags":{"trigger":"/projects"},"startTime":1768665183828,"traceId":"66d1e786753f3916"}] -[{"name":"ensure-page","duration":133007,"timestamp":5250475909,"id":20,"parentId":3,"tags":{"inputPage":"/projects/page"},"startTime":1768665185749,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2150448,"timestamp":5248551348,"id":17,"tags":{"url":"/projects?_rsc=vusbg"},"startTime":1768665183824,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":5250701879,"id":21,"parentId":17,"tags":{"url":"/projects?_rsc=vusbg","memory.rss":"1269256192","memory.heapUsed":"170119464","memory.heapTotal":"251924480"},"startTime":1768665185975,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4084,"timestamp":5255266439,"id":22,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=qdzqe"},"startTime":1768665190540,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":528,"timestamp":5255271522,"id":23,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665190545,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":184,"timestamp":5255272097,"id":24,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665190545,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":250,"timestamp":5255273093,"id":25,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665190546,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":186,"timestamp":5255273376,"id":26,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665190547,"traceId":"66d1e786753f3916"},{"name":"compile-path","duration":3444140,"timestamp":5255277714,"id":29,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768665190551,"traceId":"66d1e786753f3916"}] -[{"name":"ensure-page","duration":89215,"timestamp":5258729828,"id":30,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768665194003,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3965991,"timestamp":5255274881,"id":27,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=qdzqe"},"startTime":1768665190548,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":5259240941,"id":31,"parentId":27,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=qdzqe","memory.rss":"1518280704","memory.heapUsed":"188901704","memory.heapTotal":"255299584"},"startTime":1768665194514,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5432,"timestamp":5273105984,"id":32,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665208379,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":307,"timestamp":5273112587,"id":33,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665208386,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":293,"timestamp":5273112938,"id":34,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665208386,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":256,"timestamp":5273114364,"id":35,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665208387,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":271,"timestamp":5273114653,"id":36,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665208388,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":83030,"timestamp":5273119795,"id":38,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768665208393,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":78932,"timestamp":5273209847,"id":39,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768665208483,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":536140,"timestamp":5273116575,"id":37,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665208390,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":5273652785,"id":40,"parentId":37,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1504247808","memory.heapUsed":"210245224","memory.heapTotal":"236040192"},"startTime":1768665208926,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4674,"timestamp":5274333457,"id":41,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768665209607,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4821,"timestamp":5281551664,"id":42,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665216825,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":374,"timestamp":5281557312,"id":43,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665216830,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":272,"timestamp":5281557749,"id":44,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665216831,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":248,"timestamp":5281558673,"id":45,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665216832,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":246,"timestamp":5281558953,"id":46,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665216832,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":81496,"timestamp":5281562999,"id":48,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768665216836,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":115295,"timestamp":5281651396,"id":49,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768665216925,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":310043,"timestamp":5281559912,"id":47,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665216833,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":6,"timestamp":5281870038,"id":50,"parentId":47,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1522827264","memory.heapUsed":"211658112","memory.heapTotal":"272691200"},"startTime":1768665217143,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3889,"timestamp":5282354180,"id":51,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768665217627,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3785,"timestamp":5287765432,"id":52,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665223038,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":311,"timestamp":5287769989,"id":53,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665223043,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":235,"timestamp":5287770342,"id":54,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665223043,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":212,"timestamp":5287771103,"id":55,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665223044,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":244,"timestamp":5287771342,"id":56,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665223044,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":73306,"timestamp":5287774628,"id":58,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768665223047,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":60776,"timestamp":5287856119,"id":59,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768665223129,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":256636,"timestamp":5287772130,"id":57,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768665223045,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":5288028816,"id":60,"parentId":57,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1543626752","memory.heapUsed":"211426512","memory.heapTotal":"273940480"},"startTime":1768665223301,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6058,"timestamp":5288478680,"id":61,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768665223751,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":208000,"timestamp":5766814835,"id":62,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/project/update-project-settings.ts","[project]/apps/web/src/lib/commands/project/index.ts","[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768665702351,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":156000,"timestamp":5771328301,"id":63,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/add-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768665706770,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":13000,"timestamp":8935014994,"id":64,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/media/add-media-asset.ts","[project]/apps/web/src/lib/commands/media/remove-media-asset.ts","[project]/apps/web/src/lib/commands/media/index.ts","[project]/apps/web/src/lib/commands/scene/create-scene.ts","[project]/apps/web/src/lib/commands/scene/delete-scene.ts","[project]/apps/web/src/lib/commands/scene/rename-scene.ts","[project]/apps/web/src/lib/commands/scene/toggle-bookmark.ts","[project]/apps/web/src/lib/commands/scene/remove-bookmark.ts","[project]/apps/web/src/lib/commands/scene/index.ts","[project]/apps/web/src/lib/commands/index.ts","[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870325,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935054101,"id":65,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870330,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935056994,"id":66,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870331,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":7125,"timestamp":8935062862,"id":67,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870336,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":6000,"timestamp":8935060355,"id":68,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870343,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":1000,"timestamp":8935066481,"id":69,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870344,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935067558,"id":70,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870344,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":1000,"timestamp":8935067619,"id":71,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870344,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":2000,"timestamp":8935070224,"id":73,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/add-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870348,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4871,"timestamp":8935072469,"id":72,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870345,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":2000,"timestamp":8935073332,"id":77,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/add-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870358,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935076481,"id":78,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/add-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870359,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935075536,"id":79,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/add-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870359,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935076676,"id":80,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870360,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935076759,"id":81,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/project-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870360,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935077853,"id":82,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/settings.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870360,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":0,"timestamp":8935078907,"id":83,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/settings.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768668870360,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":10912,"timestamp":8935078266,"id":74,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870351,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":10684,"timestamp":8935080526,"id":75,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768668870354,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":10226,"timestamp":8935083012,"id":76,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870356,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":9255,"timestamp":8935094093,"id":84,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870367,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":8710,"timestamp":8935096284,"id":85,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870369,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":8474,"timestamp":8935098146,"id":86,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870371,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":365,"timestamp":8935127357,"id":95,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870400,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":263,"timestamp":8935127767,"id":96,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870401,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":22107,"timestamp":8935107976,"id":87,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870381,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":22928,"timestamp":8935109542,"id":88,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870383,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":21963,"timestamp":8935112631,"id":89,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870386,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":23446,"timestamp":8935114567,"id":90,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870388,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":24028,"timestamp":8935116598,"id":91,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870390,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":23605,"timestamp":8935118596,"id":92,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870392,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":23269,"timestamp":8935120675,"id":93,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870394,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":22347,"timestamp":8935123055,"id":94,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870396,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":336,"timestamp":8935146688,"id":97,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870420,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":243,"timestamp":8935147066,"id":98,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870420,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":283,"timestamp":8935147794,"id":99,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870421,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":217,"timestamp":8935148114,"id":100,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870421,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":281,"timestamp":8935150053,"id":102,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870423,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":201,"timestamp":8935150368,"id":103,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870423,"traceId":"66d1e786753f3916"},{"name":"compile-path","duration":151831,"timestamp":8935156713,"id":106,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768668870430,"traceId":"66d1e786753f3916"}] -[{"name":"ensure-page","duration":133561,"timestamp":8935188954,"id":107,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768668870462,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":113835,"timestamp":8935318782,"id":108,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768668870592,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":370015,"timestamp":8935327489,"id":109,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768668870601,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6530,"timestamp":8936403651,"id":110,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768668871677,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":336,"timestamp":8936423507,"id":111,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668871697,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":227,"timestamp":8936423895,"id":112,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668871697,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":316,"timestamp":8936426429,"id":113,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668871699,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":264,"timestamp":8936426797,"id":114,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668871700,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1289256,"timestamp":8935154803,"id":104,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768668870428,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":8936444149,"id":115,"parentId":104,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1556750336","memory.heapUsed":"276564472","memory.heapTotal":"326619136"},"startTime":1768668871717,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3223,"timestamp":8937257665,"id":116,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768668872531,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":204000,"timestamp":9119413049,"id":117,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/scene/create-scene.ts","[project]/apps/web/src/lib/commands/scene/delete-scene.ts","[project]/apps/web/src/lib/commands/scene/rename-scene.ts","[project]/apps/web/src/lib/commands/scene/toggle-bookmark.ts","[project]/apps/web/src/lib/commands/scene/remove-bookmark.ts","[project]/apps/web/src/lib/commands/scene/index.ts","[project]/apps/web/src/core/managers/scenes-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768669054919,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":158000,"timestamp":9171440919,"id":118,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/scenes-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768669107118,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4961,"timestamp":9478709421,"id":119,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669413982,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":442,"timestamp":9478715696,"id":120,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669413988,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":263,"timestamp":9478716187,"id":121,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669413989,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":276,"timestamp":9478718141,"id":122,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669413991,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":228,"timestamp":9478718458,"id":123,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669413991,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":121701,"timestamp":9478723962,"id":125,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669413996,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":92857,"timestamp":9478856054,"id":126,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669414129,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1058402,"timestamp":9478719649,"id":124,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669413992,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":9479778121,"id":127,"parentId":124,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1582161920","memory.heapUsed":"305744376","memory.heapTotal":"363298816"},"startTime":1768669415051,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4223,"timestamp":9480558973,"id":128,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669415831,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":200000,"timestamp":9570814752,"id":129,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669506337,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2410,"timestamp":9575562249,"id":130,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669510834,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":164,"timestamp":9575565251,"id":131,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669510837,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":101,"timestamp":9575565444,"id":132,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669510838,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":142,"timestamp":9575566591,"id":133,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669510839,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":83,"timestamp":9575566753,"id":134,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669510839,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":230000,"timestamp":9575320481,"id":137,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669510883,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":100736,"timestamp":9575568927,"id":136,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669510841,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":69571,"timestamp":9575678518,"id":138,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669510951,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":855392,"timestamp":9575567225,"id":135,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669510839,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":9576422719,"id":139,"parentId":135,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1635422208","memory.heapUsed":"348689248","memory.heapTotal":"412176384"},"startTime":1768669511695,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2069,"timestamp":9576447589,"id":140,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669511720,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1510,"timestamp":9577793169,"id":141,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669513065,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1695,"timestamp":9581250664,"id":142,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669516523,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":175,"timestamp":9581252798,"id":143,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669516525,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":152,"timestamp":9581252996,"id":144,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669516525,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":209,"timestamp":9581253693,"id":145,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669516526,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":143,"timestamp":9581253923,"id":146,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669516526,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":187000,"timestamp":9581053758,"id":149,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669516572,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":82021,"timestamp":9581255965,"id":148,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669516528,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":63664,"timestamp":9581344994,"id":150,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669516617,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":502542,"timestamp":9581254453,"id":147,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669516527,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":9581757041,"id":151,"parentId":147,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1743093760","memory.heapUsed":"419153704","memory.heapTotal":"526602240"},"startTime":1768669517029,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1992,"timestamp":9582539516,"id":152,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669517812,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":155000,"timestamp":9582719440,"id":153,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669518150,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1595,"timestamp":9582882301,"id":154,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669518154,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":140,"timestamp":9582884237,"id":155,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669518156,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":77,"timestamp":9582884394,"id":156,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669518157,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":100,"timestamp":9582884793,"id":157,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669518157,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":67,"timestamp":9582884905,"id":158,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669518157,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":81041,"timestamp":9582886486,"id":160,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669518159,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":68254,"timestamp":9582975379,"id":161,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669518248,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":527772,"timestamp":9582885251,"id":159,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669518157,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":9583413067,"id":162,"parentId":159,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1812140032","memory.heapUsed":"478247608","memory.heapTotal":"576323584"},"startTime":1768669518685,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2023,"timestamp":9584025120,"id":163,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669519297,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3853,"timestamp":9593318605,"id":164,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669528591,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":191,"timestamp":9593323096,"id":165,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669528595,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":111,"timestamp":9593323310,"id":166,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669528595,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":142,"timestamp":9593324019,"id":167,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669528596,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":95,"timestamp":9593324176,"id":168,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669528596,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":177000,"timestamp":9593133769,"id":171,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669528636,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":67962,"timestamp":9593326249,"id":170,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669528598,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":219261,"timestamp":9593399448,"id":172,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669528672,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":651450,"timestamp":9593324633,"id":169,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669528597,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":2,"timestamp":9593976114,"id":173,"parentId":169,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1698111488","memory.heapUsed":"384650344","memory.heapTotal":"456802304"},"startTime":1768669529248,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2170,"timestamp":9594583867,"id":174,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669529856,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1778,"timestamp":9601169314,"id":175,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669536441,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":173,"timestamp":9601171544,"id":176,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669536444,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":111,"timestamp":9601171738,"id":177,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669536444,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":130,"timestamp":9601172268,"id":178,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669536444,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":88,"timestamp":9601172413,"id":179,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669536445,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":80949,"timestamp":9601174468,"id":181,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669536447,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":185000,"timestamp":9600976268,"id":183,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669536572,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":69976,"timestamp":9601261684,"id":182,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669536534,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":506374,"timestamp":9601172950,"id":180,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669536445,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":9601679358,"id":184,"parentId":180,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1814069248","memory.heapUsed":"484776568","memory.heapTotal":"581120000"},"startTime":1768669536951,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1915,"timestamp":9602317365,"id":185,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669537589,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1621,"timestamp":9608782101,"id":186,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669544054,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":139,"timestamp":9608784071,"id":187,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669544056,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":80,"timestamp":9608784226,"id":188,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669544056,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":97,"timestamp":9608784590,"id":189,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669544057,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":66,"timestamp":9608784697,"id":190,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669544057,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":199000,"timestamp":9608572349,"id":193,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669544070,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":72877,"timestamp":9608786629,"id":192,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669544059,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":58739,"timestamp":9608864195,"id":194,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669544136,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":500193,"timestamp":9608785016,"id":191,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669544057,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":9609285252,"id":195,"parentId":191,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1848483840","memory.heapUsed":"503574856","memory.heapTotal":"604991488"},"startTime":1768669544557,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1731,"timestamp":9609913807,"id":196,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669545186,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":15000,"timestamp":9610243831,"id":197,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669545539,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3041,"timestamp":9610279013,"id":198,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669545551,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":155,"timestamp":9610283067,"id":199,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669545555,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":111,"timestamp":9610283245,"id":200,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669545555,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":99,"timestamp":9610283580,"id":201,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669545556,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":66,"timestamp":9610283689,"id":202,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669545556,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":78977,"timestamp":9610285237,"id":204,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669545557,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":55818,"timestamp":9610370378,"id":205,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669545643,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":470005,"timestamp":9610284021,"id":203,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669545556,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":9610754066,"id":206,"parentId":203,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1838288896","memory.heapUsed":"475012648","memory.heapTotal":"597377024"},"startTime":1768669546026,"traceId":"66d1e786753f3916"}] -[{"name":"handle-request","duration":2161,"timestamp":9611347310,"id":207,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669546619,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1502,"timestamp":9614296040,"id":208,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669549568,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":127,"timestamp":9614297865,"id":209,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669549570,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":78,"timestamp":9614298011,"id":210,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669549570,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":102,"timestamp":9614298343,"id":211,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669549570,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":70,"timestamp":9614298456,"id":212,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669549571,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":214000,"timestamp":9614075060,"id":215,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669549607,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":92442,"timestamp":9614299774,"id":214,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669549572,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":56441,"timestamp":9614396744,"id":216,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669549669,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":483961,"timestamp":9614298752,"id":213,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669549571,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":9614782776,"id":217,"parentId":213,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1853603840","memory.heapUsed":"456947080","memory.heapTotal":"573874176"},"startTime":1768669550055,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3335,"timestamp":9615398524,"id":218,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669550671,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1685,"timestamp":9615908938,"id":219,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669551181,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":152,"timestamp":9615911065,"id":220,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669551183,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":90,"timestamp":9615911240,"id":221,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669551183,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":129,"timestamp":9615911654,"id":222,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669551184,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":79,"timestamp":9615911797,"id":223,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669551184,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":171000,"timestamp":9615731064,"id":226,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669551218,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":75941,"timestamp":9615913512,"id":225,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669551186,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":68453,"timestamp":9615994579,"id":227,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669551267,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":503243,"timestamp":9615912191,"id":224,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669551184,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":9616415482,"id":228,"parentId":224,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1880760320","memory.heapUsed":"472037496","memory.heapTotal":"588075008"},"startTime":1768669551688,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4466,"timestamp":9617002095,"id":229,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669552274,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":187000,"timestamp":9628612199,"id":230,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669564101,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2257,"timestamp":9631208250,"id":231,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669566481,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":156,"timestamp":9631211155,"id":232,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669566484,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":92,"timestamp":9631211329,"id":233,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669566484,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":147,"timestamp":9631211873,"id":234,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669566485,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":102,"timestamp":9631212035,"id":235,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669566485,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":80697,"timestamp":9631214569,"id":237,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669566487,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":65320,"timestamp":9631299302,"id":238,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768669566572,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":185000,"timestamp":9631015286,"id":239,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669567030,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":553975,"timestamp":9631213228,"id":236,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768669566486,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":9631767236,"id":240,"parentId":236,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1737760768","memory.heapUsed":"407520320","memory.heapTotal":"483385344"},"startTime":1768669567040,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2217,"timestamp":9631792618,"id":241,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669567065,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1550,"timestamp":9632627080,"id":242,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768669567900,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":152000,"timestamp":9751757632,"id":243,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/editable-timecode.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669687196,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":154000,"timestamp":9803986056,"id":244,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/editable-timecode.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669739441,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":153000,"timestamp":9869378236,"id":245,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/editable-timecode.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669804835,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":186000,"timestamp":9912462775,"id":246,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669847951,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":154000,"timestamp":9920489816,"id":247,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/ui/editable-timecode.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768669855945,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":232000,"timestamp":10384243691,"id":248,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768670319798,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":238000,"timestamp":10427116447,"id":249,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768670362657,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1092115,"timestamp":10450799061,"id":250,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75"},"startTime":1768670386071,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":10451891221,"id":251,"parentId":250,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75","memory.rss":"1062985728","memory.heapUsed":"424715112","memory.heapTotal":"483848192"},"startTime":1768670387163,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2931,"timestamp":10511419119,"id":252,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75"},"startTime":1768670446691,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":2,"timestamp":10511422086,"id":253,"parentId":252,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75","memory.rss":"1063043072","memory.heapUsed":"425107888","memory.heapTotal":"483848192"},"startTime":1768670446694,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":248000,"timestamp":10576155318,"id":254,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/settings.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768670511691,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":324000,"timestamp":10589509442,"id":255,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/settings.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768670525134,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2205,"timestamp":10595506561,"id":256,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75"},"startTime":1768670530779,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":10595508807,"id":257,"parentId":256,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75","memory.rss":"1084903424","memory.heapUsed":"426937920","memory.heapTotal":"484110336"},"startTime":1768670530781,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":218000,"timestamp":10605087996,"id":258,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/assets-panel/views/settings.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768670540606,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2556,"timestamp":10860874329,"id":259,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75"},"startTime":1768670796146,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":10860876927,"id":260,"parentId":259,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75","memory.rss":"1039716352","memory.heapUsed":"410183304","memory.heapTotal":"436215808"},"startTime":1768670796149,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2333,"timestamp":10873986138,"id":261,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75"},"startTime":1768670809258,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":10873988507,"id":262,"parentId":261,"tags":{"url":"/_next/image?url=https%3A%2F%2Fimages.unsplash.com%2Fphoto-1501785888041-af3ef285b470%3Fq%3D80%26w%3D1470%26auto%3Dformat%26fit%3Dcrop%26ixlib%3Drb-4.1.0%26ixid%3DM3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%253D%253D&w=1920&q=75","memory.rss":"1040109568","memory.heapUsed":"410399848","memory.heapTotal":"436215808"},"startTime":1768670809260,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":1076000,"timestamp":11017244800,"id":263,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768670953765,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":350000,"timestamp":11031617538,"id":264,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768670967425,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":157000,"timestamp":11658979070,"id":265,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768671595106,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6006,"timestamp":11754915754,"id":266,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768671690189,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":410,"timestamp":11754922948,"id":267,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768671690196,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":202,"timestamp":11754923408,"id":268,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768671690197,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":273,"timestamp":11754924297,"id":269,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768671690197,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":353,"timestamp":11754924603,"id":270,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768671690198,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":126503,"timestamp":11754929954,"id":272,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768671690203,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":82722,"timestamp":11755065898,"id":273,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768671690339,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1315541,"timestamp":11754925939,"id":271,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768671690199,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":11756241528,"id":274,"parentId":271,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"918212608","memory.heapUsed":"494489528","memory.heapTotal":"553283584"},"startTime":1768671691515,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2076,"timestamp":11757630373,"id":275,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768671692904,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":357000,"timestamp":11847830712,"id":276,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768671784110,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5877,"timestamp":12227917928,"id":277,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672163191,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":418,"timestamp":12227925177,"id":278,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672163198,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":360,"timestamp":12227925687,"id":279,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672163199,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":299,"timestamp":12227927389,"id":280,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672163200,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":222,"timestamp":12227927726,"id":281,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672163201,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":127125,"timestamp":12227932708,"id":283,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768672163206,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":123870,"timestamp":12228069574,"id":284,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768672163343,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1580542,"timestamp":12227928727,"id":282,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672163202,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":12229509321,"id":285,"parentId":282,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"800047104","memory.heapUsed":"371288328","memory.heapTotal":"435056640"},"startTime":1768672164782,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6752,"timestamp":12230292436,"id":286,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768672165565,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":156000,"timestamp":12299862952,"id":287,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768672235370,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6243,"timestamp":12379827766,"id":288,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672315100,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":362,"timestamp":12379835450,"id":289,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672315107,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":257,"timestamp":12379835855,"id":290,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672315108,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":296,"timestamp":12379838126,"id":291,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672315110,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":260,"timestamp":12379838460,"id":292,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672315110,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":118385,"timestamp":12379842789,"id":294,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768672315115,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":92974,"timestamp":12379968364,"id":295,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768672315240,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":754020,"timestamp":12379839545,"id":293,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768672315111,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":12380593629,"id":296,"parentId":293,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"787984384","memory.heapUsed":"349311232","memory.heapTotal":"413999104"},"startTime":1768672315865,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4283,"timestamp":12381036312,"id":297,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768672316308,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":187000,"timestamp":12421597155,"id":298,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768672357367,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5377,"timestamp":14292635814,"id":299,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674227908,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":454,"timestamp":14292642060,"id":300,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674227915,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":270,"timestamp":14292642569,"id":301,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674227915,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":287,"timestamp":14292643532,"id":302,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674227916,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":216,"timestamp":14292643854,"id":303,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674227917,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":119845,"timestamp":14292648701,"id":305,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674227921,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":89779,"timestamp":14292775454,"id":306,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674228048,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":767434,"timestamp":14292644795,"id":304,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674227917,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":3,"timestamp":14293412275,"id":307,"parentId":304,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"622845952","memory.heapUsed":"362797056","memory.heapTotal":"517410816"},"startTime":1768674228685,"traceId":"66d1e786753f3916"}] -[{"name":"handle-request","duration":7138,"timestamp":14294171810,"id":308,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768674229444,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":174000,"timestamp":14362794433,"id":309,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768674298372,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3873,"timestamp":14391822658,"id":310,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674327096,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":497,"timestamp":14391828062,"id":311,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674327101,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":295,"timestamp":14391828606,"id":312,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674327102,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":229,"timestamp":14391830431,"id":313,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674327104,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":182,"timestamp":14391830690,"id":314,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674327104,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":113082,"timestamp":14391834709,"id":316,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674327108,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":107856,"timestamp":14391956156,"id":317,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674327229,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":779995,"timestamp":14391831575,"id":315,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674327105,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":14392611637,"id":318,"parentId":315,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"639102976","memory.heapUsed":"370632160","memory.heapTotal":"434520064"},"startTime":1768674327885,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6839,"timestamp":14393335254,"id":319,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768674328608,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":58000,"timestamp":14445926679,"id":320,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768674381737,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5019,"timestamp":14521701199,"id":321,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674456974,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":444,"timestamp":14521707465,"id":322,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674456980,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":251,"timestamp":14521707957,"id":323,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674456981,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":276,"timestamp":14521709193,"id":324,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674456982,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":231,"timestamp":14521709514,"id":325,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674456982,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":115597,"timestamp":14521715270,"id":327,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674456988,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":98481,"timestamp":14521838742,"id":328,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674457112,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1213446,"timestamp":14521710495,"id":326,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674456983,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":14522923992,"id":329,"parentId":326,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"701702144","memory.heapUsed":"382263608","memory.heapTotal":"541298688"},"startTime":1768674458197,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5915,"timestamp":14523340285,"id":330,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768674458613,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3810,"timestamp":14544184814,"id":331,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674479458,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":323,"timestamp":14544189701,"id":332,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674479463,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":207,"timestamp":14544190061,"id":333,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674479463,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":251,"timestamp":14544191379,"id":334,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674479464,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":194,"timestamp":14544191662,"id":335,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674479464,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":88632,"timestamp":14544197477,"id":337,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674479470,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":83516,"timestamp":14544294594,"id":338,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674479567,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":734388,"timestamp":14544193450,"id":336,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674479466,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":14544927889,"id":339,"parentId":336,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"556716032","memory.heapUsed":"312800128","memory.heapTotal":"321744896"},"startTime":1768674480201,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3020,"timestamp":14545391828,"id":340,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768674480665,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":141000,"timestamp":14564484507,"id":341,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768674499944,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3533,"timestamp":14580958402,"id":342,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674516231,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":320,"timestamp":14580963047,"id":343,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674516236,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":235,"timestamp":14580963409,"id":344,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674516236,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":226,"timestamp":14580964479,"id":345,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674516237,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":190,"timestamp":14580964737,"id":346,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674516238,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":112265,"timestamp":14580969515,"id":348,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674516242,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":97112,"timestamp":14581091052,"id":349,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768674516364,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":767212,"timestamp":14580965586,"id":347,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768674516238,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":14581732892,"id":350,"parentId":347,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"644501504","memory.heapUsed":"374006056","memory.heapTotal":"435810304"},"startTime":1768674517006,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4629,"timestamp":14582153040,"id":351,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768674517426,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":512000,"timestamp":14642592014,"id":352,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768674578412,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5054,"timestamp":17218447743,"id":353,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677154810,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":343,"timestamp":17218454142,"id":354,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677154816,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":230,"timestamp":17218454522,"id":355,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677154817,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":256,"timestamp":17218455529,"id":356,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677154818,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":197,"timestamp":17218455812,"id":357,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677154818,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":194890,"timestamp":17218461253,"id":359,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768677154823,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":99825,"timestamp":17218665045,"id":360,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768677155027,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1269109,"timestamp":17218456724,"id":358,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677154819,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":17219725896,"id":361,"parentId":358,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"652677120","memory.heapUsed":"347129320","memory.heapTotal":"412413952"},"startTime":1768677156088,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2049,"timestamp":17221122002,"id":362,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768677157484,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":580000,"timestamp":17312180880,"id":363,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768677249199,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":516000,"timestamp":17318017126,"id":364,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-playhead.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768677254947,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5108,"timestamp":17648149733,"id":365,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677584512,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":371,"timestamp":17648156698,"id":366,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677584519,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":236,"timestamp":17648157122,"id":367,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677584519,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":282,"timestamp":17648158215,"id":368,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677584521,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":219,"timestamp":17648158530,"id":369,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677584521,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":157141,"timestamp":17648163866,"id":371,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768677584526,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":127807,"timestamp":17648330461,"id":372,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768677584693,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1243506,"timestamp":17648159722,"id":370,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677584522,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":6,"timestamp":17649403298,"id":373,"parentId":370,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"817774592","memory.heapUsed":"361940808","memory.heapTotal":"518451200"},"startTime":1768677585766,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3754,"timestamp":17650826481,"id":374,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768677587189,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":393000,"timestamp":17674749074,"id":375,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677611541,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":331000,"timestamp":17677316359,"id":376,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-playhead.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677614038,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":278000,"timestamp":17993873610,"id":377,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677930561,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":216000,"timestamp":17995997161,"id":378,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677932617,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":215000,"timestamp":17997987363,"id":379,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677934605,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":221000,"timestamp":17999991047,"id":380,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677936618,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":250000,"timestamp":18000604047,"id":381,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677937260,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5651,"timestamp":18020627905,"id":382,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768677956989,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":334,"timestamp":18020635176,"id":383,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677956996,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":136,"timestamp":18020635538,"id":384,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677956997,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":160,"timestamp":18020636537,"id":385,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677956998,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":108,"timestamp":18020636720,"id":386,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677956998,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":351000,"timestamp":18020299429,"id":390,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677957037,"traceId":"66d1e786753f3916"},{"name":"compile-path","duration":133379,"timestamp":18020640843,"id":389,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768677957002,"traceId":"66d1e786753f3916"}] -[{"name":"ensure-page","duration":103594,"timestamp":18020785213,"id":391,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768677957146,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":502455,"timestamp":18020637285,"id":387,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768677956998,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":11,"timestamp":18021139808,"id":392,"parentId":387,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"823795712","memory.heapUsed":"346957856","memory.heapTotal":"380641280"},"startTime":1768677957501,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2454,"timestamp":18021438200,"id":393,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768677957799,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":312000,"timestamp":18046659820,"id":394,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-playhead.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677983347,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":355000,"timestamp":18048890819,"id":395,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-playhead.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768677985621,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6563,"timestamp":18052305603,"id":396,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677988667,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":350,"timestamp":18052314207,"id":397,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677988675,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":236,"timestamp":18052314603,"id":398,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677988676,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":304,"timestamp":18052315637,"id":399,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677988677,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":201,"timestamp":18052315976,"id":400,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677988677,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":131518,"timestamp":18052321377,"id":402,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768677988682,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":122315,"timestamp":18052461260,"id":403,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768677988822,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1281191,"timestamp":18052317438,"id":401,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768677988678,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":18053598708,"id":404,"parentId":401,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"859598848","memory.heapUsed":"380460768","memory.heapTotal":"481648640"},"startTime":1768677989960,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":7508,"timestamp":18054797308,"id":405,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768677991159,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":229000,"timestamp":18066089823,"id":406,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678002726,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":308000,"timestamp":18070076774,"id":407,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678006791,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":231000,"timestamp":18071570963,"id":408,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678008207,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":238000,"timestamp":18074687862,"id":409,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678011329,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":217000,"timestamp":18076963018,"id":410,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678013589,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":215000,"timestamp":18083127218,"id":411,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678019751,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":254000,"timestamp":18084566086,"id":412,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678021237,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":232000,"timestamp":18306460711,"id":413,"parentId":3,"tags":{"updatedModules":[],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678243124,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":314000,"timestamp":18344157556,"id":414,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678280880,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":295000,"timestamp":18345247994,"id":415,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678281952,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":310000,"timestamp":18376783428,"id":416,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678313500,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":464000,"timestamp":18378577313,"id":417,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/drag-line.tsx","[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678315455,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":6752,"timestamp":18385863971,"id":418,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678322225,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":415,"timestamp":18385872205,"id":419,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678322234,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":210,"timestamp":18385872685,"id":420,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678322234,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":276,"timestamp":18385875383,"id":421,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678322237,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":162,"timestamp":18385875692,"id":422,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678322237,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":340000,"timestamp":18385506823,"id":425,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678322274,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":164989,"timestamp":18385882063,"id":424,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678322243,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4618,"timestamp":18386118600,"id":427,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678322480,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":108351,"timestamp":18386054318,"id":426,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678322416,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1295350,"timestamp":18385877327,"id":423,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678322239,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":7,"timestamp":18387173034,"id":428,"parentId":423,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"924037120","memory.heapUsed":"372701472","memory.heapTotal":"437436416"},"startTime":1768678323534,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":5689,"timestamp":18429944026,"id":429,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678366305,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":281000,"timestamp":18429638778,"id":430,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678366313,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":185,"timestamp":18429952095,"id":431,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678366314,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":110,"timestamp":18429952305,"id":432,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678366314,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":167,"timestamp":18429953008,"id":433,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678366314,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":126,"timestamp":18429953194,"id":434,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678366315,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":117542,"timestamp":18429958207,"id":436,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678366320,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":99649,"timestamp":18430081276,"id":437,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678366443,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":790937,"timestamp":18429953753,"id":435,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678366315,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":18430744747,"id":438,"parentId":435,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"943702016","memory.heapUsed":"405650016","memory.heapTotal":"472358912"},"startTime":1768678367106,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4869,"timestamp":18431853969,"id":439,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678368215,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":295000,"timestamp":18542459426,"id":440,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678479150,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3011,"timestamp":18548680849,"id":441,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678485042,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":641,"timestamp":18548684827,"id":442,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678485046,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":753,"timestamp":18548685515,"id":443,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678485047,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":224,"timestamp":18548687258,"id":444,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678485048,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":148,"timestamp":18548687508,"id":445,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678485049,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":294000,"timestamp":18548366577,"id":448,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678485057,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":115637,"timestamp":18548693491,"id":447,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678485055,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":130571,"timestamp":18548814965,"id":449,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678485176,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":415726,"timestamp":18548691140,"id":446,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678485052,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":18549106910,"id":450,"parentId":446,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"918740992","memory.heapUsed":"372824576","memory.heapTotal":"381542400"},"startTime":1768678485468,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3885,"timestamp":18549156478,"id":451,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678485518,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2713,"timestamp":18550104607,"id":452,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678486466,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":285000,"timestamp":18599346461,"id":453,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678536054,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":280000,"timestamp":18617399323,"id":454,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678554097,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":300000,"timestamp":18620171169,"id":455,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678556887,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":377000,"timestamp":18623791109,"id":456,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678560592,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":298000,"timestamp":18624977232,"id":457,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678561691,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":294000,"timestamp":18647282407,"id":458,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678584011,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2758,"timestamp":18651320946,"id":459,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678587683,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":200,"timestamp":18651324482,"id":460,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678587687,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":208,"timestamp":18651324711,"id":461,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678587687,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":146,"timestamp":18651325347,"id":462,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678587688,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":102,"timestamp":18651325508,"id":463,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678587688,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":314000,"timestamp":18650986538,"id":466,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678587717,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":136165,"timestamp":18651330709,"id":465,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678587693,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":118165,"timestamp":18651473030,"id":467,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678587835,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":1232463,"timestamp":18651327936,"id":464,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678587690,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":4,"timestamp":18652560441,"id":468,"parentId":464,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1010253824","memory.heapUsed":"429283624","memory.heapTotal":"494977024"},"startTime":1768678588923,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3042,"timestamp":18652579455,"id":469,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678588942,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":3055,"timestamp":18653600633,"id":470,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678589963,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":289000,"timestamp":18668478372,"id":472,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678605153,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2845,"timestamp":18668788897,"id":471,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678605151,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":712,"timestamp":18668797291,"id":473,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678605159,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":251,"timestamp":18668798077,"id":474,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678605160,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":168,"timestamp":18668799056,"id":475,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678605161,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":84,"timestamp":18668799241,"id":476,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678605161,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":115331,"timestamp":18668802307,"id":478,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678605165,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":106244,"timestamp":18668924466,"id":479,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678605287,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":800099,"timestamp":18668799786,"id":477,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678605162,"traceId":"66d1e786753f3916"},{"name":"memory-usage","duration":5,"timestamp":18669599941,"id":480,"parentId":477,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1047085056","memory.heapUsed":"453754000","memory.heapTotal":"562888704"},"startTime":1768678605962,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":4429,"timestamp":18670578746,"id":481,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678606941,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":2910,"timestamp":18672278754,"id":482,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678608641,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":283,"timestamp":18672282386,"id":483,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678608645,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":181,"timestamp":18672282713,"id":484,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678608645,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":738,"timestamp":18672283423,"id":485,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678608646,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":142,"timestamp":18672284189,"id":486,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678608646,"traceId":"66d1e786753f3916"},{"name":"client-hmr-latency","duration":332000,"timestamp":18671936574,"id":489,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678608694,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":125439,"timestamp":18672288082,"id":488,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678608650,"traceId":"66d1e786753f3916"},{"name":"ensure-page","duration":101950,"timestamp":18672419740,"id":490,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678608782,"traceId":"66d1e786753f3916"},{"name":"handle-request","duration":874118,"timestamp":18672284895,"id":487,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678608647,"traceId":"66d1e786753f3916"}] -[{"name":"hot-reloader","duration":68,"timestamp":18738688335,"id":3,"tags":{"version":"15.5.7"},"startTime":1768678675050,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":173131,"timestamp":18738802239,"id":4,"tags":{"trigger":"middleware"},"startTime":1768678675164,"traceId":"a35f0062f9d7a452"}] -[{"name":"setup-dev-bundler","duration":778439,"timestamp":18738686194,"id":2,"parentId":1,"tags":{},"startTime":1768678675048,"traceId":"a35f0062f9d7a452"},{"name":"start-dev-server","duration":2324103,"timestamp":18737448673,"id":1,"tags":{"cpus":"20","platform":"win32","memory.freeMem":"7190519808","memory.totalMem":"34212728832","memory.heapSizeLimit":"17306746880","memory.rss":"309157888","memory.heapTotal":"130891776","memory.heapUsed":"72676296"},"startTime":1768678673811,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":98564,"timestamp":18776074280,"id":5,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678712436,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":1103,"timestamp":18776175779,"id":6,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678712537,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":211,"timestamp":18776176936,"id":7,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678712539,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":291,"timestamp":18776178074,"id":8,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678712540,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":214,"timestamp":18776178426,"id":9,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678712540,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":11524378,"timestamp":18776185325,"id":12,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768678712547,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":160332,"timestamp":18787720342,"id":13,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768678724082,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":13192461,"timestamp":18776180911,"id":10,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768678712543,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":7,"timestamp":18789373476,"id":14,"parentId":10,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1375965184","memory.heapUsed":"176048576","memory.heapTotal":"228380672"},"startTime":1768678725735,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":31584,"timestamp":18790062910,"id":15,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768678726425,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":939000,"timestamp":18816838286,"id":16,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678754169,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":621000,"timestamp":18821159212,"id":17,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-toolbar.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768678758171,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":348000,"timestamp":20178680555,"id":18,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-timeline-zoom.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768680115644,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":328000,"timestamp":20187871208,"id":19,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768680124665,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":264000,"timestamp":21146571305,"id":20,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768681083269,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":172000,"timestamp":21148364500,"id":21,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/use-timeline-zoom.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768681084960,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":153000,"timestamp":21238958265,"id":22,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/update-element-trim.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768681175495,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":200000,"timestamp":21240198494,"id":23,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/update-element-trim.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768681176977,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":154000,"timestamp":21241313550,"id":24,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/update-element-trim.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768681177843,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":147000,"timestamp":21244479038,"id":25,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/update-element-trim.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768681181206,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":155000,"timestamp":22115454066,"id":26,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/update-element-trim.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682052003,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":170000,"timestamp":22167321551,"id":27,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/update-element-trim.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682103869,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":142000,"timestamp":22238214929,"id":28,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682174904,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":131000,"timestamp":22243389900,"id":29,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-resize.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682179907,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":154000,"timestamp":22359272833,"id":30,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682295821,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":170000,"timestamp":22360655198,"id":31,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682297202,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":138000,"timestamp":22364716200,"id":32,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682301418,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":155000,"timestamp":22369230812,"id":33,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682305778,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":156000,"timestamp":22372696519,"id":34,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682309229,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":154000,"timestamp":22380927518,"id":35,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682317459,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":4079,"timestamp":22384505215,"id":36,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768682320867,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":255,"timestamp":22384511444,"id":37,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682320873,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":177,"timestamp":22384511754,"id":38,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682320874,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":188,"timestamp":22384512550,"id":39,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682320875,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":138,"timestamp":22384512766,"id":40,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682320875,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":86810,"timestamp":22384517567,"id":43,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768682320880,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":67110,"timestamp":22384609983,"id":44,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768682320972,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":155000,"timestamp":22384355632,"id":45,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682321629,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":758295,"timestamp":22384513880,"id":41,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768682320876,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":22385272242,"id":46,"parentId":41,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"552779776","memory.heapUsed":"171484776","memory.heapTotal":"182460416"},"startTime":1768682321634,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2377,"timestamp":22385456540,"id":47,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768682321819,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":156000,"timestamp":22425083804,"id":48,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-resize.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682361631,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2323,"timestamp":22466827419,"id":49,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768682403188,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":197,"timestamp":22466830290,"id":50,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682403191,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":127,"timestamp":22466830520,"id":51,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682403192,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":128,"timestamp":22466831023,"id":52,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682403192,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":143,"timestamp":22466831169,"id":53,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682403192,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":75975,"timestamp":22466833659,"id":56,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768682403195,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":62191,"timestamp":22466917765,"id":57,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768682403279,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":176000,"timestamp":22466648914,"id":58,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768682403954,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":765119,"timestamp":22466831838,"id":54,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768682403193,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":22467597003,"id":59,"parentId":54,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"584941568","memory.heapUsed":"170166400","memory.heapTotal":"212369408"},"startTime":1768682403958,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2943,"timestamp":22467729110,"id":60,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768682404090,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":377000,"timestamp":22668402548,"id":61,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682605163,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":306000,"timestamp":22688463318,"id":62,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682625156,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":199000,"timestamp":22792127151,"id":63,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/timeline-element.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682728720,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":142000,"timestamp":22808114635,"id":64,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682744664,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":171000,"timestamp":22812180197,"id":65,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682748753,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":130000,"timestamp":22826487449,"id":66,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682763038,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":156000,"timestamp":22831188108,"id":67,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682767754,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":140000,"timestamp":22832848696,"id":68,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682769401,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":141000,"timestamp":22835947002,"id":69,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682772501,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":143000,"timestamp":22843712746,"id":70,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768682780284,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":4696,"timestamp":22907163292,"id":71,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682843525,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":347,"timestamp":22907168777,"id":72,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682843531,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":352,"timestamp":22907169168,"id":73,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682843531,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":462,"timestamp":22907170623,"id":74,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682843533,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":215,"timestamp":22907171119,"id":75,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682843533,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":106220,"timestamp":22907175632,"id":77,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768682843538,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":102002,"timestamp":22907288909,"id":78,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768682843651,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":823764,"timestamp":22907172809,"id":76,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768682843535,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":6,"timestamp":22907996673,"id":79,"parentId":76,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"689328128","memory.heapUsed":"227631152","memory.heapTotal":"343015424"},"startTime":1768682844359,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":7090,"timestamp":22908802004,"id":80,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768682845164,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":652000,"timestamp":23089316334,"id":81,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-resize.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768683026412,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":96000,"timestamp":32701656498,"id":82,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/move-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638134,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":0,"timestamp":32701773030,"id":83,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638137,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":0,"timestamp":32701775063,"id":84,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638138,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":0,"timestamp":32701776513,"id":85,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/move-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638140,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":11000,"timestamp":32701779353,"id":86,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/move-element.ts","[project]/apps/web/src/core/managers/timeline-manager.ts","[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638153,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":1000,"timestamp":32701791565,"id":87,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/track-utils.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638156,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":0,"timestamp":32701795472,"id":88,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/track/add-track.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638158,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":0,"timestamp":32701797517,"id":89,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/commands/timeline/element/move-element.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638160,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":0,"timestamp":32701798965,"id":90,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638163,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":0,"timestamp":32701801288,"id":91,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/hooks/timeline/element/use-element-interaction.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692638164,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":155000,"timestamp":32728996720,"id":92,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/core/managers/timeline-manager.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692665542,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":280000,"timestamp":32785279100,"id":93,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/track-utils.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692721969,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":311000,"timestamp":32795166419,"id":94,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/lib/timeline/track-utils.ts"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692731883,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":203000,"timestamp":32905471484,"id":95,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692842076,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":205000,"timestamp":32913045760,"id":96,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692849653,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":208000,"timestamp":32918705253,"id":97,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692855317,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":200000,"timestamp":32922922615,"id":98,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692859525,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":8219,"timestamp":32939716547,"id":99,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692876077,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":413,"timestamp":32939726098,"id":100,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692876087,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":253,"timestamp":32939726561,"id":101,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692876087,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":287,"timestamp":32939727679,"id":102,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692876089,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":233,"timestamp":32939728000,"id":103,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692876089,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":123621,"timestamp":32939732145,"id":105,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768692876093,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":90207,"timestamp":32939864780,"id":106,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768692876226,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":925791,"timestamp":32939729067,"id":104,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692876090,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":32940654940,"id":107,"parentId":104,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"681635840","memory.heapUsed":"238018624","memory.heapTotal":"339537920"},"startTime":1768692877016,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":11262,"timestamp":32941415178,"id":108,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768692877776,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2765,"timestamp":32958405578,"id":109,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768692894766,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":172,"timestamp":32958408893,"id":110,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692894770,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":103,"timestamp":32958409088,"id":111,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692894770,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":165,"timestamp":32958409654,"id":112,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692894771,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":89,"timestamp":32958409846,"id":113,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692894771,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":70686,"timestamp":32958413002,"id":116,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768692894774,"traceId":"a35f0062f9d7a452"}] -[{"name":"client-hmr-latency","duration":228000,"timestamp":32958185025,"id":118,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692894885,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":80080,"timestamp":32958491758,"id":117,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768692894853,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":702099,"timestamp":32958411051,"id":114,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768692894772,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":32959113195,"id":119,"parentId":114,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"780779520","memory.heapUsed":"242638000","memory.heapTotal":"274198528"},"startTime":1768692895474,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2493,"timestamp":32961954180,"id":120,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692898315,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":205,"timestamp":32961957355,"id":121,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692898318,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":140,"timestamp":32961957587,"id":122,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692898318,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":139,"timestamp":32961958083,"id":123,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692898319,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":91,"timestamp":32961958244,"id":124,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692898319,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":87243,"timestamp":32961960017,"id":126,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768692898321,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":66591,"timestamp":32962052677,"id":127,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768692898414,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":218000,"timestamp":32961727116,"id":128,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692898839,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":535636,"timestamp":32961958746,"id":125,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768692898320,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":32962494435,"id":129,"parentId":125,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"783036416","memory.heapUsed":"294871688","memory.heapTotal":"338939904"},"startTime":1768692898855,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":3008,"timestamp":32962520343,"id":130,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768692898881,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2231,"timestamp":32963343856,"id":131,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768692899705,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":218000,"timestamp":32978628203,"id":132,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692915231,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":187000,"timestamp":32991908933,"id":133,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692928508,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":199000,"timestamp":32998526379,"id":134,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692935140,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":219000,"timestamp":33003837330,"id":135,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692940469,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":207000,"timestamp":33006068695,"id":136,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768692942685,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":179000,"timestamp":33031324983,"id":137,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768692967932,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":345000,"timestamp":33032980249,"id":138,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768692969760,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":223000,"timestamp":33049561354,"id":139,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768692986199,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":174000,"timestamp":33054409361,"id":140,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768692990994,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":185000,"timestamp":33069352607,"id":141,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693005932,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2555,"timestamp":33073053942,"id":142,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693009415,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":161,"timestamp":33073057581,"id":143,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693009419,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":88,"timestamp":33073057765,"id":144,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693009419,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":134,"timestamp":33073058328,"id":145,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693009419,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":80,"timestamp":33073058479,"id":146,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693009420,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":212000,"timestamp":33072847539,"id":150,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693009466,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":75240,"timestamp":33073060596,"id":149,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693009422,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":58205,"timestamp":33073140236,"id":151,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693009501,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":224252,"timestamp":33073058890,"id":147,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693009420,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33073283220,"id":152,"parentId":147,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"746602496","memory.heapUsed":"253434744","memory.heapTotal":"286617600"},"startTime":1768693009644,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2193,"timestamp":33073488852,"id":153,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693009850,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":203000,"timestamp":33077337905,"id":154,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693013943,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":202000,"timestamp":33080311316,"id":155,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693016911,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":204000,"timestamp":33082141777,"id":156,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693018748,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1789,"timestamp":33087013398,"id":157,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693023374,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":147,"timestamp":33087015565,"id":158,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693023377,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":93,"timestamp":33087015734,"id":159,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693023377,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":108,"timestamp":33087016105,"id":160,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693023377,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":153,"timestamp":33087016228,"id":161,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693023377,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":195000,"timestamp":33086822367,"id":165,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693023417,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":62494,"timestamp":33087018464,"id":164,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693023380,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":66815,"timestamp":33087087120,"id":166,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693023448,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":212009,"timestamp":33087016839,"id":162,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693023378,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33087228889,"id":167,"parentId":162,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"762589184","memory.heapUsed":"249751856","memory.heapTotal":"276545536"},"startTime":1768693023590,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1640,"timestamp":33087411912,"id":168,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693023773,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2125,"timestamp":33097755670,"id":169,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693034117,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":135,"timestamp":33097758163,"id":170,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693034119,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":75,"timestamp":33097758317,"id":171,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693034119,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":128,"timestamp":33097758624,"id":172,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693034120,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":74,"timestamp":33097758768,"id":173,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693034120,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":62112,"timestamp":33097760751,"id":176,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693034122,"traceId":"a35f0062f9d7a452"}] -[{"name":"client-hmr-latency","duration":179000,"timestamp":33097582205,"id":178,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693034237,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":53417,"timestamp":33097826795,"id":177,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693034188,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":189703,"timestamp":33097759203,"id":174,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693034120,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33097948969,"id":179,"parentId":174,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"784986112","memory.heapUsed":"278451272","memory.heapTotal":"326283264"},"startTime":1768693034310,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1866,"timestamp":33098143686,"id":180,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693034505,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":206000,"timestamp":33103812730,"id":181,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693040417,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1544,"timestamp":33115241977,"id":182,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693051603,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":131,"timestamp":33115243833,"id":183,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693051605,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":98,"timestamp":33115244027,"id":184,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693051605,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":104,"timestamp":33115244411,"id":185,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693051606,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":72,"timestamp":33115244532,"id":186,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693051606,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":223000,"timestamp":33115025284,"id":190,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693051654,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":66914,"timestamp":33115246026,"id":189,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693051607,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":77152,"timestamp":33115320263,"id":191,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693051681,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":247856,"timestamp":33115244860,"id":187,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693051606,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33115492764,"id":192,"parentId":187,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"818044928","memory.heapUsed":"273116480","memory.heapTotal":"334565376"},"startTime":1768693051854,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2449,"timestamp":33115688635,"id":193,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693052050,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":250000,"timestamp":33117353855,"id":194,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693054005,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2006,"timestamp":33120431124,"id":195,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693056792,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":150,"timestamp":33120433517,"id":196,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693056795,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":75,"timestamp":33120433684,"id":197,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693056795,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":95,"timestamp":33120433994,"id":198,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693056795,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":436,"timestamp":33120434100,"id":199,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693056795,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":209000,"timestamp":33120225688,"id":203,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693056844,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":90636,"timestamp":33120436043,"id":202,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693056797,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":68221,"timestamp":33120530693,"id":204,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693056892,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":232408,"timestamp":33120434823,"id":200,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693056796,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33120667283,"id":205,"parentId":200,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"830390272","memory.heapUsed":"308916616","memory.heapTotal":"352546816"},"startTime":1768693057028,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1495,"timestamp":33120869847,"id":206,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693057231,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":264000,"timestamp":33125092519,"id":207,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693061762,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2281,"timestamp":33140634903,"id":208,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693076997,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":142,"timestamp":33140638152,"id":209,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693077000,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":81,"timestamp":33140638311,"id":210,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693077000,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":120,"timestamp":33140638810,"id":211,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693077001,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":95,"timestamp":33140638944,"id":212,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693077001,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":180000,"timestamp":33140460700,"id":216,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693077047,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":60298,"timestamp":33140640817,"id":215,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693077003,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":52967,"timestamp":33140711204,"id":217,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693077073,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":203751,"timestamp":33140639286,"id":213,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693077001,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33140843085,"id":218,"parentId":213,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"803680256","memory.heapUsed":"296119192","memory.heapTotal":"329551872"},"startTime":1768693077205,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2267,"timestamp":33141042408,"id":219,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693077404,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":172000,"timestamp":33145103511,"id":220,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693081667,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":170000,"timestamp":33146415304,"id":221,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693082987,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":173000,"timestamp":33149827101,"id":222,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693086404,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1920,"timestamp":33161713419,"id":223,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693098075,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":131,"timestamp":33161715769,"id":224,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693098078,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":88,"timestamp":33161715917,"id":225,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693098078,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":102,"timestamp":33161716248,"id":226,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693098078,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":72,"timestamp":33161716361,"id":227,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693098078,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":52379,"timestamp":33161717914,"id":230,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693098080,"traceId":"a35f0062f9d7a452"}] -[{"name":"client-hmr-latency","duration":214000,"timestamp":33161506942,"id":232,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693098181,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":52993,"timestamp":33161775077,"id":231,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693098137,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":144626,"timestamp":33161716672,"id":228,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693098078,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":2,"timestamp":33161861325,"id":233,"parentId":228,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"812421120","memory.heapUsed":"296716744","memory.heapTotal":"337154048"},"startTime":1768693098223,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1615,"timestamp":33162052912,"id":234,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693098415,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":204000,"timestamp":33164891163,"id":235,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693101499,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":176000,"timestamp":33168544780,"id":236,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693105123,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1776,"timestamp":33189195061,"id":237,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693125557,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":153,"timestamp":33189197202,"id":238,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693125559,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":83,"timestamp":33189197374,"id":239,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693125559,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":116,"timestamp":33189197756,"id":240,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693125560,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":100,"timestamp":33189197887,"id":241,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693125560,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":210000,"timestamp":33188992859,"id":245,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693125605,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":61226,"timestamp":33189199658,"id":244,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693125561,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":56252,"timestamp":33189268366,"id":246,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693125630,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":197323,"timestamp":33189198239,"id":242,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693125560,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33189395604,"id":247,"parentId":242,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"850206720","memory.heapUsed":"336106040","memory.heapTotal":"366346240"},"startTime":1768693125757,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2029,"timestamp":33189650969,"id":248,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693126013,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1980,"timestamp":33200224393,"id":249,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693136586,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":136,"timestamp":33200226897,"id":250,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693136589,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":79,"timestamp":33200227048,"id":251,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693136589,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":131,"timestamp":33200227526,"id":252,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693136589,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":81,"timestamp":33200227671,"id":253,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693136589,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":271000,"timestamp":33199957768,"id":257,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693136633,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":168207,"timestamp":33200230604,"id":256,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693136592,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":55730,"timestamp":33200404152,"id":258,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693136766,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":316107,"timestamp":33200228080,"id":254,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693136590,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":4,"timestamp":33200544236,"id":259,"parentId":254,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"838643712","memory.heapUsed":"322833824","memory.heapTotal":"355905536"},"startTime":1768693136906,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2519,"timestamp":33200782451,"id":260,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693137144,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":203000,"timestamp":33305116767,"id":261,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693241725,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":191000,"timestamp":33310718163,"id":262,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693247313,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":203000,"timestamp":33319849698,"id":263,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693256446,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1868,"timestamp":33330313581,"id":264,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693266676,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":156,"timestamp":33330315838,"id":265,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693266678,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":103,"timestamp":33330316015,"id":266,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693266678,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":124,"timestamp":33330317745,"id":267,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693266680,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":75,"timestamp":33330317883,"id":268,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693266680,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":239000,"timestamp":33330079537,"id":272,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx","[project]/node_modules/.bun/lucide-react@0.468.0+f4eacebf2041cd4f/node_modules/lucide-react/dist/esm/icons/eye.js"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693266728,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":72044,"timestamp":33330319556,"id":271,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768693266682,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":55300,"timestamp":33330396396,"id":273,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693266758,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":236403,"timestamp":33330318250,"id":269,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768693266680,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":3,"timestamp":33330554690,"id":274,"parentId":269,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"911351808","memory.heapUsed":"354763568","memory.heapTotal":"381489152"},"startTime":1768693266917,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":7122,"timestamp":33330787722,"id":275,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693267150,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":218000,"timestamp":33339661688,"id":276,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693276273,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":563000,"timestamp":33342637874,"id":277,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693279597,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":203000,"timestamp":33347077604,"id":278,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693283678,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":183000,"timestamp":33371089608,"id":279,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693307667,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":175000,"timestamp":33374783393,"id":280,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693311370,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":202000,"timestamp":33376902241,"id":281,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693313509,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":201000,"timestamp":33378262101,"id":282,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693314872,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":178000,"timestamp":33380615669,"id":283,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693317186,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":222000,"timestamp":33382002102,"id":284,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx","[project]/node_modules/.bun/lucide-react@0.468.0+f4eacebf2041cd4f/node_modules/lucide-react/dist/esm/icons/volume.js"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693318612,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2005,"timestamp":33382352945,"id":285,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693318714,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":189,"timestamp":33382355439,"id":286,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693318717,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":99,"timestamp":33382355653,"id":287,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693318717,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":150,"timestamp":33382356185,"id":288,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693318718,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":79,"timestamp":33382356351,"id":289,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693318718,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":105528,"timestamp":33382358111,"id":291,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693318719,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":59177,"timestamp":33382468363,"id":292,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693318830,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":3825,"timestamp":33383524385,"id":293,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693319886,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":1176834,"timestamp":33382356733,"id":290,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693318718,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":3,"timestamp":33383533613,"id":294,"parentId":290,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"990883840","memory.heapUsed":"408976408","memory.heapTotal":"480952320"},"startTime":1768693319895,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":3212,"timestamp":33384379605,"id":295,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693320741,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":215000,"timestamp":33391631535,"id":296,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693328234,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2184,"timestamp":33394004546,"id":297,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693330366,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":168,"timestamp":33394007290,"id":298,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693330369,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":93,"timestamp":33394007476,"id":299,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693330369,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":125,"timestamp":33394007964,"id":300,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693330369,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":85,"timestamp":33394008102,"id":301,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693330369,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":86754,"timestamp":33394010079,"id":303,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693330371,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":59239,"timestamp":33394101418,"id":304,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693330463,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":203000,"timestamp":33393793290,"id":305,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693330871,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":510337,"timestamp":33394008636,"id":302,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693330370,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":3,"timestamp":33394519006,"id":306,"parentId":302,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"976130048","memory.heapUsed":"392526880","memory.heapTotal":"500109312"},"startTime":1768693330880,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":2443,"timestamp":33394542284,"id":307,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693330904,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":3040,"timestamp":33395162930,"id":308,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693331524,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":207000,"timestamp":33405322023,"id":309,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693341915,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":174000,"timestamp":33409370205,"id":310,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693345952,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":204000,"timestamp":33414673905,"id":311,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693351286,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":192000,"timestamp":33418955226,"id":312,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693355559,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":192000,"timestamp":33429800057,"id":313,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693366383,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":5149,"timestamp":33431813536,"id":314,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693368175,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":434,"timestamp":33431820959,"id":315,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693368182,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":241,"timestamp":33431821442,"id":316,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693368183,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":426,"timestamp":33431822864,"id":317,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693368184,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":332,"timestamp":33431823332,"id":318,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693368185,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":197000,"timestamp":33431610643,"id":321,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693368320,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":6742,"timestamp":33431972792,"id":322,"tags":{"url":"/icons/favicon-32x32.png"},"startTime":1768693368334,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":151730,"timestamp":33431830445,"id":320,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693368192,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":92471,"timestamp":33431987920,"id":323,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768693368349,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":875370,"timestamp":33431825958,"id":319,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768693368187,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":5,"timestamp":33432701385,"id":324,"parentId":319,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","memory.rss":"1021566976","memory.heapUsed":"432336128","memory.heapTotal":"523452416"},"startTime":1768693369063,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":188000,"timestamp":33445784057,"id":325,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693382386,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":338000,"timestamp":33449510028,"id":326,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693386238,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":188000,"timestamp":33453667329,"id":327,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693390253,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":185000,"timestamp":33479060656,"id":328,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693415654,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":173000,"timestamp":33481631358,"id":329,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693418210,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":334000,"timestamp":33483382635,"id":330,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693420112,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":202000,"timestamp":33536202984,"id":331,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/timeline/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":false},"startTime":1768693472800,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":179000,"timestamp":33931309468,"id":332,"parentId":3,"tags":{"updatedModules":["[project]/apps/web/src/components/editor/properties-panel/index.tsx"],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768693867917,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":2152,"timestamp":34064856488,"id":333,"tags":{"trigger":"middleware"},"startTime":1768694001219,"traceId":"a35f0062f9d7a452"}] -[{"name":"handle-request","duration":6922,"timestamp":34065286366,"id":334,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768694001648,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":212,"timestamp":34065293990,"id":335,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768694001656,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":115,"timestamp":34065294230,"id":336,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768694001656,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":140,"timestamp":34065294780,"id":337,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768694001657,"traceId":"a35f0062f9d7a452"},{"name":"ensure-page","duration":100,"timestamp":34065294934,"id":338,"parentId":3,"tags":{"inputPage":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f"},"startTime":1768694001657,"traceId":"a35f0062f9d7a452"},{"name":"client-hmr-latency","duration":233000,"timestamp":34065049459,"id":342,"parentId":3,"tags":{"updatedModules":[],"page":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f","isPageHidden":true},"startTime":1768694001674,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":276275,"timestamp":34065297550,"id":341,"tags":{"trigger":"/editor/[project_id]"},"startTime":1768694001660,"traceId":"a35f0062f9d7a452"}] -[{"name":"ensure-page","duration":63047,"timestamp":34065578856,"id":343,"parentId":3,"tags":{"inputPage":"/editor/[project_id]/page"},"startTime":1768694001941,"traceId":"a35f0062f9d7a452"},{"name":"handle-request","duration":424027,"timestamp":34065295455,"id":339,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a"},"startTime":1768694001657,"traceId":"a35f0062f9d7a452"},{"name":"memory-usage","duration":3,"timestamp":34065719529,"id":344,"parentId":339,"tags":{"url":"/editor/48bf32ba-b5b7-4a7e-b5fb-91845b0df54f?_rsc=yc11a","memory.rss":"1380925440","memory.heapUsed":"430568848","memory.heapTotal":"464351232"},"startTime":1768694002082,"traceId":"a35f0062f9d7a452"},{"name":"compile-path","duration":1273,"timestamp":34066529107,"id":345,"tags":{"trigger":"middleware"},"startTime":1768694002891,"traceId":"a35f0062f9d7a452"}] diff --git a/apps/web/.next/types/routes.d.ts b/apps/web/.next/types/routes.d.ts deleted file mode 100644 index 8cdffa90..00000000 --- a/apps/web/.next/types/routes.d.ts +++ /dev/null @@ -1,90 +0,0 @@ -// This file is generated automatically by Next.js -// Do not edit this file manually - -type AppRoutes = "/" | "/blog" | "/blog/[slug]" | "/contributors" | "/editor/[project_id]" | "/privacy" | "/projects" | "/roadmap" | "/sponsors" | "/terms" -type AppRouteHandlerRoutes = "/api/auth/[...all]" | "/api/get-upload-url" | "/api/health" | "/api/sounds/search" | "/api/transcribe" | "/rss.xml" -type PageRoutes = never -type LayoutRoutes = "/" | "/editor/[project_id]" -type RedirectRoutes = never -type RewriteRoutes = "/149e9513-01fa-4fb0-aad4-566afd725d1b/2d206a39-8ed7-437e-a3be-862e0f06eea3/[[...path]]" | "/149e9513-01fa-4fb0-aad4-566afd725d1b/2d206a39-8ed7-437e-a3be-862e0f06eea3/a-4-a/c.js" -type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes | AppRouteHandlerRoutes - - -interface ParamMap { - "/": {} - "/149e9513-01fa-4fb0-aad4-566afd725d1b/2d206a39-8ed7-437e-a3be-862e0f06eea3/[[...path]]": { "path"?: string[]; } - "/149e9513-01fa-4fb0-aad4-566afd725d1b/2d206a39-8ed7-437e-a3be-862e0f06eea3/a-4-a/c.js": {} - "/api/auth/[...all]": { "all": string[]; } - "/api/get-upload-url": {} - "/api/health": {} - "/api/sounds/search": {} - "/api/transcribe": {} - "/blog": {} - "/blog/[slug]": { "slug": string; } - "/contributors": {} - "/editor/[project_id]": { "project_id": string; } - "/privacy": {} - "/projects": {} - "/roadmap": {} - "/rss.xml": {} - "/sponsors": {} - "/terms": {} -} - - -export type ParamsOf = ParamMap[Route] - -interface LayoutSlotMap { - "/": never - "/editor/[project_id]": never -} - - -export type { AppRoutes, PageRoutes, LayoutRoutes, RedirectRoutes, RewriteRoutes, ParamMap, AppRouteHandlerRoutes } - -declare global { - /** - * Props for Next.js App Router page components - * @example - * ```tsx - * export default function Page(props: PageProps<'/blog/[slug]'>) { - * const { slug } = await props.params - * return
Blog post: {slug}
- * } - * ``` - */ - interface PageProps { - params: Promise - searchParams: Promise> - } - - /** - * Props for Next.js App Router layout components - * @example - * ```tsx - * export default function Layout(props: LayoutProps<'/dashboard'>) { - * return
{props.children}
- * } - * ``` - */ - type LayoutProps = { - params: Promise - children: React.ReactNode - } & { - [K in LayoutSlotMap[LayoutRoute]]: React.ReactNode - } - - /** - * Context for Next.js App Router route handlers - * @example - * ```tsx - * export async function GET(request: NextRequest, context: RouteContext<'/api/users/[id]'>) { - * const { id } = await context.params - * return Response.json({ id }) - * } - * ``` - */ - interface RouteContext { - params: Promise - } -} diff --git a/apps/web/package.json b/apps/web/package.json index 4cef6ecd..3ee6c30e 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -42,7 +42,7 @@ "feed": "^5.1.0", "input-otp": "^1.4.1", "lucide-react": "^0.468.0", - "mediabunny": "^1.9.3", + "mediabunny": "^1.29.1", "motion": "^12.18.1", "nanoid": "^5.1.5", "next": "16.1.3", diff --git a/apps/web/src/app/projects/page.tsx b/apps/web/src/app/projects/page.tsx index 2c62b554..be683a1a 100644 --- a/apps/web/src/app/projects/page.tsx +++ b/apps/web/src/app/projects/page.tsx @@ -16,7 +16,7 @@ import Link from "next/link"; import { useRouter } from "next/navigation"; import type { KeyboardEvent, MouseEvent } from "react"; import { useState, useEffect } from "react"; -import { DeleteProjectDialog } from "@/components/delete-project-dialog"; +import { DeleteProjectDialog } from "@/components/editor/delete-project-dialog"; import { RenameProjectDialog } from "@/components/rename-project-dialog"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; @@ -419,14 +419,12 @@ function ProjectCard({ const cardContent = (
{isSelectionMode && (
@@ -477,11 +475,10 @@ function ProjectCard({ aria-label="project options" variant="text" size="sm" - className={`ml-2 size-6 shrink-0 p-0 transition-all ${ - isDropdownOpen + className={`ml-2 size-6 shrink-0 p-0 transition-all ${isDropdownOpen ? "opacity-100" : "opacity-0 group-hover:opacity-100" - }`} + }`} onClick={(event) => event.preventDefault()} >