diff --git a/application.tsx b/application.tsx index d45a93b..2ac3fc4 100644 --- a/application.tsx +++ b/application.tsx @@ -13,6 +13,7 @@ import {Flamechart} from './flamechart' import {FlamechartView} from './flamechart-view' import {FontFamily, FontSize, Colors} from './style' import {getHashParams, HashParams} from './hash-params' +import {importFromFirefox} from './import/firefox' declare function require(x: string): any const exampleProfileURL = require('./sample/perf-vertx-stacks-01-collapsed-all.txt') @@ -57,7 +58,10 @@ function importProfile(contents: string, fileName: string): Profile | null { // Second pass: Try to guess what file format it is based on structure try { const parsed = JSON.parse(contents) - if (Array.isArray(parsed) && parsed[parsed.length - 1].name === 'CpuProfile') { + if (parsed['systemHost'] && parsed['systemHost']['name'] == 'Firefox') { + console.log('Importing as Firefox profile') + return importFromFirefox(parsed) + } else if (Array.isArray(parsed) && parsed[parsed.length - 1].name === 'CpuProfile') { console.log('Importing as Chrome CPU Profile') return importFromChromeTimeline(parsed) } else if ('nodes' in parsed && 'samples' in parsed && 'timeDeltas' in parsed) { diff --git a/import/firefox.ts b/import/firefox.ts new file mode 100644 index 0000000..c1630ba --- /dev/null +++ b/import/firefox.ts @@ -0,0 +1,233 @@ +import {Profile, FrameInfo, TimeFormatter} from '../profile' +import {getOrInsert, lastOf} from '../utils' + +interface Allocations { + frames: any[] + sites: any[] + sizes: any[] + timestamps: any[] +} + +interface Configuration { + allocationsMaxLogLength: number + allocationsSampleProbability: number + bufferSize: number + sampleFrequency: number + withAllocations: boolean + withMarkers: boolean + withMemory: boolean + withTicks: boolean +} + +interface Lib { + arch: string + breakpadId: string + debugName: string + debugPath: string + end: any + name: string + offset: number + path: string + start: any +} + +interface Meta { + abi: string + asyncstack: number + debug: number + gcpoison: number + interval: number + misc: string + oscpu: string + platform: string + processType: number + product: string + shutdownTime?: any + stackwalk: number + startTime: number + toolkit: string + version: number +} + +interface PausedRange { + endTime: number + reason: string + startTime: number +} + +type Frame = [number] | [number, number | null, number | null, number, number] + +interface FrameTable { + data: Frame[] + /* + schema: { + location: 0 + implementation: 1 + optimizations: 2 + line: 3 + category: 4 + } + */ +} + +interface MarkerMeta { + category: string + interval: string + type: string +} +type Marker = [number, number] | [number, number, MarkerMeta] + +interface Markers { + data: Marker[] + /* + schema: { + name: 0 + time: 1 + data: 2 + } + */ +} + +type Sample = [number, number, number] | [number, number, number, number, number] + +interface Samples { + data: Sample[] + /* + schema: { + stack: 0 + time: 1 + responsiveness: 2 + rss: 3 + uss: 4 + } + */ +} + +export interface StackTable { + data: [number | null, number][] + /* + schema: { + prefix: 0 + frame: 1 + } + */ +} + +export interface Thread { + frameTable: FrameTable + markers: Markers + name: string + pid: number + processType: string + registerTime: number + samples: Samples + stackTable: StackTable + stringTable: string[] + tid: number + unregisterTime?: any +} + +export interface FirefoxCPUProfile { + libs: Lib[] + meta: Meta + pausedRanges: PausedRange[] + processes: any[] + threads: Thread[] +} + +export interface FirefoxProfile { + allocations: Allocations + configuration: Configuration + duration: number + fileType: string + frames: any[] + label: string + markers: any[] + memory: any[] + profile: FirefoxCPUProfile + ticks: any[] + version: number +} + +export function importFromFirefox(firefoxProfile: FirefoxProfile): Profile { + const cpuProfile = firefoxProfile.profile + + const thread = + cpuProfile.threads.length === 1 + ? cpuProfile.threads[0] + : cpuProfile.threads.filter(t => t.name === 'GeckoMain')[0] + + const frameIdToFrameInfo = new Map() + + function extractStack(sample: Sample): FrameInfo[] { + let stackFrameId: number | null = sample[0] + const ret: number[] = [] + + while (stackFrameId != null) { + const nextStackFrame: [number | null, number] = thread.stackTable.data[stackFrameId] + const [nextStackId, frameId] = nextStackFrame + ret.push(frameId) + stackFrameId = nextStackId + } + ret.reverse() + return ret + .map(f => { + const frameData = thread.frameTable.data[f] + const location = thread.stringTable[frameData[0]] + + const match = /(.*)\s+\((.*?):?(\d+)?\)$/.exec(location) + + if (!match) return null + + if (match[2].startsWith('resource:') || match[2] === 'self-hosted') { + // Ignore Firefox-internals stuff + return null + } + + return getOrInsert(frameIdToFrameInfo, f, () => ({ + key: location, + name: match[1]!, + file: match[2]!, + line: match[3] ? parseInt(match[3]) : undefined, + })) + }) + .filter(f => f != null) as FrameInfo[] + } + + const profile = new Profile(firefoxProfile.duration) + + let prevStack: FrameInfo[] = [] + for (let sample of thread.samples.data) { + const stack = extractStack(sample) + const value = sample[1] + + // Find lowest common ancestor of the current stack and the previous one + let lca: FrameInfo | null = null + + // This is O(n^2), but n should be relatively small here (stack height), + // so hopefully this isn't much of a problem + for (let i = stack.length - 1; i >= 0 && prevStack.indexOf(stack[i]) === -1; i--) {} + + // Close frames that are no longer open + while (prevStack.length > 0 && lastOf(prevStack) != lca) { + const closingFrame = prevStack.pop()! + profile.leaveFrame(closingFrame, value) + } + + // Open frames that are now becoming open + const toOpen: FrameInfo[] = [] + for (let i = stack.length - 1; i >= 0 && stack[i] != lca; i--) { + toOpen.push(stack[i]) + } + toOpen.reverse() + + for (let frame of toOpen) { + profile.enterFrame(frame, value) + } + + prevStack = stack + } + + profile.setValueFormatter(new TimeFormatter('milliseconds')) + return profile +} diff --git a/sample/firefox.json b/sample/firefox.json new file mode 100644 index 0000000..47a2c22 --- /dev/null +++ b/sample/firefox.json @@ -0,0 +1 @@ +{"label":"","duration":10279.215527000837,"markers":[{"end":306.75325400102884,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":306.73373200092465,"index":0},{"end":306.75853600073606,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":306.7547770002857,"index":1},{"end":306.76002900023013,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":null,"start":306.7596280006692,"index":2},{"end":327.9122379999608,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":327.9000890003517,"index":3},{"end":327.9182569999248,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":327.91501499991864,"index":4},{"end":327.91913400031626,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":null,"start":327.91850500088185,"index":5},{"end":340.1074380008504,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":340.09893800038844,"index":6},{"end":340.1109420005232,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":340.10861000046134,"index":7},{"end":340.11251200083643,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":null,"start":340.1122540012002,"index":8},{"end":439.37358400039375,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":439.35072900075465,"index":9},{"end":439.381908999756,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":439.3750590002164,"index":10},{"end":439.3837050003931,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":null,"start":439.38219500053674,"index":11},{"end":439.726858000271,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":439.69001500029117},{"end":456.0757969999686,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":455.9111180007458},{"name":"GarbageCollection","causeName":"CC_WAITING","nonincrementalReason":"None","cycle":9,"start":2323.814279999584,"end":2333.9885620009154,"index":14},{"causeName":"CC_WAITING","end":2324.204172000289,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":2323.828699001111,"index":15},{"name":"GarbageCollection","causeName":"CC_WAITING","nonincrementalReason":"None","cycle":9,"start":2356.764019000344,"end":2360.2935790000483,"index":16},{"causeName":"INTER_SLICE_GC","end":2356.796012001112,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":2356.792303000577,"index":17},{"name":"GarbageCollection","causeName":"CC_WAITING","nonincrementalReason":"None","cycle":9,"start":2377.8964540008456,"end":2389.5806929999962,"index":18},{"causeName":"INTER_SLICE_GC","end":2377.9289580006152,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":2377.925196999684,"index":19},{"name":"GarbageCollection","causeName":"CC_WAITING","nonincrementalReason":"None","cycle":9,"start":2492.44425699953,"end":2498.1954889995977,"index":20},{"causeName":"INTER_SLICE_GC","end":2492.5352710010484,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":2492.458090000786,"index":21},{"name":"GarbageCollection","causeName":"CC_WAITING","nonincrementalReason":"None","cycle":9,"start":2514.38405500073,"end":2514.4368799999356,"index":22},{"causeName":"INTER_SLICE_GC","end":2514.426659000106,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":2514.4214070001617,"index":23},{"name":"GarbageCollection","causeName":"CC_WAITING","nonincrementalReason":"None","cycle":9,"start":2531.1079360004514,"end":2531.2799939997494,"index":24},{"causeName":"INTER_SLICE_GC","end":2531.140951000154,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":2531.13628599979,"index":25},{"name":"GarbageCollection","causeName":"CC_WAITING","nonincrementalReason":"None","cycle":9,"start":2549.4855500003323,"end":2549.7420220011845,"index":26},{"causeName":"INTER_SLICE_GC","end":2549.5183910010383,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":2549.512206000276,"index":27},{"end":4969.151185999624,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":4968.892853000201,"type":"dragover","index":28,"submarkers":[{"causeName":"EventListener.handleEvent","end":4969.147509000264,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":1,"start":4969.106697999872,"index":29}]},{"causeName":"EventListener.handleEvent","end":4969.147509000264,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":1,"start":4969.106697999872,"index":29},{"end":4969.295249999501,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":4969.267180000432,"type":"dragover","index":30,"submarkers":[{"causeName":"EventListener.handleEvent","end":4969.292839000002,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":2,"start":4969.281055000611,"index":31}]},{"causeName":"EventListener.handleEvent","end":4969.292839000002,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":2,"start":4969.281055000611,"index":31},{"end":4982.600182000548,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":4982.559918000363,"type":"dragover","index":32,"submarkers":[{"causeName":"EventListener.handleEvent","end":4982.597854000516,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":3,"start":4982.577958000824,"index":33}]},{"causeName":"EventListener.handleEvent","end":4982.597854000516,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":3,"start":4982.577958000824,"index":33},{"end":4982.903026000597,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":4982.868278000504,"type":"dragover","index":34,"submarkers":[{"causeName":"EventListener.handleEvent","end":4982.901019000448,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":4,"start":4982.881385000423,"index":35}]},{"causeName":"EventListener.handleEvent","end":4982.901019000448,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":4,"start":4982.881385000423,"index":35},{"end":5001.290312999859,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5001.255219000392,"type":"dragover","index":36,"submarkers":[{"causeName":"EventListener.handleEvent","end":5001.288025000133,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":5,"start":5001.271709000692,"index":37}]},{"causeName":"EventListener.handleEvent","end":5001.288025000133,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":5,"start":5001.271709000692,"index":37},{"end":5001.560674000531,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5001.538266000338,"type":"dragover","index":38,"submarkers":[{"causeName":"EventListener.handleEvent","end":5001.558752000332,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":6,"start":5001.548617000692,"index":39}]},{"causeName":"EventListener.handleEvent","end":5001.558752000332,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":6,"start":5001.548617000692,"index":39},{"end":5018.440438999794,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5018.387030000798,"type":"dragover","index":40,"submarkers":[{"causeName":"EventListener.handleEvent","end":5018.438046000898,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":7,"start":5018.420729000121,"index":41}]},{"causeName":"EventListener.handleEvent","end":5018.438046000898,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":7,"start":5018.420729000121,"index":41},{"end":5018.6253130007535,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5018.574553000741,"type":"dragover","index":42,"submarkers":[{"causeName":"EventListener.handleEvent","end":5018.622512999922,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":8,"start":5018.586099000648,"index":43}]},{"causeName":"EventListener.handleEvent","end":5018.622512999922,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":8,"start":5018.586099000648,"index":43},{"end":5034.122859000228,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5034.085440000519,"type":"dragover","index":44,"submarkers":[{"causeName":"EventListener.handleEvent","end":5034.1204749997705,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":9,"start":5034.103644999675,"index":45}]},{"causeName":"EventListener.handleEvent","end":5034.1204749997705,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":9,"start":5034.103644999675,"index":45},{"end":5034.287736000493,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5034.26360499952,"type":"dragover","index":46,"submarkers":[{"causeName":"EventListener.handleEvent","end":5034.28607599996,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":10,"start":5034.275524999946,"index":47}]},{"causeName":"EventListener.handleEvent","end":5034.28607599996,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":10,"start":5034.275524999946,"index":47},{"end":5051.861331000924,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5051.5476500000805,"type":"dragover","index":48,"submarkers":[{"causeName":"EventListener.handleEvent","end":5051.856193000451,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":11,"start":5051.701795999892,"index":49}]},{"causeName":"EventListener.handleEvent","end":5051.856193000451,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":11,"start":5051.701795999892,"index":49},{"end":5052.027356000617,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5052.009269000031,"type":"dragover","index":50,"submarkers":[{"causeName":"EventListener.handleEvent","end":5052.025384999812,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":12,"start":5052.020173000172,"index":51}]},{"causeName":"EventListener.handleEvent","end":5052.025384999812,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":12,"start":5052.020173000172,"index":51},{"end":5068.381577000953,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5068.352949000895,"type":"dragover","index":52,"submarkers":[{"causeName":"EventListener.handleEvent","end":5068.378536000848,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":13,"start":5068.369908000343,"index":53}]},{"causeName":"EventListener.handleEvent","end":5068.378536000848,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":13,"start":5068.369908000343,"index":53},{"end":5068.636137001216,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5068.61669500079,"type":"dragover","index":54,"submarkers":[{"causeName":"EventListener.handleEvent","end":5068.6342610009015,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":14,"start":5068.6282720007,"index":55}]},{"causeName":"EventListener.handleEvent","end":5068.6342610009015,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":14,"start":5068.6282720007,"index":55},{"end":5087.228218000382,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5087.2033270010725,"type":"dragover","index":56,"submarkers":[{"causeName":"EventListener.handleEvent","end":5087.225684000179,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":15,"start":5087.218799000606,"index":57}]},{"causeName":"EventListener.handleEvent","end":5087.225684000179,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":15,"start":5087.218799000606,"index":57},{"end":5087.409674000926,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5087.394596000202,"type":"dragover","index":58,"submarkers":[{"causeName":"EventListener.handleEvent","end":5087.407863000408,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":16,"start":5087.403607000597,"index":59}]},{"causeName":"EventListener.handleEvent","end":5087.407863000408,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":16,"start":5087.403607000597,"index":59},{"end":5102.996859000064,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5102.968813000247,"type":"dragover","index":60,"submarkers":[{"causeName":"EventListener.handleEvent","end":5102.9944710005075,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":17,"start":5102.986518001184,"index":61}]},{"causeName":"EventListener.handleEvent","end":5102.9944710005075,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":17,"start":5102.986518001184,"index":61},{"end":5103.31240699999,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5103.288850000128,"type":"dragover","index":62,"submarkers":[{"causeName":"EventListener.handleEvent","end":5103.31036900077,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":18,"start":5103.303462999873,"index":63}]},{"causeName":"EventListener.handleEvent","end":5103.31036900077,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":18,"start":5103.303462999873,"index":63},{"end":5127.318504000083,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5126.37345300056,"type":"drop","index":64,"submarkers":[{"causeName":"EventListener.handleEvent","end":5127.311776000075,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":19,"start":5126.405372000299,"index":65}]},{"causeName":"EventListener.handleEvent","end":5127.311776000075,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":19,"start":5126.405372000299,"index":65},{"causeName":"promise callback","end":5134.873370000161,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":20,"start":5127.388961000368,"index":66},{"causeName":"MutationCallback","end":5135.0688560009,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":21,"start":5134.896461999975,"index":67},{"causeName":"FrameRequestCallback","end":5140.721473000944,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":22,"start":5140.589905000292,"index":68},{"end":5141.367701000534,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5140.731187000871,"index":69,"submarkers":[{"end":5141.3173070000485,"endStack":null,"isAnimationOnly":true,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5141.310037000105,"index":70}]},{"end":5141.3173070000485,"endStack":null,"isAnimationOnly":true,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5141.310037000105,"index":70},{"end":5141.488450000063,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5141.3691450003535,"index":71},{"end":5141.520941000432,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":null,"start":5141.489246999845,"index":72},{"end":5141.647064000368,"endStack":null,"isOffMainThread":false,"name":"Reflow","processType":2,"stack":null,"start":5141.53481100034,"index":73},{"end":5148.44501000084,"endStack":null,"isOffMainThread":false,"name":"Paint","processType":2,"rectangles":[{"height":36,"width":2880,"x":0,"y":0}],"stack":null,"start":5141.671134000644,"index":74},{"end":5148.3849419998005,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":5148.343121999875},{"end":5157.037527000532,"endStack":null,"isAnimationOnly":true,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5157.036659000441,"index":76},{"end":5157.147711000405,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5157.039991000667,"index":77},{"end":5157.239564999938,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5157.148462001234,"index":78},{"end":5157.254475000314,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":null,"start":5157.2405430004,"index":79},{"end":5157.648320999928,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":5157.608425999992},{"end":5159.694362000562,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":5158.386528001167},{"end":5360.28971800115,"endStack":null,"eventPhase":2,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":5168.48128600046,"type":"loadend","index":82,"submarkers":[{"causeName":"EventListener.handleEvent","end":5360.282664000988,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":23,"start":5168.614154000767,"index":83,"submarkers":[{"causeName":"FULL_CELL_PTR_BUFFER","end":5298.854287000373,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":5290.060325000435,"index":86}]}]},{"causeName":"EventListener.handleEvent","end":5360.282664000988,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":23,"start":5168.614154000767,"index":83,"submarkers":[{"causeName":"FULL_CELL_PTR_BUFFER","end":5298.854287000373,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":5290.060325000435,"index":86}]},{"causeName":"import","end":5478.668986000121,"endStack":32,"isOffMainThread":false,"name":"ConsoleTime","processType":2,"stack":29,"start":5168.966789000668,"index":84},{"end":5201.546516000293,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":5173.747117999941},{"causeName":"FULL_CELL_PTR_BUFFER","end":5298.854287000373,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":5290.060325000435,"index":86},{"causeName":"promise callback","end":5479.012137999758,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":33,"start":5360.367721000686,"index":87,"submarkers":[{"causeName":"FULL_CELL_PTR_BUFFER","end":5385.701086000539,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":5379.233076000586,"index":88}]},{"causeName":"FULL_CELL_PTR_BUFFER","end":5385.701086000539,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":5379.233076000586,"index":88},{"causeName":"first setState","end":5488.568986000493,"endStack":37,"isOffMainThread":false,"name":"ConsoleTime","processType":2,"stack":34,"start":5478.780199999921,"index":89},{"causeName":"promise callback","end":5488.726186000742,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":38,"start":5480.15509200003,"index":90},{"causeName":"MutationCallback","end":5489.032617000863,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":39,"start":5488.740033000708,"index":91},{"causeName":"FrameRequestCallback","end":5616.109323000535,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":40,"start":5489.427867000923,"index":92,"submarkers":[{"end":5492.225802000612,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":45,"start":5491.359448000789,"index":93},{"end":5492.367925999686,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":45,"start":5492.22849200014,"index":94},{"end":5492.606204000302,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":45,"start":5492.368882000446,"index":95},{"end":5589.547690000385,"endStack":null,"isOffMainThread":false,"name":"Reflow","processType":2,"stack":45,"start":5492.629218000919,"index":96},{"end":5590.6876699998975,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":46,"start":5590.672963000834,"index":97},{"end":5590.693715000525,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":46,"start":5590.688140000217,"index":98},{"end":5590.707190000452,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":46,"start":5590.695315000601,"index":99},{"end":5610.326276999898,"endStack":null,"isOffMainThread":false,"name":"Reflow","processType":2,"stack":49,"start":5610.172690999694,"index":100}]},{"end":5492.225802000612,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":45,"start":5491.359448000789,"index":93},{"end":5492.367925999686,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":45,"start":5492.22849200014,"index":94},{"end":5492.606204000302,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":45,"start":5492.368882000446,"index":95},{"end":5589.547690000385,"endStack":null,"isOffMainThread":false,"name":"Reflow","processType":2,"stack":45,"start":5492.629218000919,"index":96},{"end":5590.6876699998975,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":46,"start":5590.672963000834,"index":97},{"end":5590.693715000525,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":46,"start":5590.688140000217,"index":98},{"end":5590.707190000452,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":46,"start":5590.695315000601,"index":99},{"end":5610.326276999898,"endStack":null,"isOffMainThread":false,"name":"Reflow","processType":2,"stack":49,"start":5610.172690999694,"index":100},{"end":5616.146101000719,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5616.141944999807,"index":101},{"end":5616.151003000326,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":null,"start":5616.146391000599,"index":102},{"end":5616.180234000087,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":null,"start":5616.153038000688,"index":103},{"end":5616.375041999854,"endStack":null,"isOffMainThread":false,"name":"Reflow","processType":2,"stack":null,"start":5616.195412000641,"index":104},{"end":5661.053987001069,"endStack":null,"isOffMainThread":false,"name":"Paint","processType":2,"rectangles":[{"height":36,"width":2880,"x":0,"y":0},{"height":4,"width":2880,"x":0,"y":236}],"stack":null,"start":5616.393228000961,"index":105},{"end":5660.963701000437,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":5660.9209890002385},{"causeName":"promise callback","end":5661.966797000729,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":50,"start":5661.097498000599,"index":107},{"causeName":"FrameRequestCallback","end":5795.064361000434,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":51,"start":5662.316473999992,"index":108,"submarkers":[{"end":5671.487989000045,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":5671.461462000385,"index":109},{"end":5671.4979690006,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":5671.490792999975,"index":110},{"end":5671.5005310010165,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":54,"start":5671.498860000633,"index":111}]},{"end":5671.487989000045,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":5671.461462000385,"index":109},{"end":5671.4979690006,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":5671.490792999975,"index":110},{"end":5671.5005310010165,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":54,"start":5671.498860000633,"index":111},{"end":5691.478897000663,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":5690.203486000188},{"end":5802.20437700022,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":5802.150310000405},{"causeName":"FrameRequestCallback","end":5806.5855740001425,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":55,"start":5806.45360300038,"index":114},{"end":5806.865795000456,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":5806.833757000044},{"end":5808.988060000353,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":5807.487145001069},{"end":5808.28095700033,"endStack":null,"isOffMainThread":false,"name":"nsCycleCollector::ForgetSkippable","processType":2,"stack":null,"start":5807.846170000732,"index":117},{"end":5808.6497150007635,"endStack":null,"isOffMainThread":false,"name":"nsCycleCollector::ForgetSkippable","processType":2,"stack":null,"start":5808.4861479997635,"index":118},{"end":5808.794803000987,"endStack":null,"isOffMainThread":false,"name":"nsCycleCollector::ForgetSkippable","processType":2,"stack":null,"start":5808.700427000411,"index":119},{"end":5808.976127000526,"endStack":null,"isOffMainThread":false,"name":"nsCycleCollector::ForgetSkippable","processType":2,"stack":null,"start":5808.825391000137,"index":120},{"end":5809.149741999805,"endStack":null,"isOffMainThread":false,"name":"nsCycleCollector::ForgetSkippable","processType":2,"stack":null,"start":5809.00741700083,"index":121},{"causeName":"FrameRequestCallback","end":5809.279839999974,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":56,"start":5809.2687680004165,"index":122},{"end":6107.858263000846,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":6107.82069400046},{"end":6124.3552280003205,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":6124.208901000209},{"end":6261.008107000962,"endStack":null,"isOffMainThread":false,"name":"nsCycleCollector::ForgetSkippable","processType":2,"stack":null,"start":6260.662600000389,"index":125},{"end":6265.9017130006105,"endStack":null,"isOffMainThread":false,"name":"nsCycleCollector::Collect","processType":2,"stack":null,"start":6261.033968999982,"index":126},{"end":6730.710636000149,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":6724.015108000487,"type":"mousemove","index":127,"submarkers":[{"causeName":"EventListener.handleEvent","end":6730.704649999738,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":57,"start":6724.032963000238,"index":128,"submarkers":[{"end":6727.547899000347,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":59,"start":6727.172216000035,"index":129},{"end":6727.691163000651,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":59,"start":6727.55043000076,"index":130},{"end":6727.695811000653,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":59,"start":6727.691676000133,"index":131}]}]},{"causeName":"EventListener.handleEvent","end":6730.704649999738,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":57,"start":6724.032963000238,"index":128,"submarkers":[{"end":6727.547899000347,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":59,"start":6727.172216000035,"index":129},{"end":6727.691163000651,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":59,"start":6727.55043000076,"index":130},{"end":6727.695811000653,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":59,"start":6727.691676000133,"index":131}]},{"end":6727.547899000347,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":59,"start":6727.172216000035,"index":129},{"end":6727.691163000651,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":59,"start":6727.55043000076,"index":130},{"end":6727.695811000653,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":59,"start":6727.691676000133,"index":131},{"causeName":"FrameRequestCallback","end":6748.57734900061,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":60,"start":6730.767876001075,"index":132},{"end":6750.377316000871,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":6750.334623999894},{"causeName":"promise callback","end":6751.030068000779,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":61,"start":6750.49719700031,"index":134},{"end":6754.0626090001315,"endStack":null,"eventPhase":3,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":6751.272153000347,"type":"mousemove","index":135,"submarkers":[{"causeName":"EventListener.handleEvent","end":6754.058607000858,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":62,"start":6751.28385899961,"index":136}]},{"causeName":"EventListener.handleEvent","end":6754.058607000858,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":62,"start":6751.28385899961,"index":136},{"causeName":"FrameRequestCallback","end":6773.02198300045,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":63,"start":6754.126458000392,"index":137},{"end":6759.270712000318,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":6757.613002000377},{"end":6779.258160999976,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":6779.214080000296},{"causeName":"promise callback","end":6779.676900000311,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":64,"start":6779.348398000002,"index":140},{"end":6780.008465000428,"endStack":null,"eventPhase":2,"isOffMainThread":false,"name":"DOMEvent","processType":2,"stack":null,"start":6779.860807000659,"type":"mouseleave","index":141,"submarkers":[{"causeName":"EventListener.handleEvent","end":6780.00501600001,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":65,"start":6779.87122700084,"index":142}]},{"causeName":"EventListener.handleEvent","end":6780.00501600001,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":65,"start":6779.87122700084,"index":142},{"causeName":"promise callback","end":6780.155265999958,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":66,"start":6780.038886000402,"index":143},{"causeName":"FrameRequestCallback","end":6815.793700000271,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":67,"start":6780.2275299998,"index":144,"submarkers":[{"end":6780.613646000624,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":6780.587021000683,"index":145},{"end":6780.631033999845,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":6780.615010000765,"index":146},{"end":6780.632819999941,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":54,"start":6780.631270000711,"index":147},{"causeName":"FULL_CELL_PTR_BUFFER","end":6812.168317000382,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":6794.210885000415,"index":149}]},{"end":6780.613646000624,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":6780.587021000683,"index":145},{"end":6780.631033999845,"endStack":null,"isAnimationOnly":false,"isOffMainThread":false,"name":"Styles","processType":2,"stack":54,"start":6780.615010000765,"index":146},{"end":6780.632819999941,"endStack":null,"isOffMainThread":false,"name":"StylesApplyChanges","processType":2,"stack":54,"start":6780.631270000711,"index":147},{"end":6792.03645600006,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":6790.853601000272},{"causeName":"FULL_CELL_PTR_BUFFER","end":6812.168317000382,"endStack":null,"isOffMainThread":false,"name":"MinorGC","processType":2,"stack":null,"start":6794.210885000415,"index":149},{"end":6820.810926000588,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":6820.777788000181},{"causeName":"FrameRequestCallback","end":6821.210842000321,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":68,"start":6821.069099999964,"index":151},{"end":6824.786005000584,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":6823.68103000056},{"causeName":"FrameRequestCallback","end":6823.795183000155,"endStack":null,"isOffMainThread":false,"name":"Javascript","processType":2,"stack":69,"start":6823.7915670005605,"index":153,"submarkers":[]},{"end":7140.813704000786,"endStack":null,"isOffMainThread":false,"name":"CompositeForwardTransaction","processType":2,"stack":null,"start":7140.765774000436},{"end":7157.624675000086,"endStack":null,"isOffMainThread":true,"name":"Composite","processType":2,"stack":null,"start":7157.3033900000155}],"frames":[null,{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":392,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0},{"line":243,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"rerender","parent":0,"asyncParent":0},{"line":1753,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flush","parent":0,"asyncParent":0},{"line":16482,"column":0,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromFile/ Function","functionDisplayName":"anonymous","parent":707,"asyncParent":0,"asyncCause":null},{"line":353,"column":2,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"anonymous","parent":707,"asyncParent":0,"asyncCause":null},{"line":4345,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":188,"asyncParent":0,"asyncCause":null},{"line":14924,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRectangleBatch","parent":710,"asyncParent":0,"asyncCause":null},{"line":14156,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":711,"asyncParent":0,"asyncCause":null},{"line":4508,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4412,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":713,"asyncParent":0,"asyncCause":null},{"line":14180,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":714,"asyncParent":0,"asyncCause":null},{"line":14174,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getColorBuffer","parent":715,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":716,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":718,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":718,"asyncParent":0,"asyncCause":null},{"line":4512,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4495,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4503,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4495,"column":59,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4495,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4504,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":14189,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"addRect","parent":726,"asyncParent":0,"asyncCause":null},{"line":4508,"column":77,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4484,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":14924,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRectangleBatch","parent":729,"asyncParent":0,"asyncCause":null},{"line":14156,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":730,"asyncParent":0,"asyncCause":null},{"line":14179,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":714,"asyncParent":0,"asyncCause":null},{"line":14170,"column":71,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceSizeBuffer","parent":732,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":733,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":4453,"column":73,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":14157,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":730,"asyncParent":0,"asyncCause":null},{"line":4493,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":4508,"column":61,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":14178,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":714,"asyncParent":0,"asyncCause":null},{"line":14166,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceOffsetBuffer","parent":743,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":744,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":4480,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":14155,"column":35,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":730,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":4453,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":4411,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":713,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":735,"asyncParent":0,"asyncCause":null},{"line":4445,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":757,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":758,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":759,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":4453,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":764,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":735,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":4445,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":768,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":764,"asyncParent":0,"asyncCause":null},{"line":4508,"column":115,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":16461,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":946,"column":13,"source":"self-hosted","functionDisplayName":"bind","parent":772,"asyncParent":0,"asyncCause":null},{"line":962,"column":5,"source":"self-hosted","functionDisplayName":"bind_bindFunction0","parent":773,"asyncParent":0,"asyncCause":null},{"line":16462,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":946,"column":13,"source":"self-hosted","functionDisplayName":"bind","parent":775,"asyncParent":0,"asyncCause":null},{"line":962,"column":5,"source":"self-hosted","functionDisplayName":"bind_bindFunction0","parent":776,"asyncParent":0,"asyncCause":null},{"line":16459,"column":38,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":14984,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"Flamechart","parent":778,"asyncParent":0,"asyncCause":null},{"line":993,"column":17,"source":"self-hosted","functionDisplayName":"forEachCallGrouped","parent":779,"asyncParent":0,"asyncCause":null},{"line":3523,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachCallGrouped","parent":780,"asyncParent":0,"asyncCause":null},{"line":3539,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachCallGrouped","parent":780,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":782,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":782,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":784,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":785,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":786,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":786,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":788,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":789,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":790,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":791,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":792,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":794,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":794,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":790,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":797,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":799,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":800,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":802,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":803,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":805,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":806,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":807,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":805,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":812,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":813,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":815,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":816,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":818,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":820,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":822,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":823,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":825,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":827,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":829,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":830,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":832,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":833,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":835,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":836,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":838,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":839,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":841,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":842,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":844,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":845,"asyncParent":0,"asyncCause":null},{"line":3536,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":14979,"column":54,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"closeFrame","parent":847,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":849,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":851,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":852,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":854,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":856,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":858,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":860,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":862,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":863,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":865,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":868,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":871,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":872,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":875,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":876,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":877,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":880,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":881,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":875,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":871,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":889,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":890,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":891,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":856,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":894,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":895,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":889,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":898,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":827,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":900,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":849,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":904,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":904,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":907,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":909,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":912,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":914,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":917,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":914,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":919,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":920,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":923,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":924,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":927,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":929,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":929,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":932,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":933,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":935,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":810,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":935,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":940,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":942,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":943,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":945,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":947,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":949,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":950,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":951,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":952,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":953,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":954,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":955,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":956,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":957,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":958,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":959,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":961,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":962,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":964,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":965,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":967,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":968,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":969,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":970,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":971,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":972,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":973,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":974,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":975,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":976,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":977,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":979,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":981,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":982,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":983,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":984,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":985,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":987,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":989,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":991,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":992,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":993,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":994,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":995,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":996,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":997,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":998,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":999,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1000,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":999,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1002,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1003,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1004,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1005,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1006,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1007,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1008,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1009,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1010,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1007,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1012,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1013,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1014,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1015,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1016,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1017,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1018,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1019,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1020,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1020,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1022,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1023,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1024,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1025,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1026,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1027,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1028,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1027,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1027,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1031,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1032,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1033,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1034,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1035,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1036,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1037,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1036,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1039,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1040,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1041,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1042,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1043,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1044,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1045,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1044,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1047,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1048,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1049,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1050,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1049,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1052,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1053,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1054,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1055,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1056,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1057,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1058,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1059,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1060,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1060,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1062,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1063,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1064,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1065,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1066,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1067,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1068,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1069,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1070,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1071,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1072,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1073,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1073,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1075,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1076,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1077,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1078,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1079,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1080,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1080,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1082,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1080,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1084,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1085,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1086,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1087,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1088,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1089,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1090,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1091,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1092,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1092,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1094,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1095,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1096,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1096,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1098,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1096,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1100,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1101,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1102,"asyncParent":0,"asyncCause":null},{"line":3536,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1102,"asyncParent":0,"asyncCause":null},{"line":14979,"column":54,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"closeFrame","parent":1104,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":917,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":810,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1108,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":790,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1112,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1114,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1116,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1119,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":854,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1121,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1122,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":1124,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":865,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":870,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1128,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1130,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1131,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1132,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":940,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1138,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1139,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1140,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1142,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":983,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":996,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":951,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1147,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1148,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1149,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":909,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":825,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1153,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1154,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1156,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1157,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1158,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":969,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":975,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1161,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":999,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1163,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1165,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1138,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":969,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1170,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1172,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1175,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":858,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1178,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":818,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1181,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1182,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":975,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1187,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1190,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1163,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1017,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1024,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1194,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1033,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1196,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":827,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":851,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":927,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1124,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":954,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1205,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":951,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1208,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1210,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1114,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1212,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1213,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1119,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":16465,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":4475,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4478,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4340,"column":59,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":4340,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":8915,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":1221,"asyncParent":0,"asyncCause":null},{"line":8833,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLFramebuffer","parent":1222,"asyncParent":0,"asyncCause":null},{"line":9238,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":1221,"asyncParent":0,"asyncCause":null},{"line":9128,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"reglFramebuffer","parent":1224,"asyncParent":0,"asyncCause":null},{"line":8802,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"allocAttachment","parent":1225,"asyncParent":0,"asyncCause":null},{"line":8497,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRenderbuffer","parent":1226,"asyncParent":0,"asyncCause":null},{"line":4341,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":4246,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"LRUCache","parent":1228,"asyncParent":0,"asyncCause":null},{"line":4342,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":13862,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13862,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13846,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":1232,"asyncParent":0,"asyncCause":null},{"line":13864,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13854,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":1234,"asyncParent":0,"asyncCause":null},{"line":13872,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13266,"column":15,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":10502,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":1237,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1238,"asyncParent":0,"asyncCause":null},{"line":10503,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":1239,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1240,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1240,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1242,"asyncParent":0,"asyncCause":null},{"line":10523,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":1237,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1244,"asyncParent":0,"asyncCause":null},{"line":10526,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":1245,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1246,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1247,"asyncParent":0,"asyncCause":null},{"line":10525,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":1245,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1249,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1250,"asyncParent":0,"asyncCause":null},{"line":13272,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":13275,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1253,"asyncParent":0,"asyncCause":null},{"line":13276,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand/<","parent":1254,"asyncParent":0,"asyncCause":null},{"line":13239,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"splatObject","parent":1255,"asyncParent":0,"asyncCause":null},{"line":13279,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":11916,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":5040,"column":3,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"checkOptional","parent":1258,"asyncParent":0,"asyncCause":null},{"line":11929,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments/<","parent":1259,"asyncParent":0,"asyncCause":null},{"line":11943,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":10794,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseViewportScissor","parent":1261,"asyncParent":0,"asyncCause":null},{"line":11944,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":10955,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseDraw","parent":1263,"asyncParent":0,"asyncCause":null},{"line":11945,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":11126,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState","parent":1265,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1266,"asyncParent":0,"asyncCause":null},{"line":11155,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11159,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11129,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11569,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11130,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseParam","parent":1271,"asyncParent":0,"asyncCause":null},{"line":11946,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":10819,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseProgram","parent":1273,"asyncParent":0,"asyncCause":null},{"line":10885,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseProgram","parent":1273,"asyncParent":0,"asyncCause":null},{"line":13281,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":12891,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12891,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":10002,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"proc","parent":1278,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1279,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1280,"asyncParent":0,"asyncCause":null},{"line":12893,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12142,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectExtensions","parent":1282,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1283,"asyncParent":0,"asyncCause":null},{"line":12895,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":11983,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitContext","parent":1285,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1286,"asyncParent":0,"asyncCause":null},{"line":9902,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1287,"asyncParent":0,"asyncCause":null},{"line":12896,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12024,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollFramebuffer","parent":1289,"asyncParent":0,"asyncCause":null},{"line":9938,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":1290,"asyncParent":0,"asyncCause":null},{"line":12898,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12054,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":1292,"asyncParent":0,"asyncCause":null},{"line":9955,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1293,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1293,"asyncParent":0,"asyncCause":null},{"line":9934,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1295,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1295,"asyncParent":0,"asyncCause":null},{"line":9902,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1297,"asyncParent":0,"asyncCause":null},{"line":9938,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1295,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1293,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1300,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1301,"asyncParent":0,"asyncCause":null},{"line":9940,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1300,"asyncParent":0,"asyncCause":null},{"line":12056,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":1292,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1304,"asyncParent":0,"asyncCause":null},{"line":12083,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1307,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1308,"asyncParent":0,"asyncCause":null},{"line":9938,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1307,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1311,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1312,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1312,"asyncParent":0,"asyncCause":null},{"line":9949,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1311,"asyncParent":0,"asyncCause":null},{"line":9963,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1306,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":1316,"asyncParent":0,"asyncCause":null},{"line":9964,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"then","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9969,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"else","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9939,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":1319,"asyncParent":0,"asyncCause":null},{"line":9899,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"push","parent":1320,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1321,"asyncParent":0,"asyncCause":null},{"line":12057,"column":11,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":12079,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":9956,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9870,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"join","parent":1325,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1326,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1328,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1329,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1331,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1332,"asyncParent":0,"asyncCause":null},{"line":9968,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1307,"asyncParent":0,"asyncCause":null},{"line":9916,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1335,"asyncParent":0,"asyncCause":null},{"line":12069,"column":15,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1337,"asyncParent":0,"asyncCause":null},{"line":9934,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1338,"asyncParent":0,"asyncCause":null},{"line":12066,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":5749,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":1340,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1337,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1342,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1343,"asyncParent":0,"asyncCause":null},{"line":9897,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1343,"asyncParent":0,"asyncCause":null},{"line":9949,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1338,"asyncParent":0,"asyncCause":null},{"line":9963,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1337,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":1347,"asyncParent":0,"asyncCause":null},{"line":9965,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"then","parent":1337,"asyncParent":0,"asyncCause":null},{"line":9939,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":1349,"asyncParent":0,"asyncCause":null},{"line":9899,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"push","parent":1350,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1351,"asyncParent":0,"asyncCause":null},{"line":5751,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":1340,"asyncParent":0,"asyncCause":null},{"line":12067,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/ Function","functionDisplayName":"anonymous","parent":1814,"asyncParent":0,"asyncCause":null},{"line":57,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"anonymous","parent":1814,"asyncParent":0,"asyncCause":null},{"line":4495,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4508,"column":115,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4508,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4412,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":1819,"asyncParent":0,"asyncCause":null},{"line":14178,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":1820,"asyncParent":0,"asyncCause":null},{"line":14166,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceOffsetBuffer","parent":1821,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":1822,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":4512,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4445,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1826,"asyncParent":0,"asyncCause":null},{"line":4495,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":14180,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":1820,"asyncParent":0,"asyncCause":null},{"line":14174,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getColorBuffer","parent":1829,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":1830,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":4503,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4508,"column":61,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":14179,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":1820,"asyncParent":0,"asyncCause":null},{"line":14170,"column":71,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceSizeBuffer","parent":1835,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":1836,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":4495,"column":59,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1841,"asyncParent":0,"asyncCause":null},{"line":4484,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":14924,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRectangleBatch","parent":1843,"asyncParent":0,"asyncCause":null},{"line":14156,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":1844,"asyncParent":0,"asyncCause":null},{"line":14157,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":1844,"asyncParent":0,"asyncCause":null},{"line":4411,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":1819,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":4508,"column":77,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1841,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1840,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":14155,"column":35,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":1844,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1858,"asyncParent":0,"asyncCause":null},{"line":4445,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1860,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1861,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1862,"asyncParent":0,"asyncCause":null},{"line":4453,"column":73,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":4453,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1858,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":4453,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":4480,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":16295,"column":181,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":46,"asyncParent":0,"asyncCause":null},{"line":3234,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"css","parent":1872,"asyncParent":0,"asyncCause":null},{"line":3025,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectAndGetClassName","parent":1873,"asyncParent":0,"asyncCause":null},{"line":2919,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectStyleOnce","parent":1874,"asyncParent":0,"asyncCause":null},{"line":2513,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":1875,"asyncParent":0,"asyncCause":null},{"line":2207,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"addStyleType","parent":1876,"asyncParent":0,"asyncCause":null},{"line":2162,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"set","parent":1877,"asyncParent":0,"asyncCause":null},{"line":2115,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"OrderedElements","parent":1878,"asyncParent":0,"asyncCause":null},{"line":2520,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":1875,"asyncParent":0,"asyncCause":null},{"line":2125,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEach","parent":1880,"asyncParent":0,"asyncCause":null},{"line":2523,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS/<","parent":1881,"asyncParent":0,"asyncCause":null},{"line":222,"column":1,"source":"self-hosted","functionDisplayName":"some","parent":1882,"asyncParent":0,"asyncCause":null},{"line":2524,"column":26,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS/ Function","functionDisplayName":"scope","parent":2049,"asyncParent":0,"asyncCause":null},{"line":14835,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame/<","parent":2050,"asyncParent":0,"asyncCause":null},{"line":14835,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame/<","parent":2050,"asyncParent":0,"asyncCause":null},{"line":14840,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame","parent":2047,"asyncParent":0,"asyncCause":null},{"line":15185,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartMinimapView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15392,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15327,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2055,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2056,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2057,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2058,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2057,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2060,"asyncParent":0,"asyncCause":null},{"line":15414,"column":45,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":3344,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cachedMeasureTextWidth","parent":2062,"asyncParent":0,"asyncCause":null},{"line":15412,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15571,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15887,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2065,"asyncParent":0,"asyncCause":null},{"line":15877,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"updateConfigSpaceViewport","parent":2066,"asyncParent":0,"asyncCause":null},{"line":15702,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setConfigSpaceViewportRect","parent":2067,"asyncParent":0,"asyncCause":null},{"line":16017,"column":139,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartView/this.setConfigSpaceViewportRect","parent":2068,"asyncParent":0,"asyncCause":null},{"line":528,"column":2,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"idiff","parent":1931,"asyncParent":0,"asyncCause":null},{"line":673,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"diffAttributes","parent":2070,"asyncParent":0,"asyncCause":null},{"line":15184,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartMinimapView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15342,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2072,"asyncParent":0,"asyncCause":null},{"line":15342,"column":35,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2072,"asyncParent":0,"asyncCause":null},{"line":14927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createTextureCachedRenderer","parent":2074,"asyncParent":0,"asyncCause":null},{"line":14510,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"TextureCachedRenderer","parent":2075,"asyncParent":0,"asyncCause":null},{"line":9238,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":2076,"asyncParent":0,"asyncCause":null},{"line":9080,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"reglFramebuffer","parent":2077,"asyncParent":0,"asyncCause":null},{"line":292,"column":13,"source":"self-hosted","functionDisplayName":"map","parent":2078,"asyncParent":0,"asyncCause":null},{"line":686,"column":20,"source":"self-hosted","functionDisplayName":"ArraySpeciesCreate","parent":2079,"asyncParent":0,"asyncCause":null},{"line":9128,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"reglFramebuffer","parent":2077,"asyncParent":0,"asyncCause":null},{"line":8802,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"allocAttachment","parent":2081,"asyncParent":0,"asyncCause":null},{"line":8420,"column":45,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRenderbuffer","parent":2082,"asyncParent":0,"asyncCause":null},{"line":8420,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRenderbuffer","parent":2082,"asyncParent":0,"asyncCause":null},{"line":8398,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLRenderbuffer","parent":2084,"asyncParent":0,"asyncCause":null},{"line":9240,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":2076,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":2086,"asyncParent":0,"asyncCause":null},{"line":14511,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"TextureCachedRenderer","parent":2075,"asyncParent":0,"asyncCause":null},{"line":13861,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":2088,"asyncParent":0,"asyncCause":null},{"line":13845,"column":11,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":2089,"asyncParent":0,"asyncCause":null},{"line":13864,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":2088,"asyncParent":0,"asyncCause":null},{"line":13854,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":2091,"asyncParent":0,"asyncCause":null},{"line":13872,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":2088,"asyncParent":0,"asyncCause":null},{"line":13266,"column":15,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":10502,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":2094,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2095,"asyncParent":0,"asyncCause":null},{"line":10503,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":2096,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2097,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":2098,"asyncParent":0,"asyncCause":null},{"line":10523,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":2094,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2100,"asyncParent":0,"asyncCause":null},{"line":10525,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":2101,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2102,"asyncParent":0,"asyncCause":null},{"line":10526,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":2101,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2104,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":2105,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2104,"asyncParent":0,"asyncCause":null},{"line":13272,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":13275,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2109,"asyncParent":0,"asyncCause":null},{"line":13276,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand/<","parent":2110,"asyncParent":0,"asyncCause":null},{"line":13239,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"splatObject","parent":2111,"asyncParent":0,"asyncCause":null},{"line":13279,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":11945,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":2113,"asyncParent":0,"asyncCause":null},{"line":11124,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState","parent":2114,"asyncParent":0,"asyncCause":null},{"line":11126,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState","parent":2114,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2116,"asyncParent":0,"asyncCause":null},{"line":11129,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11159,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11377,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11130,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseParam","parent":2120,"asyncParent":0,"asyncCause":null},{"line":11418,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11970,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":2113,"asyncParent":0,"asyncCause":null},{"line":11891,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseContext","parent":2123,"asyncParent":0,"asyncCause":null},{"line":13281,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":12891,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":2125,"asyncParent":0,"asyncCause":null},{"line":10002,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"proc","parent":2126,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2127,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2128,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2127,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2130,"asyncParent":0,"asyncCause":null},{"line":12895,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":2125,"asyncParent":0,"asyncCause":null},{"line":11991,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitContext","parent":2132,"asyncParent":0,"asyncCause":null},{"line":9938,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":2133,"asyncParent":0,"asyncCause":null},{"line":12898,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":2125,"asyncParent":0,"asyncCause":null},{"line":12054,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":2135,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2136,"asyncParent":0,"asyncCause":null},{"line":9934,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2137,"asyncParent":0,"asyncCause":null},{"line":12056,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":2135,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2139,"asyncParent":0,"asyncCause":null},{"line":12079,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":9955,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2141,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2141,"asyncParent":0,"asyncCause":null},{"line":9945,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2143,"asyncParent":0,"asyncCause":null},{"line":9949,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2143,"asyncParent":0,"asyncCause":null},{"line":12083,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2146,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2147,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2148,"asyncParent":0,"asyncCause":null},{"line":9940,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2147,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2146,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2151,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2152,"asyncParent":0,"asyncCause":null},{"line":9972,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2146,"asyncParent":0,"asyncCause":null},{"line":12078,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2155,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2141,"asyncParent":0,"asyncCause":null},{"line":9940,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2157,"asyncParent":0,"asyncCause":null},{"line":9938,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2157,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":2159,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2143,"asyncParent":0,"asyncCause":null},{"line":9897,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2161,"asyncParent":0,"asyncCause":null},{"line":12066,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":5749,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":2163,"asyncParent":0,"asyncCause":null},{"line":5751,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":2163,"asyncParent":0,"asyncCause":null},{"line":12067,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/ Function","functionDisplayName":"scope","parent":2634,"asyncParent":0,"asyncCause":null},{"line":15369,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":15367,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":4558,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2638,"asyncParent":0,"asyncCause":null},{"line":4557,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4519,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2640,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2638,"asyncParent":0,"asyncCause":null},{"line":4521,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2640,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2638,"asyncParent":0,"asyncCause":null},{"line":4557,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4567,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4371,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded","parent":2646,"asyncParent":0,"asyncCause":null},{"line":13894,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2647,"asyncParent":0,"asyncCause":null},{"line":391,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2648,"asyncParent":0,"asyncCause":null},{"line":4381,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":14915,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawRectangleBatch","parent":2650,"asyncParent":0,"asyncCause":null},{"line":14301,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2651,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2652,"asyncParent":0,"asyncCause":null},{"line":406,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14271,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"color","parent":2654,"asyncParent":0,"asyncCause":null},{"line":14174,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getColorBuffer","parent":2655,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":2656,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":2657,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":2658,"asyncParent":0,"asyncCause":null},{"line":493,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14253,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceOffset","parent":2660,"asyncParent":0,"asyncCause":null},{"line":14166,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceOffsetBuffer","parent":2661,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":2662,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":2663,"asyncParent":0,"asyncCause":null},{"line":599,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14283,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2666,"asyncParent":0,"asyncCause":null},{"line":4379,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":4361,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"allocateLine","parent":2668,"asyncParent":0,"asyncCause":null},{"line":4277,"column":44,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"insert","parent":2669,"asyncParent":0,"asyncCause":null},{"line":14281,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2671,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2672,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2671,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2674,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2675,"asyncParent":0,"asyncCause":null},{"line":14270,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"color","parent":2654,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2666,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2678,"asyncParent":0,"asyncCause":null},{"line":4386,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":4569,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2680,"asyncParent":0,"asyncCause":null},{"line":4467,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2681,"asyncParent":0,"asyncCause":null},{"line":4431,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2682,"asyncParent":0,"asyncCause":null},{"line":4570,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/ Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14283,"column":145,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":14283,"column":145,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3912,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"dividedByPointwise","parent":2690,"asyncParent":0,"asyncCause":null},{"line":4466,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2681,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":2692,"asyncParent":0,"asyncCause":null},{"line":14281,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2694,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2695,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2696,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2697,"asyncParent":0,"asyncCause":null},{"line":14284,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2699,"asyncParent":0,"asyncCause":null},{"line":14283,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2701,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2702,"asyncParent":0,"asyncCause":null},{"line":4380,"column":53,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":4380,"column":78,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2674,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2706,"asyncParent":0,"asyncCause":null},{"line":14283,"column":82,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":4568,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2680,"asyncParent":0,"asyncCause":null},{"line":4568,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2680,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2710,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2695,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2712,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2713,"asyncParent":0,"asyncCause":null},{"line":14284,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2715,"asyncParent":0,"asyncCause":null},{"line":4466,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2681,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":2717,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":2718,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":2719,"asyncParent":0,"asyncCause":null},{"line":319,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14261,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceSize","parent":2721,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2694,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2723,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2710,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2695,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2726,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2699,"asyncParent":0,"asyncCause":null},{"line":14252,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceOffset","parent":2660,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2694,"asyncParent":0,"asyncCause":null},{"line":406,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14270,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"color","parent":2731,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2712,"asyncParent":0,"asyncCause":null},{"line":3912,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"dividedByPointwise","parent":2689,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2701,"asyncParent":0,"asyncCause":null},{"line":14283,"column":112,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2736,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2737,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2671,"asyncParent":0,"asyncCause":null},{"line":4278,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"insert","parent":2669,"asyncParent":0,"asyncCause":null},{"line":14283,"column":82,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":14282,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":14282,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2696,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2706,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2715,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2707,"asyncParent":0,"asyncCause":null},{"line":493,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14252,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceOffset","parent":2748,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2674,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2750,"asyncParent":0,"asyncCause":null},{"line":4380,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":319,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14261,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceSize","parent":2753,"asyncParent":0,"asyncCause":null},{"line":14283,"column":112,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2755,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2756,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2710,"asyncParent":0,"asyncCause":null},{"line":4372,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":2759,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2676,"asyncParent":0,"asyncCause":null},{"line":4580,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":9249,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"use","parent":2762,"asyncParent":0,"asyncCause":null},{"line":13907,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2763,"asyncParent":0,"asyncCause":null},{"line":397,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2764,"asyncParent":0,"asyncCause":null},{"line":4583,"column":38,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2766,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2767,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2768,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2769,"asyncParent":0,"asyncCause":null},{"line":4587,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":4398,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":14918,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawTexture","parent":2772,"asyncParent":0,"asyncCause":null},{"line":14491,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2773,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2774,"asyncParent":0,"asyncCause":null},{"line":359,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2775,"asyncParent":0,"asyncCause":null},{"line":14474,"column":174,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2777,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2778,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2779,"asyncParent":0,"asyncCause":null},{"line":14474,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2781,"asyncParent":0,"asyncCause":null},{"line":369,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2775,"asyncParent":0,"asyncCause":null},{"line":14481,"column":106,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2784,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2785,"asyncParent":0,"asyncCause":null},{"line":14481,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2787,"asyncParent":0,"asyncCause":null},{"line":14482,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":2790,"asyncParent":0,"asyncCause":null},{"line":4586,"column":44,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2792,"asyncParent":0,"asyncCause":null},{"line":4395,"column":45,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":14474,"column":110,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2795,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2796,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2787,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2799,"asyncParent":0,"asyncCause":null},{"line":14483,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2801,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2802,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2803,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2804,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2792,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2807,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2802,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2809,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2801,"asyncParent":0,"asyncCause":null},{"line":14475,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2813,"asyncParent":0,"asyncCause":null},{"line":14474,"column":81,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2780,"asyncParent":0,"asyncCause":null},{"line":14474,"column":244,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":14480,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2798,"asyncParent":0,"asyncCause":null},{"line":14476,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2820,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2821,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2822,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2785,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2824,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2822,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2821,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2828,"asyncParent":0,"asyncCause":null},{"line":14474,"column":143,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":14474,"column":210,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2778,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2832,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2834,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2821,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2803,"asyncParent":0,"asyncCause":null},{"line":14481,"column":142,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2786,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2778,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2840,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2820,"asyncParent":0,"asyncCause":null},{"line":4585,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":2843,"asyncParent":0,"asyncCause":null},{"line":4587,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2845,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2846,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2820,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2802,"asyncParent":0,"asyncCause":null},{"line":4395,"column":70,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2784,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2851,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2824,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2845,"asyncParent":0,"asyncCause":null},{"line":4395,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2827,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2785,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2857,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":2859,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2849,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2801,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2784,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2829,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2836,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2833,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":2868,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2777,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2870,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2779,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2820,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2873,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2809,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2845,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2876,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2792,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2832,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2781,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2777,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2857,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2882,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2880,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":2885,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2828,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2801,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2888,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2779,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2875,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2781,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2857,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2787,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2828,"asyncParent":0,"asyncCause":null},{"line":4604,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":14921,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawFlamechartColorPass","parent":2896,"asyncParent":0,"asyncCause":null},{"line":14808,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2897,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2898,"asyncParent":0,"asyncCause":null},{"line":362,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2899,"asyncParent":0,"asyncCause":null},{"line":14789,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2900,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2901,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2902,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2903,"asyncParent":0,"asyncCause":null},{"line":375,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2899,"asyncParent":0,"asyncCause":null},{"line":14802,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2905,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2906,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2907,"asyncParent":0,"asyncCause":null},{"line":15374,"column":49,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":15327,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2909,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2910,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2911,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2910,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2913,"asyncParent":0,"asyncCause":null},{"line":15384,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15327,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2915,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2916,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2917,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2918,"asyncParent":0,"asyncCause":null},{"line":15386,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15323,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceSize","parent":2920,"asyncParent":0,"asyncCause":null},{"line":15889,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2065,"asyncParent":0,"asyncCause":null},{"line":14933,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderInto","parent":2922,"asyncParent":0,"asyncCause":null},{"line":14935,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderInto","parent":2922,"asyncParent":0,"asyncCause":null},{"line":13907,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2924,"asyncParent":0,"asyncCause":null},{"line":395,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2925,"asyncParent":0,"asyncCause":null},{"line":15890,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2926,"asyncParent":0,"asyncCause":null},{"line":4535,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2928,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2929,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2930,"asyncParent":0,"asyncCause":null},{"line":4542,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2932,"asyncParent":0,"asyncCause":null},{"line":4558,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2934,"asyncParent":0,"asyncCause":null},{"line":4557,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2934,"asyncParent":0,"asyncCause":null},{"line":4557,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4519,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2938,"asyncParent":0,"asyncCause":null},{"line":4521,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2938,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2934,"asyncParent":0,"asyncCause":null},{"line":4580,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":9249,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"use","parent":2942,"asyncParent":0,"asyncCause":null},{"line":13907,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2943,"asyncParent":0,"asyncCause":null},{"line":397,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2944,"asyncParent":0,"asyncCause":null},{"line":4583,"column":38,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2946,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2947,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2948,"asyncParent":0,"asyncCause":null},{"line":4587,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2950,"asyncParent":0,"asyncCause":null},{"line":4587,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":4398,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2952,"asyncParent":0,"asyncCause":null},{"line":14918,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawTexture","parent":2953,"asyncParent":0,"asyncCause":null},{"line":14491,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2954,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2955,"asyncParent":0,"asyncCause":null},{"line":359,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2956,"asyncParent":0,"asyncCause":null},{"line":14474,"column":174,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2958,"asyncParent":0,"asyncCause":null},{"line":14475,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2961,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2950,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2963,"asyncParent":0,"asyncCause":null},{"line":14474,"column":81,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2958,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2966,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2967,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2966,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2969,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2970,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2969,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2973,"asyncParent":0,"asyncCause":null},{"line":14476,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2975,"asyncParent":0,"asyncCause":null},{"line":369,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2956,"asyncParent":0,"asyncCause":null},{"line":14482,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2978,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":2979,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2975,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2981,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2982,"asyncParent":0,"asyncCause":null},{"line":14481,"column":106,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2984,"asyncParent":0,"asyncCause":null},{"line":4395,"column":70,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2952,"asyncParent":0,"asyncCause":null},{"line":14474,"column":110,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2987,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2988,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2984,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2990,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2984,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2992,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2993,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2994,"asyncParent":0,"asyncCause":null},{"line":4586,"column":44,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2996,"asyncParent":0,"asyncCause":null},{"line":14474,"column":244,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":14481,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2999,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":14483,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3002,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3002,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":3004,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3005,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2981,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3007,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2993,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3004,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3010,"asyncParent":0,"asyncCause":null},{"line":14474,"column":143,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3005,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2978,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":3004,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3015,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2966,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3017,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3018,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":3020,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3015,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2975,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3023,"asyncParent":0,"asyncCause":null},{"line":14481,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":14474,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3026,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2992,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3028,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3029,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3007,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3031,"asyncParent":0,"asyncCause":null},{"line":14481,"column":142,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":4606,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4604,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":14921,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawFlamechartColorPass","parent":3035,"asyncParent":0,"asyncCause":null},{"line":14808,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":3036,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":3037,"asyncParent":0,"asyncCause":null},{"line":359,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":3038,"asyncParent":0,"asyncCause":null},{"line":14795,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvSpacePixelSize","parent":3039,"asyncParent":0,"asyncCause":null},{"line":3936,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":3040,"asyncParent":0,"asyncCause":null},{"line":362,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":3038,"asyncParent":0,"asyncCause":null},{"line":14789,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":3042,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3043,"asyncParent":0,"asyncCause":null},{"line":375,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":3038,"asyncParent":0,"asyncCause":null},{"line":14800,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":3045,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3046,"asyncParent":0,"asyncCause":null},{"line":14801,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":3045,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3048,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":3049,"asyncParent":0,"asyncCause":null},{"line":15572,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15762,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":4038,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"inverseTransformVector","parent":3052,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":3053,"asyncParent":0,"asyncCause":null},{"line":15790,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":15774,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3055,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3056,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3055,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3058,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3055,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15781,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":4111,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withOrigin","parent":3064,"asyncParent":0,"asyncCause":null},{"line":4114,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withSize","parent":3064,"asyncParent":0,"asyncCause":null},{"line":15782,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15512,"column":11,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3067,"asyncParent":0,"asyncCause":null},{"line":15774,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3069,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3070,"asyncParent":0,"asyncCause":null},{"line":15512,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3067,"asyncParent":0,"asyncCause":null},{"line":15499,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"binarySearch","parent":3072,"asyncParent":0,"asyncCause":null},{"line":15513,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":null,"parent":3073,"asyncParent":0,"asyncCause":null},{"line":3344,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cachedMeasureTextWidth","parent":3074,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3078,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15782,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15512,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3082,"asyncParent":0,"asyncCause":null},{"line":15499,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"binarySearch","parent":3083,"asyncParent":0,"asyncCause":null},{"line":15513,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":null,"parent":3084,"asyncParent":0,"asyncCause":null},{"line":3344,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cachedMeasureTextWidth","parent":3085,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15774,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3089,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3090,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3089,"asyncParent":0,"asyncCause":null},{"line":15781,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":4114,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withSize","parent":3093,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3095,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3095,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3098,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3095,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3103,"asyncParent":0,"asyncCause":null},{"line":15766,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":14845,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame","parent":2047,"asyncParent":0,"asyncCause":null},{"line":13983,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cancel","parent":3106,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},null,{"line":393,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"eventProxy","parent":0,"asyncParent":0,"asyncCause":null},{"line":16356,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"Application/this.onDrop","parent":1,"asyncParent":0,"asyncCause":null},{"line":16356,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"Application/this.onDrop","parent":1,"asyncParent":0,"asyncCause":null},{"line":248,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"rerender","parent":0,"asyncParent":0,"asyncCause":null},{"line":813,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderComponent","parent":4,"asyncParent":0,"asyncCause":null},{"line":16534,"column":319,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":5,"asyncParent":0,"asyncCause":null},{"line":16528,"column":47,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderLoadingBar","parent":6,"asyncParent":0,"asyncCause":null},{"line":3230,"column":70,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"css","parent":7,"asyncParent":0,"asyncCause":null},{"line":3234,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"css","parent":7,"asyncParent":0,"asyncCause":null},{"line":3025,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectAndGetClassName","parent":9,"asyncParent":0,"asyncCause":null},{"line":2919,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectStyleOnce","parent":10,"asyncParent":0,"asyncCause":null},{"line":2513,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":11,"asyncParent":0,"asyncCause":null},{"line":2207,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"addStyleType","parent":12,"asyncParent":0,"asyncCause":null},{"line":2134,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"set","parent":13,"asyncParent":0,"asyncCause":null},{"line":2520,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":11,"asyncParent":0,"asyncCause":null},{"line":2125,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEach","parent":15,"asyncParent":0,"asyncCause":null},{"line":2523,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS/<","parent":16,"asyncParent":0,"asyncCause":null},{"line":2546,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":11,"asyncParent":0,"asyncCause":null},{"line":2643,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSSRuleset","parent":18,"asyncParent":0,"asyncCause":null},{"line":2582,"column":35,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"runStringHandlers","parent":19,"asyncParent":0,"asyncCause":null},{"line":2830,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"animationName","parent":20,"asyncParent":0,"asyncCause":null},{"line":295,"column":17,"source":"self-hosted","functionDisplayName":"map","parent":21,"asyncParent":0,"asyncCause":null},{"line":2831,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"animationName/<","parent":22,"asyncParent":0,"asyncCause":null},{"line":2854,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"animationName","parent":23,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":24,"asyncParent":0,"asyncCause":null},{"line":2855,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"animationName/<","parent":25,"asyncParent":0,"asyncCause":null},{"line":2520,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":26,"asyncParent":0,"asyncCause":null},{"line":2125,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEach","parent":27,"asyncParent":0,"asyncCause":null},{"line":2543,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS/<","parent":28,"asyncParent":0,"asyncCause":null},{"line":2134,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"set","parent":29,"asyncParent":0,"asyncCause":null},{"line":2546,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":26,"asyncParent":0,"asyncCause":null},{"line":2648,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSSRuleset","parent":31,"asyncParent":0,"asyncCause":null},{"line":1667,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"prefixAll","parent":32,"asyncParent":0,"asyncCause":null},{"line":2711,"column":41,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSSRuleset","parent":31,"asyncParent":0,"asyncCause":null},{"line":2648,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSSRuleset","parent":18,"asyncParent":0,"asyncCause":null},{"line":1688,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"prefixAll","parent":35,"asyncParent":0,"asyncCause":null},{"line":1592,"column":26,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"prefixValue","parent":36,"asyncParent":0,"asyncCause":null},{"line":1335,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"imageSet","parent":37,"asyncParent":0,"asyncCause":null},{"line":854,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderComponent","parent":4,"asyncParent":0,"asyncCause":null},{"line":433,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"diff","parent":39,"asyncParent":0,"asyncCause":null},{"line":524,"column":4,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"idiff","parent":40,"asyncParent":0,"asyncCause":null},{"line":601,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"innerDiffNode","parent":41,"asyncParent":0,"asyncCause":null},{"line":482,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"idiff","parent":42,"asyncParent":0,"asyncCause":null},{"line":927,"column":3,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buildComponentFromVNode","parent":43,"asyncParent":0,"asyncCause":null},{"line":761,"column":4,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setComponentProps","parent":44,"asyncParent":0,"asyncCause":null},{"line":813,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderComponent","parent":45,"asyncParent":0,"asyncCause":null},{"line":16293,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":46,"asyncParent":0,"asyncCause":null},{"line":3234,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"css","parent":47,"asyncParent":0,"asyncCause":null},{"line":3006,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectAndGetClassName","parent":48,"asyncParent":0,"asyncCause":null},{"line":16483,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromFile/ Function","functionDisplayName":"anonymous","parent":707,"asyncParent":0,"asyncCause":null},{"line":353,"column":2,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"anonymous","parent":707,"asyncParent":0,"asyncCause":null},{"line":4345,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":188,"asyncParent":0,"asyncCause":null},{"line":14924,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRectangleBatch","parent":710,"asyncParent":0,"asyncCause":null},{"line":14156,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":711,"asyncParent":0,"asyncCause":null},{"line":4508,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4412,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":713,"asyncParent":0,"asyncCause":null},{"line":14180,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":714,"asyncParent":0,"asyncCause":null},{"line":14174,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getColorBuffer","parent":715,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":716,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":718,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":718,"asyncParent":0,"asyncCause":null},{"line":4512,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4495,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4503,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4495,"column":59,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4495,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4504,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":14189,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"addRect","parent":726,"asyncParent":0,"asyncCause":null},{"line":4508,"column":77,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":4484,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":14924,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRectangleBatch","parent":729,"asyncParent":0,"asyncCause":null},{"line":14156,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":730,"asyncParent":0,"asyncCause":null},{"line":14179,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":714,"asyncParent":0,"asyncCause":null},{"line":14170,"column":71,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceSizeBuffer","parent":732,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":733,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":4453,"column":73,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":14157,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":730,"asyncParent":0,"asyncCause":null},{"line":4493,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":4508,"column":61,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":14178,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":714,"asyncParent":0,"asyncCause":null},{"line":14166,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceOffsetBuffer","parent":743,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":744,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":4480,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":14155,"column":35,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":730,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":4453,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":4411,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":713,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":735,"asyncParent":0,"asyncCause":null},{"line":4445,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":757,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":758,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":759,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":734,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":4453,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":745,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":764,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":735,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":717,"asyncParent":0,"asyncCause":null},{"line":4445,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":721,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":768,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":764,"asyncParent":0,"asyncCause":null},{"line":4508,"column":115,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":187,"asyncParent":0,"asyncCause":null},{"line":16461,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":946,"column":13,"source":"self-hosted","functionDisplayName":"bind","parent":772,"asyncParent":0,"asyncCause":null},{"line":962,"column":5,"source":"self-hosted","functionDisplayName":"bind_bindFunction0","parent":773,"asyncParent":0,"asyncCause":null},{"line":16462,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":946,"column":13,"source":"self-hosted","functionDisplayName":"bind","parent":775,"asyncParent":0,"asyncCause":null},{"line":962,"column":5,"source":"self-hosted","functionDisplayName":"bind_bindFunction0","parent":776,"asyncParent":0,"asyncCause":null},{"line":16459,"column":38,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":14984,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"Flamechart","parent":778,"asyncParent":0,"asyncCause":null},{"line":993,"column":17,"source":"self-hosted","functionDisplayName":"forEachCallGrouped","parent":779,"asyncParent":0,"asyncCause":null},{"line":3523,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachCallGrouped","parent":780,"asyncParent":0,"asyncCause":null},{"line":3539,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachCallGrouped","parent":780,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":782,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":782,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":784,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":785,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":786,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":786,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":788,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":789,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":790,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":791,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":792,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":794,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":794,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":790,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":797,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":799,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":800,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":802,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":803,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":805,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":806,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":807,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":805,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":812,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":813,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":815,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":816,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":818,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":820,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":822,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":823,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":825,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":827,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":829,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":830,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":832,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":833,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":835,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":836,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":838,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":839,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":841,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":842,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":844,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":845,"asyncParent":0,"asyncCause":null},{"line":3536,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":14979,"column":54,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"closeFrame","parent":847,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":849,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":851,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":852,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":854,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":856,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":858,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":860,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":862,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":863,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":865,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":868,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":871,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":872,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":875,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":876,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":877,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":880,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":881,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":875,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":871,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":889,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":890,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":891,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":856,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":894,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":895,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":889,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":898,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":827,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":900,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":849,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":904,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":904,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":907,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":909,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":912,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":914,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":917,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":914,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":919,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":920,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":259,"column":12,"source":"self-hosted","functionDisplayName":"sort","parent":923,"asyncParent":0,"asyncCause":null},{"line":5950,"column":9,"source":"self-hosted","functionDisplayName":"MergeSort","parent":924,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":801,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":927,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":929,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":840,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":929,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":932,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":933,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":935,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":810,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":935,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":843,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":940,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":942,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":943,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":945,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":947,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":949,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":950,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":951,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":952,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":953,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":954,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":955,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":956,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":957,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":958,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":959,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":961,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":962,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":964,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":965,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":967,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":968,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":969,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":970,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":971,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":972,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":973,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":974,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":975,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":976,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":977,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":979,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":981,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":982,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":983,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":984,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":985,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":987,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":989,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":991,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":992,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":993,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":994,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":995,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":996,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":997,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":998,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":999,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1000,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":999,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1002,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1003,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1004,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1005,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1006,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1007,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1008,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1009,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1010,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1007,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1012,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1013,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1014,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1015,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1016,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1017,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1018,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1019,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1020,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1020,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1022,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1023,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1024,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1025,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1026,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1027,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1028,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1027,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1027,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1031,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1032,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1033,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1034,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1035,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1036,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1037,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1036,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1039,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1040,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1041,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1042,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1043,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1044,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1045,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1044,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1047,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1048,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1049,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1050,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1049,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1052,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1053,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1054,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1055,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1056,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1057,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1058,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1059,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1060,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1060,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1062,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1063,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1064,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1065,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1066,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1067,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1068,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1069,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1070,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1071,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1072,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1073,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1073,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1075,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1076,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1077,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1078,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1079,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1080,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1080,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1082,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1080,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1084,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1085,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1086,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1087,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1088,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1089,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1090,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1091,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1092,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1092,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1094,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1095,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1096,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1096,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1098,"asyncParent":0,"asyncCause":null},{"line":3531,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1096,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1100,"asyncParent":0,"asyncCause":null},{"line":3532,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit/<","parent":1101,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1102,"asyncParent":0,"asyncCause":null},{"line":3536,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1102,"asyncParent":0,"asyncCause":null},{"line":14979,"column":54,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"closeFrame","parent":1104,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":917,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":810,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1108,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":790,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1112,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1114,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":814,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1116,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":804,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1119,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":854,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1121,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1122,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":1124,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":865,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":870,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1128,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1130,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1131,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1132,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":940,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":837,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":864,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1138,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1139,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1140,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1142,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":983,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":996,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":882,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":951,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1147,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1148,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1149,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":909,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":825,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1153,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1154,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1156,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1157,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1158,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":969,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":975,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1161,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":999,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1163,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1165,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1138,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":969,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1170,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1172,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":831,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1175,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":858,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":846,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1178,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":817,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":818,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1181,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1182,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":963,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":966,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":975,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1187,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":978,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":986,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1190,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1163,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1017,"asyncParent":0,"asyncCause":null},{"line":3530,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1024,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1194,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":1033,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1196,"asyncParent":0,"asyncCause":null},{"line":248,"column":5,"source":"self-hosted","functionDisplayName":"sort","parent":827,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":834,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":824,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":851,"asyncParent":0,"asyncCause":null},{"line":14960,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":927,"asyncParent":0,"asyncCause":null},{"line":236,"column":1,"source":"self-hosted","functionDisplayName":"sort","parent":1124,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":954,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1205,"asyncParent":0,"asyncCause":null},{"line":3525,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":960,"asyncParent":0,"asyncCause":null},{"line":3526,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":951,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1208,"asyncParent":0,"asyncCause":null},{"line":3529,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":944,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1210,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1114,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1212,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1213,"asyncParent":0,"asyncCause":null},{"line":14963,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"openFrame","parent":1119,"asyncParent":0,"asyncCause":null},{"line":3529,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"visit","parent":793,"asyncParent":0,"asyncCause":null},{"line":16465,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loadFromString/<","parent":162,"asyncParent":0,"asyncCause":null},{"line":4475,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4478,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4340,"column":59,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":4340,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":8915,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":1221,"asyncParent":0,"asyncCause":null},{"line":8833,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLFramebuffer","parent":1222,"asyncParent":0,"asyncCause":null},{"line":9238,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":1221,"asyncParent":0,"asyncCause":null},{"line":9128,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"reglFramebuffer","parent":1224,"asyncParent":0,"asyncCause":null},{"line":8802,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"allocAttachment","parent":1225,"asyncParent":0,"asyncCause":null},{"line":8497,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRenderbuffer","parent":1226,"asyncParent":0,"asyncCause":null},{"line":4341,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":4246,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"LRUCache","parent":1228,"asyncParent":0,"asyncCause":null},{"line":4342,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RowAtlas","parent":1219,"asyncParent":0,"asyncCause":null},{"line":13862,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13862,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13846,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":1232,"asyncParent":0,"asyncCause":null},{"line":13864,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13854,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":1234,"asyncParent":0,"asyncCause":null},{"line":13872,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":1230,"asyncParent":0,"asyncCause":null},{"line":13266,"column":15,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":10502,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":1237,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1238,"asyncParent":0,"asyncCause":null},{"line":10503,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":1239,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1240,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1240,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1242,"asyncParent":0,"asyncCause":null},{"line":10523,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":1237,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1244,"asyncParent":0,"asyncCause":null},{"line":10526,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":1245,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1246,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1247,"asyncParent":0,"asyncCause":null},{"line":10525,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":1245,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1249,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1250,"asyncParent":0,"asyncCause":null},{"line":13272,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":13275,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1253,"asyncParent":0,"asyncCause":null},{"line":13276,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand/<","parent":1254,"asyncParent":0,"asyncCause":null},{"line":13239,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"splatObject","parent":1255,"asyncParent":0,"asyncCause":null},{"line":13279,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":11916,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":5040,"column":3,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"checkOptional","parent":1258,"asyncParent":0,"asyncCause":null},{"line":11929,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments/<","parent":1259,"asyncParent":0,"asyncCause":null},{"line":11943,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":10794,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseViewportScissor","parent":1261,"asyncParent":0,"asyncCause":null},{"line":11944,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":10955,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseDraw","parent":1263,"asyncParent":0,"asyncCause":null},{"line":11945,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":11126,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState","parent":1265,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1266,"asyncParent":0,"asyncCause":null},{"line":11155,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11159,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11129,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11569,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":1267,"asyncParent":0,"asyncCause":null},{"line":11130,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseParam","parent":1271,"asyncParent":0,"asyncCause":null},{"line":11946,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":1257,"asyncParent":0,"asyncCause":null},{"line":10819,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseProgram","parent":1273,"asyncParent":0,"asyncCause":null},{"line":10885,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseProgram","parent":1273,"asyncParent":0,"asyncCause":null},{"line":13281,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":1236,"asyncParent":0,"asyncCause":null},{"line":12891,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12891,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":10002,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"proc","parent":1278,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1279,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1280,"asyncParent":0,"asyncCause":null},{"line":12893,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12142,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectExtensions","parent":1282,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":1283,"asyncParent":0,"asyncCause":null},{"line":12895,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":11983,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitContext","parent":1285,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1286,"asyncParent":0,"asyncCause":null},{"line":9902,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1287,"asyncParent":0,"asyncCause":null},{"line":12896,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12024,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollFramebuffer","parent":1289,"asyncParent":0,"asyncCause":null},{"line":9938,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":1290,"asyncParent":0,"asyncCause":null},{"line":12898,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":1276,"asyncParent":0,"asyncCause":null},{"line":12054,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":1292,"asyncParent":0,"asyncCause":null},{"line":9955,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1293,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1293,"asyncParent":0,"asyncCause":null},{"line":9934,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1295,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1295,"asyncParent":0,"asyncCause":null},{"line":9902,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1297,"asyncParent":0,"asyncCause":null},{"line":9938,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1295,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1293,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1300,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1301,"asyncParent":0,"asyncCause":null},{"line":9940,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1300,"asyncParent":0,"asyncCause":null},{"line":12056,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":1292,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":1304,"asyncParent":0,"asyncCause":null},{"line":12083,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1307,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1308,"asyncParent":0,"asyncCause":null},{"line":9938,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1307,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1311,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1312,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1312,"asyncParent":0,"asyncCause":null},{"line":9949,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1311,"asyncParent":0,"asyncCause":null},{"line":9963,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1306,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":1316,"asyncParent":0,"asyncCause":null},{"line":9964,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"then","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9969,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"else","parent":1306,"asyncParent":0,"asyncCause":null},{"line":9939,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":1319,"asyncParent":0,"asyncCause":null},{"line":9899,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"push","parent":1320,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1321,"asyncParent":0,"asyncCause":null},{"line":12057,"column":11,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":12079,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":9956,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9870,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"join","parent":1325,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1326,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1328,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1329,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1331,"asyncParent":0,"asyncCause":null},{"line":9918,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1332,"asyncParent":0,"asyncCause":null},{"line":9968,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1324,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1307,"asyncParent":0,"asyncCause":null},{"line":9916,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1335,"asyncParent":0,"asyncCause":null},{"line":12069,"column":15,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1337,"asyncParent":0,"asyncCause":null},{"line":9934,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1338,"asyncParent":0,"asyncCause":null},{"line":12066,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":1305,"asyncParent":0,"asyncCause":null},{"line":5749,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":1340,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1337,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1342,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1343,"asyncParent":0,"asyncCause":null},{"line":9897,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":1343,"asyncParent":0,"asyncCause":null},{"line":9949,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":1338,"asyncParent":0,"asyncCause":null},{"line":9963,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":1337,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":1347,"asyncParent":0,"asyncCause":null},{"line":9965,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"then","parent":1337,"asyncParent":0,"asyncCause":null},{"line":9939,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":1349,"asyncParent":0,"asyncCause":null},{"line":9899,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"push","parent":1350,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":1351,"asyncParent":0,"asyncCause":null},{"line":5751,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":1340,"asyncParent":0,"asyncCause":null},{"line":12067,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/ Function","functionDisplayName":"anonymous","parent":1814,"asyncParent":0,"asyncCause":null},{"line":57,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"anonymous","parent":1814,"asyncParent":0,"asyncCause":null},{"line":4495,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4508,"column":115,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4508,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4412,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":1819,"asyncParent":0,"asyncCause":null},{"line":14178,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":1820,"asyncParent":0,"asyncCause":null},{"line":14166,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceOffsetBuffer","parent":1821,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":1822,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":4512,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4445,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":1826,"asyncParent":0,"asyncCause":null},{"line":4495,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":14180,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":1820,"asyncParent":0,"asyncCause":null},{"line":14174,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getColorBuffer","parent":1829,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":1830,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":4503,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":4508,"column":61,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":14179,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uploadToGPU","parent":1820,"asyncParent":0,"asyncCause":null},{"line":14170,"column":71,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceSizeBuffer","parent":1835,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":1836,"asyncParent":0,"asyncCause":null},{"line":6180,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":4495,"column":59,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1841,"asyncParent":0,"asyncCause":null},{"line":4484,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":14924,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRectangleBatch","parent":1843,"asyncParent":0,"asyncCause":null},{"line":14156,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":1844,"asyncParent":0,"asyncCause":null},{"line":14157,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":1844,"asyncParent":0,"asyncCause":null},{"line":4411,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeLeafNode","parent":1819,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":4508,"column":77,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1841,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1840,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":14155,"column":35,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RectangleBatch","parent":1844,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1823,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1858,"asyncParent":0,"asyncCause":null},{"line":4445,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":1860,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":1861,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":1862,"asyncParent":0,"asyncCause":null},{"line":4453,"column":73,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":4453,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":6033,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":1858,"asyncParent":0,"asyncCause":null},{"line":6246,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":4453,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"RangeTreeInteriorNode","parent":1825,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1831,"asyncParent":0,"asyncCause":null},{"line":4480,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartRenderer","parent":1217,"asyncParent":0,"asyncCause":null},{"line":6253,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":1837,"asyncParent":0,"asyncCause":null},{"line":16295,"column":181,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":46,"asyncParent":0,"asyncCause":null},{"line":3234,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"css","parent":1872,"asyncParent":0,"asyncCause":null},{"line":3025,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectAndGetClassName","parent":1873,"asyncParent":0,"asyncCause":null},{"line":2919,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"injectStyleOnce","parent":1874,"asyncParent":0,"asyncCause":null},{"line":2513,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":1875,"asyncParent":0,"asyncCause":null},{"line":2207,"column":25,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"addStyleType","parent":1876,"asyncParent":0,"asyncCause":null},{"line":2162,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"set","parent":1877,"asyncParent":0,"asyncCause":null},{"line":2115,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"OrderedElements","parent":1878,"asyncParent":0,"asyncCause":null},{"line":2520,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS","parent":1875,"asyncParent":0,"asyncCause":null},{"line":2125,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEach","parent":1880,"asyncParent":0,"asyncCause":null},{"line":2523,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS/<","parent":1881,"asyncParent":0,"asyncCause":null},{"line":222,"column":1,"source":"self-hosted","functionDisplayName":"some","parent":1882,"asyncParent":0,"asyncCause":null},{"line":2524,"column":26,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"generateCSS/ Function","functionDisplayName":"scope","parent":2049,"asyncParent":0,"asyncCause":null},{"line":14835,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame/<","parent":2050,"asyncParent":0,"asyncCause":null},{"line":14835,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame/<","parent":2050,"asyncParent":0,"asyncCause":null},{"line":14840,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame","parent":2047,"asyncParent":0,"asyncCause":null},{"line":15185,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartMinimapView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15392,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15327,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2055,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2056,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2057,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2058,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2057,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2060,"asyncParent":0,"asyncCause":null},{"line":15414,"column":45,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":3344,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cachedMeasureTextWidth","parent":2062,"asyncParent":0,"asyncCause":null},{"line":15412,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15571,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15887,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2065,"asyncParent":0,"asyncCause":null},{"line":15877,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"updateConfigSpaceViewport","parent":2066,"asyncParent":0,"asyncCause":null},{"line":15702,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setConfigSpaceViewportRect","parent":2067,"asyncParent":0,"asyncCause":null},{"line":16017,"column":139,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartView/this.setConfigSpaceViewportRect","parent":2068,"asyncParent":0,"asyncCause":null},{"line":528,"column":2,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"idiff","parent":1931,"asyncParent":0,"asyncCause":null},{"line":673,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"diffAttributes","parent":2070,"asyncParent":0,"asyncCause":null},{"line":15184,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartMinimapView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15342,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2072,"asyncParent":0,"asyncCause":null},{"line":15342,"column":35,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2072,"asyncParent":0,"asyncCause":null},{"line":14927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createTextureCachedRenderer","parent":2074,"asyncParent":0,"asyncCause":null},{"line":14510,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"TextureCachedRenderer","parent":2075,"asyncParent":0,"asyncCause":null},{"line":9238,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":2076,"asyncParent":0,"asyncCause":null},{"line":9080,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"reglFramebuffer","parent":2077,"asyncParent":0,"asyncCause":null},{"line":292,"column":13,"source":"self-hosted","functionDisplayName":"map","parent":2078,"asyncParent":0,"asyncCause":null},{"line":686,"column":20,"source":"self-hosted","functionDisplayName":"ArraySpeciesCreate","parent":2079,"asyncParent":0,"asyncCause":null},{"line":9128,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"reglFramebuffer","parent":2077,"asyncParent":0,"asyncCause":null},{"line":8802,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"allocAttachment","parent":2081,"asyncParent":0,"asyncCause":null},{"line":8420,"column":45,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRenderbuffer","parent":2082,"asyncParent":0,"asyncCause":null},{"line":8420,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createRenderbuffer","parent":2082,"asyncParent":0,"asyncCause":null},{"line":8398,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLRenderbuffer","parent":2084,"asyncParent":0,"asyncCause":null},{"line":9240,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createFBO","parent":2076,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":2086,"asyncParent":0,"asyncCause":null},{"line":14511,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"TextureCachedRenderer","parent":2075,"asyncParent":0,"asyncCause":null},{"line":13861,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":2088,"asyncParent":0,"asyncCause":null},{"line":13845,"column":11,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":2089,"asyncParent":0,"asyncCause":null},{"line":13864,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":2088,"asyncParent":0,"asyncCause":null},{"line":13854,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"separateDynamic","parent":2091,"asyncParent":0,"asyncCause":null},{"line":13872,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileProcedure","parent":2088,"asyncParent":0,"asyncCause":null},{"line":13266,"column":15,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":10502,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":2094,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2095,"asyncParent":0,"asyncCause":null},{"line":10503,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":2096,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2097,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":2098,"asyncParent":0,"asyncCause":null},{"line":10523,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment","parent":2094,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2100,"asyncParent":0,"asyncCause":null},{"line":10525,"column":30,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":2101,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2102,"asyncParent":0,"asyncCause":null},{"line":10526,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createREGLEnvironment/<","parent":2101,"asyncParent":0,"asyncCause":null},{"line":9909,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2104,"asyncParent":0,"asyncCause":null},{"line":9866,"column":10,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"slice","parent":2105,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2104,"asyncParent":0,"asyncCause":null},{"line":13272,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":13275,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2109,"asyncParent":0,"asyncCause":null},{"line":13276,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand/<","parent":2110,"asyncParent":0,"asyncCause":null},{"line":13239,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"splatObject","parent":2111,"asyncParent":0,"asyncCause":null},{"line":13279,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":11945,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":2113,"asyncParent":0,"asyncCause":null},{"line":11124,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState","parent":2114,"asyncParent":0,"asyncCause":null},{"line":11126,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState","parent":2114,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2116,"asyncParent":0,"asyncCause":null},{"line":11129,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11159,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11377,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11130,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseParam","parent":2120,"asyncParent":0,"asyncCause":null},{"line":11418,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseGLState/<","parent":2117,"asyncParent":0,"asyncCause":null},{"line":11970,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseArguments","parent":2113,"asyncParent":0,"asyncCause":null},{"line":11891,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"parseContext","parent":2123,"asyncParent":0,"asyncCause":null},{"line":13281,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"compileCommand","parent":2093,"asyncParent":0,"asyncCause":null},{"line":12891,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":2125,"asyncParent":0,"asyncCause":null},{"line":10002,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"proc","parent":2126,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2127,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2128,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2127,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2130,"asyncParent":0,"asyncCause":null},{"line":12895,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":2125,"asyncParent":0,"asyncCause":null},{"line":11991,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitContext","parent":2132,"asyncParent":0,"asyncCause":null},{"line":9938,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope/<","parent":2133,"asyncParent":0,"asyncCause":null},{"line":12898,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitDrawProc","parent":2125,"asyncParent":0,"asyncCause":null},{"line":12054,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":2135,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2136,"asyncParent":0,"asyncCause":null},{"line":9934,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2137,"asyncParent":0,"asyncCause":null},{"line":12056,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState","parent":2135,"asyncParent":0,"asyncCause":null},{"line":271,"column":13,"source":"self-hosted","functionDisplayName":"forEach","parent":2139,"asyncParent":0,"asyncCause":null},{"line":12079,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":9955,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2141,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2141,"asyncParent":0,"asyncCause":null},{"line":9945,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2143,"asyncParent":0,"asyncCause":null},{"line":9949,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2143,"asyncParent":0,"asyncCause":null},{"line":12083,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2146,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2147,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2148,"asyncParent":0,"asyncCause":null},{"line":9940,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2147,"asyncParent":0,"asyncCause":null},{"line":9958,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2146,"asyncParent":0,"asyncCause":null},{"line":9929,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2151,"asyncParent":0,"asyncCause":null},{"line":9898,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2152,"asyncParent":0,"asyncCause":null},{"line":9972,"column":7,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2146,"asyncParent":0,"asyncCause":null},{"line":12078,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":9903,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"def","parent":2155,"asyncParent":0,"asyncCause":null},{"line":9957,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"conditional","parent":2141,"asyncParent":0,"asyncCause":null},{"line":9940,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2157,"asyncParent":0,"asyncCause":null},{"line":9938,"column":12,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2157,"asyncParent":0,"asyncCause":null},{"line":4644,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"extend","parent":2159,"asyncParent":0,"asyncCause":null},{"line":9928,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scope","parent":2143,"asyncParent":0,"asyncCause":null},{"line":9897,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"block","parent":2161,"asyncParent":0,"asyncCause":null},{"line":12066,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/<","parent":2140,"asyncParent":0,"asyncCause":null},{"line":5749,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":2163,"asyncParent":0,"asyncCause":null},{"line":5751,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"loop","parent":2163,"asyncParent":0,"asyncCause":null},{"line":12067,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"emitPollState/ Function","functionDisplayName":"scope","parent":2634,"asyncParent":0,"asyncCause":null},{"line":15369,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":15367,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":4558,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2638,"asyncParent":0,"asyncCause":null},{"line":4557,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4519,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2640,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2638,"asyncParent":0,"asyncCause":null},{"line":4521,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2640,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2638,"asyncParent":0,"asyncCause":null},{"line":4557,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4567,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4371,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded","parent":2646,"asyncParent":0,"asyncCause":null},{"line":13894,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2647,"asyncParent":0,"asyncCause":null},{"line":391,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2648,"asyncParent":0,"asyncCause":null},{"line":4381,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":14915,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawRectangleBatch","parent":2650,"asyncParent":0,"asyncCause":null},{"line":14301,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2651,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2652,"asyncParent":0,"asyncCause":null},{"line":406,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14271,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"color","parent":2654,"asyncParent":0,"asyncCause":null},{"line":14174,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getColorBuffer","parent":2655,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":2656,"asyncParent":0,"asyncCause":null},{"line":6177,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":2657,"asyncParent":0,"asyncCause":null},{"line":6023,"column":19,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLBuffer","parent":2658,"asyncParent":0,"asyncCause":null},{"line":493,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14253,"column":33,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceOffset","parent":2660,"asyncParent":0,"asyncCause":null},{"line":14166,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getConfigSpaceOffsetBuffer","parent":2661,"asyncParent":0,"asyncCause":null},{"line":14087,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buffer","parent":2662,"asyncParent":0,"asyncCause":null},{"line":6324,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"createBuffer","parent":2663,"asyncParent":0,"asyncCause":null},{"line":599,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14283,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2666,"asyncParent":0,"asyncCause":null},{"line":4379,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":4361,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"allocateLine","parent":2668,"asyncParent":0,"asyncCause":null},{"line":4277,"column":44,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"insert","parent":2669,"asyncParent":0,"asyncCause":null},{"line":14281,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2671,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2672,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2671,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2674,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2675,"asyncParent":0,"asyncCause":null},{"line":14270,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"color","parent":2654,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2666,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2678,"asyncParent":0,"asyncCause":null},{"line":4386,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":4569,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2680,"asyncParent":0,"asyncCause":null},{"line":4467,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2681,"asyncParent":0,"asyncCause":null},{"line":4431,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2682,"asyncParent":0,"asyncCause":null},{"line":4570,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/ Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14283,"column":145,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":14283,"column":145,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3912,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"dividedByPointwise","parent":2690,"asyncParent":0,"asyncCause":null},{"line":4466,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2681,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":2692,"asyncParent":0,"asyncCause":null},{"line":14281,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2694,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2695,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2696,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2697,"asyncParent":0,"asyncCause":null},{"line":14284,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2699,"asyncParent":0,"asyncCause":null},{"line":14283,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2701,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2702,"asyncParent":0,"asyncCause":null},{"line":4380,"column":53,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":4380,"column":78,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2674,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2706,"asyncParent":0,"asyncCause":null},{"line":14283,"column":82,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":4568,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2680,"asyncParent":0,"asyncCause":null},{"line":4568,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2680,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2710,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2695,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2712,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2713,"asyncParent":0,"asyncCause":null},{"line":14284,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2715,"asyncParent":0,"asyncCause":null},{"line":4466,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"forEachLeafNodeWithinBounds","parent":2681,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":2717,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":2718,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":2719,"asyncParent":0,"asyncCause":null},{"line":319,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14261,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceSize","parent":2721,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2694,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2723,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2710,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2695,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2726,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2699,"asyncParent":0,"asyncCause":null},{"line":14252,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceOffset","parent":2660,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2694,"asyncParent":0,"asyncCause":null},{"line":406,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14270,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"color","parent":2731,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2712,"asyncParent":0,"asyncCause":null},{"line":3912,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"dividedByPointwise","parent":2689,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2701,"asyncParent":0,"asyncCause":null},{"line":14283,"column":112,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2736,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2737,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2671,"asyncParent":0,"asyncCause":null},{"line":4278,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"insert","parent":2669,"asyncParent":0,"asyncCause":null},{"line":14283,"column":82,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":14282,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":14282,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2688,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2696,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2706,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2715,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2707,"asyncParent":0,"asyncCause":null},{"line":493,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2687,"asyncParent":0,"asyncCause":null},{"line":14252,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceOffset","parent":2748,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2674,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2750,"asyncParent":0,"asyncCause":null},{"line":4380,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":319,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2653,"asyncParent":0,"asyncCause":null},{"line":14261,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceSize","parent":2753,"asyncParent":0,"asyncCause":null},{"line":14283,"column":112,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToNDC","parent":2665,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2755,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2756,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2710,"asyncParent":0,"asyncCause":null},{"line":4372,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":2649,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":2759,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2676,"asyncParent":0,"asyncCause":null},{"line":4580,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":9249,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"use","parent":2762,"asyncParent":0,"asyncCause":null},{"line":13907,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2763,"asyncParent":0,"asyncCause":null},{"line":397,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2764,"asyncParent":0,"asyncCause":null},{"line":4583,"column":38,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2766,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2767,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2768,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2769,"asyncParent":0,"asyncCause":null},{"line":4587,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":4398,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":14918,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawTexture","parent":2772,"asyncParent":0,"asyncCause":null},{"line":14491,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2773,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2774,"asyncParent":0,"asyncCause":null},{"line":359,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2775,"asyncParent":0,"asyncCause":null},{"line":14474,"column":174,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2777,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2778,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2779,"asyncParent":0,"asyncCause":null},{"line":14474,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2781,"asyncParent":0,"asyncCause":null},{"line":369,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2775,"asyncParent":0,"asyncCause":null},{"line":14481,"column":106,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2784,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2785,"asyncParent":0,"asyncCause":null},{"line":14481,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2787,"asyncParent":0,"asyncCause":null},{"line":14482,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":2790,"asyncParent":0,"asyncCause":null},{"line":4586,"column":44,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2792,"asyncParent":0,"asyncCause":null},{"line":4395,"column":45,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":14474,"column":110,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2795,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2796,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2787,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2799,"asyncParent":0,"asyncCause":null},{"line":14483,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2801,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2802,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2803,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2804,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2792,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2807,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2802,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2809,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2801,"asyncParent":0,"asyncCause":null},{"line":14475,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2813,"asyncParent":0,"asyncCause":null},{"line":14474,"column":81,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2780,"asyncParent":0,"asyncCause":null},{"line":14474,"column":244,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":14480,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2798,"asyncParent":0,"asyncCause":null},{"line":14476,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2820,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2821,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2822,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2785,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2824,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2822,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2821,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2828,"asyncParent":0,"asyncCause":null},{"line":14474,"column":143,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":14474,"column":210,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2776,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2778,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2832,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2834,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2821,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2803,"asyncParent":0,"asyncCause":null},{"line":14481,"column":142,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2786,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2778,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2840,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2820,"asyncParent":0,"asyncCause":null},{"line":4585,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":2843,"asyncParent":0,"asyncCause":null},{"line":4587,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2765,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2845,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2846,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2820,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2802,"asyncParent":0,"asyncCause":null},{"line":4395,"column":70,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2784,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2851,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2824,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2845,"asyncParent":0,"asyncCause":null},{"line":4395,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2771,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2827,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2785,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2857,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":2859,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2789,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2849,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2801,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2784,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2829,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2836,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2833,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":2868,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2777,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2870,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2779,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2820,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2873,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2809,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2845,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2876,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2792,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2832,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2781,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2777,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2857,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2882,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2880,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2812,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":2885,"asyncParent":0,"asyncCause":null},{"line":3991,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2828,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2801,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2888,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2779,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2875,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2781,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2857,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2787,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2828,"asyncParent":0,"asyncCause":null},{"line":4604,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":14921,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawFlamechartColorPass","parent":2896,"asyncParent":0,"asyncCause":null},{"line":14808,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2897,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2898,"asyncParent":0,"asyncCause":null},{"line":362,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2899,"asyncParent":0,"asyncCause":null},{"line":14789,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2900,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2901,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2902,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2903,"asyncParent":0,"asyncCause":null},{"line":375,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2899,"asyncParent":0,"asyncCause":null},{"line":14802,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2905,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2906,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2907,"asyncParent":0,"asyncCause":null},{"line":15374,"column":49,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":15327,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2909,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2910,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2911,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2910,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2913,"asyncParent":0,"asyncCause":null},{"line":15384,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15327,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2915,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2916,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2917,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2918,"asyncParent":0,"asyncCause":null},{"line":15386,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":15323,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceSize","parent":2920,"asyncParent":0,"asyncCause":null},{"line":15889,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects","parent":2065,"asyncParent":0,"asyncCause":null},{"line":14933,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderInto","parent":2922,"asyncParent":0,"asyncCause":null},{"line":14935,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderInto","parent":2922,"asyncParent":0,"asyncCause":null},{"line":13907,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2924,"asyncParent":0,"asyncCause":null},{"line":395,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2925,"asyncParent":0,"asyncCause":null},{"line":15890,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2926,"asyncParent":0,"asyncCause":null},{"line":4535,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2928,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2929,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2930,"asyncParent":0,"asyncCause":null},{"line":4542,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2932,"asyncParent":0,"asyncCause":null},{"line":4558,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2934,"asyncParent":0,"asyncCause":null},{"line":4557,"column":23,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2934,"asyncParent":0,"asyncCause":null},{"line":4557,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4519,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2938,"asyncParent":0,"asyncCause":null},{"line":4521,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getOrInsertKey","parent":2938,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2934,"asyncParent":0,"asyncCause":null},{"line":4580,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":9249,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"use","parent":2942,"asyncParent":0,"asyncCause":null},{"line":13907,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2943,"asyncParent":0,"asyncCause":null},{"line":397,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":2944,"asyncParent":0,"asyncCause":null},{"line":4583,"column":38,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2946,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2947,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2948,"asyncParent":0,"asyncCause":null},{"line":4587,"column":51,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2950,"asyncParent":0,"asyncCause":null},{"line":4587,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":4398,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2952,"asyncParent":0,"asyncCause":null},{"line":14918,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawTexture","parent":2953,"asyncParent":0,"asyncCause":null},{"line":14491,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2954,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":2955,"asyncParent":0,"asyncCause":null},{"line":359,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2956,"asyncParent":0,"asyncCause":null},{"line":14474,"column":174,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2958,"asyncParent":0,"asyncCause":null},{"line":14475,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2961,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2950,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":2963,"asyncParent":0,"asyncCause":null},{"line":14474,"column":81,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2958,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2966,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2967,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2966,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2969,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2970,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2969,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":2973,"asyncParent":0,"asyncCause":null},{"line":14476,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2975,"asyncParent":0,"asyncCause":null},{"line":369,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":2956,"asyncParent":0,"asyncCause":null},{"line":14482,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2978,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":2979,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2975,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2981,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2982,"asyncParent":0,"asyncCause":null},{"line":14481,"column":106,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2984,"asyncParent":0,"asyncCause":null},{"line":4395,"column":70,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2952,"asyncParent":0,"asyncCause":null},{"line":14474,"column":110,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2987,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2988,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2984,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2990,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2984,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2992,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2993,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2994,"asyncParent":0,"asyncCause":null},{"line":4586,"column":44,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":4527,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2996,"asyncParent":0,"asyncCause":null},{"line":14474,"column":244,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":14481,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2999,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":14483,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3002,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3002,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":3004,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3005,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2981,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3007,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2993,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3004,"asyncParent":0,"asyncCause":null},{"line":3970,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3010,"asyncParent":0,"asyncCause":null},{"line":14474,"column":143,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3005,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2978,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":3004,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3015,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2966,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3017,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3018,"asyncParent":0,"asyncCause":null},{"line":4056,"column":62,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":3927,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"abs","parent":3020,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3015,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2975,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3023,"asyncParent":0,"asyncCause":null},{"line":14481,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":14474,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3026,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2992,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3028,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3029,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3007,"asyncParent":0,"asyncCause":null},{"line":3955,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3031,"asyncParent":0,"asyncCause":null},{"line":14481,"column":142,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":4606,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4604,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":14921,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawFlamechartColorPass","parent":3035,"asyncParent":0,"asyncCause":null},{"line":14808,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":3036,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":3037,"asyncParent":0,"asyncCause":null},{"line":359,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":3038,"asyncParent":0,"asyncCause":null},{"line":14795,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvSpacePixelSize","parent":3039,"asyncParent":0,"asyncCause":null},{"line":3936,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":3040,"asyncParent":0,"asyncCause":null},{"line":362,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":3038,"asyncParent":0,"asyncCause":null},{"line":14789,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":3042,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3043,"asyncParent":0,"asyncCause":null},{"line":375,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":3038,"asyncParent":0,"asyncCause":null},{"line":14800,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":3045,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3046,"asyncParent":0,"asyncCause":null},{"line":14801,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":3045,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3048,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":3049,"asyncParent":0,"asyncCause":null},{"line":15572,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onBeforeFrame","parent":2053,"asyncParent":0,"asyncCause":null},{"line":15762,"column":46,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":4038,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"inverseTransformVector","parent":3052,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":3053,"asyncParent":0,"asyncCause":null},{"line":15790,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":15774,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3055,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3056,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3055,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3058,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3055,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15781,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":4111,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withOrigin","parent":3064,"asyncParent":0,"asyncCause":null},{"line":4114,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withSize","parent":3064,"asyncParent":0,"asyncCause":null},{"line":15782,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15512,"column":11,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3067,"asyncParent":0,"asyncCause":null},{"line":15774,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3069,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3070,"asyncParent":0,"asyncCause":null},{"line":15512,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3067,"asyncParent":0,"asyncCause":null},{"line":15499,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"binarySearch","parent":3072,"asyncParent":0,"asyncCause":null},{"line":15513,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":null,"parent":3073,"asyncParent":0,"asyncCause":null},{"line":3344,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cachedMeasureTextWidth","parent":3074,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3078,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15782,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15512,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3082,"asyncParent":0,"asyncCause":null},{"line":15499,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"binarySearch","parent":3083,"asyncParent":0,"asyncCause":null},{"line":15513,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":null,"parent":3084,"asyncParent":0,"asyncCause":null},{"line":3344,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cachedMeasureTextWidth","parent":3085,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15774,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3089,"asyncParent":0,"asyncCause":null},{"line":4058,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3090,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3089,"asyncParent":0,"asyncCause":null},{"line":15781,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":4114,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withSize","parent":3093,"asyncParent":0,"asyncCause":null},{"line":15786,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":15768,"column":55,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3095,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3095,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3098,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3095,"asyncParent":0,"asyncCause":null},{"line":15768,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15768,"column":92,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15785,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3103,"asyncParent":0,"asyncCause":null},{"line":15766,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":14845,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"CanvasContext/this.onBeforeFrame","parent":2047,"asyncParent":0,"asyncCause":null},{"line":13983,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"cancel","parent":3106,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":null,"column":null,"source":null,"functionDisplayName":null,"parent":0,"asyncParent":0,"asyncCause":null},{"line":15616,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onMouseMove","parent":1,"asyncParent":0,"asyncCause":null},{"line":15920,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"updateCursor","parent":3118,"asyncParent":0,"asyncCause":null},{"line":15643,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onMouseMove","parent":1,"asyncParent":0,"asyncCause":null},{"line":15639,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setHoveredLabel","parent":3120,"asyncParent":0,"asyncCause":null},{"line":15629,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setHoveredLabel","parent":3121,"asyncParent":0,"asyncCause":null},{"line":15629,"column":59,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setHoveredLabel","parent":3121,"asyncParent":0,"asyncCause":null},{"line":15638,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setHoveredLabel","parent":3120,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3124,"asyncParent":0,"asyncCause":null},{"line":15629,"column":96,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setHoveredLabel","parent":3121,"asyncParent":0,"asyncCause":null},{"line":15648,"column":17,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onMouseMove","parent":1,"asyncParent":0,"asyncCause":null},{"line":16027,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartView/this.onNodeHover","parent":3127,"asyncParent":0,"asyncCause":null},{"line":1036,"column":3,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setState","parent":3128,"asyncParent":0,"asyncCause":null},{"line":239,"column":4,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"enqueueRender","parent":3129,"asyncParent":0,"asyncCause":null},{"line":991,"column":17,"source":"self-hosted","functionDisplayName":"then","parent":3130,"asyncParent":0,"asyncCause":null},{"line":14933,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderInto","parent":2631,"asyncParent":0,"asyncCause":null},{"line":14934,"column":142,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderInto","parent":2631,"asyncParent":0,"asyncCause":null},{"line":15368,"column":53,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":15369,"column":107,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":15320,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"minimapOrigin","parent":3135,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2767,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3137,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2836,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2786,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2825,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2840,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2803,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2824,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2849,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2822,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2809,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2780,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2827,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2832,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2804,"asyncParent":0,"asyncCause":null},{"line":14481,"column":76,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2783,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2829,"asyncParent":0,"asyncCause":null},{"line":4606,"column":56,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":14787,"column":174,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2900,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3155,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3156,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3157,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2902,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3159,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2902,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3161,"asyncParent":0,"asyncCause":null},{"line":3961,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"scaledBy","parent":2907,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3163,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2918,"asyncParent":0,"asyncCause":null},{"line":15327,"column":68,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2055,"asyncParent":0,"asyncCause":null},{"line":4567,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4371,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded","parent":3167,"asyncParent":0,"asyncCause":null},{"line":13894,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":3168,"asyncParent":0,"asyncCause":null},{"line":391,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"scope","parent":3169,"asyncParent":0,"asyncCause":null},{"line":4372,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"writeToAtlasIfNeeded/<","parent":3170,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3171,"asyncParent":0,"asyncCause":null},{"line":4527,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2996,"asyncParent":0,"asyncCause":null},{"line":4395,"column":45,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2952,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3026,"asyncParent":0,"asyncCause":null},{"line":4585,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render/<","parent":2945,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3176,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":3002,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2950,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3179,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2975,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2978,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3182,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2967,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3028,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2982,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3186,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":2999,"asyncParent":0,"asyncCause":null},{"line":3982,"column":48,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3002,"asyncParent":0,"asyncCause":null},{"line":3906,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3189,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2970,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2960,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":3192,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2981,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3194,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2978,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":3196,"asyncParent":0,"asyncCause":null},{"line":4527,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceBoundsForKey","parent":2996,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3013,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3027,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3031,"asyncParent":0,"asyncCause":null},{"line":4395,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderViaAtlas","parent":2952,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":2978,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":3203,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3022,"asyncParent":0,"asyncCause":null},{"line":14795,"column":64,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvSpacePixelSize","parent":3039,"asyncParent":0,"asyncCause":null},{"line":14787,"column":110,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":3042,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3207,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3208,"asyncParent":0,"asyncCause":null},{"line":14788,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":3042,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3210,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3211,"asyncParent":0,"asyncCause":null},{"line":14800,"column":106,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":3045,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3213,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3214,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3215,"asyncParent":0,"asyncCause":null},{"line":15737,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":15781,"column":128,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":3903,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"minus","parent":3218,"asyncParent":0,"asyncCause":null},{"line":15512,"column":11,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3082,"asyncParent":0,"asyncCause":null},{"line":15781,"column":70,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":3900,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"plus","parent":3221,"asyncParent":0,"asyncCause":null},{"line":15781,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":4111,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withOrigin","parent":3223,"asyncParent":0,"asyncCause":null},{"line":15782,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3089,"asyncParent":0,"asyncCause":null},{"line":15512,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3225,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":3226,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":3227,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":3228,"asyncParent":0,"asyncCause":null},{"line":15834,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":15847,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderTimeIndicators","parent":3230,"asyncParent":0,"asyncCause":null},{"line":15711,"column":104,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":3231,"asyncParent":0,"asyncCause":null},{"line":15711,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":3231,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3233,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3234,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3235,"asyncParent":0,"asyncCause":null},{"line":15862,"column":75,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderTimeIndicators","parent":3230,"asyncParent":0,"asyncCause":null},{"line":921,"column":14,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"buildComponentFromVNode","parent":43,"asyncParent":0,"asyncCause":null},{"line":289,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"getNodeProps","parent":3238,"asyncParent":0,"asyncCause":null},{"line":15642,"column":31,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"FlamechartPanZoomView/this.onMouseMove","parent":1,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":3240,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":3241,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":3242,"asyncParent":0,"asyncCause":null},{"line":15632,"column":21,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"setHoveredLabel","parent":3121,"asyncParent":0,"asyncCause":null},{"line":4123,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"contains","parent":3244,"asyncParent":0,"asyncCause":null},{"line":4120,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"distanceFrom","parent":3245,"asyncParent":0,"asyncCause":null},{"line":4117,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"closestPointTo","parent":3246,"asyncParent":0,"asyncCause":null},{"line":4543,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2637,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3248,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":3249,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2875,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2882,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2798,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2880,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2796,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2833,"asyncParent":0,"asyncCause":null},{"line":3982,"column":80,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":2901,"asyncParent":0,"asyncCause":null},{"line":14801,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2905,"asyncParent":0,"asyncCause":null},{"line":4056,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3258,"asyncParent":0,"asyncCause":null},{"line":3897,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withY","parent":3259,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":2907,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3261,"asyncParent":0,"asyncCause":null},{"line":15327,"column":68,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2915,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2917,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3264,"asyncParent":0,"asyncCause":null},{"line":15412,"column":40,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":2054,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3266,"asyncParent":0,"asyncCause":null},{"line":4530,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4543,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3269,"asyncParent":0,"asyncCause":null},{"line":4033,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":3270,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":2994,"asyncParent":0,"asyncCause":null},{"line":14474,"column":210,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2957,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3018,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3043,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":3275,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3276,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3277,"asyncParent":0,"asyncCause":null},{"line":15765,"column":29,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":15511,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3067,"asyncParent":0,"asyncCause":null},{"line":4059,"column":5,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3069,"asyncParent":0,"asyncCause":null},{"line":15766,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3076,"asyncParent":0,"asyncCause":null},{"line":15766,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3095,"asyncParent":0,"asyncCause":null},{"line":15766,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3087,"asyncParent":0,"asyncCause":null},{"line":15796,"column":15,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":15841,"column":34,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderTimeIndicators","parent":3230,"asyncParent":0,"asyncCause":null},{"line":15711,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":3286,"asyncParent":0,"asyncCause":null},{"line":3982,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"betweenRects","parent":3287,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":3288,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3289,"asyncParent":0,"asyncCause":null},{"line":3979,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"translatedBy","parent":3234,"asyncParent":0,"asyncCause":null},{"line":3973,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3291,"asyncParent":0,"asyncCause":null},{"line":3966,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withTranslation","parent":3292,"asyncParent":0,"asyncCause":null},{"line":16088,"column":183,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":5,"asyncParent":0,"asyncCause":null},{"line":545,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"innerDiffNode","parent":41,"asyncParent":0,"asyncCause":null},{"line":14934,"column":32,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderInto","parent":2631,"asyncParent":0,"asyncCause":null},{"line":14788,"column":36,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"uvTransform","parent":2900,"asyncParent":0,"asyncCause":null},{"line":4056,"column":20,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3297,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":2901,"asyncParent":0,"asyncCause":null},{"line":15372,"column":13,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderRects/<","parent":2635,"asyncParent":0,"asyncCause":null},{"line":14930,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"drawViewportRectangle","parent":3300,"asyncParent":0,"asyncCause":null},{"line":14414,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":3301,"asyncParent":0,"asyncCause":null},{"line":13918,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"REGLCommand","parent":3302,"asyncParent":0,"asyncCause":null},{"line":330,"column":6,"source":"http://localhost:1234/speedscope.3579db57.js line 10031 > Function","functionDisplayName":"draw","parent":3303,"asyncParent":0,"asyncCause":null},{"line":14391,"column":28,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":3304,"asyncParent":0,"asyncCause":null},{"line":4068,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"flatten","parent":3305,"asyncParent":0,"asyncCause":null},{"line":15327,"column":147,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2915,"asyncParent":0,"asyncCause":null},{"line":3903,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"minus","parent":3307,"asyncParent":0,"asyncCause":null},{"line":15327,"column":116,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"configSpaceToPhysicalViewSpace","parent":2055,"asyncParent":0,"asyncCause":null},{"line":4529,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"render","parent":2927,"asyncParent":0,"asyncCause":null},{"line":4050,"column":24,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3269,"asyncParent":0,"asyncCause":null},{"line":4041,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3311,"asyncParent":0,"asyncCause":null},{"line":14480,"column":42,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"positionTransform","parent":2977,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3000,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":2988,"asyncParent":0,"asyncCause":null},{"line":4040,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3182,"asyncParent":0,"asyncCause":null},{"line":15781,"column":70,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3060,"asyncParent":0,"asyncCause":null},{"line":3900,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"plus","parent":3317,"asyncParent":0,"asyncCause":null},{"line":591,"column":12,"source":"self-hosted","functionDisplayName":"values","parent":3072,"asyncParent":0,"asyncCause":null},{"line":543,"column":12,"source":"self-hosted","functionDisplayName":"CreateArrayIterator","parent":3319,"asyncParent":0,"asyncCause":null},{"line":536,"column":20,"source":"self-hosted","functionDisplayName":"CreateArrayIteratorAt","parent":3320,"asyncParent":0,"asyncCause":null},{"line":4114,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withSize","parent":3223,"asyncParent":0,"asyncCause":null},{"line":15781,"column":39,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3089,"asyncParent":0,"asyncCause":null},{"line":4111,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withOrigin","parent":3323,"asyncParent":0,"asyncCause":null},{"line":15774,"column":43,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":4049,"column":22,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformRect","parent":3325,"asyncParent":0,"asyncCause":null},{"line":4032,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformVector","parent":3326,"asyncParent":0,"asyncCause":null},{"line":15782,"column":37,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderFrameLabelAndChildren","parent":3092,"asyncParent":0,"asyncCause":null},{"line":15512,"column":18,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"trimTextMid","parent":3328,"asyncParent":0,"asyncCause":null},{"line":15497,"column":41,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"binarySearch","parent":3329,"asyncParent":0,"asyncCause":null},{"line":15830,"column":9,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderOverlays","parent":3051,"asyncParent":0,"asyncCause":null},{"line":551,"column":9,"source":"self-hosted","functionDisplayName":"next","parent":3331,"asyncParent":0,"asyncCause":null},{"line":3984,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"times","parent":3291,"asyncParent":0,"asyncCause":null},{"line":15847,"column":122,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderTimeIndicators","parent":3230,"asyncParent":0,"asyncCause":null},{"line":15714,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"logicalToPhysicalViewSpace","parent":3334,"asyncParent":0,"asyncCause":null},{"line":3958,"column":16,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3335,"asyncParent":0,"asyncCause":null},{"line":3951,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"withScale","parent":3336,"asyncParent":0,"asyncCause":null},{"line":15848,"column":64,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderTimeIndicators","parent":3230,"asyncParent":0,"asyncCause":null},{"line":15862,"column":40,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"renderTimeIndicators","parent":3230,"asyncParent":0,"asyncCause":null},{"line":4040,"column":1,"source":"http://localhost:1234/speedscope.3579db57.js","functionDisplayName":"transformPosition","parent":3339,"asyncParent":0,"asyncCause":null}],"sizes":[64,64,64,64,64,48,64,64,96,64,96,48,48,96,96,64,48,96,96,48,96,96,96,96,64,96,96,96,96,32,96,32,32,48,96,32,32,96,32,128,48,96,96,96,32,96,48,128,32,128,96,64,96,96,64,48,64,96,64,96,96,96,96,32,128,32,96,96,64,96,96,96,32,64,96,96,96,96,32,32,96,32,96,64,32,32,32,96,32,32,96,32,32,32,32,96,32,96,32,32,32,32,96,32,32,96,96,96,224,96,96,32,224,32,48,96,32,32,96,96,48,96,96,96,224,32,96,32,32,96,32,32,32,96,32,96,224,224,32,32,96,96,96,96,224,96,96,224,96,96,96,96,96,224,224,96,96,32,32,32,224,96,96,96,224,32,96,96,32,224,96,32,224,32,96,96,224,32,96,32,224,32,32,224,224,96,96,32,32,224,32,96,224,32,96,224,32,224,32,32,96,32,96,32,32,224,32,32,32,32,96,224,32,96,32,224,32,224,32,32,32,96,224,224,224,96,96,32,224,32,224,96,64,32,96,32,224,32,96,96,32,224,32,96,96,224,32,96,32,32,32,32,64,48,224,32,32,128,32,32,96,96,224,96,96,224,224,224,96,96,224,32,224,32,32,224,32,224,96,32,96,32,48,128,224,32,224,96,32,96,96,96,224,48,96,32,224,224,32,32,48,96,32,32,96,96,32,224,224,32,32,224,32,96,96,96,224,32,96,224,32,32,32,96,224,32,96,32,32,32,32,224,224,96,96,32,96,224,96,32,96,96,224,32,32,32,48,32,224,96,224,224,224,32,224,96,224,96,32,32,224,96,32,96,32,32,32,96,96,224,32,32,96,32,96,32,96,32,96,32,32,96,96,96,32,96,96,96,32,96,96,32,96,32,224,96,224,224,224,96,224,32,224,224,224,96,224,96,32,96,96,96,32,224,224,96,224,96,96,96,32,224,224,32,224,224,32,96,96,96,32,32,224,32,224,96,96,32,32,96,96,32,224,96,224,32,32,32,96,32,96,96,96,96,32,96,96,32,32,224,96,224,32,32,32,32,32,96,32,96,32,96,96,96,96,96,224,96,96,224,224,224,32,96,224,32,224,96,32,96,96,96,32,32,32,32,96,32,224,96,224,32,32,224,32,224,32,128,96,32,224,96,32,96,32,224,224,224,224,224,96,96,224,32,32,32,32,32,96,32,96,128,128,32,96,32,32,224,32,32,224,96,32,96,96,32,96,224,32,224,224,32,96,32,224,32,224,32,224,96,32,96,224,32,224,224,96,224,32,96,32,224,96,224,32,96,96,224,96,224,32,224,96,224,96,224,96,96,48,32,32,224,96,96,224,96,224,96,32,32,96,32,96,96,224,32,96,96,48,96,224,32,32,32,224,96,32,224,32,32,32,32,96,96,96,32,32,224,32,224,224,32,224,32,32,96,32,224,32,96,32,96,224,96,224,224,224,32,224,224,32,32,48,48,32,32,32,96,96,224,224,96,96,224,32,64,32,96,64,96,96,32,96,48,48,96,48,32,32,96,32,32,32,32,32,96,96,96,32,96,96,96,96,96,32,32,96,32,48,48,96,96,32,32,96,96,32,96,32,32,96,96,96,32,32,96,32,32,96,96,96,96,96,96,96,32,96,96,96,96,32,32,32,96,96,96,32,32,96,64,32,64,96,48,96,32,96,96,96,96,32,48,48,96,96,32,32,96,32,64,96,48,96,32,96,96,32,96,32,48,128,96,96,32,32,32,96,96,32,96,32,96,32,96,32,96,96,32,48,32,96,32,32,96,32,96,96,96,96,32,128,32,32,32,96,96,96,32,32,96,96,32,32,32,96,32,96,32,96,48,64,96,96,32,48,96,32,32,32,32,32,96,48,32,32,96,96,32,32,32,96,96,32,32,32,96,96,32,96,32,32,32,32,32,96,32,32,96,96,32,32,32,96,32,32,32,32,32,96,96,32,96,64,96,96,32,32,32,32,32,32,32,96,96,32,32,32,96,96,64,96,32,32,32,96,32,96,48,32,64,32,96,32,32,32,32,96,96,32,96,32,96,96,96,48,48,96,96,96,32,32,48,64,32,32,96,96,32,32,96,96,32,96,32,96,32,32,96,96,96,96,96,96,96,32,32,32,32,96,96,32,64,32,96,32,96,96,32,32,32,32,32,96,96,96,96,32,96,32,32,32,96,32,96,96,64,32,96,96,32,96,96,96,32,32,32,32,96,32,32,32,96,32,32,96,32,96,32,48,32,32,32,32,96,96,32,96,32,96,32,96,32,32,96,96,32,32,96,32,96,32,96,96,32,96,48,32,32,96,96,32,96,96,96,48,32,32,32,96,32,32,32,96,32,32,96,32,48,32,96,32,96,48,32,32,96,32,96,32,96,32,96,96,96,96,32,96,32,96,96,32,96,32,32,96,96,96,48,32,32,32,32,96,96,48,96,32,48,96,32,96,96,48,96,96,32,32,96,96,32,96,96,32,32,32,32,32,96,32,32,48,32,48,96,32,96,32,32,96,96,32,64,32,128,32,96,32,96,96,96,96,32,96,32,32,32,32,96,32,96,32,32,32,96,96,32,96,32,32,96,32,32,32,64,96,96,96,32,96,64,96,32,96,32,96,32,32,96,96,96,96,32,32,96,64,96,96,32,32,96,32,64,32,96,32,96,96,96,32,96,96,32,96,96,96,32,32,32,96,32,128,96,32,32,32,96,32,48,96,96,32,96,96,96,96,32,32,96,96,96,96,32,32,32,32,96,32,96,96,32,96,32,32,96,96,32,32,96,96,32,32,32,32,96,96,96,96,96,32,96,96,96,96,32,96,48,32,96,32,32,32,48,96,32,96,32,96,96,96,96,96,96,96,96,48,32,32,32,96,32,96,32,32,32,32,32,32,32,96,128,32,32,32,32,32,32,32,96,32,32,96,96,96,32,96,96,96,32,48,96,32,96,32,32,96,96,32,32,96,96,96,32,96,32,32,96,32,96,32,32,96,32,96,32,96,64,32,32,96,32,96,96,32,64,32,32,32,32,96,64,32,96,96,32,32,32,96,32,32,32,96,96,96,32,32,32,96,32,32,96,32,32,48,32,32,32,96,48,32,96,96,96,32,48,96,128,32,32,96,32,96,32,32,48,32,96,96,32,48,32,32,64,32,32,32,96,32,96,96,32,32,32,32,96,96,96,32,32,32,96,96,96,48,48,96,48,96,96,96,32,32,96,96,96,96,96,96,32,96,32,96,32,64,32,96,96,96,32,96,96,96,32,96,96,32,48,48,48,96,32,96,96,96,32,32,96,32,96,128,96,96,32,48,64,32,96,96,96,96,32,96,32,32,32,32,32,32,96,96,32,32,96,96,32,32,96,32,96,32,32,96,32,96,96,96,96,32,96,96,96,96,32,32,96,32,32,96,96,96,96,32,96,32,32,96,96,32,32,32,32,96,32,96,96,96,48,96,48,96,96,64,32,96,32,32,32,32,32,96,32,96,96,32,32,96,96,96,48,96,96,96,32,96,96,48,32,32,96,96,96,96,32,96,96,32,32,96,96,96,48,96,32,96,32,32,96,96,32,32,32,96,32,32,32,48,32,96,96,32,48,32,96,32,32,96,32,96,32,96,96,96,96,32,32,32,32,96,96,32,32,96,32,48,32,32,32,96,96,32,32,96,32,32,32,96,32,32,96,64,96,96,32,32,32,96,32,32,96,32,96,32,32,32,32,32,96,96,32,32,96,96,32,32,96,32,32,96,32,96,32,32,96,96,32,32,96,32,32,32,32,32,32,96,96,32,96,96,32,96,32,96,32,32,32,32,96,96,96,96,96,96,32,96,96,96,32,96,32,32,96,96,96,32,32,96,32,96,32,96,96,32,96,96,32,32,32,96,32,96,32,32,96,32,96,96,96,96,32,96,96,32,96,96,32,96,32,32,32,32,96,32,32,32,96,32,96,32,32,32,32,96,96,32,96,96,32,96,32,96,32,32,96,32,32,96,32,32,96,96,96,96,32,32,96,96,96,96,32,96,96,96,32,96,32,32,96,96,96,96,32,96,32,96,32,96,32,96,96,32,32,32,96,32,32,96,96,96,96,96,96,96,96,32,96,96,32,96,96,32,96,32,96,96,96,32,32,96,32,96,96,96,32,32,32,96,96,32,32,96,96,32,32,96,96,32,96,32,96,32,96,32,32,96,96,96,96,32,96,32,32,96,32,32,96,32,32,96,96,32,96,32,32,96,96,32,96,96,32,96,96,96,96,96,96,32,96,96,32,96,32,32,96,96,96,96,32,32,32,32,96,96,32,32,96,32,32,96,32,32,96,96,96,32,96,32,32,32,96,96,96,32,32,96,96,32,96,96,32,96,32,32,32,96,96,32,96,96,32,32,32,32,96,32,32,32,32,32,32,32,32,96,32,96,32,96,32,96,96,96,32,32,96,32,32,96,32,32,96,32,96,32,32,96,32,32,96,96,32,96,32,96,32,96,32,96,96,32,32,96,32,96,96,32,96,32,32,32,32,32,32,96,32,96,96,96,96,32,32,32,96,96,32,32,32,32,96,32,96,96,96,32,96,32,32,96,32,96,96,32,96,96,32,96,96,96,32,96,96,32,32,96,32,96,32,32,96,32,96,96,32,96,96,96,96,96,32,96,96,32,96,32,96,96,32,96,96,32,96,32,96,32,32,32,32,32,32,32,32,32,96,32,96,96,32,32,96,96,32,32,96,96,96,96,32,96,96,96,32,96,32,32,96,96,96,32,32,32,96,32,96,96,96,32,32,32,32,96,96,32,96,96,32,96,32,32,32,96,96,32,32,32,96,96,96,32,32,32,32,96,96,32,96,32,32,32,32,96,32,96,32,96,96,96,32,32,96,96,32,96,96,32,96,32,32,96,96,96,32,96,96,32,96,96,32,96,96,32,96,32,32,96,32,32,96,96,96,32,96,96,96,32,96,96,32,32,32,32,32,96,32,32,32,32,96,32,32,96,32,32,32,32,96,32,32,96,32,96,96,96,96,96,32,96,32,32,32,32,32,96,32,32,32,32,96,96,32,32,96,32,32,32,32,32,96,32,32,96,32,96,32,96,32,32,32,32,96,96,96,96,96,96,96,32,96,96,96,96,32,32,96,32,96,96,32,32,32,32,32,32,32,96,96,96,96,32,32,96,32,96,32,96,96,96,32,32,96,32,32,32,96,96,96,32,96,96,96,96,32,96,96,96,32,32,96,96,96,96,32,96,96,96,96,32,32,32,96,96,32,96,32,32,96,96,96,96,64,96,48,32,32,32,32,32,32,32,32,32,96,32,32,96,96,32,96,32,48,96,32,32,96,32,96,64,96,32,32,48,32,32,32,32,32,96,96,32,96,96,32,96,96,96,96,32,96,64,32,96,32,32,32,96,96,96,96,32,96,96,32,96,32,96,32,96,96,32,32,32,32,32,32,96,32,96,32,96,32,32,96,32,96,32,96,32,32,32,96,32,96,96,96,32,32,32,96,32,96,32,32,32,96,96,96,96,64,32,96,96,96,96,96,32,32,32,96,32,96,32,96,96,96,96,32,96,32,96,32,32,96,96,96,96,32,96,32,32,96,96,224,96,224,224,96,32,32,96,32,96,96,224,96,32,96,32,96,96,224,96,96,224,224,224,224,32,32,96,224,32,96,96,96,32,32,96,32,224,224,96,96,96,96,96,96,224,32,32,96,224,224,96,224,48,48,32,32,224,96,224,96,32,32,32,96,96,224,224,96,96,32,224,96,32,96,32,32,32,32,32,96,96,224,224,224,96,224,32,48,32,224,224,32,224,32,224,224,224,224,32,224,32,224,32,224,224,96,224,32,224,32,224,224,32,224,224,96,224,96,96,32,32,96,224,32,96,224,96,96,224,32,224,32,96,224,224,96,224,224,32,224,224,32,32,96,32,96,32,224,224,32,224,96,96,32,32,224,32,224,32,32,96,96,96,32,96,32,32,96,224,32,224,224,32,96,96,32,96,96,32,96,32,224,224,224,96,32,224,96,32,32,224,96,224,32,224,32,96,32,224,96,32,96,224,96,224,224,96,96,96,32,32,96,224,96,32,32,224,32,224,96,32,96,96,96,224,32,96,224,224,32,96,32,96,32,96,224,96,224,32,96,32,32,32,96,96,224,96,32,224,32,224,32,32,96,96,32,224,224,96,96,96,96,32,96,224,96,96,32,224,32,96,32,224,32,224,224,32,96,32,96,32,32,224,96,96,32,224,32,96,32,32,96,32,96,224,32,96,224,96,96,224,32,96,96,32,96,32,32,32,32,96,32,224,224,32,96,96,32,224,96,96,32,224,96,224,224,32,224,32,32,96,32,224,96,96,32,224,32,224,224,32,96,224,96,224,96,32,96,96,224,224,32,32,32,224,224,32,32,96,224,96,96,32,96,32,32,224,96,96,224,32,32,96,32,96,32,96,32,224,96,96,96,96,32,96,96,32,224,32,32,32,224,32,96,32,32,96,96,96,224,32,32,96,224,224,32,96,224,224,32,224,32,96,96,32,96,224,32,32,32,224,96,224,32,224,224,96,96,224,224,32,96,32,96,96,224,32,32,96,224,224,224,96,224,32,224,96,96,96,32,96,32,224,96,32,96,32,96,32,32,224,32,64,64,96,224,96,96,96,96,32,96,96,224,224,224,32,32,224,96,96,224,224,96,224,224,96,224,96,224,96,32,96,224,96,32,32,224,32,96,224,32,32,96,224,96,32,96,32,224,32,96,96,96,32,224,224,224,224,224,224,32,96,224,32,32,32,160,32,96,32,96,224,224,96,224,96,32,32,32,96,224,32,32,224,32,32,128,96,96,224,32,224,32,32,96,96,224,224,96,96,32,96,32,224,224,32,224,32,96,96,224,32,224,96,32,32,224,224,224,224,96,224,32,32,96,224,224,224,32,32,96,96,96,224,224,32,96,96,32,32,96,96,96,96,96,96,96,32,32,224,224,96,224,224,32,224,96,96,224,96,224,96,32,224,32,224,224,32,96,32,224,96,96,224,32,32,96,96,32,224,224,32,224,48,96,96,96,96,224,32,224,224,224,224,32,96,96,224,224,96,224,96,32,48,32,32,32,224,48,96,96,96,48,224,32,224,224,224,48,224,32,48,48,224,96,32,32,32,96,32,96,96,32,48,96,224,32,224,32,96,32,32,224,224,32,96,96,96,224,96,224,96,224,224,96,32,32,32,224,32,96,96,32,32,96,96,32,32,96,64,48,64,48,64,32,64,64,48,48,64,64,64,32,48,64,48,64,48,32,48,96,48,48,64,64,32,48,48,48,48,48,48,48,48,48,48,64,48,48,48,48,64,64,64,64,32,48,32,48,32,48,48,48,64,48,48,64,32,64,48,48,32,48,32,48,48,32,32,64,48,32,96,48,48,64,48,48,48,64,32,64,48,48,32,64,64,32,48,48,48,48,48,48,48,64,64,64,48,48,32,48,48,64,64,64,48,48,32,64,48,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,64,64,96,64,96,96,64,64,64,64,96,64,64,96,96,64,64,96,64,64,64,64,64,64,96,96,96,64,64,64,64,96,64,64,96,96,64,96,64,96,96,64,64,64,96,64,64,64,64,64,96,64,96,64,96,64,64,64,96,96,96,64,96,64,64,64,64,96,64,64,96,64,64,64,96,96,64,96,64,64,96,64,96,64,64,64,64,64,96,96,64,64,64,64,64,64,96,64,64,64,64,64,96,96,64,64,64,96,64,96,64,64,64,64,64,64,64,64,96,96,64,96,96,64,64,64,64,96,64,96,64,64,96,96,64,96,96,96,64,80,96,64,96,64,64,64,80,64,96,64,64,64,96,64,80,96,64,64,96,64,64,96,64,96,64,64,96,160,64,64,80,64,64,64,64,64,64,96,64,64,96,64,64,64,64,64,64,80,96,64,64,64,64,96,64,64,64,64,64,64,64,80,64,64,160,96,64,96,64,64,64,64,64,64,96,96,64,96,64,64,64,64,80,96,80,64,96,96,64,64,64,160,80,64,64,64,96,64,160,64,96,96,64,64,64,64,64,64,64,64,64,64,96,64,64,64,80,64,48,64,64,64,96,64,64,64,80,64,80,80,160,64,64,64,96,64,64,96,96,80,96,96,64,160,96,96,80,80,64,160,64,64,64,96,64,96,64,96,64,64,64,96,64,96,64,64,64,64,96,80,64,80,64,64,96,96,96,64,96,80,96,64,80,64,64,96,64,64,96,96,64,80,96,160,64,96,64,64,64,160,96,64,64,64,96,64,96,96,64,96,96,64,80,96,64,96,64,96,80,96,80,64,96,80,80,64,160,80,64,80,80,96,64,96,64,96,64,160,64,64,64,80,96,64,80,64,64,64,64,80,64,96,96,64,64,64,64,64,80,64,64,96,80,64,64,64,64,80,96,64,160,64,96,96,64,64,64,48,64,80,64,96,64,64,80,64,80,80,80,160,64,64,64,80,80,64,80,64,64,96,64,96,96,80,64,64,80,80,64,64,96,96,64,64,64,64,64,64,64,64,64,64,96,64,64,80,64,64,96,64,80,96,96,64,64,64,64,64,64,96,64,96,64,64,64,64,64,96,80,96,96,64,96,64,64,64,160,96,64,64,64,80,96,64,96,64,64,96,160,64,64,64,80,96,64,96,96,96,64,64,80,80,96,96,96,64,96,64,96,64,96,96,64,96,64,64,64,80,64,96,80,64,64,64,64,80,96,96,96,64,96,160,64,64,96,64,96,80,64,96,64,80,96,64,64,64,96,80,96,64,96,64,80,160,64,160,80,64,64,64,64,96,80,96,64,64,96,64,96,80,96,96,64,64,64,64,64,96,96,96,64,64,80,64,64,64,64,64,64,64,64,96,64,64,96,64,64,96,64,80,96,96,96,64,64,96,64,80,96,64,80,96,64,64,96,80,160,64,96,96,96,80,96,64,64,96,64,80,96,96,96,80,160,96,80,64,80,80,80,64,96,96,96,64,80,80,64,96,96,64,64,64,80,96,80,64,80,96,96,96,64,96,96,64,80,80,64,80,80,64,96,96,96,64,80,160,64,96,64,64,64,160,64,64,64,96,96,96,80,96,96,96,64,80,96,96,80,96,64,64,96,64,96,96,96,64,64,96,64,96,64,96,64,96,80,80,96,64,64,64,64,64,80,80,96,80,64,96,96,96,64,96,96,64,80,96,96,96,64,96,96,64,80,80,64,96,64,96,80,64,96,64,64,96,64,80,64,96,80,96,96,96,96,80,64,80,64,96,64,96,96,96,80,96,96,96,96,64,96,64,96,64,64,64,96,80,64,80,96,96,96,64,96,64,80,64,96,96,96,80,64,80,96,96,64,80,96,64,96,64,96,96,96,64,64,64,80,80,80,96,64,64,64,80,80,64,64,96,96,80,80,96,64,96,64,64,80,64,96,64,80,64,64,96,96,96,64,64,64,96,64,64,96,64,96,96,64,80,96,64,96,64,64,96,96,64,80,64,96,96,64,96,96,64,96,96,64,96,64,64,96,64,96,64,64,64,64,64,80,96,64,96,64,96,96,64,80,96,64,96,64,64,64,96,64,64,64,80,80,64,64,96,96,80,96,64,96,64,80,96,96,96,96,80,96,96,80,64,96,64,96,96,96,64,80,64,64,80,64,96,64,96,96,96,96,80,64,96,64,96,96,96,96,80,96,64,96,64,96,96,64,96,64,64,96,64,96,96,96,96,96,96,64,80,96,64,96,96,64,64,64,96,96,96,64,64,96,64,64,64,64,64,64,96,96,96,96,64,96,64,64,80,64,96,96,64,96,80,64,64,64,96,96,64,64,64,96,96,96,64,64,96,96,96,96,96,64,64,80,80,96,64,64,64,64,96,64,80,64,64,96,96,96,64,96,64,64,160,64,80,96,64,64,96,64,96,64,96,64,96,64,80,80,96,64,96,80,80,64,64,64,96,96,64,96,96,64,64,64,80,64,96,64,80,80,64,64,64,96,96,64,160,96,80,64,160,96,80,64,64,80,160,64,96,160,96,64,64,64,96,64,96,64,96,96,80,96,64,96,80,96,96,96,64,64,64,64,80,96,80,64,64,96,64,96,64,80,96,64,64,96,96,96,64,64,96,80,80,96,64,64,64,64,96,64,64,80,64,64,80,64,96,96,64,64,96,64,64,64,96,80,160,96,64,64,96,80,64,64,96,80,64,64,96,64,80,80,64,64,64,64,80,64,80,96,64,64,96,96,64,96,96,80,80,96,96,64,64,96,96,64,64,64,80,96,64,64,96,64,64,96,64,64,80,64,64,64,80,64,80,80,96,80,64,64,80,64,64,64,64,64,64,64,96,80,96,96,64,64,96,80,64,64,80,64,64,64,96,64,64,80,80,96,160,64,64,80,96,64,160,96,64,80,80,64,80,96,96,64,96,96,80,96,64,64,96,64,80,96,64,96,64,160,96,80,80,96,64,64,160,80,64,96,96,64,64,64,64,96,96,64,96,96,64,96,80,160,96,80,96,80,64,64,64,64,64,64,64,96,64,64,64,64,64,96,80,64,96,80,96,64,96,64,96,64,64,64,64,64,64,64,96,96,64,96,96,80,96,64,96,160,64,80,64,64,64,64,96,64,96,96,64,80,64,64,64,64,80,80,64,64,64,96,64,64,64,64,80,64,96,80,96,96,64,96,64,96,80,64,64,80,80,64,64,96,64,96,64,64,64,96,64,64,80,64,64,80,64,64,80,80,80,64,64,64,96,64,160,64,96,64,80,64,64,64,64,64,64,64,80,96,64,64,64,64,80,96,64,160,64,96,96,64,64,80,64,80,96,64,64,64,64,96,160,64,64,96,96,80,64,64,64,64,64,96,64,64,64,64,96,64,80,64,64,96,96,64,64,64,64,64,80,64,64,64,64,96,64,64,64,64,64,64,64,96,64,80,64,64,64,64,64,96,64,64,64,64,64,64,64,96,64,64,96,64,80,64,96,80,80,80,96,64,64,64,96,64,64,64,96,64,64,80,160,64,64,64,96,64,96,96,64,160,80,96,64,64,96,64,64,64,64,64,64,64,64,64,80,80,96,64,64,64,96,64,64,64,64,96,64,96,96,96,64,64,64,64,96,64,96,64,64,80,64,160,64,96,96,64,96,160,64,160,80,96,96,80,64,96,80,64,96,96,64,80,64,64,64,96,64,80,64,64,64,96,64,96,80,80,64,64,64,64,64,96,64,64,64,96,96,160,96,64,64,64,64,80,64,64,80,80,160,80,80,64,64,64,96,64,64,80,64,64,80,96,96,64,80,64,64,96,64,96,64,64,96,64,96,64,64,64,64,64,64,96,96,96,64,64,64,64,64,80,96,64,96,160,96,96,64,96,64,80,160,96,64,64,96,96,64,96,96,96,96,96,80,96,80,96,64,96,96,96,64,64,80,96,64,64,64,80,64,96,64,64,64,96,96,64,64,64,64,64,64,64,96,64,96,96,80,160,64,64,80,64,80,160,96,64,64,96,64,80,160,96,64,96,64,64,80,64,80,64,64,96,64,64,96,96,96,96,64,64,64,80,64,64,64,96,96,96,64,64,96,64,64,80,64,96,96,96,96,96,96,64,64,64,64,64,96,64,96,96,64,160,64,64,64,96,96,80,64,80,96,96,96,64,96,96,64,80,64,160,64,160,64,96,96,64,64,96,64,64,96,96,96,96,64,64,96,64,96,96,80,96,80,64,64,80,64,64,96,80,64,64,64,96,160,64,96,64,64,64,64,64,96,64,96,64,96,64,160,64,96,64,96,64,96,80,96,96,80,96,96,64,64,96,96,64,64,64,96,80,80,64,80,96,64,96,160,96,64,96,80,96,64,96,64,96,96,96,64,64,64,64,64,96,64,96,64,64,96,96,96,96,64,160,96,96,64,64,64,96,96,96,80,160,64,160,96,64,80,96,64,64,64,64,64,64,64,96,64,64,96,64,96,96,64,64,80,96,64,96,96,80,96,64,64,64,64,64,64,64,96,64,96,96,64,64,96,64,64,96,64,96,96,64,96,96,64,96,96,64,80,64,96,64,96,80,80,64,64,80,96,96,80,64,64,80,96,64,80,64,64,160,96,64,80,64,64,64,64,64,96,96,160,64,160,96,64,64,64,96,64,64,96,64,80,64,64,64,64,64,64,64,96,80,64,64,64,64,96,64,96,64,64,96,80,96,64,160,64,64,96,64,96,80,96,64,96,96,64,64,96,64,96,64,96,80,80,64,64,64,64,64,96,96,80,96,64,80,80,64,96,96,64,96,64,64,80,80,64,96,96,64,80,96,96,80,96,64,64,64,96,64,64,64,80,64,64,96,64,64,80,64,96,96,64,64,96,64,96,64,64,80,160,64,64,64,160,96,64,96,80,80,96,64,64,64,64,96,64,80,96,160,64,64,96,64,96,96,64,96,80,96,96,64,96,64,96,64,64,96,96,96,96,96,64,64,64,96,64,80,64,80,96,64,64,80,80,96,96,96,64,64,96,64,64,64,96,64,64,64,64,80,96,96,64,64,64,64,96,64,64,80,64,96,64,64,64,64,96,64,64,80,96,64,64,96,96,80,96,64,80,96,64,160,96,96,96,64,80,64,64,64,96,64,160,80,64,64,96,64,64,64,64,64,80,64,96,64,64,64,64,64,64,64,64,64,64,64,80,64,96,64,80,96,96,64,64,64,96,64,64,96,80,80,96,80,80,64,64,64,64,64,80,64,64,64,64,96,64,80,64,64,64,64,96,64,64,64,64,80,96,64,64,64,80,96,80,64,64,64,64,64,80,64,64,64,96,64,96,64,96,64,64,64,64,96,96,64,64,64,64,64,64,64,96,64,96,64,64,64,64,64,64,48,64,96,64,64,96,64,96,64,64,64,96,64,64,96,64,64,80,80,64,64,64,80,96,64,64,96,64,96,64,96,48,64,64,96,64,64,96,64,96,64,96,64,96,80,64,64,64,96,64,64,64,64,64,64,64,64,64,64,64,96,80,80,64,96,64,64,96,80,80,96,64,64,64,80,64,64,64,64,160,64,64,64,64,64,64,64,64,80,96,96,64,80,64,64,80,64,64,64,64,96,64,64,80,64,64,64,96,64,64,96,96,80,64,96,64,80,96,64,96,64,160,96,64,64,64,64,80,64,64,64,64,64,64,96,96,64,80,64,64,80,96,64,64,64,80,64,64,64,80,64,64,80,96,80,64,96,64,96,80,64,64,64,64,64,96,64,64,64,64,64,64,64,80,64,64,64,64,96,64,64,160,64,160,64,64,96,64,96,64,64,64,64,64,96,64,64,96,64,64,64,80,64,64,64,80,64,64,96,64,64,64,64,64,64,64,160,96,64,64,64,64,80,64,64,64,64,64,64,64,64,64,80,96,64,64,64,96,64,64,64,64,64,64,96,64,160,80,64,64,96,64,96,64,64,80,64,64,64,64,96,64,80,64,64,96,64,96,96,96,64,64,64,64,64,96,64,64,64,96,160,64,64,64,96,64,80,64,80,96,64,80,64,64,96,80,96,64,96,96,64,64,96,80,64,64,64,80,64,64,64,64,160,64,64,64,64,64,64,96,64,64,64,64,96,96,96,80,80,96,96,64,64,80,64,64,160,64,96,64,64,64,64,64,64,64,64,64,96,64,64,64,64,64,96,160,64,160,96,96,64,64,96,64,64,64,80,64,64,64,64,64,80,80,64,64,64,64,80,64,80,80,64,64,64,96,64,64,80,96,80,80,64,64,80,80,64,64,96,96,64,64,64,80,64,64,64,64,64,64,64,80,96,64,64,80,80,64,64,64,64,64,80,64,64,64,64,64,96,96,96,96,64,96,96,64,64,80,64,64,64,64,96,96,64,64,96,64,64,64,80,64,64,64,64,64,64,64,64,96,64,80,80,160,80,80,64,64,64,64,64,64,64,64,96,80,64,64,64,64,64,64,64,64,64,64,80,80,80,64,80,64,80,64,96,64,96,64,96,64,96,96,64,64,64,64,64,64,96,64,80,64,80,96,64,64,64,80,64,80,64,64,64,64,64,64,80,64,64,64,64,96,96,64,96,96,64,64,80,64,64,64,64,64,64,80,64,64,64,64,64,64,64,64,64,64,64,96,64,96,96,64,96,64,64,64,64,80,64,64,64,80,64,96,64,160,64,80,64,160,64,64,96,64,64,64,160,64,96,64,96,96,64,64,64,96,64,160,96,160,64,64,64,64,64,64,64,64,64,80,96,64,96,64,64,64,80,64,64,96,64,64,64,64,64,64,64,64,160,96,64,80,96,64,160,64,64,96,64,64,80,80,96,64,64,64,64,64,64,64,64,64,64,96,96,64,64,64,96,96,64,64,48,80,64,96,96,96,96,64,64,96,64,96,80,80,64,64,64,80,80,64,64,96,64,64,64,64,64,96,64,64,96,96,96,64,64,80,96,64,64,64,96,64,64,64,64,64,64,80,64,80,64,64,160,64,64,64,64,64,64,64,96,96,64,96,80,96,64,64,64,80,80,96,96,96,64,64,64,64,96,96,64,64,96,64,96,64,96,64,96,64,64,64,64,64,64,64,80,64,64,64,64,80,64,96,96,80,64,64,64,64,96,96,64,160,96,64,64,96,160,64,64,80,96,96,64,64,64,64,160,64,80,64,64,64,96,64,64,80,64,96,64,64,160,64,64,64,64,64,64,80,64,64,64,64,64,64,96,80,64,80,64,96,64,64,96,64,64,96,64,64,64,80,80,64,64,160,64,64,64,64,96,96,80,64,80,64,64,64,96,64,80,64,64,64,64,64,96,80,80,64,64,160,80,64,64,64,64,64,64,64,64,64,64,96,64,64,64,64,80,64,64,96,64,96,80,96,64,96,64,96,64,64,80,160,64,64,64,64,64,160,64,64,64,64,64,64,64,80,64,64,64,160,64,96,96,64,64,64,64,64,96,96,64,64,64,80,96,64,160,64,64,64,64,64,96,64,96,96,80,64,96,80,64,96,160,64,80,64,64,64,64,64,64,80,80,80,64,64,160,96,64,64,64,80,64,64,64,64,96,96,80,64,64,64,64,96,160,64,64,64,96,64,64,96,64,64,64,64,64,64,64,64,64,64,64,96,96,80,64,96,64,160,64,64,96,96,64,64,80,80,80,96,64,64,64,64,64,80,64,80,96,80,64,64,64,96,64,64,96,64,64,96,80,64,64,96,64,80,64,64,64,160,64,80,64,96,64,96,96,96,96,64,64,64,80,96,48,96,64,64,96,96,64,96,64,96,64,64,80,96,96,64,64,64,64,160,64,160,64,96,64,160,80,96,64,64,64,80,64,80,64,64,64,64,160,64,64,64,64,64,80,64,64,80,64,80,96,96,96,64,64,64,80,64,64,80,80,80,80,64,80,64,80,96,64,64,80,160,96,64,64,64,64,64,80,64,64,96,64,96,80,80,64,64,96,64,64,160,96,64,160,96,96,64,96,80,64,80,64,64,64,64,64,64,64,80,96,96,64,80,64,96,64,64,80,64,80,96,80,64,96,80,64,64,96,64,64,96,96,64,64,96,64,64,64,64,64,64,80,64,96,96,64,96,64,64,64,96,64,96,64,96,64,96,80,64,64,64,64,64,64,64,96,64,64,96,96,80,96,80,64,96,64,80,80,64,96,80,96,64,64,80,64,64,96,64,64,96,64,64,80,96,80,80,80,96,64,80,64,64,64,64,96,80,80,96,64,80,80,96,64,64,64,96,80,64,80,64,64,80,64,80,64,64,80,96,64,64,80,64,96,96,80,64,96,96,64,96,64,64,80,64,64,160,96,80,80,64,64,64,64,64,64,80,96,96,64,64,96,64,96,64,64,80,96,96,160,96,64,96,96,64,96,64,96,64,64,64,64,64,64,64,64,64,64,80,64,96,96,80,64,64,96,96,64,96,96,160,64,80,64,64,64,96,80,80,64,64,96,160,80,64,64,64,96,80,64,64,64,64,96,96,96,64,80,80,80,96,64,64,80,64,96,64,160,96,96,64,64,64,96,80,96,80,96,96,96,64,96,96,64,64,64,96,80,80,64,64,80,64,64,64,80,96,64,64,96,80,64,64,64,96,80,96,80,96,64,96,96,64,96,64,96,64,64,96,96,64,96,80,64,96,64,96,64,64,64,64,64,96,80,80,64,80,64,96,64,64,64,96,64,80,64,80,64,64,96,64,80,64,64,64,64,160,64,160,96,80,96,64,80,64,96,64,64,96,64,64,64,64,80,64,64,64,80,80,96,64,80,64,64,80,80,64,64,64,64,64,64,80,80,96,64,64,64,80,96,80,64,64,64,64,64,64,64,96,96,64,64,96,64,80,96,64,64,64,64,64,96,64,64,64,96,64,64,64,64,64,64,80,64,64,96,64,80,64,96,64,80,160,80,64,80,64,64,64,80,64,96,64,64,64,64,64,96,96,80,64,160,64,64,64,64,96,96,64,160,96,64,64,96,64,64,80,96,96,96,64,96,64,80,64,64,64,80,96,80,64,64,64,96,64,96,64,64,80,80,64,96,64,64,64,96,64,64,64,96,64,64,80,64,96,64,96,64,96,64,64,64,64,64,80,64,96,160,80,96,96,80,64,64,64,96,96,64,96,64,64,64,80,80,64,80,64,80,64,64,64,96,64,96,64,160,64,64,80,160,80,80,80,64,80,64,160,80,64,64,80,64,96,64,80,64,80,64,64,160,80,64,80,64,64,96,64,96,80,64,64,64,64,96,64,64,96,64,96,64,64,64,96,96,64,64,64,96,96,64,64,64,64,64,80,64,80,64,64,80,64,96,64,64,64,64,64,96,64,96,64,64,64,64,96,96,80,96,64,80,64,96,96,64,64,64,64,64,96,80,96,96,64,64,64,64,64,80,64,80,64,80,64,64,80,80,64,64,64,96,96,64,160,96,64,64,64,64,64,96,64,64,96,64,96,96,64,64,64,96,64,64,64,64,96,64,64,80,80,80,64,64,64,64,80,96,64,96,96,80,64,64,64,96,64,96,80,64,64,96,96,80,64,80,80,64,64,64,64,80,64,80,64,64,80,80,96,64,64,96,64,80,64,64,64,96,64,80,64,64,64,64,64,64,96,80,64,64,64,64,80,64,96,80,64,64,64,96,64,80,64,64,64,64,96,64,96,64,96,80,80,64,64,64,96,64,96,64,80,64,96,64,64,96,64,80,96,64,64,80,64,64,80,64,96,80,64,80,64,96,64,80,64,64,64,80,64,64,80,64,80,96,64,64,96,64,80,80,160,64,48,64,80,64,64,80,80,64,80,64,64,96,80,80,64,96,96,80,64,64,64,64,64,64,64,80,96,64,96,64,80,64,64,80,64,64,96,96,96,80,64,96,96,64,80,64,80,96,80,80,96,64,80,80,64,64,64,80,64,80,96,96,64,64,96,64,64,80,64,64,96,64,64,64,96,64,64,64,64,80,96,96,80,64,64,96,64,64,64,64,160,64,80,64,64,80,64,64,80,64,80,64,64,80,64,96,64,64,64,64,80,64,64,64,64,80,80,80,64,96,64,96,64,64,96,64,96,96,64,64,64,64,64,64,96,64,64,64,64,96,64,96,80,80,64,80,64,80,96,80,64,96,64,64,64,64,64,64,80,64,96,64,80,64,96,64,64,96,64,64,160,96,64,64,64,64,96,64,80,96,64,80,64,64,80,64,96,64,64,96,64,64,96,80,64,96,64,64,80,64,96,64,80,64,64,64,96,96,80,80,64,96,64,96,64,64,80,64,80,96,96,64,64,80,96,64,64,64,96,96,64,64,64,80,96,80,96,64,80,64,64,96,96,96,64,64,96,64,64,64,96,96,64,80,64,96,64,64,64,96,80,64,64,96,96,64,80,64,80,64,96,80,96,80,64,64,64,80,64,64,96,96,64,96,64,64,96,64,64,96,96,80,64,64,96,64,96,64,80,64,80,64,160,64,64,64,80,64,80,64,64,64,64,80,160,80,64,96,160,96,64,64,96,64,96,64,96,96,80,96,80,96,96,80,96,80,64,64,64,96,64,64,96,96,96,96,64,96,96,64,96,96,96,96,64,96,80,64,96,64,96,96,96,64,80,64,96,160,64,96,64,96,64,64,64,64,80,80,64,160,64,96,64,64,64,80,64,96,96,64,64,64,96,96,64,80,80,96,80,64,80,64,96,96,64,96,96,96,96,64,96,96,64,64,96,96,64,96,64,64,96,64,64,64,96,64,64,96,64,64,64,80,64,64,80,96,80,64,96,64,96,96,64,96,64,160,80,64,64,96,64,96,96,96,64,64,96,64,64,64,96,96,96,96,64,96,96,96,96,64,64,96,96,64,64,64,64,80,80,64,64,64,160,64,64,80,96,160,64,64,64,96,64,80,80,80,80,64,80,80,64,96,160,64,64,64,80,64,64,64,96,96,64,64,64,64,64,64,64,64,96,96,64,64,96,96,64,64,64,64,96,80,80,64,96,64,80,96,80,96,64,64,96,64,96,96,96,96,64,96,64,96,64,96,96,64,64,64,96,64,96,80,96,64,80,160,96,80,64,96,80,64,96,96,64,64,80,96,64,80,96,64,96,160,80,80,64,96,64,96,80,80,64,64,64,96,160,96,64,64,96,96,80,160,96,96,96,96,64,96,64,96,96,80,80,64,64,64,64,64,80,64,64,96,96,64,64,96,160,80,96,96,96,80,96,64,96,96,80,64,64,96,96,64,96,96,96,96,96,96,64,80,96,96,64,96,96,80,64,80,64,64,96,96,64,160,64,96,64,64,160,64,64,64,96,64,64,64,64,64,64,96,96,80,64,64,96,96,96,96,64,96,96,96,96,96,64,96,96,80,80,64,64,64,96,80,64,64,96,96,96,64,64,96,96,64,96,96,96,64,96,64,80,96,96,96,80,96,64,64,96,64,64,80,96,64,64,64,96,64,64,160,64,64,64,64,96,64,160,80,80,96,80,96,64,64,80,64,96,96,96,80,64,160,96,96,96,64,64,64,96,80,96,80,64,96,64,64,96,96,64,64,160,64,64,96,64,64,80,96,96,64,96,64,96,96,80,64,64,64,64,80,64,80,80,64,64,64,64,96,64,64,96,96,96,96,80,96,96,80,64,80,96,64,64,64,80,96,64,96,64,80,96,64,80,64,64,64,80,96,96,96,64,64,64,64,64,64,96,64,64,64,64,96,96,96,80,96,64,64,64,80,80,64,160,96,64,80,96,160,96,64,80,160,160,64,96,64,64,160,96,80,96,64,64,64,96,96,80,64,64,64,80,64,80,96,64,96,80,96,64,64,64,64,80,96,96,64,64,80,80,96,96,64,96,64,160,80,96,64,64,80,64,64,80,64,64,80,64,64,64,80,64,96,64,96,96,64,64,80,96,96,96,160,64,80,64,64,64,96,64,64,96,64,80,80,64,96,80,64,64,96,96,64,80,80,64,64,64,64,64,64,64,64,64,80,80,96,96,96,64,64,64,80,80,64,96,64,96,64,64,64,80,64,64,64,64,64,96,64,96,80,80,80,64,160,64,64,96,96,96,96,80,64,64,64,80,96,64,64,80,96,64,64,96,64,64,64,64,64,96,64,64,80,96,96,64,80,80,64,64,96,80,64,64,96,64,96,80,64,64,64,160,80,64,96,64,96,64,96,96,64,64,80,64,96,64,96,64,64,96,64,80,64,64,96,64,64,80,64,64,80,64,96,64,96,96,96,64,96,96,64,64,64,64,64,64,64,80,96,80,96,64,64,64,96,64,96,64,64,96,96,80,64,64,64,160,64,96,96,80,80,80,160,64,64,80,64,96,80,64,64,96,64,96,64,96,64,96,96,80,64,64,64,64,96,96,64,80,96,64,96,96,64,64,96,80,96,64,96,96,96,64,64,64,80,160,64,96,80,96,80,64,96,64,96,96,160,96,96,96,96,64,64,80,96,64,96,80,80,64,160,80,80,64,96,64,96,64,80,64,160,80,64,96,64,96,96,64,96,64,160,80,64,96,64,64,64,64,80,64,96,64,64,64,64,64,64,96,80,160,160,80,64,80,96,64,80,96,64,64,64,96,64,80,64,80,96,96,64,96,96,96,96,80,64,64,96,64,96,64,64,64,160,64,96,64,64,96,96,96,96,160,64,64,96,64,160,96,80,96,96,64,96,96,64,64,96,64,80,64,96,96,80,80,96,160,64,96,96,64,64,96,64,64,64,64,96,64,64,64,64,80,96,64,64,64,64,64,80,80,96,64,96,64,64,96,64,64,64,64,64,96,96,80,96,80,64,96,96,96,64,64,64,160,80,64,64,80,96,96,64,96,64,64,80,80,64,64,80,64,80,64,80,80,96,96,64,64,64,96,96,64,96,96,80,160,96,64,96,64,64,64,96,96,64,96,96,80,80,80,64,96,160,96,96,96,80,64,96,96,96,64,64,96,96,96,64,96,64,64,64,80,80,64,64,64,64,80,64,96,96,64,64,64,80,64,64,64,96,96,160,64,64,64,96,64,96,80,64,64,64,64,64,64,64,80,96,80,80,64,96,96,96,64,64,80,96,64,96,64,80,160,80,160,96,64,96,96,160,96,64,64,80,64,96,80,64,96,64,64,64,64,64,64,64,96,64,96,80,80,64,96,96,96,64,80,96,64,64,160,96,64,64,96,80,96,64,64,64,64,64,64,64,96,64,96,96,160,64,96,96,96,64,64,96,80,96,160,96,64,80,96,64,64,80,96,96,64,64,80,160,96,64,96,64,96,96,80,64,96,64,96,64,80,64,80,64,80,96,96,64,160,64,80,64,80,96,80,96,64,96,80,64,96,96,64,96,96,64,96,64,64,64,80,160,64,96,64,64,160,64,160,64,64,96,64,96,96,64,80,96,64,64,96,80,64,64,64,64,160,80,80,96,96,96,64,64,96,64,64,64,64,64,80,96,80,80,64,96,64,80,96,80,96,96,96,80,64,80,64,64,64,80,96,96,96,96,64,96,64,64,96,64,96,64,160,80,80,64,96,96,96,96,64,80,80,96,64,64,80,96,64,64,80,64,80,64,64,80,64,96,64,96,64,64,64,64,96,64,96,80,64,96,80,160,64,160,64,80,96,96,80,64,64,160,64,96,64,64,96,64,96,80,80,96,96,80,64,80,64,96,80,96,80,64,64,80,64,64,64,64,96,64,64,64,64,96,96,64,64,80,160,64,96,96,96,96,64,80,64,96,64,64,80,96,64,64,64,80,80,64,96,64,80,64,64,64,96,160,64,96,64,96,80,96,64,96,96,64,64,96,64,64,80,160,64,96,96,80,64,80,64,64,96,64,64,80,64,64,64,64,64,96,64,96,64,80,160,64,96,64,64,160,64,64,96,96,80,64,80,80,64,64,64,96,64,64,96,64,80,64,64,64,96,64,80,64,96,96,96,96,64,64,64,64,64,64,96,64,64,64,64,96,96,96,80,64,64,64,96,64,64,80,80,160,64,80,64,64,64,64,64,96,80,96,64,80,64,64,80,64,64,96,96,96,96,64,80,64,96,96,64,64,160,96,96,64,64,64,96,64,64,96,80,64,96,96,96,80,80,64,64,160,64,96,64,96,96,64,80,96,96,64,64,96,64,64,96,64,64,64,64,64,64,160,64,96,64,96,96,64,64,80,80,64,80,64,80,96,64,64,96,96,64,96,64,64,96,64,64,96,64,80,96,96,64,96,64,96,64,96,64,64,64,96,64,80,64,96,64,96,64,80,64,64,64,64,64,160,64,64,64,96,96,64,64,96,96,64,64,64,96,64,64,64,64,96,96,96,64,160,64,64,80,64,64,160,64,64,80,64,96,64,64,96,64,64,64,96,96,64,80,80,96,64,96,96,64,96,64,64,80,64,96,96,64,64,80,64,80,64,64,80,64,64,64,160,96,64,96,80,96,96,64,80,96,80,64,64,96,64,96,64,96,64,96,64,96,160,96,64,96,64,64,64,160,64,64,80,96,96,160,80,96,64,80,96,64,96,96,64,64,96,80,64,64,64,64,64,64,96,64,64,96,160,160,96,80,64,96,64,80,96,64,64,64,64,64,64,64,64,64,64,64,160,64,64,64,64,160,96,64,64,64,64,96,96,64,64,64,80,64,64,80,96,80,160,64,160,80,64,64,80,80,96,96,64,64,80,80,80,64,96,96,64,64,64,64,64,64,64,64,64,64,64,64,96,64,64,96,64,64,64,64,64,80,96,64,80,64,64,64,64,64,80,64,64,80,64,64,160,64,64,64,80,64,64,64,64,64,96,80,64,64,96,64,64,64,64,64,64,80,64,64,64,64,64,64,64,64,80,64,64,80,96,64,64,64,96,64,64,64,160,96,80,64,64,64,64,160,64,96,64,64,80,64,96,64,80,96,80,96,64,64,64,64,64,64,96,96,96,64,96,64,64,160,80,64,96,64,80,64,64,96,96,64,80,64,64,64,64,96,64,64,64,64,64,80,64,64,64,80,64,80,64,96,64,80,96,96,96,64,96,64,80,96,96,64,64,64,64,64,64,64,64,64,64,64,64,96,64,80,64,64,64,64,64,64,64,64,64,64,96,64,96,96,96,64,64,96,80,96,160,80,96,64,96,96,96,64,64,64,64,64,96,96,64,96,64,64,64,80,64,96,64,80,48,80,64,160,96,64,80,64,80,96,96,64,80,96,96,64,64,64,64,64,96,64,96,80,64,80,64,64,64,64,96,96,96,64,64,160,64,48,96,64,48,64,64,160,96,160,64,64,96,160,64,80,64,96,64,64,64,64,64,64,64,80,64,160,96,64,64,64,64,64,96,64,96,64,80,64,64,64,96,64,96,64,64,96,96,64,80,64,64,64,64,64,64,160,80,64,64,64,64,96,64,64,64,96,64,64,64,64,64,64,64,64,64,64,64,64,64,64,160,64,64,64,64,96,160,64,64,64,64,64,64,64,64,96,64,64,64,96,64,160,96,64,64,64,64,96,64,160,96,64,64,96,64,64,64,64,64,64,64,64,96,64,64,64,96,64,64,64,64,64,64,64,64,96,64,64,64,64,64,80,96,96,64,96,64,96,96,64,64,160,64,96,80,64,64,64,64,64,64,160,96,48,96,64,80,64,64,48,64,64,64,160,64,160,64,160,96,64,64,64,64,64,64,160,64,64,48,96,64,80,80,64,96,96,64,64,64,64,64,64,64,96,64,64,96,160,64,64,64,96,64,160,64,64,96,64,64,64,64,96,64,96,96,64,80,64,64,64,80,64,64,64,64,64,160,64,64,80,64,64,64,64,64,64,64,64,64,64,64,80,64,64,64,96,96,64,64,64,64,64,64,64,64,64,64,64,64,64,96,96,96,96,64,64,64,64,64,64,64,96,64,64,80,96,64,64,64,160,96,48,64,64,64,80,80,64,80,96,64,64,64,64,64,64,64,64,64,64,64,96,48,96,80,64,64,64,64,64,64,64,64,64,64,64,64,80,64,80,64,64,96,160,64,64,64,64,96,64,64,64,64,64,64,80,64,64,160,96,96,64,64,64,64,96,64,64,96,96,64,64,80,64,64,64,96,48,64,64,64,64,64,64,64,80,64,160,64,96,48,96,64,64,64,64,64,64,64,80,64,64,48,96,64,64,64,96,160,64,64,96,64,80,96,64,64,80,64,64,80,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,64,64,64,64,64,80,64,64,64,64,64,64,64,80,80,64,64,64,80,64,64,80,96,96,64,64,64,64,80,96,160,64,64,96,64,64,64,96,96,64,80,96,64,48,64,96,48,64,64,64,64,96,64,160,96,96,96,96,48,64,64,64,80,64,64,64,64,80,160,64,64,64,96,48,64,96,80,64,64,80,96,64,64,96,64,64,80,64,96,64,64,64,96,64,80,64,80,64,64,96,64,64,64,80,64,96,64,64,64,64,64,64,96,96,64,64,64,64,64,64,80,64,96,64,64,64,96,64,64,96,64,64,80,64,64,64,160,64,64,80,64,64,80,64,64,64,64,64,96,64,96,96,64,64,64,80,96,64,64,64,64,64,80,64,80,64,64,96,64,64,96,64,80,96,64,64,64,64,64,64,64,96,64,64,64,64,64,64,64,64,64,96,80,64,64,96,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,64,64,64,64,64,80,64,96,64,48,96,64,96,80,80,64,96,80,160,96,64,64,64,64,96,96,64,64,80,64,80,96,80,96,64,64,80,96,96,64,64,96,64,64,96,160,64,80,80,64,96,80,80,64,80,64,64,64,64,64,64,96,96,64,96,96,96,64,96,96,96,80,64,64,96,64,64,96,160,80,64,96,64,64,96,80,64,64,64,64,64,64,80,96,80,96,96,64,96,96,96,80,64,80,80,64,64,64,80,64,64,64,80,80,64,64,80,64,64,64,160,96,64,96,64,64,64,64,96,96,96,96,80,160,64,80,80,96,64,80,64,64,96,96,96,96,64,80,96,64,160,64,96,64,64,80,64,96,80,64,96,64,80,80,64,96,64,64,160,80,160,80,80,64,64,64,64,96,64,64,80,64,96,96,96,80,64,80,96,64,64,64,64,64,80,64,80,96,96,96,64,96,64,64,64,80,64,160,64,64,64,96,80,80,96,64,80,64,64,96,80,80,96,96,64,64,80,64,96,64,64,64,96,80,80,64,96,96,160,64,64,64,64,64,96,64,64,64,80,64,64,160,64,64,64,64,96,64,80,64,64,64,64,96,96,64,96,64,80,64,64,160,64,96,80,64,64,96,64,96,80,96,64,80,64,64,64,80,64,80,80,96,160,64,64,96,64,96,64,64,64,96,160,64,96,80,64,160,64,64,64,64,64,64,96,64,80,64,96,64,96,96,96,64,80,64,64,64,64,96,64,80,96,80,96,96,96,96,64,96,96,96,64,64,160,80,96,96,64,64,64,80,96,64,96,64,64,64,64,64,64,80,80,80,64,64,64,64,64,64,96,64,64,96,96,96,64,64,64,64,64,96,96,64,80,64,96,64,64,96,96,96,96,64,64,96,64,64,64,64,96,96,64,96,96,96,64,64,96,96,96,96,80,96,160,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,64,64,96,96,96,96,96,96,96,96,96,64,64,64,96,96,96,96,96,48,64,96,96,96,96,96,96,64,96,96,48,96,64,96,96,64,64,48,64,96,48,64,96,96,96,64,64,96,96,64,96,96,96,96,64,64,96,64,96,96,96,48,64,96,48,64,64,96,64,96,48,96,64,96,96,96,64,64,64,96,64,64,96,48,64,64,96,48,96,64,96,64,64,64,48,64,96,96,64,48,64,64,64,96,64,64,64,96,96,48,48,48,64,96,64,64,64,96,96,64,64,96,96,96,64,96,64,64,96,96,96,96,96,64,64,64,48,64,96,96,96,96,96,64,96,48,64,96,64,96,64,96,64,96,96,96,64,96,96,64,64,48,96,96,96,64,48,96,96,96,64,96,64,64,64,96,64,64,96,96,96,96,64,96,48,64,96,96,64,96,96,64,96,64,64,64,64,96,96,96,96,96,96,96,96,96,96,96,96,96,96,48,48,96,96,96,48,48,96,96,96,96,96,96,96,96,96,96,96,96,96,48,96,48,96,96,96,96,96,48,48,96,48,96,48,96,96,96,96,48,48,48,48,96,96,96,48,96,48,96,96,96,96,96,96,48,48,96,96,96,96,48,96,96,96,96,96,96,48,96,96,96,96,48,96,48,96,96,96,96,96,96,48,48,96,96,48,96,96,96,48,96,96,96,96,48,96,48,96,48,48,48,96,96,96,96,96,96,96,96,48,96,96,48,48,96,48,96,96,96,96,96,96,96,96,96,96,96,96,96,96,48,96,48,48,96,96,96,96,96,96,96,48,96,48,96,96,96,96,96,96,96,48,96,96,96,96,96,48,48,48,96,96,96,96,96,96,48,96,48,96,96,96,96,96,48,96,96,96,48,96,96,96,48,96,96,48,96,96,96,96,48,96,96,96,96,96,96,96,96,48,96,96,96,48,96,96,96,96,96,48,96,96,96,96,48,48,96,48,48,48,48,96,96,96,96,96,48,96,96,48,96,96,96,96,96,96,48,96,96,96,48,96,48,96,96,96,96,96,48,48,48,96,96,96,96,96,96,96,96,48,96,96,48,48,48,48,96,96,48,48,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,96,48,96,96,96,48,48,96,96,96,96,96,96,96,96,48,96,96,96,48,96,96,96,48,96,48,96,96,96,96,96,96,96,96,96,96,48,96,96,48,96,48,96,96,96,96,96,96,96,96,96,96,96,48,96,96,48,96,48,96,96,96,96,96,96,96,96,48,96,96,48,96,96,48,96,96,48,96,96,96,48,48,96,96,96,48,48,96,48,96,96,96,96,96,48,96,96,96,48,96,48,96,48,96,96,96,96,96,96,48,48,48,96,96,96,96,48,96,48,48,48,48,96,48,96,96,96,96,96,96,96,96,48,96,96,48,96,96,96,48,96,96,96,96,48,48,48,48,96,96,96,96,96,96,48,48,96,96,96,96,96,48,96,96,48,96,48,96,96,96,48,96,48,48,48,48,96,48,96,48,48,96,96,96,96,96,96,96,96,96,96,48,48,96,96,96,96,48,96,48,48,96,96,96,96,96,96,96,96,48,96,48,96,96,96,96,96,48,48,96,48,48,96,48,96,48,96,48,96,48,48,96,96,48,48,96,96,48,48,96,96,96,96,96,96,96,96,96,48,48,96,48,48,96,96,48,96,96,48,48,48,48,96,96,96,96,96,96,96,48,96,48,96,96,96,96,96,96,48,96,96,96,96,96,48,96,96,96,48,96,96,48,96,96,48,96,96,96,96,48,96,48,96,96,96,96,96,96,96,96,96,96,48,48,96,96,48,48,96,96,48,48,96,96,48,48,48,96,96,96,96,96,96,96,48,48,96,96,96,96,48,96,96,96,48,96,48,96,48,96,96,96,96,48,96,96,96,48,96,96,96,96,48,96,96,96,48,48,48,48,96,96,96,96,96,48,96,96,96,96,48,96,96,96,48,96,96,48,48,48,48,96,96,96,96,96,96,96,96,96,96,96,48,96,48,48,96,96,96,96,96,96,96,96,48,48,96,96,48,48,96,96,96,96,96,48,96,96,96,96,48,96,96,48,48,96,48,96,96,48,96,96,96,48,96,96,96,96,96,96,96,48,48,96,96,96,96,48,48,48,96,48,48,96,96,96,96,96,48,48,96,48,48,96,48,96,96,96,96,96,48,48,96,96,48,48,96,96,96,96,96,48,48,96,48,96,48,48,48,96,48,48,48,96,48,96,96,96,96,96,48,96,96,96,96,48,96,96,96,96,64,96,136,136,136,224,64,64,64,64,64,64,64,160,96,48,96,96,96,96,48,64,64,64,96,136,64,64,64,120,64,64,64,64,96,64,64,64,96,96,64,160,64,96,64,96,96,64,64,64,64,176,96,64,144,160,96,64,64,64,96,144,160,64,64,160,96,96,64,96,96,160,64,96,168,152,64,64,64,32,64,64,64,64,64,96,64,96,96,64,96,32,64,96,144,64,64,96,32,96,96,96,64,120,160,64,96,32,96,96,64,96,144,64,32,64,64,96,64,64,96,168,160,152,96,64,144,64,96,144,64,32,160,64,96,120,96,96,64,64,64,64,96,64,64,64,96,96,64,96,96,224,64,96,120,64,64,96,160,128,96,160,64,96,96,152,128,96,32,64,32,64,96,152,64,96,64,64,144,144,120,160,64,120,96,64,64,64,64,64,96,96,64,64,64,96,64,64,64,64,32,160,64,128,152,96,64,64,160,64,64,96,64,64,32,64,64,96,64,64,32,64,96,64,64,64,64,64,96,64,64,144,96,64,64,64,64,64,64,48,64,64,64,160,64,64,96,64,96,144,128,64,64,96,32,64,176,96,64,96,32,96,64,64,96,168,96,96,64,64,64,64,64,64,64,64,64,176,176,128,64,64,64,64,64,64,96,144,128,96,96,64,64,64,64,64,128,64,64,64,64,64,64,64,96,64,64,64,64,64,64,96,64,96,64,96,96,96,96,64,64,1408,64,64,64,96,96,64,96,64,96,64,64,160,64,96,64,64,64,64,64,64,64,96,64,96,64,64,64,96,64,64,2272,128,64,64,8256,48,48,160,160,160,160,32,32,32,32,32,32,32,32,32,32,48,48,32,32,32,32,32,32,32,32,48,32,32,48,32,32,48,48,32,32,32,32,32,32,32,32,48,32,32,32,32,32,32,32,32,32,32,48,32,32,32,32,48,32,32,32,32,32,48,32,48,48,32,32,32,32,32,32,32,32,32,48,32,32,32,48,48,32,48,32,32,32,32,32,32,48,48,32,32,32,48,32,32,32,32,32,48,32,32,32,48,48,32,48,32,32,32,48,32,48,48,32,32,48,32,32,32,48,32,32,32,32,32,48,48,32,48,32,48,48,32,32,32,32,32,48,32,32,32,32,32,32,32,32,48,32,48,32,48,32,32,32,32,32,48,32,32,32,32,32,32,48,48,32,32,32,32,32,48,32,32,32,32,32,32,32,32,48,32,24640,32,32,48,32,32,32,32,32,32,48,32,32,48,48,32,32,48,32,48,32,48,48,48,32,48,48,32,32,48,88,48,32,32,32,32,32,32,48,32,32,32,32,48,32,32,32,32,48,32,48,48,32,48,32,32,32,48,32,48,32,32,32,32,32,32,32,32,48,32,48,32,32,32,48,32,32,32,48,48,32,32,48,32,48,32,32,48,32,32,32,32,32,32,32,32,32,48,32,32,32,32,48,32,48,32,48,32,32,48,32,48,48,32,48,48,32,32,32,32,32,32,32,48,32,32,32,48,32,48,32,32,32,48,32,32,32,48,32,32,48,32,48,48,32,32,32,32,48,32,32,32,48,48,32,32,32,48,32,48,48,32,32,48,32,32,32,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,160,64,32,88,48,32,32,48,32,32,48,32,32,48,48,32,32,32,32,48,32,48,32,32,32,48,32,32,32,48,32,48,32,32,32,32,32,32,32,32,32,48,48,32,32,32,32,32,32,32,32,32,32,32,32,48,32,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,32,48,32,48,32,32,32,32,32,32,32,32,48,32,32,32,32,32,32,32,48,32,32,32,48,48,32,48,32,32,48,32,32,32,32,32,48,32,32,48,32,32,32,48,32,32,48,32,32,32,32,48,32,32,32,32,32,32,32,32,32,32,32,32,48,32,32,48,32,48,32,32,32,32,32,32,32,48,32,32,32,48,48,32,32,32,32,32,48,32,48,32,48,32,32,32,32,32,48,32,32,32,48,32,32,48,32,48,48,32,32,32,32,32,48,32,48,32,32,32,48,32,32,32,32,48,32,48,32,32,32,48,32,32,32,32,32,48,32,32,32,32,32,32,32,32,32,48,32,32,32,32,32,32,32,32,32,48,32,48,32,32,32,32,32,32,32,32,32,48,48,32,32,32,32,32,32,32,32,32,32,48,32,32,32,32,32,32,32,48,48,32,32,48,48,32,32,32,32,32,32,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,32,32,32,48,32,32,32,48,32,48,48,32,32,48,32,48,32,32,48,32,32,32,48,48,32,32,32,48,32,32,32,48,32,32,32,48,32,32,48,32,64,64,8256,32,48,32,32,48,32,32,32,48,32,48,32,32,32,32,32,32,32,32,48,48,32,32,32,48,48,48,32,48,32,32,48,32,32,32,32,32,32,48,32,32,64,32,32,32,32,32,32,32,48,48,32,32,32,32,32,32,32,48,32,32,32,48,32,32,32,48,32,48,32,48,32,32,32,48,32,48,32,32,32,32,32,32,32,32,32,32,32,48,48,32,32,64,96,12352,88,48,48,32,48,32,32,32,32,32,32,32,48,32,32,48,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,48,32,64,64,96,88,12352,32,32,32,32,32,48,32,32,32,32,32,48,32,32,32,32,48,32,32,48,48,32,32,32,32,48,48,32,32,32,32,32,32,32,48,32,32,32,32,48,32,48,32,32,32,48,64,8256,48,32,32,48,32,32,48,32,48,32,32,32,32,32,32,32,32,48,32,32,32,32,32,32,32,32,32,32,48,32,32,48,32,32,32,32,32,32,48,32,32,32,32,32,32,32,32,32,32,48,48,48,32,96,32,32,32,48,32,32,32,32,32,48,48,32,32,32,32,32,32,32,32,48,32,48,32,48,32,32,48,48,32,32,32,160,32,48,32,48,48,48,32,32,32,96,64,12352,48,32,32,48,32,32,32,32,32,32,32,32,32,32,48,64,32,32,32,64,48,32,32,48,48,32,32,32,48,224,32,88,48,32,32,32,32,64,96,32,32,32,48,48,32,32,160,64,64,96,96,32,96,64,64,64,48,32,32,32,32,32,32,32,32,32,32,64,64,32,48,32,32,32,32,48,48,48,32,48,32,32,32,32,32,64,32,32,32,48,32,32,32,32,96,8256,48,48,32,48,48,32,32,224,64,96,32,48,32,32,64,12352,32,224,48,32,48,32,96,32,32,48,48,32,48,32,96,32,32,32,32,64,64,88,32,32,32,64,32,32,48,32,96,32,32,48,32,64,48,32,48,32,48,64,160,32,32,32,32,160,48,64,32,32,32,64,96,64,8256,48,32,32,32,88,88,32,32,32,32,48,32,48,160,224,32,32,32,32,32,32,64,48,160,32,32,32,88,64,32,96,64,64,160,32,160,48,64,32,160,64,64,88,80,80,160,96,96,48,96,64,96,96,96,80,64,64,80,64,96,96,48,96,64,64,64,96,96,96,96,64,80,96,96,96,64,96,96,80,80,64,96,64,96,48,96,96,96,80,96,96,96,96,64,64,64,96,64,96,96,64,96,96,48,96,96,96,96,64,96,96,64,64,96,96,48,96,64,96,96,96,64,96,96,96,64,96,64,48,96,64,64,48,80,96,96,64,96,80,64,96,80,96,96,80,96,96,80,48,96,64,64,64,64,96,64,64,96,80,48,96,64,48,64,64,96,96,96,64,96,96,96,96,96,96,96,80,96,80,96,80,80,96,64,96,96,96,64,96,64,96,64,96,96,96,80,48,96,96,96,48,64,64,96,96,96,64,80,48,96,96,96,48,48,96,96,96,80,96,96,64,96,96,64,96,96,96,96,96,96,96,96,64,64,48,96,80,64,96,96,96,96,48,64,96,80,48,96,64,64,96,96,96,64,96,96,96,96,80,64,96,48,80,80,64,64,96,80,96,64,96,96,96,96,64,48,48,64,96,64,96,96,64,96,96,80,96,96,96,96,96,96,96,96,96,48,48,96,64,96,80,48,96,80,96,64,48,96,96,96,80,80,48,96,64,48,48,96,80,96,64,80,96,64,80,64,96,96,64,48,80,96,96,96,96,64,64,48,96,96,80,96,48,80,80,96,64,96,96,96,96,48,96,48,96,96,96,96,96,96,48,64,96,96,64,96,96,64,64,64,64,64,96,48,64,96,96,96,80,96,96,96,96,96,64,48,64,160,32,96,48,136,136,96,96,96,96,64,64,64,64,64,64,64,64,160,160,64,64,96,64,128,96,184,160,64,96,64,96,64,64,64,96,64,64,64,96,144,96,96,96,64,64,64,32,96,96,160,64,64,96,64,96,128,144,144,32,96,64,64,96,64,96,96,48,64,64,96,64,128,160,64,64,64,32,64,64,64,64,64,64,96,176,64,96,64,96,96,144,128,64,96,96,160,96,64,64,96,96,64,64,96,64,96,32,160,96,64,96,64,96,64,64,64,128,96,120,96,64,64,96,120,32,64,32,64,64,48,96,96,128,64,64,96,64,64,64,64,144,64,128,96,96,64,64,96,120,64,64,64,96,128,96,112,96,96,64,64,64,32,128,160,64,64,96,64,96,96,96,96,168,96,152,64,64,96,64,64,64,96,144,96,96,96,64,64,64,96,64,64,96,64,64,96,96,96,96,64,64,96,96,64,160,96,64,64,120,64,96,32,64,128,136,32,96,64,136,96,120,64,64,64,128,96,96,160,64,64,64,64,32,64,208,208,160,96,120,64,96,96,64,64,32,96,168,96,64,64,64,64,152,64,64,96,64,64,96,32,64,96,64,64,64,32,64,64,64,64,96,48,128,64,64,48,96,176,96,64,120,32,64,64,64,64,96,48,64,64,96,64,32,176,96,64,96,96,176,64,96,64,64,64,64,64,96,176,96,96,64,144,64,64,64,64,64,64,64,160,128,96,64,64,64,64,64,64,96,64,64,64,96,96,96,64,96,64,96,64,96,64,64,96,96,96,64,64,96,64,64,64,64,64,64,96,96,64,64,96,64,96,64,128,32,32,32,64,64,32,160,160,32,48,32,64,32,32,32,48,32,32,224,48,96,8256,88,48,32,32,48,48,32,32,32,32,48,96,64,48,96,32,48,32,32,32,32,32,32,32,64,96,32,32,48,48,32,48,32,32,32,32,48,32,32,48,32,160,64,224,32,32,48,32,32,32,32,32,32,32,48,32,32,32,32,64,32,48,32,32,32,32,32,32,32,48,32,32,32,48,32,32,48,32,32,32,64,160,32,32,32,32,32,48,48,32,48,32,32,48,32,32,32,32,64,32,32,32,48,32,64,32,64,8256,32,32,32,32,32,32,32,48,48,48,32,48,48,64,64,64,88,32,32,32,48,48,32,32,32,48,96,32,32,32,96,96,32,32,48,160,48,32,32,64,32,32,64,64,12352,32,48,48,160,32,32,32,64,32,32,96,32,48,64,32,64,64,32,160,32,224,48,32,64,96,96,48,48,96,64,96,32,32,64,64,224,64,64,96,88,160,32,48,64,64,88,64,64,64,48,96,32,8256,88,64,96,48,32,64,48,32,64,48,64,32,64,96,8256,48,64,32,8256,88,32,32,64,48,96,96,96,96,80,64,96,160,96,64,96,96,96,32,32,48,96,64,96,96,96,96,96,96,80,64,96,160,96,96,128,96,96,96,96,96,32,64,64,64,64,64,64,64,64,96,96,80,64,96,96,96,96,80,64,96,88,48,96,48,160,160,32,32,32,32,48,48,64,48,48,96,32,48,96,96,96,96,96,136,96,136,96,136,96,64,224,32,64,64,160,64,64,64,64,120,160,152,64,64,64,64,64,64,136,64,96,96,96,96,64,64,96,128,96,160,96,96,64,32,64,64,144,96,32,96,64,32,64,64,64,64,176,96,96,64,64,64,64,64,96,64,64,160,32,64,64,64,64,64,32,96,64,176,128,64,136,64,96,48,64,64,32,64,64,144,160,64,64,64,64,144,32,96,32,64,64,96,64,64,64,64,64,64,48,120,64,64,64,64,176,144,96,64,64,176,96,96,96,96,168,144,120,64,64,64,96,120,144,144,120,96,96,64,64,120,64,96,96,144,64,96,64,96,160,64,64,96,128,64,96,32,64,96,152,96,160,64,96,96,224,96,64,64,96,64,64,64,64,96,96,96,64,96,64,64,64,64,96,96,160,96,144,168,96,96,64,64,96,64,64,96,176,96,144,32,96,32,96,96,160,64,144,144,96,160,64,64,64,48,64,144,64,96,96,176,128,96,64,32,64,64,96,96,32,96,64,96,96,96,64,64,64,64,96,64,64,96,32,64,96,96,96,96,64,96,64,96,64,64,64,144,64,144,64,160,64,64,96,64,64,96,64,96,64,32,144,168,64,64,64,64,64,96,64,160,64,64,64,64,64,144,96,64,96,144,64,96,64,64,96,64,64,160,96,96,168,96,96,64,64,32,32,176,64,64,96,152,144,96,48,128,64,160,160,96,64,3168,96,64,128,64,96,64,96,64,64,64,96,64,64,64,64,64,64,64,64,64,64,64,64,96,128,96,64,64,96,96,64,64,64,96,64,96,64,64,96,96,128,96,64,128,64,64,64,128,80,32,32,64,32,96,32,96,32,32,32,80,32,32,32,80,32,80,80,32,80,32,32,32,32,96,32,96,96,80,32,32,32,96,32,32,32,32,32,80,32,32,48,64,64,160,32,64,96,64,32,32,64,64,64,32,64,32,32,96,64,32,32,96,32,64,64,64,96,64,96,96,32,32,64,64,64,64,64,128,32,96,64,64,48,64,64,64,96,32,64,48,32,64,32,64,32,48,32,48,64,96,160,64,64,64,64,128,160,32,128,32,64,32,32,32,64,32,32,32,32,96,64,32,64,128,96,32,48,64,32,48,64,64,32,64,64,32,64,32,48,64,64,64,64,32,64,48,64,32,64,32,96,64,64,64,32,64,32,32,96,48,64,32,32,64,96,32,32,48,32,64,64,64,32,32,64,32,64,64,64,64,128,32,32,128,64,64,128,96,64,64,48,32,32,32,64,64,64,64,64,64,32,64,64,64,48,48,64,64,32,96,32,32,32,48,32,64,48,64,64,48,64,64,64,48,32,96,48,64,32,64,64,64,64,32,64,64,64,64,64,64,64,32,32,32,64,64,32,64,32,64,32,64,128,32,32,32,64,64,32,32,32,64,32,32,64,64,64,64,32,64,64,64,64,32,64,32,32,64,32,64,64,64,64,64,32,64,32,32,64,64,128,64,64,32,32,64,64,32,64,64,32,64,32,64,32,64,32,64,32,32,32,64,64,64,32,64,64,32,32,64,32,64,32,32,48,64,32,64,64,64,32,64,64,32,32,64,32,32,64,64,64,64,64,32,32,64,64,32,32,32,64,32,32,64,64,32,128,32,64,64,64,32,32,32,32,64,32,64,64,128,64,32,32,32,32,32,64,64,32,64,32,64,32,32,64,64,64,128,64,64,64,32,64,32,32,64,64,64,32,32,32,64,32,64,64,32,32,32,32,64,64,32,64,32,64,64,32,64,32,64,64,32,64,32,64,64,32,32,64,64,32,32,64,64,64,32,64,64,32,64,64,32,64,64,64,64,64,32,32,64,64,64,128,64,64,64,32,32,64,64,64,64,64,64,64,64,32,32,64,64,32,64,32,64,64,64,32,64,64,32,64,64,32,32,32,32,32,32,96,32,80,96,32,32,32,32,32,80,32,80,32,64,32,32,32,32,32,64,64,64,32,32,32,32,32,64,64,32,32,64,32,64,32,64,32,32,64,32,32,32,32,64,64,64,64,32,32,32,64,32,64,32,32,64,64,32,32,64,32,32,32,64,32,64,64,32,32,32,64,32,32,32,64,32,64,32,32,32,64,32,32,32,32,32,32,32,32,32,64,32,64,32,32,64,32,32,80,32,64,32,64,32,64,32,32,64,32,64,64,64,32,32,32,32,32,64,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,48,32,32,64,64,32,32,32,32,32,32,64,64,32,32,32,32,32,32,32,64,64,32,32,32,32,64,32,32,64,32,64,32,32,64,32,32,32,64,32,64,64,32,32,32,64,32,64,32,32,64,32,32,32,32,32,32,64,64,64,32,32,32,32,32,32,32,32,32,32,64,32,32,64,32,32,32,32,32,32,48,48,32,32,32,32,32,64,32,32,32,32,32,32,32,64,32,32,32,32,32,64,32,64,64,32,32,32,32,32,64,32,32,32,32,32,32,32,64,32,32,32,32,32,32,32,32,32,32,64,32,64,32,32,32,32,32,64,32,64,32,32,32,32,32,32,32,64,32,32,64,32,32,32,64,32,32,64,32,32,32,64,32,32,32,64,32,64,64,32,64,64,32,64,64,64,32,32,32,64,32,32,64,64,64,32,32,32,64,32,64,32,32,32,32,32,64,32,32,32,32,32,32,64,32,32,32,32,32,64,64,64,32,32,32,32,32,32,64,32,32,32,64,32,32,32,32,64,32,64,32,32,32,64,32,32,32,64,64,32,64,64,64,32,64,32,32,32,32,32,32,32,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,96,32,32,32,32,32,32,64,64,32,32,32,32,64,64,32,32,32,32,64,32,32,32,32,32,32,32,32,32,32,32,64,32,64,32,32,64,32,32,32,32,32,32,32,32,32,32,32,32,64,32,64,32,32,32,32,32,64,64,64,32,64,32,32,32,32,64,64,32,32,32,32,32,64,32,32,32,32,32,64,32,32,32,32,64,32,32,32,64,32,32,32,64,32,32,32,32,32,32,32,64,32,32,32,32,32,64,64,32,32,32,64,64,32,32,32,32,32,64,32,32,64,32,32,32,64,32,64,32,32,32,32,32,32,32,32,64,32,32,64,32,64,32,64,32,32,32,32,32,32,32,32,32,32,32,32,64,32,32,32,32,32,64,32,32,32,64,32,32,32,32,32,32,32,32,64,32,64,32,64,32,32,32,32,64,32,64,32,32,32,32,32,32,32,64,32,64,32,64,32,64,64,64,32,32,32,32,32,32,64,32,32,32,32,32,32,32,64,32,64,32,32,32,64,32,32,32,32,32,224,64,32,32,32,32,32,32,32,80,96,32,32,32,32,32,32,32,80,32,96,32,32,96,32,96,32,32,32,80,96,80,32,32,80,32,80,96,32,64,64,64,32,64,64,64,32,32,32,32,64,32,32,64,64,64,64,32,32,32,32,64,64,32,32,64,32,64,64,64,32,64,32,64,64,64,32,64,128,64,64,64,32,64,64,32,64,64,64,64,64,64,32,32,64,64,32,64,32,32,32,128,64,64,64,32,64,64,32,64,32,32,64,64,32,64,32,64,32,64,32,32,64,48,64,64,32,32,64,32,32,32,32,128,64,32,32,32,64,32,64,64,64,32,64,64,64,32,64,32,64,64,64,64,64,64,48,64,64,32,64,32,64,32,64,64,32,64,64,64,64,64,64,64,32,64,32,64,32,32,32,32,32,64,64,64,32,32,64,64,64,32,64,32,64,32,32,32,32,32,64,48,32,32,64,32,64,32,64,64,32,32,64,32,32,64,32,32,32,64,64,32,32,32,32,32,64,32,64,32,32,64,64,32,32,64,64,64,32,32,32,32,48,64,32,64,32,32,32,64,64,64,64,64,32,32,80,32,32,32,64,32,32,32,48,64,32,64,64,64,128,32,64,64,32,64,32,128,32,32,32,64,64,64,64,32,32,64,32,64,64,32,32,64,32,64,64,32,64,64,32,32,32,32,32,32,64,64,64,32,32,64,64,32,32,32,64,64,64,32,32,64,64,64,32,64,32,64,32,64,32,64,32,64,224,32,32,64,32,64,32,32,64,32,32,64,32,32,64,32,32,32,32,32,32,32,64,32,32,64,32,32,64,32,32,64,32,32,32,64,32,64,32,32,32,32,32,32,32,32,64,32,32,64,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,32,32,32,32,32,32,32,32,64,32,32,32,64,32,32,32,64,32,32,32,32,32,64,32,32,32,32,64,64,32,32,64,32,32,32,32,32,32,64,32,32,32,64,32,32,32,32,32,32,32,64,64,32,64,32,32,64,32,32,32,32,80,32,32,96,32,64,32,32,64,32,32,32,32,64,32,32,32,32,32,32,32,32,32,32,32,64,32,32,64,32,64,32,64,64,32,32,32,32,32,32,32,64,32,32,32,32,64,64,32,32,32,32,32,32,64,64,32,32,64,32,32,32,32,32,32,32,32,32,64,32,64,32,32,32,64,32,64,32,32,64,32,32,64,32,32,32,32,64,32,64,32,32,64,32,32,64,64,32,64,32,32,32,32,32,32,32,32,32,32,32,64,64,64,32,32,32,64,64,32,64,32,32,64,32,32,64,32,32,64,32,32,64,32,64,32,32,32,64,32,32,32,32,32,64,32,64,32,32,32,64,64,64,32,32,32,32,64,32,64,32,64,32,32,32,32,32,32,32,32,64,32,32,32,32,32,64,32,64,64,32,32,32,64,32,32,32,64,32,32,64,32,32,96,64,32,32,64,32,64,64,32,32,32,32,32,32,64,32,32,64,32,32,32,32,32,64,64,32,32,64,32,64,32,64,32,32,32,64,32,32,64,32,32,32,32,32,32,64,32,32,32,64,32,32,32,64,32,32,64,32,64,32,32,64,64,32,32,32,32,64,64,32,64,32,32,32,32,64,32,32,32,64,32,32,32,32,32,32,32,32,32,64,32,32,32,32,64,64,32,32,32,32,32,32,32,32,32,32,32,32,64,32,32,32,64,64,32,32,32,64,32,32,32,32,64,32,32,32,32,32,32,64,32,64,32,32,32,32,32,32,32,32,32,32,32,32,64,32,32,32,64,64,64,64,64,64,64,32,32,32,32,32,32,32,64,32,32,32,32,32,32,32,64,32,32,32,64,32,32,32,32,32,32,32,32,32,64,32,32,64,32,32,64,32,64,32,32,64,32,64,32,32,32,64,32,32,32,32,32,64,32,32,32,32,32,64,32,32,64,32,64,32,32,32,32,32,32,80,32,96,32,32,32,96,96,96,32,96,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,64,32,64,64,64,64,32,64,32,32,32,64,64,48,32,32,32,32,32,32,64,64,64,32,32,64,64,32,64,32,64,64,64,32,32,32,32,32,64,32,32,32,32,32,48,32,32,64,64,32,32,64,128,32,64,64,64,32,64,32,32,32,32,32,32,32,64,32,64,64,32,32,64,64,32,32,64,32,64,64,64,32,64,32,32,64,32,64,32,32,64,128,64,32,64,128,32,64,64,32,64,64,32,64,32,32,32,32,32,32,32,64,32,64,64,64,32,32,64,32,32,32,64,32,32,32,32,64,32,32,64,32,64,32,64,32,64,32,64,32,32,128,32,32,64,64,32,64,128,64,32,64,64,64,32,32,32,128,32,64,128,32,32,64,64,64,32,32,64,64,32,48,64,32,64,64,32,32,32,32,32,32,64,32,32,32,32,32,64,32,32,128,64,32,64,32,64,32,32,64,32,64,32,32,32,32,160,32,80,32,80,32,96,32,96,32,64,64,32,64,32,32,64,48,64,32,32,64,32,64,32,32,128,32,32,32,128,32,32,64,64,32,64,32,32,32,128,32,64,32,64,64,64,32,32,64,64,32,32,64,64,32,64,64,64,64,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,96,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,96,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,80,64,64,128,96,32,80,32,32,32,32,32,96,32,32,32,32,96,32,32,32,32,32,32,80,96,96,32,80,96,32,32,64,64,64,80,32,64,32,64,64,64,64,32,32,128,64,32,64,64,32,32,32,64,32,32,64,32,32,64,64,32,48,32,64,32,32,64,32,64,64,32,32,64,32,64,32,64,32,64,32,32,32,64,32,32,32,64,32,64,128,64,64,32,32,32,64,64,32,64,64,64,32,32,32,64,32,64,32,32,64,64,64,64,64,64,32,64,48,128,128,32,64,32,32,64,32,32,32,64,32,64,32,64,64,64,32,64,32,32,32,64,64,32,32,32,32,32,64,64,64,32,32,64,64,32,32,32,32,32,128,64,32,32,32,64,32,128,128,32,32,32,96,32,32,32,32,32,80,96,96,80,80,32,96,64,64,128,128,64,64,32,64,64,64,32,32,32,32,32,48,64,32,64,32,32,64,64,32,64,32,64,32,32,64,32,32,64,32,64,32,32,32,32,32,128,64,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,96,32,32,32,64,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,64,64,64,32,32,32]},"profile":{"libs":[{"start":4504502272,"end":4504506368,"offset":0,"name":"plugin-container","path":"/Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/plugin-container","debugName":"plugin-container","debugPath":"/Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/plugin-container","breakpadId":"B5A80C40794A3C129E5E90BE32676F300","arch":"x86_64"},{"start":4504526848,"end":4504530944,"offset":0,"name":"libplugin_child_interpose.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libplugin_child_interpose.dylib","debugName":"libplugin_child_interpose.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libplugin_child_interpose.dylib","breakpadId":"61AF87DC3B743C5088E057C011B6255F0","arch":"x86_64"},{"start":4504547328,"end":4506951680,"offset":0,"name":"libnss3.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libnss3.dylib","debugName":"libnss3.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libnss3.dylib","breakpadId":"0B2B0701F18F3BD9910BCEFB36EBF4880","arch":"x86_64"},{"start":4507205632,"end":4587945984,"offset":0,"name":"XUL","path":"/Applications/Firefox.app/Contents/MacOS/XUL","debugName":"XUL","debugPath":"/Applications/Firefox.app/Contents/MacOS/XUL","breakpadId":"EB86C47B0FFD336CA73023EDAAC39A780","arch":"x86_64"},{"start":4594192384,"end":4594327552,"offset":0,"name":"libmozglue.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libmozglue.dylib","debugName":"libmozglue.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libmozglue.dylib","breakpadId":"3A1D0C0ADA93388FA22051EAF09B44970","arch":"x86_64"},{"start":4594380800,"end":4594429952,"offset":0,"name":"liblgpllibs.dylib","path":"/Applications/Firefox.app/Contents/MacOS/liblgpllibs.dylib","debugName":"liblgpllibs.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/liblgpllibs.dylib","breakpadId":"254E373F8EE63F6698D260FDECFD5F7E0","arch":"x86_64"},{"start":6105456640,"end":6105710592,"offset":0,"name":"libsoftokn3.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libsoftokn3.dylib","debugName":"libsoftokn3.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libsoftokn3.dylib","breakpadId":"5873ABCCCE9E3D9C8E2F5A0CCEF5B56B0","arch":"x86_64"},{"start":6230986752,"end":6231445504,"offset":0,"name":"libfreebl3.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libfreebl3.dylib","debugName":"libfreebl3.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libfreebl3.dylib","breakpadId":"3920735A13DE39CAA83C63C4DBE2D77C0","arch":"x86_64"},{"start":6443499520,"end":6449102848,"offset":0,"name":"AppleIntelHD5000GraphicsGLDriver","path":"/System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver","debugName":"AppleIntelHD5000GraphicsGLDriver","debugPath":"/System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver","breakpadId":"603F465ADB273BDCA7029107EA5CF3A40","arch":"x86_64"},{"start":140735370268672,"end":140735377215488,"offset":0,"name":"JavaScriptCore","path":"/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore","debugName":"JavaScriptCore","debugPath":"/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore","breakpadId":"E12A9CB4C807360283576037579F6A130","arch":"x86_64"},{"start":140735377215488,"end":140735380766720,"offset":0,"name":"libobjc.A.dylib","path":"/usr/lib/libobjc.A.dylib","debugName":"libobjc.A.dylib","debugPath":"/usr/lib/libobjc.A.dylib","breakpadId":"7489D2D61EFD3414B18D2AECCCC902860","arch":"x86_64h"},{"start":140735381159936,"end":140735383891968,"offset":0,"name":"Security","path":"/System/Library/Frameworks/Security.framework/Versions/A/Security","debugName":"Security","debugPath":"/System/Library/Frameworks/Security.framework/Versions/A/Security","breakpadId":"7C5B8DEF3D0234109BD32B1251F84D4B0","arch":"x86_64"},{"start":140735383957504,"end":140735386112000,"offset":0,"name":"libicucore.A.dylib","path":"/usr/lib/libicucore.A.dylib","debugName":"libicucore.A.dylib","debugPath":"/usr/lib/libicucore.A.dylib","breakpadId":"35315A29E21C3CC58BD6E07A3AE8FC0D0","arch":"x86_64"},{"start":140735403868160,"end":140735403880448,"offset":0,"name":"libsystem_coreservices.dylib","path":"/usr/lib/system/libsystem_coreservices.dylib","debugName":"libsystem_coreservices.dylib","debugPath":"/usr/lib/system/libsystem_coreservices.dylib","breakpadId":"1B3F5AFCFFCD3ECB8B9A5538366FB20D0","arch":"x86_64"},{"start":140735403880448,"end":140735404290048,"offset":0,"name":"libAVFAudio.dylib","path":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib","debugName":"libAVFAudio.dylib","debugPath":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib","breakpadId":"1A98DBF3490B37FB928AAB1E36E6E5DD0","arch":"x86_64"},{"start":140735404322816,"end":140735404359680,"offset":0,"name":"libsystem_platform.dylib","path":"/usr/lib/system/libsystem_platform.dylib","debugName":"libsystem_platform.dylib","debugPath":"/usr/lib/system/libsystem_platform.dylib","breakpadId":"29A905EF67773C3382B06C3A88C4BA150","arch":"x86_64"},{"start":140735404359680,"end":140735404396544,"offset":0,"name":"libGFXShared.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","debugName":"libGFXShared.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","breakpadId":"1CDE5AEF3E443547879EBB490EE7702C0","arch":"x86_64"},{"start":140735404396544,"end":140735405363200,"offset":0,"name":"QuickLookUI","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI","debugName":"QuickLookUI","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI","breakpadId":"5A4AAFECD38C3DA09361CBF1D4C6B3760","arch":"x86_64"},{"start":140735405363200,"end":140735405506560,"offset":0,"name":"IconServices","path":"/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices","debugName":"IconServices","debugPath":"/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices","breakpadId":"CDEEDBE6F53B3BA182D423BCA3DD89490","arch":"x86_64"},{"start":140735406780416,"end":140735406792704,"offset":0,"name":"SecurityHI","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI","debugName":"SecurityHI","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI","breakpadId":"A4CEFD45C51C381CA57BFF75D90C680F0","arch":"x86_64"},{"start":140735406800896,"end":140735406813184,"offset":0,"name":"EFILogin","path":"/System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin","debugName":"EFILogin","debugPath":"/System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin","breakpadId":"38150198DD7F3C73BCAAC74BB376393A0","arch":"x86_64"},{"start":140735406813184,"end":140735406829568,"offset":0,"name":"libsystem_sandbox.dylib","path":"/usr/lib/system/libsystem_sandbox.dylib","debugName":"libsystem_sandbox.dylib","debugPath":"/usr/lib/system/libsystem_sandbox.dylib","breakpadId":"30671DCC265F325AB33D11CD336B3DA30","arch":"x86_64"},{"start":140735408156672,"end":140735408218112,"offset":0,"name":"libbz2.1.0.dylib","path":"/usr/lib/libbz2.1.0.dylib","debugName":"libbz2.1.0.dylib","debugPath":"/usr/lib/libbz2.1.0.dylib","breakpadId":"28E54258C0FE38D4AB761734CACCB3440","arch":"x86_64"},{"start":140735408218112,"end":140735408332800,"offset":0,"name":"ApplePushService","path":"/System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService","debugName":"ApplePushService","debugPath":"/System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService","breakpadId":"CAD47B6EA5813B35885B67B206F41D5E0","arch":"x86_64"},{"start":140735409152000,"end":140735409426432,"offset":0,"name":"Metal","path":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","debugName":"Metal","debugPath":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","breakpadId":"7DCBE573B7133C50A16E2F33A84C3CFB0","arch":"x86_64"},{"start":140735410532352,"end":140735410843648,"offset":0,"name":"CoreMediaIO","path":"/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO","debugName":"CoreMediaIO","debugPath":"/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO","breakpadId":"B974A22561C634DDAC2A495BD6A393B30","arch":"x86_64"},{"start":140735411191808,"end":140735411240960,"offset":0,"name":"libChineseTokenizer.dylib","path":"/usr/lib/libChineseTokenizer.dylib","debugName":"libChineseTokenizer.dylib","debugPath":"/usr/lib/libChineseTokenizer.dylib","breakpadId":"79B8C67A30613C7892CD4650719E68D40","arch":"x86_64"},{"start":140735411240960,"end":140735411593216,"offset":0,"name":"AE","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","debugName":"AE","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","breakpadId":"AD492742F884386BA450FAC281B9FFA40","arch":"x86_64"},{"start":140735411593216,"end":140735412154368,"offset":0,"name":"CoreSymbolication","path":"/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication","debugName":"CoreSymbolication","debugPath":"/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication","breakpadId":"4730422E417834F98550BB92F2A4F44B0","arch":"x86_64"},{"start":140735412531200,"end":140735412928512,"offset":0,"name":"QuickLook","path":"/System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook","debugName":"QuickLook","debugPath":"/System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook","breakpadId":"ECD331695EB13783AF9E1AB9240F83580","arch":"x86_64"},{"start":140735412928512,"end":140735414554624,"offset":0,"name":"libGLProgrammability.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib","debugName":"libGLProgrammability.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib","breakpadId":"F5AE40EBA28B3F3B8E4C0C0D73E47EDB0","arch":"x86_64"},{"start":140735414624256,"end":140735423606784,"offset":0,"name":"libclh.dylib","path":"/System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib","debugName":"libclh.dylib","debugPath":"/System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib","breakpadId":"1E01D7A333E43A799C8924254CE48D4A0","arch":"x86_64"},{"start":140735429963776,"end":140735438741504,"offset":0,"name":"GeForceGLDriver","path":"/System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver","debugName":"GeForceGLDriver","debugPath":"/System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver","breakpadId":"0206BA568CA633DDB67D48E5B0AD1CD50","arch":"x86_64"},{"start":140735438888960,"end":140735439925248,"offset":0,"name":"libFontParser.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","debugName":"libFontParser.dylib","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","breakpadId":"62796E9936B736B68D335349F88014C30","arch":"x86_64"},{"start":140735440220160,"end":140735440420864,"offset":0,"name":"CoreAVCHD","path":"/System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD","debugName":"CoreAVCHD","debugPath":"/System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD","breakpadId":"4AAFB1C4370830F9ACFA90564347204C0","arch":"x86_64"},{"start":140735440465920,"end":140735440576512,"offset":0,"name":"liblzma.5.dylib","path":"/usr/lib/liblzma.5.dylib","debugName":"liblzma.5.dylib","debugPath":"/usr/lib/liblzma.5.dylib","breakpadId":"CC03591BFA573CA5AC810D76033AC0CE0","arch":"x86_64"},{"start":140735440687104,"end":140735441022976,"offset":0,"name":"libcups.2.dylib","path":"/usr/lib/libcups.2.dylib","debugName":"libcups.2.dylib","debugPath":"/usr/lib/libcups.2.dylib","breakpadId":"4198A94DA46C39AA92B683D0BA507D6C0","arch":"x86_64"},{"start":140735441022976,"end":140735445204992,"offset":0,"name":"libLAPACK.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","debugName":"libLAPACK.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","breakpadId":"987E42B05108306587F09DF7616A8A060","arch":"x86_64h"},{"start":140735445241856,"end":140735445254144,"offset":0,"name":"libCVMSPluginSupport.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","debugName":"libCVMSPluginSupport.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","breakpadId":"4AA6710A62673062BFF227DB5E6B58920","arch":"x86_64"},{"start":140735446953984,"end":140735446962176,"offset":0,"name":"TrustEvaluationAgent","path":"/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent","debugName":"TrustEvaluationAgent","debugPath":"/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent","breakpadId":"0239494EFEFE39BC9FC7E251BA5128F10","arch":"x86_64"},{"start":140735446962176,"end":140735447252992,"offset":0,"name":"libauto.dylib","path":"/usr/lib/libauto.dylib","debugName":"libauto.dylib","debugPath":"/usr/lib/libauto.dylib","breakpadId":"999E610F41FC32A3ADCA5EC049B65DFB0","arch":"x86_64"},{"start":140735447252992,"end":140735447339008,"offset":0,"name":"libCGInterfaces.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib","debugName":"libCGInterfaces.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib","breakpadId":"5079DE4F371732FFB76A77F53236D17D0","arch":"x86_64h"},{"start":140735447384064,"end":140735447764992,"offset":0,"name":"libTIFF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","debugName":"libTIFF.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","breakpadId":"2A22E6B7213B3253838FC3EC3C8F27270","arch":"x86_64h"},{"start":140735447764992,"end":140735447818240,"offset":0,"name":"OpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","debugName":"OpenDirectory","debugPath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","breakpadId":"31A67AD55CC2350A96D7821DF4BC41960","arch":"x86_64"},{"start":140735447945216,"end":140735448260608,"offset":0,"name":"HIServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","debugName":"HIServices","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","breakpadId":"E4E1BD10F4753E199E0BA5071D158F470","arch":"x86_64"},{"start":140735448764416,"end":140735448993792,"offset":0,"name":"LDAP","path":"/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP","debugName":"LDAP","debugPath":"/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP","breakpadId":"9AE33BF2FB17342D8F1E5F83C6E6EB690","arch":"x86_64"},{"start":140735449333760,"end":140735450570752,"offset":0,"name":"CoreText","path":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","debugName":"CoreText","debugPath":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","breakpadId":"08E8640E66023A00BC2894235FD311B40","arch":"x86_64"},{"start":140735450570752,"end":140735454957568,"offset":0,"name":"FaceCore","path":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","debugName":"FaceCore","debugPath":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","breakpadId":"E54028EA42173078A2B1C52E4214D59E0","arch":"x86_64"},{"start":140735454957568,"end":140735455539200,"offset":0,"name":"libsystem_c.dylib","path":"/usr/lib/system/libsystem_c.dylib","debugName":"libsystem_c.dylib","debugPath":"/usr/lib/system/libsystem_c.dylib","breakpadId":"CDEBF2BBA57830F5846F96274951C3C50","arch":"x86_64"},{"start":140735455850496,"end":140735456432128,"offset":0,"name":"AppleJPEG","path":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","debugName":"AppleJPEG","debugPath":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","breakpadId":"558ACADAC41F3EEF82A0C2D7B13C54280","arch":"x86_64"},{"start":140735456571392,"end":140735457517568,"offset":0,"name":"libcrypto.0.9.8.dylib","path":"/usr/lib/libcrypto.0.9.8.dylib","debugName":"libcrypto.0.9.8.dylib","debugPath":"/usr/lib/libcrypto.0.9.8.dylib","breakpadId":"2486D801C7563488B5191AA6807E89480","arch":"x86_64"},{"start":140735457730560,"end":140735457841152,"offset":0,"name":"Kerberos","path":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","debugName":"Kerberos","debugPath":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","breakpadId":"1B4744BFE5AE38E2AA56E22D3270F2E80","arch":"x86_64"},{"start":140735457841152,"end":140735457857536,"offset":0,"name":"libCoreFSCache.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","debugName":"libCoreFSCache.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","breakpadId":"2389D7DAB8EF3EB4AAAFFBEDE01CDECA0","arch":"x86_64"},{"start":140735457857536,"end":140735458840576,"offset":0,"name":"libxml2.2.dylib","path":"/usr/lib/libxml2.2.dylib","debugName":"libxml2.2.dylib","debugPath":"/usr/lib/libxml2.2.dylib","breakpadId":"4096C2EA66593F22AC601E2F30BDD2B70","arch":"x86_64"},{"start":140735458840576,"end":140735458848768,"offset":0,"name":"liblangid.dylib","path":"/usr/lib/liblangid.dylib","debugName":"liblangid.dylib","debugPath":"/usr/lib/liblangid.dylib","breakpadId":"9CC4F0D15C513B69BC8FEE3A51FD08220","arch":"x86_64"},{"start":140735458930688,"end":140735459917824,"offset":0,"name":"libJP2.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","debugName":"libJP2.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","breakpadId":"27371567A1223217ADA03A446EF6A3E90","arch":"x86_64h"},{"start":140735461052416,"end":140735461494784,"offset":0,"name":"CoreWLAN","path":"/System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN","debugName":"CoreWLAN","debugPath":"/System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN","breakpadId":"3B35C5437FCE333F80C1432FA41DDCDE0","arch":"x86_64"},{"start":140735461638144,"end":140735464419328,"offset":0,"name":"CoreData","path":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","debugName":"CoreData","debugPath":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","breakpadId":"A29A54916169372B828F84EE0CFD4BC40","arch":"x86_64"},{"start":140735464419328,"end":140735464583168,"offset":0,"name":"ChunkingLibrary","path":"/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary","debugName":"ChunkingLibrary","debugPath":"/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary","breakpadId":"AD7F285C005E36BB98A35826413533BE0","arch":"x86_64"},{"start":140735464628224,"end":140735464632320,"offset":0,"name":"Carbon","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon","debugName":"Carbon","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon","breakpadId":"8F6ED60259433E29A793BC331E2C183D0","arch":"x86_64"},{"start":140735465189376,"end":140735465361408,"offset":0,"name":"libxslt.1.dylib","path":"/usr/lib/libxslt.1.dylib","debugName":"libxslt.1.dylib","debugPath":"/usr/lib/libxslt.1.dylib","breakpadId":"27DE3F2ECE963327A563788EE3E2775B0","arch":"x86_64"},{"start":140735472545792,"end":140735472558080,"offset":0,"name":"libutil.dylib","path":"/usr/lib/libutil.dylib","debugName":"libutil.dylib","debugPath":"/usr/lib/libutil.dylib","breakpadId":"4C9BFE8B563B3EEAA3238F4F14E0A46C0","arch":"x86_64"},{"start":140735473594368,"end":140735473623040,"offset":0,"name":"IOAccelerator","path":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","debugName":"IOAccelerator","debugPath":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","breakpadId":"851B6BF85B7F3FB59E4510AAE3BF74380","arch":"x86_64"},{"start":140735473729536,"end":140735473860608,"offset":0,"name":"Apple80211","path":"/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211","debugName":"Apple80211","debugPath":"/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211","breakpadId":"AE7795B845903714999D3FBFF6BF5D930","arch":"x86_64"},{"start":140735473860608,"end":140735473893376,"offset":0,"name":"libcompiler_rt.dylib","path":"/usr/lib/system/libcompiler_rt.dylib","debugName":"libcompiler_rt.dylib","debugPath":"/usr/lib/system/libcompiler_rt.dylib","breakpadId":"A13ECF69F59F38AE86097B731450FBCD0","arch":"x86_64"},{"start":140735474249728,"end":140735474356224,"offset":0,"name":"CFOpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","debugName":"CFOpenDirectory","debugPath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","breakpadId":"11F9567255E03F9D91715E8C56AEE9480","arch":"x86_64"},{"start":140735474421760,"end":140735474438144,"offset":0,"name":"Help","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help","debugName":"Help","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help","breakpadId":"35DA4D480BC235A18D7C40905CDF4F640","arch":"x86_64"},{"start":140735474438144,"end":140735476191232,"offset":0,"name":"GLEngine","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine","debugName":"GLEngine","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine","breakpadId":"32029589A64E3E6BA024F985765766A20","arch":"x86_64"},{"start":140735491973120,"end":140735492046848,"offset":0,"name":"libSparseBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","debugName":"libSparseBLAS.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","breakpadId":"EBEB38483468342A91A65C47F2369CD90","arch":"x86_64h"},{"start":140735492198400,"end":140735492202496,"offset":0,"name":"Quartz","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Quartz","debugName":"Quartz","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Quartz","breakpadId":"5DC3D0D99E3F3AA592F1F229907A49B90","arch":"x86_64"},{"start":140735493005312,"end":140735493021696,"offset":0,"name":"libspindump.dylib","path":"/usr/lib/libspindump.dylib","debugName":"libspindump.dylib","debugPath":"/usr/lib/libspindump.dylib","breakpadId":"48F4C6739F0C38BEB55088241E8125180","arch":"x86_64"},{"start":140735493021696,"end":140735493025792,"offset":0,"name":"libenergytrace.dylib","path":"/usr/lib/libenergytrace.dylib","debugName":"libenergytrace.dylib","debugPath":"/usr/lib/libenergytrace.dylib","breakpadId":"0A491CA734513FD5999A58AB4362682B0","arch":"x86_64"},{"start":140735493025792,"end":140735493296128,"offset":0,"name":"libGLU.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","debugName":"libGLU.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","breakpadId":"C56DDF90CF6D30D2A3E689288BE69DCB0","arch":"x86_64"},{"start":140735495749632,"end":140735495757824,"offset":0,"name":"libSystem.B.dylib","path":"/usr/lib/libSystem.B.dylib","debugName":"libSystem.B.dylib","debugPath":"/usr/lib/libSystem.B.dylib","breakpadId":"CD307E99FC5C3575BCCE0C861AA631240","arch":"x86_64"},{"start":140735495757824,"end":140735495766016,"offset":0,"name":"Print","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print","debugName":"Print","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print","breakpadId":"3E85F70CD7D434E1B88AC1F503F99CDA0","arch":"x86_64"},{"start":140735496216576,"end":140735496224768,"offset":0,"name":"libsystem_secinit.dylib","path":"/usr/lib/system/libsystem_secinit.dylib","debugName":"libsystem_secinit.dylib","debugPath":"/usr/lib/system/libsystem_secinit.dylib","breakpadId":"32B1A8C6DC843F4FB8CE9A52B47C3E6B0","arch":"x86_64"},{"start":140735496880128,"end":140735497084928,"offset":0,"name":"GSS","path":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","debugName":"GSS","debugPath":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","breakpadId":"B490333A3B3E397AAD7568846E9A91400","arch":"x86_64"},{"start":140735497084928,"end":140735497109504,"offset":0,"name":"ImageCapture","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture","debugName":"ImageCapture","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture","breakpadId":"ACECF0B77D923A22BF47E8FADF4C53780","arch":"x86_64"},{"start":140735497109504,"end":140735497228288,"offset":0,"name":"libresolv.9.dylib","path":"/usr/lib/libresolv.9.dylib","debugName":"libresolv.9.dylib","debugPath":"/usr/lib/libresolv.9.dylib","breakpadId":"A650B5C8195036A086D10B2465318BFA0","arch":"x86_64"},{"start":140735497228288,"end":140735498960896,"offset":0,"name":"AudioToolbox","path":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","debugName":"AudioToolbox","debugPath":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","breakpadId":"082319FC59F23D36AC9B94759724E3020","arch":"x86_64"},{"start":140735499005952,"end":140735499010048,"offset":0,"name":"AudioUnit","path":"/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit","debugName":"AudioUnit","debugPath":"/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit","breakpadId":"93C1D64237D43692AD35DCAD04F9610B0","arch":"x86_64"},{"start":140735506554880,"end":140735506583552,"offset":0,"name":"SpeechRecognition","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition","debugName":"SpeechRecognition","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition","breakpadId":"9E5A980AF45532D5BBEE3BD6018CC45E0","arch":"x86_64"},{"start":140735506923520,"end":140735506960384,"offset":0,"name":"libcldcpuengine.dylib","path":"/System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib","debugName":"libcldcpuengine.dylib","debugPath":"/System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib","breakpadId":"B385841AB5733A919BEBCC89CB2716B30","arch":"x86_64"},{"start":140735508774912,"end":140735508791296,"offset":0,"name":"Mangrove","path":"/System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove","debugName":"Mangrove","debugPath":"/System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove","breakpadId":"2D86B3AD64C33BB4BC661CFD0C90E8440","arch":"x86_64"},{"start":140735508791296,"end":140735511830528,"offset":0,"name":"CarbonCore","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","debugName":"CarbonCore","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","breakpadId":"2DBAFC9A6CD6351DB1F487D81AA6D6400","arch":"x86_64"},{"start":140735511842816,"end":140735512530944,"offset":0,"name":"LanguageModeling","path":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","debugName":"LanguageModeling","debugPath":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","breakpadId":"58C18A47BDE73CBE81C0797029D170A10","arch":"x86_64"},{"start":140735512530944,"end":140735512870912,"offset":0,"name":"ImageCaptureCore","path":"/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore","debugName":"ImageCaptureCore","debugPath":"/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore","breakpadId":"9F3123D829D2332FAD6BAB9BF1A580220","arch":"x86_64"},{"start":140735512870912,"end":140735512887296,"offset":0,"name":"IOSurface","path":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","debugName":"IOSurface","debugPath":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","breakpadId":"A0037B0A277A393E9BF6688595BD564D0","arch":"x86_64"},{"start":140735513333760,"end":140735513337856,"offset":0,"name":"libunc.dylib","path":"/usr/lib/system/libunc.dylib","debugName":"libunc.dylib","debugPath":"/usr/lib/system/libunc.dylib","breakpadId":"DDB1E947C77533B8B46163E5EB698F0E0","arch":"x86_64"},{"start":140735513337856,"end":140735513952256,"offset":0,"name":"Ink","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink","debugName":"Ink","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink","breakpadId":"1F76CF363F7936B8BC37C540AF34B3380","arch":"x86_64"},{"start":140735515729920,"end":140735515881472,"offset":0,"name":"QuartzFilters","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters","debugName":"QuartzFilters","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters","breakpadId":"F5C482E25AFB39598C01C149D48E75830","arch":"x86_64"},{"start":140735516348416,"end":140735516385280,"offset":0,"name":"libcopyfile.dylib","path":"/usr/lib/system/libcopyfile.dylib","debugName":"libcopyfile.dylib","debugPath":"/usr/lib/system/libcopyfile.dylib","breakpadId":"A48637BCF3F234F2BB684C65FD0128320","arch":"x86_64"},{"start":140735516733440,"end":140735516753920,"offset":0,"name":"libGIF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","debugName":"libGIF.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","breakpadId":"D3F44A33355E3154A4651C732AAC5F750","arch":"x86_64h"},{"start":140735516766208,"end":140735516839936,"offset":0,"name":"libsystem_trace.dylib","path":"/usr/lib/system/libsystem_trace.dylib","debugName":"libsystem_trace.dylib","debugPath":"/usr/lib/system/libsystem_trace.dylib","breakpadId":"2510454252513E8DB14A9E37207218BC0","arch":"x86_64"},{"start":140735517237248,"end":140735517409280,"offset":0,"name":"libc++abi.dylib","path":"/usr/lib/libc++abi.dylib","debugName":"libc++abi.dylib","debugPath":"/usr/lib/libc++abi.dylib","breakpadId":"DCCC81773D0935BC97842A04FEC4C71B0","arch":"x86_64"},{"start":140735517863936,"end":140735517876224,"offset":0,"name":"SecCodeWrapper","path":"/System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper","debugName":"SecCodeWrapper","debugPath":"/System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper","breakpadId":"1F83259159A83B3F943FD6D8274637820","arch":"x86_64"},{"start":140735517876224,"end":140735518990336,"offset":0,"name":"libvDSP.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","debugName":"libvDSP.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","breakpadId":"9AB6CA3C4F0E35E691849DF86E7C3DAD0","arch":"x86_64h"},{"start":140735520952320,"end":140735520956416,"offset":0,"name":"liblaunch.dylib","path":"/usr/lib/system/liblaunch.dylib","debugName":"liblaunch.dylib","debugPath":"/usr/lib/system/liblaunch.dylib","breakpadId":"1CD7619DAF2E34D18EC68021CF473D9B0","arch":"x86_64"},{"start":140735524982784,"end":140735525642240,"offset":0,"name":"ViewBridge","path":"/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge","debugName":"ViewBridge","debugPath":"/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge","breakpadId":"D8131B7EDFC93FDD9D5649821C1D15210","arch":"x86_64"},{"start":140735529152512,"end":140735529160704,"offset":0,"name":"libremovefile.dylib","path":"/usr/lib/system/libremovefile.dylib","debugName":"libremovefile.dylib","debugPath":"/usr/lib/system/libremovefile.dylib","breakpadId":"552EF39E14D7363E90594565AC2F894E0","arch":"x86_64"},{"start":140735529160704,"end":140735529222144,"offset":0,"name":"OpenGL","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","debugName":"OpenGL","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","breakpadId":"AEA28993BA3E3E0FA2F588C312ABB6340","arch":"x86_64"},{"start":140735529623552,"end":140735529803776,"offset":0,"name":"ContactsFoundation","path":"/System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation","debugName":"ContactsFoundation","debugPath":"/System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation","breakpadId":"BAE70E9DBCC83650B5546D646388EDEF0","arch":"x86_64"},{"start":140735529803776,"end":140735530147840,"offset":0,"name":"libc++.1.dylib","path":"/usr/lib/libc++.1.dylib","debugName":"libc++.1.dylib","debugPath":"/usr/lib/libc++.1.dylib","breakpadId":"8FC3D139805534989AC56467CB7F4D140","arch":"x86_64"},{"start":140735530549248,"end":140735530561536,"offset":0,"name":"libsystem_configuration.dylib","path":"/usr/lib/system/libsystem_configuration.dylib","debugName":"libsystem_configuration.dylib","debugPath":"/usr/lib/system/libsystem_configuration.dylib","breakpadId":"3DEB7DF9680437E1BC830166882FF0FF0","arch":"x86_64"},{"start":140735530561536,"end":140735530569728,"offset":0,"name":"libsystem_blocks.dylib","path":"/usr/lib/system/libsystem_blocks.dylib","debugName":"libsystem_blocks.dylib","debugPath":"/usr/lib/system/libsystem_blocks.dylib","breakpadId":"1244D9D5F6AA35BBB30786851C24B8E50","arch":"x86_64"},{"start":140735532089344,"end":140735532093440,"offset":0,"name":"Cocoa","path":"/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa","debugName":"Cocoa","debugPath":"/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa","breakpadId":"807787ABD2313F51A99BA9314623C5710","arch":"x86_64"},{"start":140735536041984,"end":140735536066560,"offset":0,"name":"libheimdal-asn1.dylib","path":"/usr/lib/libheimdal-asn1.dylib","debugName":"libheimdal-asn1.dylib","debugPath":"/usr/lib/libheimdal-asn1.dylib","breakpadId":"981DE40BFA1636F7BE928C8A115D6CD90","arch":"x86_64"},{"start":140735536066560,"end":140735536148480,"offset":0,"name":"CoreBluetooth","path":"/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth","debugName":"CoreBluetooth","debugPath":"/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth","breakpadId":"E54CA9A2A5C630C59D6E8472DBA9371E0","arch":"x86_64"},{"start":140735536406528,"end":140735536537600,"offset":0,"name":"vCard","path":"/System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard","debugName":"vCard","debugPath":"/System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard","breakpadId":"41529BD91BCC3A6292BA2A71108673550","arch":"x86_64"},{"start":140735536640000,"end":140735542026240,"offset":0,"name":"QuartzComposer","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer","debugName":"QuartzComposer","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer","breakpadId":"80235264CA1B3E3F96F75F6F52FDC5B60","arch":"x86_64"},{"start":140735542026240,"end":140735542038528,"offset":0,"name":"libRadiance.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","debugName":"libRadiance.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","breakpadId":"A5EFA292AFD43FCE8802958AD60F75DA0","arch":"x86_64h"},{"start":140735542038528,"end":140735542497280,"offset":0,"name":"DataDetectorsCore","path":"/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore","debugName":"DataDetectorsCore","debugPath":"/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore","breakpadId":"8EF4EECC4FF136DF84CF65545555A2250","arch":"x86_64"},{"start":140735542530048,"end":140735542624256,"offset":0,"name":"CoreMediaAuthoring","path":"/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring","debugName":"CoreMediaAuthoring","debugPath":"/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring","breakpadId":"06C2E0E2BA5C3BB18DD755613EDD654D0","arch":"x86_64"},{"start":140735542624256,"end":140735543107584,"offset":0,"name":"IOKit","path":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","debugName":"IOKit","debugPath":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","breakpadId":"FB2AD43B905D3BD0BE17ACE7D4D13E240","arch":"x86_64"},{"start":140735543808000,"end":140735543816192,"offset":0,"name":"libDiagnosticMessagesClient.dylib","path":"/usr/lib/libDiagnosticMessagesClient.dylib","debugName":"libDiagnosticMessagesClient.dylib","debugPath":"/usr/lib/libDiagnosticMessagesClient.dylib","breakpadId":"4243B6B421E9355B9C5A95A216233B960","arch":"x86_64"},{"start":140735543853056,"end":140735543943168,"offset":0,"name":"ToneKit","path":"/System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit","debugName":"ToneKit","debugPath":"/System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit","breakpadId":"6D5AD263308F3F708D867027569D26940","arch":"x86_64"},{"start":140735543943168,"end":140735543980032,"offset":0,"name":"FSEvents","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","debugName":"FSEvents","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","breakpadId":"7F5B7A23BC1D3FA9A9B8D534F1E1979A0","arch":"x86_64"},{"start":140735543980032,"end":140735544016896,"offset":0,"name":"libMatch.1.dylib","path":"/usr/lib/libMatch.1.dylib","debugName":"libMatch.1.dylib","debugPath":"/usr/lib/libMatch.1.dylib","breakpadId":"3AC0BFB87E693DBEA1757F3946FC45540","arch":"x86_64"},{"start":140735544016896,"end":140735544606720,"offset":0,"name":"libCoreStorage.dylib","path":"/usr/lib/libCoreStorage.dylib","debugName":"libCoreStorage.dylib","debugPath":"/usr/lib/libCoreStorage.dylib","breakpadId":"EC540EAA089C36D9BBAA0684EDE098AB0","arch":"x86_64"},{"start":140735544782848,"end":140735544844288,"offset":0,"name":"libxar.1.dylib","path":"/usr/lib/libxar.1.dylib","debugName":"libxar.1.dylib","debugPath":"/usr/lib/libxar.1.dylib","breakpadId":"03207F662C4A3DBD8D8170F4C85903C40","arch":"x86_64"},{"start":140735546105856,"end":140735546142720,"offset":0,"name":"CoreDaemon","path":"/System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon","debugName":"CoreDaemon","debugPath":"/System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon","breakpadId":"CC53DC1292313C4F921B9A770D4633230","arch":"x86_64"},{"start":140735546482688,"end":140735546974208,"offset":0,"name":"libcorecrypto.dylib","path":"/usr/lib/system/libcorecrypto.dylib","debugName":"libcorecrypto.dylib","debugPath":"/usr/lib/system/libcorecrypto.dylib","breakpadId":"9D300121CAF838948774DF38FA65F2380","arch":"x86_64"},{"start":140735546974208,"end":140735547006976,"offset":0,"name":"PhoneNumbers","path":"/System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers","debugName":"PhoneNumbers","debugPath":"/System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers","breakpadId":"A616AFB52336385AB05816A423D2B21B0","arch":"x86_64"},{"start":140735547006976,"end":140735547461632,"offset":0,"name":"ATS","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","debugName":"ATS","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","breakpadId":"847DBFBA8D6B367B99FDC6CAA8C05C650","arch":"x86_64"},{"start":140735547539456,"end":140735547682816,"offset":0,"name":"Sharing","path":"/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing","debugName":"Sharing","debugPath":"/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing","breakpadId":"DDD2811C6ECB32F28EE169BF9657B4A80","arch":"x86_64"},{"start":140735547682816,"end":140735547707392,"offset":0,"name":"MediaAccessibility","path":"/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility","debugName":"MediaAccessibility","debugPath":"/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility","breakpadId":"C5E61B4519673602A48C31E132B998B20","arch":"x86_64"},{"start":140735547707392,"end":140735547813888,"offset":0,"name":"OpenScripting","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting","debugName":"OpenScripting","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting","breakpadId":"36EBF6A7334A3197838FE8C7B27FCDBB0","arch":"x86_64"},{"start":140735547977728,"end":140735547981824,"offset":0,"name":"CoreServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","debugName":"CoreServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","breakpadId":"78CB3EACA66E3FD9A1DFA9CF227ED3C30","arch":"x86_64"},{"start":140735548006400,"end":140735548334080,"offset":0,"name":"OpenCL","path":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","debugName":"OpenCL","debugPath":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","breakpadId":"307263BA036838C9A7FB25920343D0DF0","arch":"x86_64"},{"start":140735548334080,"end":140735548338176,"offset":0,"name":"vecLib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib","debugName":"vecLib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib","breakpadId":"054DFE32737D32119A140FC5E1A880E30","arch":"x86_64h"},{"start":140735548395520,"end":140735548514304,"offset":0,"name":"libextension.dylib","path":"/usr/lib/libextension.dylib","debugName":"libextension.dylib","debugPath":"/usr/lib/libextension.dylib","breakpadId":"FD952DA6BBEC3CB698B3E1D111C5C54E0","arch":"x86_64"},{"start":140735548514304,"end":140735548534784,"offset":0,"name":"libcache.dylib","path":"/usr/lib/system/libcache.dylib","debugName":"libcache.dylib","debugPath":"/usr/lib/system/libcache.dylib","breakpadId":"9548AAE92AB735259ECEA2A7C46884470","arch":"x86_64"},{"start":140735552184320,"end":140735552188416,"offset":0,"name":"libkeymgr.dylib","path":"/usr/lib/system/libkeymgr.dylib","debugName":"libkeymgr.dylib","debugPath":"/usr/lib/system/libkeymgr.dylib","breakpadId":"8371CE545FDD3CE9B3DFE98C761B6FE00","arch":"x86_64"},{"start":140735552188416,"end":140735553662976,"offset":0,"name":"libBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","debugName":"libBLAS.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","breakpadId":"A1398FE039D233EA9A0FB2644EEA29A00","arch":"x86_64h"},{"start":140735554510848,"end":140735555506176,"offset":0,"name":"libiconv.2.dylib","path":"/usr/lib/libiconv.2.dylib","debugName":"libiconv.2.dylib","debugPath":"/usr/lib/libiconv.2.dylib","breakpadId":"F05A0A5A92A936688F20F27CBDA26BE90","arch":"x86_64"},{"start":140735555506176,"end":140735559266304,"offset":0,"name":"vImage","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","debugName":"vImage","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","breakpadId":"4BAC9B6F748235808787AB0A5B4D331B0","arch":"x86_64h"},{"start":140735561207808,"end":140735561244672,"offset":0,"name":"NetFS","path":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","debugName":"NetFS","debugPath":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","breakpadId":"842A534624C33F229ECFE586A10EA1F20","arch":"x86_64"},{"start":140735563984896,"end":140735566397440,"offset":0,"name":"AddressBook","path":"/System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook","debugName":"AddressBook","debugPath":"/System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook","breakpadId":"8879002BC87B35959CD2B672F10DD1560","arch":"x86_64"},{"start":140735566782464,"end":140735566807040,"offset":0,"name":"TCC","path":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","debugName":"TCC","debugPath":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","breakpadId":"50F7EC605B213B9BBF2FF037EA7B12FB0","arch":"x86_64"},{"start":140735566807040,"end":140735566843904,"offset":0,"name":"AppleSRP","path":"/System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP","debugName":"AppleSRP","debugPath":"/System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP","breakpadId":"840A5C20645236BBACF729BA6CBF7C480","arch":"x86_64"},{"start":140735566843904,"end":140735566905344,"offset":0,"name":"ToneLibrary","path":"/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary","debugName":"ToneLibrary","debugPath":"/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary","breakpadId":"AF05AF349BC43BA681C17420F22C9D7D0","arch":"x86_64"},{"start":140735567007744,"end":140735567183872,"offset":0,"name":"GLRendererFloat","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat","debugName":"GLRendererFloat","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat","breakpadId":"4063015FBC8F308D9065685F89659F2C0","arch":"x86_64"},{"start":140735568654336,"end":140735568670720,"offset":0,"name":"libdyld.dylib","path":"/usr/lib/system/libdyld.dylib","debugName":"libdyld.dylib","debugPath":"/usr/lib/system/libdyld.dylib","breakpadId":"8390E026F7DE3C3294863DFF6BD131B00","arch":"x86_64"},{"start":140735568670720,"end":140735569235968,"offset":0,"name":"PerformanceAnalysis","path":"/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis","debugName":"PerformanceAnalysis","debugPath":"/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis","breakpadId":"608E8C506F593FEBB822D9B02F3287160","arch":"x86_64"},{"start":140735569235968,"end":140735571132416,"offset":0,"name":"QuartzCore","path":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","debugName":"QuartzCore","debugPath":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","breakpadId":"0283748A831836AC8B308A951FEB305A0","arch":"x86_64"},{"start":140735571132416,"end":140735571156992,"offset":0,"name":"libunwind.dylib","path":"/usr/lib/system/libunwind.dylib","debugName":"libunwind.dylib","debugPath":"/usr/lib/system/libunwind.dylib","breakpadId":"F6EB48E54D12359AAB54C937FBBE90430","arch":"x86_64"},{"start":140735571156992,"end":140735571472384,"offset":0,"name":"CoreLocation","path":"/System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation","debugName":"CoreLocation","debugPath":"/System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation","breakpadId":"6336CFC59D7D3B76B26356DD6EBD0B8D0","arch":"x86_64"},{"start":140735571472384,"end":140735576154112,"offset":0,"name":"CoreFoundation","path":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","debugName":"CoreFoundation","debugPath":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","breakpadId":"943A1383DA6A3DC0ABCDD9AEB3D0D34D0","arch":"x86_64"},{"start":140735576158208,"end":140735576162304,"offset":0,"name":"Accelerate","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate","debugName":"Accelerate","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate","breakpadId":"185EC96A5AF03620A4ED4D3654D25B390","arch":"x86_64h"},{"start":140735577632768,"end":140735577636864,"offset":0,"name":"libmetal_timestamp.dylib","path":"/System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib","debugName":"libmetal_timestamp.dylib","debugPath":"/System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib","breakpadId":"6576F284BACA332AA6E7FA1C347636E30","arch":"x86_64"},{"start":140735580123136,"end":140735580545024,"offset":0,"name":"libsystem_network.dylib","path":"/usr/lib/system/libsystem_network.dylib","debugName":"libsystem_network.dylib","debugPath":"/usr/lib/system/libsystem_network.dylib","breakpadId":"269E5ADD692231E28D557B777263AC0D0","arch":"x86_64"},{"start":140735580545024,"end":140735580934144,"offset":0,"name":"SystemConfiguration","path":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","debugName":"SystemConfiguration","debugPath":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","breakpadId":"10082F5861903A7C8B6CC12B16DC793A0","arch":"x86_64"},{"start":140735581089792,"end":140735581282304,"offset":0,"name":"CoreServicesInternal","path":"/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal","debugName":"CoreServicesInternal","debugPath":"/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal","breakpadId":"6E111F0AD7F13738ADE7CF983BD4EC8B0","arch":"x86_64"},{"start":140735582711808,"end":140735582724096,"offset":0,"name":"ExceptionHandling","path":"/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling","debugName":"ExceptionHandling","debugPath":"/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling","breakpadId":"086E1FB38B753241958506C43B51F2C80","arch":"x86_64"},{"start":140735583088640,"end":140735583211520,"offset":0,"name":"AppleVPA","path":"/System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA","debugName":"AppleVPA","debugPath":"/System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA","breakpadId":"F4AF2363B28E3097AB1EFDA1C92F8F560","arch":"x86_64"},{"start":140735583211520,"end":140735583453184,"offset":0,"name":"DebugSymbols","path":"/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols","debugName":"DebugSymbols","debugPath":"/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols","breakpadId":"23A42C53B94138719EE24C87A46005B50","arch":"x86_64"},{"start":140735583453184,"end":140735583465472,"offset":0,"name":"loginsupport","path":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","debugName":"loginsupport","debugPath":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","breakpadId":"9B2F5F9BED38313FB798D2B667BCD6B50","arch":"x86_64"},{"start":140735583490048,"end":140735583592448,"offset":0,"name":"libcompression.dylib","path":"/usr/lib/libcompression.dylib","debugName":"libcompression.dylib","debugPath":"/usr/lib/libcompression.dylib","breakpadId":"E7601B621053369D8A9E91CF862392200","arch":"x86_64h"},{"start":140735583645696,"end":140735583838208,"offset":0,"name":"libsandbox.1.dylib","path":"/usr/lib/libsandbox.1.dylib","debugName":"libsandbox.1.dylib","debugPath":"/usr/lib/libsandbox.1.dylib","breakpadId":"26158471870A32699E2B7D7963B8E9F30","arch":"x86_64"},{"start":140735583838208,"end":140735583936512,"offset":0,"name":"libmarisa.dylib","path":"/usr/lib/libmarisa.dylib","debugName":"libmarisa.dylib","debugPath":"/usr/lib/libmarisa.dylib","breakpadId":"E4919B03D9BD3AF8B436C415C98E3F0A0","arch":"x86_64"},{"start":140735583936512,"end":140735584178176,"offset":0,"name":"QD","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","debugName":"QD","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","breakpadId":"0FE5318028953D14A1E7F82DE1D106E10","arch":"x86_64"},{"start":140735584178176,"end":140735584198656,"offset":0,"name":"CommonPanels","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels","debugName":"CommonPanels","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels","breakpadId":"4AE7E5AE55B337FA9BDEB23147ADA2E90","arch":"x86_64"},{"start":140735584198656,"end":140735585533952,"offset":0,"name":"QTKit","path":"/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit","debugName":"QTKit","debugPath":"/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit","breakpadId":"88AA19A7717037988CBAB1B8D4763ADB0","arch":"x86_64"},{"start":140735585746944,"end":140735585828864,"offset":0,"name":"ContactsPersistence","path":"/System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence","debugName":"ContactsPersistence","debugPath":"/System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence","breakpadId":"71232F2011BD370D9F43F262BFE46C930","arch":"x86_64"},{"start":140735585828864,"end":140735586017280,"offset":0,"name":"libdispatch.dylib","path":"/usr/lib/system/libdispatch.dylib","debugName":"libdispatch.dylib","debugPath":"/usr/lib/system/libdispatch.dylib","breakpadId":"C749985761A53D7DA5EA65DCC8C3DF920","arch":"x86_64"},{"start":140735586385920,"end":140735587004416,"offset":0,"name":"ColorSync","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync","debugName":"ColorSync","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync","breakpadId":"8FC37E2065793CB29D49BC39FC38DF870","arch":"x86_64"},{"start":140735587004416,"end":140735587119104,"offset":0,"name":"libCRFSuite.dylib","path":"/usr/lib/libCRFSuite.dylib","debugName":"libCRFSuite.dylib","debugPath":"/usr/lib/libCRFSuite.dylib","breakpadId":"078B4CD86A8C3067B2BA0C2A0BAB8AC30","arch":"x86_64"},{"start":140735587278848,"end":140735588171776,"offset":0,"name":"CoreMedia","path":"/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia","debugName":"CoreMedia","debugPath":"/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia","breakpadId":"D2A49E529D2635A8BDDC3BCDBEC5A19E0","arch":"x86_64"},{"start":140735588188160,"end":140735588278272,"offset":0,"name":"AppContainer","path":"/System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer","debugName":"AppContainer","debugPath":"/System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer","breakpadId":"F220E7021C003BD29943C7E75C3B44180","arch":"x86_64"},{"start":140735588278272,"end":140735588315136,"offset":0,"name":"libsystem_networkextension.dylib","path":"/usr/lib/system/libsystem_networkextension.dylib","debugName":"libsystem_networkextension.dylib","debugPath":"/usr/lib/system/libsystem_networkextension.dylib","breakpadId":"66095DC7653938F295EE458F15F6D0140","arch":"x86_64"},{"start":140735588315136,"end":140735588356096,"offset":0,"name":"libsystem_notify.dylib","path":"/usr/lib/system/libsystem_notify.dylib","debugName":"libsystem_notify.dylib","debugPath":"/usr/lib/system/libsystem_notify.dylib","breakpadId":"D48BDE340F7E34CAA0FFC578E39987CC0","arch":"x86_64"},{"start":140735588540416,"end":140735594147840,"offset":0,"name":"MediaToolbox","path":"/System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox","debugName":"MediaToolbox","debugPath":"/System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox","breakpadId":"A19F9D2553333AA090FB97F3F420A7EA0","arch":"x86_64"},{"start":140735594332160,"end":140735594373120,"offset":0,"name":"FindMyDevice","path":"/System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice","debugName":"FindMyDevice","debugPath":"/System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice","breakpadId":"B9C741F26FAC3BA7B6E09A910C6E8D4E0","arch":"x86_64"},{"start":140735594373120,"end":140735594713088,"offset":0,"name":"AppleVA","path":"/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA","debugName":"AppleVA","debugPath":"/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA","breakpadId":"FC1AED2CB3E231D9B16337989CD8A0730","arch":"x86_64"},{"start":140735594713088,"end":140735594762240,"offset":0,"name":"CrashReporterSupport","path":"/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport","debugName":"CrashReporterSupport","debugPath":"/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport","breakpadId":"474544AD11993ECC90E5071847BA72C60","arch":"x86_64"},{"start":140735594762240,"end":140735594913792,"offset":0,"name":"libJPEG.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","debugName":"libJPEG.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","breakpadId":"AECB826C8B143D048DEC33EE85F5150D0","arch":"x86_64h"},{"start":140735594913792,"end":140735595032576,"offset":0,"name":"libsystem_malloc.dylib","path":"/usr/lib/system/libsystem_malloc.dylib","debugName":"libsystem_malloc.dylib","debugPath":"/usr/lib/system/libsystem_malloc.dylib","breakpadId":"5748E8B2F81C34C68B134562131276780","arch":"x86_64"},{"start":140735596752896,"end":140735597518848,"offset":0,"name":"DiscRecording","path":"/System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording","debugName":"DiscRecording","debugPath":"/System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording","breakpadId":"540853B2B12335608023C92EE229051A0","arch":"x86_64"},{"start":140735597518848,"end":140735600623616,"offset":0,"name":"HIToolbox","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox","debugName":"HIToolbox","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox","breakpadId":"871E52235D03364998AF9CCA3B41E3070","arch":"x86_64"},{"start":140735600623616,"end":140735600955392,"offset":0,"name":"Symbolication","path":"/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication","debugName":"Symbolication","debugPath":"/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication","breakpadId":"F70BF765FBE93F1E85CABB2F8E53E8C20","arch":"x86_64"},{"start":140735608553472,"end":140735609753600,"offset":0,"name":"libsqlite3.dylib","path":"/usr/lib/libsqlite3.dylib","debugName":"libsqlite3.dylib","debugPath":"/usr/lib/libsqlite3.dylib","breakpadId":"280D67B8F93D3587A14619F36C8175480","arch":"x86_64h"},{"start":140735609884672,"end":140735610544128,"offset":0,"name":"Metadata","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","debugName":"Metadata","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","breakpadId":"F19E0200693737999C67D26C2CE5AA5F0","arch":"x86_64"},{"start":140735610544128,"end":140735611133952,"offset":0,"name":"CorePDF","path":"/System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF","debugName":"CorePDF","debugPath":"/System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF","breakpadId":"849BBFF607003ED198DFA6E93B9B707F0","arch":"x86_64"},{"start":140735611133952,"end":140735612891136,"offset":0,"name":"AVFoundation","path":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation","debugName":"AVFoundation","debugPath":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation","breakpadId":"DE524245B7EF3E9D8AA13D99A3304EF40","arch":"x86_64"},{"start":140735612891136,"end":140735612985344,"offset":0,"name":"libLinearAlgebra.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","debugName":"libLinearAlgebra.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","breakpadId":"FFE54EDFF06F3C0A864A4CA7BBFD4B2D0","arch":"x86_64"},{"start":140735612985344,"end":140735613026304,"offset":0,"name":"libsystem_pthread.dylib","path":"/usr/lib/system/libsystem_pthread.dylib","debugName":"libsystem_pthread.dylib","debugPath":"/usr/lib/system/libsystem_pthread.dylib","breakpadId":"3DD1EF4C1D1B3ABF8CC6B3B1CEEE95590","arch":"x86_64"},{"start":140735613026304,"end":140735613054976,"offset":0,"name":"XPCService","path":"/System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService","debugName":"XPCService","debugPath":"/System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService","breakpadId":"5E2122D6FFA23552BF169FD3F36B40DB0","arch":"x86_64"},{"start":140735613464576,"end":140735616180224,"offset":0,"name":"libmecabra.dylib","path":"/usr/lib/libmecabra.dylib","debugName":"libmecabra.dylib","debugPath":"/usr/lib/libmecabra.dylib","breakpadId":"EF6C0BD45FE834FB8ADF69A53CEC97A90","arch":"x86_64"},{"start":140735616180224,"end":140735616376832,"offset":0,"name":"SecurityInterface","path":"/System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface","debugName":"SecurityInterface","debugPath":"/System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface","breakpadId":"1BB39B19DD74347EA3440E67817735770","arch":"x86_64"},{"start":140735616376832,"end":140735618523136,"offset":0,"name":"libFosl_dynamic.dylib","path":"/usr/lib/libFosl_dynamic.dylib","debugName":"libFosl_dynamic.dylib","debugPath":"/usr/lib/libFosl_dynamic.dylib","breakpadId":"5F9DB82DFD4B39528531CE020F93ED490","arch":"x86_64"},{"start":140735618523136,"end":140735618781184,"offset":0,"name":"libGLImage.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","debugName":"libGLImage.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","breakpadId":"734B133FE7893A259DE61CCBA4896D4D0","arch":"x86_64"},{"start":140735619538944,"end":140735619710976,"offset":0,"name":"libsystem_info.dylib","path":"/usr/lib/system/libsystem_info.dylib","debugName":"libsystem_info.dylib","debugPath":"/usr/lib/system/libsystem_info.dylib","breakpadId":"6B01C09EA3E53C71B370D0CABD11A4360","arch":"x86_64"},{"start":140735619710976,"end":140735620034560,"offset":0,"name":"libcurl.4.dylib","path":"/usr/lib/libcurl.4.dylib","debugName":"libcurl.4.dylib","debugPath":"/usr/lib/libcurl.4.dylib","breakpadId":"12E01E4B24C9394C9D2C85CF85D5F4590","arch":"x86_64"},{"start":140735629733888,"end":140735629750272,"offset":0,"name":"libScreenReader.dylib","path":"/usr/lib/libScreenReader.dylib","debugName":"libScreenReader.dylib","debugPath":"/usr/lib/libScreenReader.dylib","breakpadId":"16FC79D145733E90945FCBA22D5185FD0","arch":"x86_64"},{"start":140735629750272,"end":140735630209024,"offset":0,"name":"SearchKit","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","debugName":"SearchKit","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","breakpadId":"F159A88834CA36F1AC8EEB1B38C9DFB30","arch":"x86_64"},{"start":140735630209024,"end":140735630225408,"offset":0,"name":"AppleSystemInfo","path":"/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo","debugName":"AppleSystemInfo","debugPath":"/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo","breakpadId":"6932B5EC0EA9333DBF7E665047392FEC0","arch":"x86_64"},{"start":140735630225408,"end":140735631106048,"offset":0,"name":"DiskImages","path":"/System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages","debugName":"DiskImages","debugPath":"/System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages","breakpadId":"7412BC0BA895350DB8291E3A6FF5EC3F0","arch":"x86_64"},{"start":140735631126528,"end":140735631179776,"offset":0,"name":"SpeechSynthesis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","debugName":"SpeechSynthesis","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","breakpadId":"71DA00B85EA2326B881459DB25512F650","arch":"x86_64"},{"start":140735631179776,"end":140735631396864,"offset":0,"name":"CoreVideo","path":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","debugName":"CoreVideo","debugPath":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","breakpadId":"1AA24A1BCB843F6BB6DE11494542649C0","arch":"x86_64"},{"start":140735631396864,"end":140735631462400,"offset":0,"name":"LangAnalysis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","debugName":"LangAnalysis","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","breakpadId":"18D21123A3E73851974A08E5D45404750","arch":"x86_64"},{"start":140735631462400,"end":140735631634432,"offset":0,"name":"ProtectedCloudStorage","path":"/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage","debugName":"ProtectedCloudStorage","debugPath":"/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage","breakpadId":"4850F751E61B30C0B89AB313601D3DB50","arch":"x86_64"},{"start":140735633747968,"end":140735634227200,"offset":0,"name":"SecurityFoundation","path":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","debugName":"SecurityFoundation","debugPath":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","breakpadId":"1F6BDF183CF03E858D9B0663599B99490","arch":"x86_64"},{"start":140735635152896,"end":140735635632128,"offset":0,"name":"Heimdal","path":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","debugName":"Heimdal","debugPath":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","breakpadId":"5D3653818B5E32598867FC4A7D307BDE0","arch":"x86_64"},{"start":140735635828736,"end":140735636164608,"offset":0,"name":"CoreAudio","path":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","debugName":"CoreAudio","debugPath":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","breakpadId":"3D62A9B367A83F8AA10205E3102490750","arch":"x86_64"},{"start":140735636164608,"end":140735638401024,"offset":0,"name":"CoreImage","path":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","debugName":"CoreImage","debugPath":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","breakpadId":"6EE4A68650C83D77A036BE8AA0F8A2FD0","arch":"x86_64"},{"start":140735638425600,"end":140735638851584,"offset":0,"name":"CoreWiFi","path":"/System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi","debugName":"CoreWiFi","debugPath":"/System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi","breakpadId":"993592F1B3F13FAD87BDEA83C361BCCF0","arch":"x86_64"},{"start":140735638851584,"end":140735638900736,"offset":0,"name":"libkxld.dylib","path":"/usr/lib/system/libkxld.dylib","debugName":"libkxld.dylib","debugPath":"/usr/lib/system/libkxld.dylib","breakpadId":"6F776D34D06C3C48B753D0FB375A4A8A0","arch":"x86_64"},{"start":140735638900736,"end":140735640764416,"offset":0,"name":"ImageIO","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","debugName":"ImageIO","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","breakpadId":"54F18254F31B3464BB51BAF9E96204190","arch":"x86_64h"},{"start":140735640764416,"end":140735640961024,"offset":0,"name":"DictionaryServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","debugName":"DictionaryServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","breakpadId":"30250542CBAA39C191AAB57A5DE175940","arch":"x86_64"},{"start":140735644188672,"end":140735644237824,"offset":0,"name":"AppSandbox","path":"/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox","debugName":"AppSandbox","debugPath":"/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox","breakpadId":"52766210B6EB3B73AB1B42E0A9AD2EE80","arch":"x86_64"},{"start":140735644483584,"end":140735644524544,"offset":0,"name":"CommonAuth","path":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","debugName":"CommonAuth","debugPath":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","breakpadId":"4B8673E136973FE28D30AC7AC5D4F8BF0","arch":"x86_64"},{"start":140735646609408,"end":140735646633984,"offset":0,"name":"DiskArbitration","path":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","debugName":"DiskArbitration","debugPath":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","breakpadId":"F55902AA53163255A701FDED5B5530650","arch":"x86_64"},{"start":140735650611200,"end":140735650656256,"offset":0,"name":"NetAuth","path":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","debugName":"NetAuth","debugPath":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","breakpadId":"D692B1EF534F38928E2F2BBA7C8AFD740","arch":"x86_64"},{"start":140735653150720,"end":140735653875712,"offset":0,"name":"libvMisc.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","debugName":"libvMisc.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","breakpadId":"6D73C20DD1C43BA5809B4B597C15AA860","arch":"x86_64h"},{"start":140735653875712,"end":140735653896192,"offset":0,"name":"libpam.2.dylib","path":"/usr/lib/libpam.2.dylib","debugName":"libpam.2.dylib","debugPath":"/usr/lib/libpam.2.dylib","breakpadId":"CFCD19BD87BC3F2BBB1C4C23E8E55F1A0","arch":"x86_64"},{"start":140735653896192,"end":140735653945344,"offset":0,"name":"libGL.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","debugName":"libGL.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","breakpadId":"4FC6D3F965823E7DA7D1E035F0E266970","arch":"x86_64"},{"start":140735653945344,"end":140735656599552,"offset":0,"name":"CFNetwork","path":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","debugName":"CFNetwork","debugPath":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","breakpadId":"24C4A3903079358A8D5175A3E818A6DF0","arch":"x86_64"},{"start":140735656599552,"end":140735656886272,"offset":0,"name":"libFontRegistry.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","debugName":"libFontRegistry.dylib","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","breakpadId":"F3355C6EED333506B10E2F6995D34BC10","arch":"x86_64"},{"start":140735657721856,"end":140735661756416,"offset":0,"name":"CoreAUC","path":"/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC","debugName":"CoreAUC","debugPath":"/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC","breakpadId":"F80C19CA6CD030529C220288A257CCC80","arch":"x86_64"},{"start":140735661957120,"end":140735662129152,"offset":0,"name":"libRIP.A.dylib","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib","debugName":"libRIP.A.dylib","debugPath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib","breakpadId":"5F18F20D59213314A9F8F1B1CB62C83D0","arch":"x86_64"},{"start":140735662166016,"end":140735663370240,"offset":0,"name":"LaunchServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","debugName":"LaunchServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","breakpadId":"FDA38B1782E2322FA008B9207A6EA6680","arch":"x86_64"},{"start":140735663689728,"end":140735664365568,"offset":0,"name":"IOBluetooth","path":"/System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth","debugName":"IOBluetooth","debugPath":"/System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth","breakpadId":"BCF89EFE853D3AEAAE31DC8293C7284F0","arch":"x86_64"},{"start":140735664398336,"end":140735664607232,"offset":0,"name":"libTrueTypeScaler.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib","debugName":"libTrueTypeScaler.dylib","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib","breakpadId":"EA63B45B22D335469BD6EEEB7F1B48B60","arch":"x86_64"},{"start":140735665020928,"end":140735665082368,"offset":0,"name":"IntlPreferences","path":"/System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences","debugName":"IntlPreferences","debugPath":"/System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences","breakpadId":"61F6212609023324BB1D8B93297ED8990","arch":"x86_64"},{"start":140735665082368,"end":140735665094656,"offset":0,"name":"SafariServices","path":"/System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices","debugName":"SafariServices","debugPath":"/System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices","breakpadId":"396E2233E2DC391C84D2991F636A941B0","arch":"x86_64"},{"start":140735665737728,"end":140735665864704,"offset":0,"name":"libsystem_kernel.dylib","path":"/usr/lib/system/libsystem_kernel.dylib","debugName":"libsystem_kernel.dylib","debugPath":"/usr/lib/system/libsystem_kernel.dylib","breakpadId":"88C17B7F1CD83979A1A9F7BDB4FCE7890","arch":"x86_64"},{"start":140735665864704,"end":140735666061312,"offset":0,"name":"libsystem_m.dylib","path":"/usr/lib/system/libsystem_m.dylib","debugName":"libsystem_m.dylib","debugPath":"/usr/lib/system/libsystem_m.dylib","breakpadId":"08E1A4B264483DFEA58CACC7335BE7E40","arch":"x86_64"},{"start":140735666061312,"end":140735666065408,"offset":0,"name":"ApplicationServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","debugName":"ApplicationServices","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","breakpadId":"ADD57D3A142F3EF5BFD8EACD821648840","arch":"x86_64"},{"start":140735666065408,"end":140735666163712,"offset":0,"name":"libsystem_coretls.dylib","path":"/usr/lib/system/libsystem_coretls.dylib","debugName":"libsystem_coretls.dylib","debugPath":"/usr/lib/system/libsystem_coretls.dylib","breakpadId":"C90DAE384082381CA1852A6A8B6776280","arch":"x86_64"},{"start":140735666216960,"end":140735666221056,"offset":0,"name":"libOpenScriptingUtil.dylib","path":"/usr/lib/libOpenScriptingUtil.dylib","debugName":"libOpenScriptingUtil.dylib","debugPath":"/usr/lib/libOpenScriptingUtil.dylib","breakpadId":"AD0DAC8A98493077999F9AEC6112BDAB0","arch":"x86_64"},{"start":140735666221056,"end":140735666536448,"offset":0,"name":"PrintCore","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","debugName":"PrintCore","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","breakpadId":"5AE8AA6BCE09397DB0D40F9CCBF1F77D0","arch":"x86_64"},{"start":140735666679808,"end":140735668248576,"offset":0,"name":"UIFoundation","path":"/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation","debugName":"UIFoundation","debugPath":"/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation","breakpadId":"AABB5267E7B73D75B051E665BDA8DEF40","arch":"x86_64"},{"start":140735668281344,"end":140735668322304,"offset":0,"name":"DisplayServices","path":"/System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices","debugName":"DisplayServices","debugPath":"/System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices","breakpadId":"45BE1B998E1032F0A180A6B6CB5883AE0","arch":"x86_64"},{"start":140735668322304,"end":140735670870016,"offset":0,"name":"ImageKit","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit","debugName":"ImageKit","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit","breakpadId":"FAE317B8DF153096AFAC464913BF2F3B0","arch":"x86_64"},{"start":140735671201792,"end":140735671279616,"offset":0,"name":"libsasl2.2.dylib","path":"/usr/lib/libsasl2.2.dylib","debugName":"libsasl2.2.dylib","debugPath":"/usr/lib/libsasl2.2.dylib","breakpadId":"2F81C8C911A33581B2C1D8C03AB7D39C0","arch":"x86_64"},{"start":140735672180736,"end":140735672467456,"offset":0,"name":"SharedFileList","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","debugName":"SharedFileList","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","breakpadId":"1D2AD77B778F3253A2953D0A32A8121C0","arch":"x86_64"},{"start":140735673081856,"end":140735673135104,"offset":0,"name":"SpeechRecognitionCore","path":"/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore","debugName":"SpeechRecognitionCore","debugPath":"/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore","breakpadId":"6BA06290D4A3351C87F9B61EF61FF0550","arch":"x86_64"},{"start":140735673135104,"end":140735673204736,"offset":0,"name":"ProtocolBuffer","path":"/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer","debugName":"ProtocolBuffer","debugPath":"/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer","breakpadId":"BAE5E5C9DD593BB89741EEFC5E3046EE0","arch":"x86_64"},{"start":140735673204736,"end":140735673217024,"offset":0,"name":"libquarantine.dylib","path":"/usr/lib/system/libquarantine.dylib","debugName":"libquarantine.dylib","debugPath":"/usr/lib/system/libquarantine.dylib","breakpadId":"0F4169F00C843A25B3AEE47B3586D9080","arch":"x86_64"},{"start":140735675416576,"end":140735675428864,"offset":0,"name":"libCGXType.A.dylib","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib","debugName":"libCGXType.A.dylib","debugPath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib","breakpadId":"B901C222E77932EB96C25A707A09FC5B0","arch":"x86_64"},{"start":140735678193664,"end":140735681687552,"offset":0,"name":"Foundation","path":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","debugName":"Foundation","debugPath":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","breakpadId":"518331436CAE3E1C9FBABCDEB48D4ADF0","arch":"x86_64"},{"start":140735681687552,"end":140735682072576,"offset":0,"name":"OSServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","debugName":"OSServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","breakpadId":"4CE49D8A8304334793796075CB9064190","arch":"x86_64"},{"start":140735682801664,"end":140735684157440,"offset":0,"name":"CoreUI","path":"/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI","debugName":"CoreUI","debugPath":"/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI","breakpadId":"A3868F31ACF43EA59E7579ED44FA7F060","arch":"x86_64"},{"start":140735684190208,"end":140735684214784,"offset":0,"name":"libmacho.dylib","path":"/usr/lib/system/libmacho.dylib","debugName":"libmacho.dylib","debugPath":"/usr/lib/system/libmacho.dylib","breakpadId":"318264FA58F139D882851F6254EE410E0","arch":"x86_64"},{"start":140735684214784,"end":140735684366336,"offset":0,"name":"MultitouchSupport","path":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","debugName":"MultitouchSupport","debugPath":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","breakpadId":"CE75EDA32B223968834E550EA870ECC80","arch":"x86_64"},{"start":140735684366336,"end":140735684415488,"offset":0,"name":"libcsfde.dylib","path":"/usr/lib/libcsfde.dylib","debugName":"libcsfde.dylib","debugPath":"/usr/lib/libcsfde.dylib","breakpadId":"6FFC376EE14137EE800A004080A500910","arch":"x86_64"},{"start":140735687331840,"end":140735687503872,"offset":0,"name":"libxpc.dylib","path":"/usr/lib/system/libxpc.dylib","debugName":"libxpc.dylib","debugPath":"/usr/lib/system/libxpc.dylib","breakpadId":"2CC7CF3666D4301BA6D8EBAE7405B0080","arch":"x86_64"},{"start":140735687684096,"end":140735687753728,"offset":0,"name":"libbsm.0.dylib","path":"/usr/lib/libbsm.0.dylib","debugName":"libbsm.0.dylib","debugPath":"/usr/lib/libbsm.0.dylib","breakpadId":"7E14504CA8B03574B6EB5D5FABC729260","arch":"x86_64"},{"start":140735688077312,"end":140735707262976,"offset":0,"name":"CoreGraphics","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","debugName":"CoreGraphics","debugPath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","breakpadId":"8C9F8E1A274C36CE93FB49906A9B9EE20","arch":"x86_64h"},{"start":140735707340800,"end":140735707389952,"offset":0,"name":"libcommonCrypto.dylib","path":"/usr/lib/system/libcommonCrypto.dylib","debugName":"libcommonCrypto.dylib","debugPath":"/usr/lib/system/libcommonCrypto.dylib","breakpadId":"B9D08EB8FB353F7B8A1C6FCE3F07B7E70","arch":"x86_64"},{"start":140735707828224,"end":140735707840512,"offset":0,"name":"ServiceManagement","path":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","debugName":"ServiceManagement","debugPath":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","breakpadId":"F3E145615DF4342998ED8F27A87A343A0","arch":"x86_64"},{"start":140735707840512,"end":140735708073984,"offset":0,"name":"RemoteViewServices","path":"/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices","debugName":"RemoteViewServices","debugPath":"/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices","breakpadId":"B28814498CFE3D1CB4BF1556403925330","arch":"x86_64"},{"start":140735718592512,"end":140735718772736,"offset":0,"name":"libarchive.2.dylib","path":"/usr/lib/libarchive.2.dylib","debugName":"libarchive.2.dylib","debugPath":"/usr/lib/libarchive.2.dylib","breakpadId":"6C370A2163FD3A68B4B35333F24B770B0","arch":"x86_64"},{"start":140735719288832,"end":140735719501824,"offset":0,"name":"MediaKit","path":"/System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit","debugName":"MediaKit","debugPath":"/System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit","breakpadId":"BF8032FE664537F6A622BC7EEE3EAABF0","arch":"x86_64"},{"start":140735719694336,"end":140735720419328,"offset":0,"name":"Backup","path":"/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup","debugName":"Backup","debugPath":"/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup","breakpadId":"F304E9D1991A379E9659BF85C35B48080","arch":"x86_64"},{"start":140735720419328,"end":140735725252608,"offset":0,"name":"GeoServices","path":"/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices","debugName":"GeoServices","debugPath":"/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices","breakpadId":"928294E768973D5B9D2EBC092B6C25DE0","arch":"x86_64"},{"start":140735725281280,"end":140735725330432,"offset":0,"name":"DirectoryService","path":"/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService","debugName":"DirectoryService","debugPath":"/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService","breakpadId":"6F827D0E0F023B09B2A8252865EECA7F0","arch":"x86_64"},{"start":140735725330432,"end":140735738085376,"offset":0,"name":"AppKit","path":"/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit","debugName":"AppKit","debugPath":"/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit","breakpadId":"2492D31576B6320BB542231FCA44CA480","arch":"x86_64"},{"start":140735738155008,"end":140735738253312,"offset":0,"name":"libsystem_asl.dylib","path":"/usr/lib/system/libsystem_asl.dylib","debugName":"libsystem_asl.dylib","debugPath":"/usr/lib/system/libsystem_asl.dylib","breakpadId":"007F9094317A33EAAF62BAEAAB48C0F70","arch":"x86_64"},{"start":140735738253312,"end":140735738269696,"offset":0,"name":"libCoreVMClient.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","debugName":"libCoreVMClient.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","breakpadId":"560D70FB709F303096C9F249FCB7DA6D0","arch":"x86_64"},{"start":140735738761216,"end":140735738798080,"offset":0,"name":"libsystem_dnssd.dylib","path":"/usr/lib/system/libsystem_dnssd.dylib","debugName":"libsystem_dnssd.dylib","debugPath":"/usr/lib/system/libsystem_dnssd.dylib","breakpadId":"86A05653DCA03345B29FF320029AA05E0","arch":"x86_64"},{"start":140735738826752,"end":140735739531264,"offset":0,"name":"PDFKit","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit","debugName":"PDFKit","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit","breakpadId":"27AF3C851C0B389C856C2E527620C1950","arch":"x86_64"},{"start":140735739650048,"end":140735739723776,"offset":0,"name":"libcmph.dylib","path":"/usr/lib/libcmph.dylib","debugName":"libcmph.dylib","debugPath":"/usr/lib/libcmph.dylib","breakpadId":"BA4BF2C67F4E33B89DD7619C9EB83ECF0","arch":"x86_64"},{"start":140735739723776,"end":140735739772928,"offset":0,"name":"libGPUSupportMercury.dylib","path":"/System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib","debugName":"libGPUSupportMercury.dylib","debugPath":"/System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib","breakpadId":"CC8F3ED872FE3041A0F2D8F17DBE23470","arch":"x86_64"},{"start":140735740198912,"end":140735740272640,"offset":0,"name":"libz.1.dylib","path":"/usr/lib/libz.1.dylib","debugName":"libz.1.dylib","debugPath":"/usr/lib/libz.1.dylib","breakpadId":"B3EBB42F48E332879F0D308E04D407AC0","arch":"x86_64"},{"start":140735740272640,"end":140735743926272,"offset":0,"name":"VideoToolbox","path":"/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox","debugName":"VideoToolbox","debugPath":"/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox","breakpadId":"B839BE1495033B5EA54AC7FCEED34EA30","arch":"x86_64"},{"start":140735743926272,"end":140735744081920,"offset":0,"name":"libPng.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","debugName":"libPng.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","breakpadId":"47ACF98DB5F13A03B6FD4107D5FAE5E90","arch":"x86_64h"},{"start":140735744081920,"end":140735744200704,"offset":0,"name":"GenerationalStorage","path":"/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage","debugName":"GenerationalStorage","debugPath":"/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage","breakpadId":"8C821448429437369CEF467C93785CB90","arch":"x86_64"},{"start":140735744200704,"end":140735745310720,"offset":0,"name":"DesktopServicesPriv","path":"/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv","debugName":"DesktopServicesPriv","debugPath":"/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv","breakpadId":"3A6906D4C0B830D1B5890466E5E42B690","arch":"x86_64"}],"meta":{"version":9,"startTime":1523985024593.6038,"shutdownTime":null,"interval":1,"stackwalk":0,"debug":0,"gcpoison":0,"asyncstack":0,"processType":2,"platform":"Macintosh","oscpu":"Intel Mac OS X 10.11","misc":"rv:59.0","abi":"x86_64-gcc3","toolkit":"cocoa","product":"Firefox","extensions":{"schema":{"id":0,"name":1,"baseURL":2},"data":[["screenshots@mozilla.org","Firefox Screenshots","moz-extension://30f03023-f150-1d41-94f5-c8f689462468/"]]}},"threads":[{"processType":"tab","name":"GeckoMain","tid":9069566,"pid":59666,"registerTime":55.908305,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[15,50.37085399962962,10.895657999441028],[15,50.47271000035107,10.997514000162482],[22,51.736920000985265,12.261724000796676],[25,52.64599700085819,13.170801000669599],[37,53.68258100003004,14.207384999841452],[43,54.67496000044048,15.19976400025189],[62,55.68140900041908,16.20621300023049],[75,56.660676000639796,17.185480000451207],[80,57.68070499971509,18.2055089995265],[86,58.67413300089538,19.198937000706792],[106,59.67285200022161,20.19765600003302],[119,60.67853800021112,21.20334200002253],[131,61.67877999972552,22.20358399953693],[135,62.63357899989933,23.15838299971074],[1,63.5619680006057,0.5677720000967383],[1,64.4835660001263,1.4893699996173382],[1,65.62235500011593,2.628158999606967],[1,66.67772700078785,3.68353100027889],[1,67.67471600044519,4.680519999936223],[1,68.68253100011498,5.688334999606013],[1,69.68652800098062,6.6923320004716516],[1,70.68203600030392,7.68783999979496],[1,71.52936600055546,8.535170000046492],[1,72.69022999983281,9.696033999323845],[1,73.48146000038832,10.48726399987936],[1,74.73308700043708,11.738890999928117],[1,75.55202000029385,12.557823999784887],[1,76.70098500046879,13.706788999959826],[1,77.67272100038826,14.6785249998793],[1,78.67965300008655,15.685456999577582],[1,79.62053700070828,16.626341000199318],[1,80.69337600003928,17.699179999530315],[1,81.67874400038272,18.684547999873757],[1,82.47576700057834,19.48157100006938],[1,83.61727500054985,0.4610790004953742],[1,84.6319880001247,1.4757920000702143],[1,85.71856100019068,2.5623650001361966],[1,86.67296200059354,3.5167660005390644],[1,87.68553800042719,4.529342000372708],[1,88.68110100086778,5.524905000813305],[1,89.68891500122845,6.532719001173973],[1,90.67845300026238,7.522257000207901],[1,91.49124800041318,8.3350520003587],[1,92.64891400001943,9.492717999964952],[1,93.7177630001679,10.561567000113428],[1,94.67731000017375,11.521114000119269],[1,95.68244899995625,12.526252999901772],[1,96.68308800086379,13.526892000809312],[1,97.58113200031221,14.42493600025773],[1,98.70707400050014,15.550878000445664],[1,99.5092340009287,16.35303800087422],[1,100.63529900088906,17.479103000834584],[1,101.54641300067306,18.390217000618577],[1,102.70512900035828,19.548933000303805],[1,103.68483300041407,0.6176370000466704],[1,104.6805190006271,1.6133230002596974],[1,105.68105799984187,2.613861999474466],[1,106.52921199984848,3.462015999481082],[1,107.62907100096345,4.5618750005960464],[1,108.49902800098062,5.431832000613213],[1,109.59461800009012,6.527421999722719],[1,110.71640099957585,7.64920499920845],[1,111.69364900048822,8.626453000120819],[1,112.67771300021559,9.610516999848187],[1,113.58305000048131,10.515854000113904],[1,114.56849199999124,11.501295999623835],[1,115.72755900025368,12.660362999886274],[1,116.48195400089025,13.414758000522852],[1,117.62050199974328,14.55330599937588],[1,118.71262300014496,15.645426999777555],[1,119.67566500045359,16.60846900008619],[1,120.68375300057232,17.61655700020492],[1,121.52072500064969,18.453529000282288],[1,122.6917660003528,19.624569999985397],[1,123.68541800044477,0.9162220004945993],[1,124.68202100042254,1.9128250004723668],[1,125.68166300002486,2.9124670000746846],[1,126.68137199990451,3.912175999954343],[1,127.68293600063771,4.91374000068754],[1,128.47878900077194,5.709593000821769],[1,129.60705500096083,6.837859001010656],[1,130.71982400026172,7.9506280003115535],[1,131.67310300003737,8.903907000087202],[1,132.5359480008483,9.766752000898123],[1,133.68451000005007,10.915314000099897],[1,134.68240000028163,11.913204000331461],[1,135.68134400062263,12.91214800067246],[1,136.50065800081939,13.731462000869215],[1,137.66403000056744,14.894834000617266],[1,138.70595800038427,15.9367620004341],[1,139.4904670007527,16.721271000802517],[1,140.63900800049305,17.86981200054288],[1,141.6378899998963,18.868693999946117],[1,142.66989900078624,19.900703000836074],[1,143.7047120006755,0.8985160002484918],[1,144.59812700096518,1.7919310005381703],[1,145.75601000059396,2.9498140001669526],[1,146.6827680002898,3.87657199986279],[1,147.6834730003029,4.877276999875903],[1,148.61776900012046,5.811572999693453],[1,149.70242800097913,6.896232000552118],[1,150.55253800097853,7.746342000551522],[1,151.71296900045127,8.906773000024259],[1,152.71691700071096,9.910721000283957],[1,153.75697100069374,10.95077500026673],[1,154.69058400020003,11.884387999773026],[1,155.7091460004449,12.902950000017881],[1,156.6756680002436,13.869471999816597],[1,157.6178560005501,14.811660000123084],[1,158.56923700124025,15.763041000813246],[1,159.67172199953347,16.865525999106467],[1,160.7873020004481,17.9811060000211],[1,161.53662900067866,18.73043300025165],[1,162.80723800044507,20.00104200001806],[1,163.4910040004179,0.5838080001994967],[1,164.73709399998188,1.8298979997634888],[1,165.6701349997893,2.762938999570906],[1,166.77262100111693,3.86542500089854],[1,167.60618000105023,4.698984000831842],[1,168.6626650011167,5.755469000898302],[1,169.79640200082213,6.8892060006037354],[1,170.49437300022691,7.5871770000085235],[1,171.74227199982852,8.835075999610126],[1,172.73592799995095,9.828731999732554],[1,173.66968900058419,10.762493000365794],[1,174.58511500060558,11.677919000387192],[1,175.7381149996072,12.830918999388814],[1,176.5475030001253,13.640306999906898],[1,177.7351839998737,14.827987999655306],[1,178.71146799996495,15.804271999746561],[1,179.7511040000245,16.843907999806106],[1,180.67918700072914,17.771991000510752],[1,181.68176999967545,18.77457399945706],[1,182.6834960002452,0.4512999998405576],[1,183.74633200094104,1.5141360005363822],[1,184.6053020004183,2.3731060000136495],[1,185.81904100067914,3.5868450002744794],[1,186.64867100026459,4.416474999859929],[1,187.72503999993205,5.492843999527395],[1,188.76469000056386,6.532494000159204],[136,189.6524210004136,7.420225000008941],[1,190.63777600042522,8.405580000020564],[1,191.7086270004511,9.476431000046432],[1,192.73445000033826,10.5022539999336],[1,193.586390000768,11.35419400036335],[1,194.81976900063455,12.587573000229895],[1,195.74417000077665,13.511974000371993],[1,196.66767199989408,14.435475999489427],[1,197.7384019996971,15.506205999292433],[1,198.76999300066382,16.53779700025916],[1,199.6094260001555,17.377229999750853],[1,200.54353000037372,18.311333999969065],[1,201.79195199999958,19.559755999594927],[1,202.54681800026447,0.6196219995617867],[1,203.78143199998885,1.8542359992861748],[1,204.6175180003047,2.69032199960202],[1,205.69884200114757,3.771646000444889],[1,206.54126200079918,4.6140660000965],[1,207.60774200037122,5.680545999668539],[1,208.49145500082523,6.564259000122547],[1,209.59601000044495,7.6688139997422695],[1,210.73806900065392,8.810872999951243],[1,211.69843200035393,9.771235999651253],[1,212.6544409999624,10.72724499925971],[1,213.74275199975818,11.815555999055505],[1,214.6698500001803,12.742653999477625],[1,215.49083899986,13.56364299915731],[1,216.7199250003323,14.792728999629617],[1,217.70092800073326,15.773732000030577],[1,218.77650400064886,16.849307999946177],[1,219.7391090001911,17.811912999488413],[1,220.76518699992448,18.8379909992218],[1,221.76550700049847,19.838310999795794],[1,222.58338200021535,0.7071859994903207],[1,223.6942950002849,1.8180989995598793],[1,224.68244899995625,2.8062529992312193],[1,225.55275799985975,3.6765619991347194],[1,226.65323400031775,4.7770379995927215],[1,227.70796500053257,5.831768999807537],[1,228.69826699979603,6.822070999071002],[1,229.60589900054038,7.729702999815345],[1,230.74496200028807,8.868765999563038],[1,231.654873999767,9.778677999041975],[1,232.51372800022364,10.637531999498606],[1,233.65837200079113,11.782176000066102],[1,234.74018200021237,12.86398599948734],[1,235.7213220000267,13.845125999301672],[1,236.51671299990267,14.640516999177635],[1,237.67432500049472,15.798128999769688],[1,238.729610000737,16.85341400001198],[1,239.5158000010997,17.639604000374675],[1,240.67046700045466,18.794270999729633],[1,241.68594100046903,19.809744999743998],[1,242.6912190001458,0.7790230000391603],[1,243.69534100033343,1.7831450002267957],[1,244.69560300093144,2.783407000824809],[1,245.6322450004518,3.7200490003451705],[1,246.5732760000974,4.661079999990761],[1,247.54951700009406,5.637320999987423],[1,248.76202900055796,6.849833000451326],[1,249.6821700008586,7.769974000751972],[1,250.70454100053757,8.792345000430942],[1,251.69763800036162,9.785442000254989],[1,252.69725299999118,10.785056999884546],[1,253.47722200024873,11.565026000142097],[1,254.6166170006618,12.704421000555158],[1,255.7308080000803,13.818611999973655],[1,256.66518300026655,14.75298700015992],[163,257.6860720003024,15.773876000195742],[1,258.4728760002181,0.15067999996244907],[1,259.57925899978727,1.2570629995316267],[1,260.6837830003351,2.361587000079453],[1,261.7150480002165,3.3928519999608397],[1,262.7045290004462,4.382333000190556],[1,263.5505210002884,5.2283250000327826],[1,264.6337970001623,6.311600999906659],[1,265.7422280004248,7.420032000169158],[1,266.5662060007453,8.244010000489652],[1,267.7364180004224,9.414222000166774],[1,268.6917989999056,10.369602999649942],[1,269.70326100010425,11.381064999848604],[1,270.48464300017804,12.162446999922395],[1,271.7440210003406,13.421825000084937],[1,272.6876800004393,14.365484000183642],[1,273.67611900065094,15.353923000395298],[1,274.62911000009626,16.306913999840617],[1,275.69722199998796,17.375025999732316],[1,276.574537999928,18.252341999672353],[1,277.6024950006977,19.280299000442028],[1,278.6895480006933,0.19235200062394142],[1,279.5819990001619,1.0848030000925064],[1,280.71657100040466,2.219375000335276],[1,281.6692800009623,3.172084000892937],[1,282.67681100033224,4.1796150002628565],[1,283.687052000314,5.1898560002446175],[1,284.5728409998119,6.075644999742508],[1,285.591157999821,7.0939619997516274],[1,286.715828999877,8.218632999807596],[1,287.6729819998145,9.17578599974513],[1,288.66460300050676,10.167407000437379],[1,289.6878220010549,11.190626000985503],[1,290.4761850005016,11.978989000432193],[1,291.55896299984306,13.061766999773681],[1,292.7214560005814,14.224260000512004],[1,293.6675559999421,15.170359999872744],[1,294.6107029998675,16.11350699979812],[1,295.7094080001116,17.2122120000422],[1,296.6694650007412,18.172269000671804],[1,297.5506850006059,19.0534890005365],[1,298.5769770005718,0.028781000524759293],[1,299.70190500095487,1.1537090009078383],[2,300.4878580002114,1.9396620001643896],[1,301.73302599973977,3.184829999692738],[1,302.6648770002648,4.116681000217795],[1,303.70299100037664,5.154795000329614],[1,304.7410580003634,6.1928620003163815],[1,305.6975659998134,7.14936999976635],[1,306.56463100016117,8.016435000114143],[1,307.5464900005609,8.998294000513852],[1,308.71738000027835,10.169184000231326],[1,309.6775709996,11.129374999552965],[1,310.6843940000981,12.136198000051081],[1,311.67810900043696,13.129913000389934],[1,312.677219000645,14.129023000597954],[1,313.67816499993205,15.129968999885023],[1,314.67899200040847,16.130796000361443],[1,315.4781880006194,16.929992000572383],[1,316.61404700018466,18.065851000137627],[1,317.7099980004132,1.0118019999936223],[1,318.4792740000412,1.7810779996216297],[1,319.6283140005544,2.9301180001348257],[1,320.572746001184,3.8745500007644296],[1,321.7204040000215,5.02220799960196],[1,322.6669650003314,5.968768999911845],[1,323.6865890007466,6.988393000327051],[1,324.5731460005045,7.874950000084937],[1,325.71570300031453,9.017506999894977],[1,326.67601000051945,9.977814000099897],[1,327.6748770000413,10.976680999621749],[1,328.70357600040734,12.005379999987781],[1,329.696721999906,12.998525999486446],[1,330.5250830007717,13.826887000352144],[1,331.4857100006193,14.787514000199735],[1,332.66857400070876,15.970378000289202],[1,333.54421800002456,16.846021999605],[1,334.7233410002664,0.8101449999958277],[1,335.6894580004737,1.7762620002031326],[1,336.71990399993956,2.8067079996690154],[1,337.7038070000708,3.790610999800265],[1,338.61866699997336,4.705470999702811],[1,339.7662230003625,5.85302700009197],[1,340.60108500067145,6.687889000400901],[1,341.70348900090903,7.790293000638485],[1,342.67898400034755,8.76578800007701],[1,343.74814900010824,9.834952999837697],[1,344.7287020003423,10.815506000071764],[1,345.6776879997924,11.764491999521852],[1,346.5274140005931,12.61421800032258],[1,347.5967510007322,13.683555000461638],[1,348.7984420005232,14.885246000252664],[1,349.67099600005895,15.757799999788404],[1,350.7613939996809,16.84819799941033],[1,351.64392600022256,17.73072999995202],[1,352.69273600075394,0.2335400003939867],[1,353.7562240008265,1.2970280004665256],[1,354.662263000384,2.2030670000240207],[1,355.70400900021195,3.2448129998520017],[168,356.4914370011538,4.032241000793874],[1,357.7335550002754,5.274358999915421],[1,358.5735350009054,6.114339000545442],[1,359.6091360002756,7.149939999915659],[1,360.7473999997601,8.288203999400139],[1,361.53574900049716,9.07655300013721],[1,362.7519410001114,10.292744999751449],[1,363.51065300032496,11.051456999965012],[1,364.5761480005458,12.116952000185847],[1,365.6048240000382,13.145627999678254],[1,366.80937500018626,14.350178999826312],[1,367.7534400001168,15.294243999756873],[1,368.57237400021404,16.113177999854088],[1,369.82385700009763,17.36466099973768],[1,370.7448460003361,18.285649999976158],[1,371.7113600000739,19.252163999713957],[1,372.74063399992883,0.9274379992857575],[1,373.6688679996878,1.8556719990447164],[1,374.51094499975443,2.6977489991113544],[1,375.6401169998571,3.826920999214053],[1,376.8134030001238,5.000206999480724],[1,377.6535180006176,5.840321999974549],[1,378.75963800027966,6.9464419996365905],[1,379.7414160007611,7.928220000118017],[1,380.68988500069827,8.876689000055194],[1,381.71686900034547,9.903672999702394],[1,382.7575630005449,10.944366999901831],[1,383.7626280002296,11.949431999586523],[1,384.67810900043696,12.864912999793887],[1,385.7546670008451,13.941471000202],[1,386.6168150007725,14.803619000129402],[1,387.59062200039625,15.777425999753177],[1,388.8248300002888,17.01163399964571],[1,389.54671800043434,17.733521999791265],[1,390.6877570003271,0.7265609996393323],[1,391.6821710001677,1.7209749994799495],[1,392.7917470000684,2.830550999380648],[1,393.48924700077623,3.5280510000884533],[1,394.70549200009555,4.744295999407768],[1,395.6734010009095,5.712205000221729],[1,396.72379800025374,6.762601999565959],[1,397.6969940001145,7.7357979994267225],[1,398.73181500006467,8.770618999376893],[1,399.5006410004571,9.53944499976933],[1,400.75076400116086,10.789568000473082],[1,401.6898790001869,11.728682999499142],[1,402.69537700060755,12.734180999919772],[1,403.7038120003417,13.742615999653935],[1,404.7116540009156,14.750458000227809],[1,405.69797200057656,15.736775999888778],[1,406.68030699994415,0.3551109991967678],[1,407.6836460009217,1.3584500001743436],[1,408.50916200038046,2.183965999633074],[1,409.64702200051397,3.321825999766588],[1,410.7551250010729,4.429929000325501],[1,411.76382200047374,5.438625999726355],[1,412.73178400006145,6.40658799931407],[1,413.7096070004627,7.384410999715328],[1,414.6815880006179,8.356391999870539],[1,415.49224200006574,9.167045999318361],[1,416.8007410010323,10.47554500028491],[1,417.6834500003606,11.358253999613225],[1,418.7463750001043,12.421178999356925],[1,419.76937100011855,13.444174999371171],[1,420.7285879999399,14.403391999192536],[1,421.59850599989295,15.273309999145567],[1,422.50947799999267,16.184281999245286],[1,423.596284000203,17.27108799945563],[1,424.7094410005957,18.384244999848306],[1,425.7988849999383,19.473688999190927],[1,426.7559420000762,0.7417460000142455],[1,427.5749370008707,1.5607410008087754],[1,429.08789999969304,3.073703999631107],[1,429.7175470003858,3.7033510003238916],[1,430.6006319997832,4.586435999721289],[1,432.56184700038284,6.547651000320911],[1,432.599036000669,6.584840000607073],[1,433.85917200054973,7.844976000487804],[1,434.7657670006156,8.751571000553668],[1,435.64756800048053,9.633372000418603],[1,436.78677999973297,10.772583999671042],[1,437.61332200001925,11.599125999957323],[1,438.8630530005321,12.848857000470161],[2,439.7948060007766,13.78061000071466],[1,440.8128460003063,14.798650000244379],[1,441.81858299952,15.804386999458075],[1,442.80997200030833,0.2527759997174144],[1,443.6240180004388,1.066821999847889],[1,444.62669800035655,2.0695019997656345],[1,445.7947480008006,3.237552000209689],[1,446.82504300028086,4.267846999689937],[1,447.8089789999649,5.251782999373972],[1,448.81329200044274,6.256095999851823],[1,449.79946800041944,7.242271999828517],[1,450.82861900050193,8.27142299991101],[1,451.7960890009999,9.238893000409007],[1,452.8046110011637,10.2474150005728],[1,453.80464000068605,11.247444000095129],[1,454.79980900045484,12.242612999863923],[1,455.60871400125325,13.051518000662327],[1,456.8634270010516,14.306231000460684],[1,457.8000540006906,15.242858000099659],[1,458.8162590004504,16.259062999859452],[1,459.84618099965155,17.28898499906063],[1,460.8228180008009,18.265622000209987],[1,461.7038270011544,19.146631000563502],[196,462.83682399988174,20.279627999290824],[1,463.8012730004266,0.049077000468969345],[1,464.8115080008283,1.0593120008707047],[1,465.81341199949384,2.0612159995362163],[1,466.8127000005916,3.060504000633955],[1,467.7264959998429,3.974299999885261],[1,468.83434100076556,5.082145000807941],[1,469.66203100048006,5.909835000522435],[1,470.81122200004756,7.059026000089943],[1,471.8161650011316,8.063969001173973],[1,472.8125489996746,9.060352999716997],[1,473.8122430006042,10.060047000646591],[1,474.6588700003922,10.906674000434577],[1,475.8502900004387,12.098094000481069],[1,476.60367300082,12.85147700086236],[1,477.75357099995017,14.00137499999255],[1,478.65297400020063,14.900778000243008],[1,479.6994260000065,15.947230000048876],[1,480.6311770007014,16.878981000743806],[1,481.8508950006217,0.8116990001872182],[1,482.8017140002921,1.762517999857664],[1,483.6250459998846,2.585849999450147],[1,484.859311000444,3.8201150000095367],[1,485.8005109997466,4.761314999312162],[1,486.6902720006183,5.651076000183821],[1,487.7147200005129,6.67552400007844],[1,488.83543500024825,7.796238999813795],[1,489.8038990003988,8.764702999964356],[1,490.7276720004156,9.688475999981165],[1,491.71160500030965,10.672408999875188],[1,492.84293400030583,11.803737999871373],[1,493.81251899991184,12.773322999477386],[1,494.61830000020564,13.579103999771178],[1,495.7420810004696,14.702885000035167],[1,496.9167720004916,15.87757600005716],[1,497.82787400018424,0.6896779993548989],[1,498.8374910010025,1.6992950001731515],[1,499.83493600040674,2.696739999577403],[1,500.83863200061023,3.7004359997808933],[1,501.6141190007329,4.47592299990356],[1,502.6695770006627,5.531380999833345],[1,503.8537650005892,6.715568999759853],[1,504.81468400079757,7.676487999968231],[1,505.8078520009294,8.669656000100076],[136,506.60964599996805,9.471449999138713],[1,507.61358899995685,10.475392999127507],[1,508.8581060003489,11.719909999519587],[1,509.7939720004797,12.65577599965036],[1,510.6508380006999,13.512641999870539],[1,511.81252699997276,14.674330999143422],[1,512.8195340000093,15.68133799917996],[1,513.6478200005367,16.5096239997074],[1,514.8531960006803,17.71499999985099],[1,515.7107640001923,18.572567999362946],[1,516.8420740002766,19.703877999447286],[1,517.8042559996247,0.8780599990859628],[1,518.8260650001466,1.899868999607861],[1,519.8021929999813,2.8759969994425774],[1,520.646458000876,3.720262000337243],[1,521.8308180002496,4.904621999710798],[1,522.8229299997911,5.896733999252319],[1,523.7781120007858,6.851916000247002],[1,524.8173050004989,7.8911089999601245],[1,525.796206000261,8.870009999722242],[1,526.713595001027,9.787399000488222],[1,527.8534599998966,10.92726399935782],[1,528.7570180008188,11.830822000280023],[1,529.8761790003628,12.949982999823987],[1,530.7916919998825,13.865495999343693],[1,531.812646000646,14.886450000107288],[1,532.6057759998366,15.679579999297857],[1,533.8581050001085,16.931908999569714],[1,534.8309620004147,17.904765999875963],[1,535.6624990003183,18.736302999779582],[1,536.8706499999389,1.1254539992660284],[1,537.7934820009395,2.048286000266671],[1,538.8705310001969,3.125334999524057],[1,539.7968650003895,4.0516689997166395],[1,540.6429310003296,4.897734999656677],[1,541.8317680004984,6.086571999825537],[1,542.8294850010425,7.084289000369608],[1,543.7913250010461,8.046129000373185],[1,544.8443200001493,9.099123999476433],[1,545.8245560005307,10.079359999857843],[1,546.624325000681,10.879129000008106],[1,547.6145130004734,11.869316999800503],[1,548.7521720007062,13.006976000033319],[1,549.6205740002915,13.87537799961865],[1,550.6653570001945,14.920160999521613],[1,551.687480000779,15.942284000106156],[1,552.8201150000095,17.07491899933666],[1,553.8014200003818,18.05622399970889],[1,554.685947000049,18.940750999376178],[1,555.6842320002615,19.93903599958867],[1,556.7848169999197,1.0316209997981787],[1,557.6122950008139,1.8590990006923676],[1,558.6740320008248,2.920836000703275],[1,559.813638000749,4.060442000627518],[1,560.6771790003404,4.923983000218868],[1,561.6465600002557,5.89336400013417],[1,562.7849329998717,7.031736999750137],[1,563.7329719997942,7.979775999672711],[1,564.8331720000133,9.079975999891758],[1,565.7891580006108,10.035962000489235],[1,566.6882910002023,10.935095000080764],[1,567.8415520004928,12.088356000371277],[1,568.7973410002887,13.044145000167191],[1,569.7574370009825,14.00424100086093],[1,570.8482520002872,15.095056000165641],[1,571.6445800010115,15.891384000889957],[1,572.8361930008978,17.08299700077623],[1,573.6113210003823,17.85812500026077],[1,574.656534999609,18.90333899948746],[1,575.7380450004712,0.6078490000218153],[1,576.6412480007857,1.511052000336349],[1,577.6160700004548,2.485874000005424],[1,578.6273050010204,3.497109000571072],[1,579.6377690006047,4.507573000155389],[1,580.644656999968,5.514460999518633],[1,581.6262000007555,6.4960040003061295],[1,582.6365050002933,7.506308999843895],[1,583.8212480004877,8.691052000038326],[1,584.6503540007398,9.520158000290394],[1,585.7373080011457,10.607112000696361],[1,586.6148150004447,11.484618999995291],[1,587.8378780009225,12.707682000473142],[1,588.7088430002332,13.578646999783814],[1,589.6829790007323,14.552783000282943],[1,590.8275800002739,15.697383999824524],[1,591.7901039998978,16.659907999448478],[1,592.8014839999378,17.671287999488413],[1,593.7264410005882,0.5712449997663498],[1,594.8590590003878,1.7038629995658994],[1,595.7840120000765,2.6288159992545843],[1,596.852405000478,3.697208999656141],[1,597.6487680003047,4.4935719994828105],[1,598.8781770002097,5.722980999387801],[1,599.8584260009229,6.70323000010103],[1,600.8555900007486,7.700393999926746],[1,601.8995139999315,8.744317999109626],[1,602.8877810006961,9.732584999874234],[1,603.6355680003762,10.480371999554336],[1,604.9136100001633,11.758413999341428],[1,605.7618800001219,12.606683999300003],[1,606.8337810002267,13.678584999404848],[1,607.8062940007076,14.651097999885678],[1,608.9133850000799,15.758188999257982],[1,609.6688280003145,16.513631999492645],[1,610.9320090003312,17.776812999509275],[1,611.760982000269,18.605785999447107],[1,612.6624450003728,19.50724899955094],[1,613.8352860007435,1.0570900002494454],[1,614.6237500002608,1.8455539997667074],[1,615.709685000591,2.931489000096917],[1,616.954843999818,4.1766479993239045],[1,617.8538170009851,5.075621000491083],[1,618.8104640003294,6.032267999835312],[1,619.8130179997534,7.034821999259293],[1,620.7123920004815,7.934195999987423],[1,621.9161920007318,9.137996000237763],[1,622.6976080005988,9.919412000104785],[1,623.8396250000224,11.061428999528289],[1,624.8046570010483,12.026461000554264],[1,625.9131439998746,13.134947999380529],[1,626.865374000743,14.087178000248969],[1,627.7248889999464,14.946692999452353],[1,628.9112809998915,16.133084999397397],[1,629.8850480010733,17.106852000579238],[1,630.7491270005703,17.970931000076234],[1,631.7810410000384,19.002844999544322],[2,632.9679670007899,20.189771000295877],[1,633.7654630001634,0.65826699975878],[1,634.8336680000648,1.7264719996601343],[1,635.9049239996821,2.797727999277413],[1,636.855074999854,3.7478789994493127],[1,637.8674040008336,4.760208000428975],[1,638.8983640009537,5.791168000549078],[1,639.6263810005039,6.519185000099242],[1,640.7468510009348,7.639655000530183],[1,641.6613380005583,8.55414200015366],[1,642.972779000178,9.865582999773324],[1,643.8697410002351,10.762544999830425],[1,644.8637140002102,11.75651799980551],[1,645.8956740004942,12.788478000089526],[1,646.7265540007502,13.619358000345528],[1,647.8319319998845,14.72473599947989],[1,648.8747920002788,15.767595999874175],[1,649.835625000298,16.728428999893367],[1,650.7424360010773,0.3002400007098913],[1,651.9312389995903,1.4890429992228746],[1,652.794987000525,2.3527910001575947],[1,653.847660000436,3.405464000068605],[1,654.8844090001658,4.4422129997983575],[1,655.8785420004278,5.436346000060439],[197,656.7575400006026,6.3153440002352],[1,657.8252060003579,7.383009999990463],[1,658.8041120003909,8.361916000023484],[1,659.9107699999586,9.468573999591172],[1,660.8538680002093,10.411671999841928],[1,661.8707730006427,11.428577000275254],[1,662.8997229998931,12.457526999525726],[1,663.7392239999026,13.297027999535203],[1,664.9616670003161,14.51947099994868],[214,665.7773010004312,15.335105000063777],[1,666.8107270002365,16.368530999869108],[1,667.8135660002008,0.4493699995800853],[1,668.6417610011995,1.277565000578761],[1,669.8392340000719,2.4750379994511604],[1,670.9047920005396,3.540595999918878],[1,671.8565150005743,4.492318999953568],[1,672.7283410001546,5.364144999533892],[1,673.6636640010402,6.299468000419438],[1,674.8586550001055,7.4944589994847775],[1,675.7418210003525,8.377624999731779],[1,676.8399290004745,9.47573299985379],[1,677.920603999868,10.556407999247313],[1,678.8627370009199,11.498541000299156],[1,679.8827689997852,12.518572999164462],[1,680.6671139998361,13.302917999215424],[1,681.6073620002717,14.243165999650955],[1,682.7418269999325,15.377630999311805],[1,683.8334389999509,16.469242999330163],[1,684.7737770006061,0.8455810006707907],[1,685.8215070003644,1.8933110004290938],[1,686.797911000438,2.869715000502765],[1,687.9136870000511,3.9854910001158714],[1,688.7666190005839,4.838423000648618],[1,689.8604890005663,5.932293000631034],[1,690.8018170008436,6.873621000908315],[1,691.682415000163,7.754219000227749],[1,692.8746520010754,8.946456001140177],[1,693.8140780003741,9.885882000438869],[1,694.8333990005776,10.90520300064236],[1,695.8290079999715,11.90081200003624],[1,696.6619350006804,12.733739000745118],[1,697.8511650003493,13.922969000414014],[1,698.7144090011716,14.78621300123632],[1,699.7063510008156,15.77815500088036],[1,700.9842050001025,17.05600900016725],[1,701.8348190002143,0.7176230000331998],[1,702.8689870005473,1.751791000366211],[1,703.8973320005462,2.780136000365019],[1,704.7489630002528,3.6317670000717044],[1,705.8918500002474,4.774654000066221],[1,706.7898399997503,5.672643999569118],[1,707.8172520007938,6.700056000612676],[1,708.9166729999706,7.799476999789476],[1,709.8499339995906,8.732737999409437],[1,710.7053440008312,9.588148000650108],[1,711.8041880000383,10.686991999857128],[1,712.9123200001195,11.795123999938369],[1,713.8535810001194,12.73638499993831],[1,714.7270339997485,13.60983799956739],[1,715.9150149999186,14.797818999737501],[1,716.6526920003816,15.53549600020051],[1,717.9057050002739,16.788509000092745],[1,718.8910390008241,17.773843000642955],[1,719.8632540004328,18.74605800025165],[1,720.9077559998259,19.790559999644756],[1,721.8351750010625,0.8079790007323027],[1,722.6621170006692,1.6349210003390908],[1,723.8279060004279,2.8007100000977516],[1,724.8121859999374,3.7849899996072054],[1,725.8168460000306,4.789649999700487],[1,726.8131870003417,5.785991000011563],[1,727.8152890000492,6.788092999719083],[1,728.8120430000126,7.784846999682486],[1,729.6222670003772,8.595071000047028],[1,730.7638520002365,9.736655999906361],[1,731.8251310009509,10.797935000620782],[1,732.6335909999907,11.606394999660552],[1,733.8565600002185,12.829363999888301],[1,734.628423999995,13.601227999664843],[1,735.8545620003715,14.827366000041366],[1,736.7949000000954,15.767703999765217],[1,737.8160820007324,16.78888600040227],[1,738.6994840009138,17.67228800058365],[1,739.8684189999476,18.841222999617457],[1,740.7142130006105,0.7540170000866055],[1,741.8388290004805,1.8786329999566078],[1,742.8070010002702,2.8468049997463822],[1,743.8120880005881,3.851892000064254],[1,744.8053080001846,4.84511199966073],[1,745.6097980001941,5.649601999670267],[1,746.7561070006341,6.795911000110209],[1,747.8224020004272,7.862205999903381],[1,748.8071990003809,8.847002999857068],[1,749.7124730003998,9.752276999875903],[1,750.8365760007873,10.876380000263453],[1,751.807146999985,11.846950999461114],[1,752.8144410010427,12.854245000518858],[1,753.8124290006235,13.852233000099659],[1,754.6789710000157,14.71877499949187],[1,755.8356420006603,15.875446000136435],[1,756.8064440004528,16.84624799992889],[1,757.7564019998536,17.796205999329686],[1,758.8278360003605,18.867639999836683],[2,759.6257809996605,19.665584999136627],[1,760.8776850001886,1.2124889995902777],[1,761.8506909999996,2.1854949994012713],[1,762.6831840006635,3.0179880000650883],[1,763.814868000336,4.14967199973762],[1,764.812768000178,5.147571999579668],[1,765.8128540003672,6.147657999768853],[1,766.8129300000146,7.147733999416232],[1,767.8121060002595,8.146909999661148],[1,768.8660070011392,9.200811000540853],[1,769.6305170003325,9.965320999734104],[1,770.846618000418,11.181421999819577],[1,771.8268070006743,12.161611000075936],[1,772.8329750010744,13.167779000476003],[1,773.812870000489,14.147673999890685],[1,774.8086870005354,15.143490999937057],[1,775.7257510004565,16.06055499985814],[1,776.7180989999324,17.052902999334037],[1,777.9064900008962,18.241294000297785],[1,778.8878920003772,19.222695999778807],[1,779.6781710004434,0.3619750002399087],[1,780.8602390000597,1.544042999856174],[1,781.7057469999418,2.389550999738276],[1,782.9464610004798,3.6302650002762675],[1,783.8440290009603,4.5278330007568],[1,784.8719279998913,5.5557319996878505],[1,785.8972789999098,6.581082999706268],[1,786.70842500031,7.392229000106454],[1,787.9096640003845,8.59346800018102],[1,788.8849969999865,9.56880099978298],[1,789.7978520002216,10.48165600001812],[1,790.8193760002032,11.503179999999702],[1,791.815752000548,12.499556000344455],[1,792.7480420004576,13.431846000254154],[1,793.8350010011345,14.518805000931025],[1,794.8071480002254,15.490952000021935],[1,795.8294360004365,16.513240000233054],[1,796.9064770005643,0.990280999802053],[1,797.8010069997981,1.8848109990358353],[1,798.8813939997926,2.9651979990303516],[1,799.8372179996222,3.921021998859942],[1,800.8220410002396,4.905844999477267],[1,801.875442000106,5.959245999343693],[1,802.8618900002912,6.945693999528885],[1,803.881892000325,7.96569599956274],[1,804.7168780006468,8.800681999884546],[1,805.7965370006859,9.880340999923646],[1,806.8200500002131,10.903853999450803],[1,807.8143640002236,11.898167999461293],[1,808.8728420007974,12.956646000035107],[1,809.6997610004619,13.783564999699593],[1,810.9066190002486,14.990422999486327],[1,811.8217220008373,15.905526000075042],[1,812.6787520004436,16.762555999681354],[1,813.9051599996164,17.98896399885416],[1,814.7933940012008,18.87719800043851],[1,815.8862039996311,19.970007998868823],[1,816.8424669997767,0.8242709990590811],[1,817.876992999576,1.8587969988584518],[1,818.6775179998949,2.6593219991773367],[1,819.9078770000488,3.8896809993311763],[1,820.8893640004098,4.871167999692261],[1,821.8732960000634,5.855099999345839],[2,822.7562180003151,6.738021999597549],[1,823.6099399998784,7.591743999160826],[1,824.7538530007005,8.735656999982893],[1,825.9469079999253,9.928711999207735],[1,826.8778520002961,10.859655999578536],[1,827.8044269997627,11.786230999045074],[1,828.8946910006925,12.876494999974966],[1,829.6723680002615,13.654171999543905],[1,830.8827189998701,14.864522999152541],[1,831.8068700004369,15.788673999719322],[1,832.8816550001502,16.863458999432623],[1,833.8716820003465,17.8534859996289],[1,834.6593500003219,18.641153999604285],[1,835.8464320003986,1.1042360002174973],[1,836.912982000038,2.1707859998568892],[1,837.8727520005777,3.1305560003966093],[1,838.8779410002753,4.135745000094175],[2,839.8002250008285,5.058029000647366],[1,840.8146460009739,6.072450000792742],[1,841.8149420004338,7.072746000252664],[1,842.8550460003316,8.112850000150502],[1,843.8998349998146,9.157638999633491],[1,844.8003600006923,10.05816400051117],[1,845.9166390001774,11.174442999996245],[1,846.8885430004448,12.146347000263631],[1,847.8569990005344,13.114803000353277],[1,848.7121010003611,13.969905000180006],[1,849.9106329996139,15.168436999432743],[1,850.8109120000154,16.06871599983424],[1,851.8147050011903,0.17550900112837553],[1,852.7439740002155,1.1047780001536012],[1,853.9405169999227,2.3013209998607635],[1,854.8822609996423,3.2430649995803833],[1,855.8734450004995,4.234249000437558],[1,856.6325329998508,4.99333699978888],[1,857.6550150001422,6.015819000080228],[1,858.7946810005233,7.15548500046134],[1,859.9171560006216,8.277960000559688],[1,860.8879040004686,9.248708000406623],[1,861.691014001146,10.05181800108403],[1,862.9087389996275,11.269542999565601],[1,863.7967070005834,12.157511000521481],[1,864.7817680006847,13.14257200062275],[1,865.9333760002628,14.294180000200868],[1,866.8548700008541,15.215674000792205],[221,867.8067420003936,16.16754600033164],[1,868.6302840001881,0.20508799981325865],[1,869.9614260001108,1.5362299997359514],[1,870.6644010003656,2.2392049999907613],[1,871.7642690008506,3.3390730004757643],[1,872.930367000401,4.505171000026166],[1,873.7830330003053,5.357836999930441],[1,874.8237920012325,6.398596000857651],[1,875.8124760007486,7.387280000373721],[1,876.916240000166,8.491043999791145],[1,877.8739420007914,9.448746000416577],[1,878.7927870005369,10.367591000162065],[1,879.9100200003013,11.484823999926448],[1,880.881892000325,12.45669599995017],[1,881.7917600004002,13.366564000025392],[1,882.8485139999539,14.423317999579012],[1,883.8217759998515,15.396579999476671],[1,884.8407479999587,16.41555199958384],[1,885.6769789997488,0.044782998971641064],[1,886.7709740009159,1.1387780001387],[1,887.9076470006257,2.2754509998485446],[1,888.8896490009502,3.2574530001729727],[1,889.7976410007104,4.165444999933243],[1,890.8183700004593,5.186173999682069],[1,891.7490159999579,6.116819999180734],[1,892.7744680000469,7.142271999269724],[1,893.9273479999974,8.295151999220252],[1,894.8787090005353,9.246512999758124],[1,895.6161780003458,9.983981999568641],[1,896.6737630004063,11.04156699962914],[1,897.8556289998814,12.223432999104261],[1,898.828940000385,13.196743999607861],[1,899.894200000912,14.262004000134766],[1,900.8721249997616,15.239928998984396],[1,901.8785080006346,16.246311999857426],[1,902.8789610005915,17.24676499981433],[1,903.7029690006748,18.0707729998976],[1,904.9635770004243,1.125381000339985],[1,905.8953540008515,2.057158000767231],[1,906.7940070005134,2.955811000429094],[1,907.8227360006422,3.9845400005578995],[1,908.7111329995096,4.872936999425292],[1,909.9413529997692,6.10315699968487],[1,910.776971001178,6.938775001093745],[1,911.8902130005881,8.052017000503838],[1,912.8150420002639,8.976846000179648],[1,913.7532200003043,9.91502400022],[1,914.8360040010884,10.99780800100416],[1,915.6223449995741,11.784148999489844],[1,916.7895380007103,12.951342000626028],[1,917.8863760009408,14.048180000856519],[1,918.8646900001913,15.02649400010705],[1,919.8843900002539,16.046194000169635],[1,920.8261410007253,16.987945000641048],[1,921.6301290011033,17.79193300101906],[1,922.9008160000667,19.062619999982417],[1,923.7914399998263,0.6972439996898174],[1,924.8240680005401,1.7298720004037023],[1,925.6877460004762,2.5935500003397465],[1,926.9454490002245,3.851253000088036],[1,927.7083050003275,4.6141090001910925],[1,928.973658000119,5.879461999982595],[1,929.7721220003441,6.677926000207663],[1,930.8321260008961,7.737930000759661],[1,931.9141430007294,8.819947000592947],[1,932.7973630009219,9.70316700078547],[1,933.8828349998221,10.788638999685645],[1,934.8238180000335,11.729621999897063],[1,935.8752370011061,12.781041000969708],[1,936.8635560004041,13.769360000267625],[1,937.8660899996758,14.771893999539316],[1,938.8090790007263,15.714883000589907],[1,939.7510530008003,16.656857000663877],[1,940.8294290006161,17.73523300047964],[1,941.8120810007676,0.8188850004225969],[1,942.8161789998412,1.822982999496162],[1,943.813082001172,2.819886000826955],[1,944.81365200039,3.820456000044942],[1,945.6383160008118,4.645120000466704],[1,946.6981100002304,5.704913999885321],[1,947.7136670006439,6.720471000298858],[1,948.8427260005847,7.849530000239611],[1,949.7395379999653,8.7463419996202],[1,950.8280990002677,9.834902999922633],[1,951.8034910010174,10.81029500067234],[1,952.8098480002955,11.816651999950409],[1,953.8450580006465,12.85186200030148],[1,954.8515330003574,13.858337000012398],[1,955.72367199976,14.73047599941492],[1,956.8286310005933,15.835435000248253],[1,957.8039330011234,16.810737000778317],[1,958.8087720004842,17.815576000139117],[1,959.8458890002221,18.852692999877036],[1,960.8219699999318,19.8287739995867],[1,961.825914000161,0.9337179996073246],[1,962.6299149999395,1.7377189993858337],[1,963.8133610002697,2.921164999715984],[1,964.810676000081,3.918479999527335],[1,965.8093720003963,4.917175999842584],[1,966.744519000873,5.852323000319302],[1,967.823382999748,6.931186999194324],[1,968.8469650000334,7.954768999479711],[1,969.8530180007219,8.960822000168264],[1,970.8560830000788,9.96388699952513],[1,971.7540810005739,10.861885000020266],[1,972.878791000694,11.986595000140369],[1,973.7977880006656,12.905592000111938],[1,974.8187210010365,13.926525000482798],[1,975.8135369997472,14.92134099919349],[1,976.9095750004053,16.017378999851644],[1,977.6552030006424,16.76300700008869],[1,978.8283580001444,17.936161999590695],[1,979.9078710004687,19.015674999915063],[1,980.7910470003262,0.5688509996980429],[1,981.8217179998755,1.5995219992473722],[1,982.8142060004175,2.5920099997892976],[1,983.7743510007858,3.5521550001576543],[1,984.6194310002029,4.397234999574721],[1,985.9176490008831,5.695453000254929],[1,986.8597419997677,6.637545999139547],[1,987.8652210002765,7.643024999648333],[1,988.8640350000933,8.641838999465108],[1,989.6586110005155,9.436414999887347],[1,990.8484789999202,10.626282999292016],[1,991.8007319997996,11.578535999171436],[1,992.7083099996671,12.486113999038935],[1,993.9548910008743,13.732695000246167],[1,994.8759160004556,14.653719999827445],[1,995.8644390003756,15.642242999747396],[1,996.9135819999501,16.691385999321938],[2,997.6454330012202,0.026237000711262226],[1,998.71874400042,1.0995479999110103],[1,999.9100120002404,2.2908159997314215],[1,1000.8850640002638,3.265867999754846],[1,1001.8071550000459,4.1879589995369315],[1,1002.8792350003496,5.260038999840617],[1,1003.6994870007038,6.080291000194848],[1,1004.9593740003183,7.340177999809384],[1,1005.8561820005998,8.236986000090837],[1,1006.803095000796,9.183899000287056],[1,1007.8175300005823,10.198334000073373],[1,1008.909613000229,11.290416999720037],[1,1009.8159440001473,12.196747999638319],[1,1010.7219700003043,13.102773999795318],[1,1011.9495660001412,14.33036999963224],[1,1012.8789980011061,15.25980200059712],[1,1013.8554950011894,16.236299000680447],[1,1014.8125080000609,17.193311999551952],[1,1015.7727230004966,18.153526999987662],[1,1016.6921120006591,19.072916000150144],[1,1017.9289060002193,1.1187100000679493],[1,1018.8850880004466,2.074892000295222],[1,1019.8629920007661,3.0527960006147623],[1,1020.9012820003554,4.091086000204086],[1,1021.6573530007154,4.847157000564039],[1,1022.8258800003678,6.0156840002164245],[1,1023.8108000000939,7.000603999942541],[1,1024.8156320005655,8.005436000414193],[1,1025.65085299965,8.840656999498606],[1,1026.9261290002614,10.11593300011009],[1,1027.8796770004556,11.069481000304222],[1,1028.7880130009726,11.977817000821233],[1,1029.832388999872,13.022192999720573],[1,1030.8346970006824,14.024501000531018],[1,1031.810504999943,15.000308999791741],[1,1032.9165290007368,16.106333000585437],[1,1033.8554490003735,17.045253000222147],[1,1034.9009890006855,18.090793000534177],[1,1035.8395119998604,19.02931599970907],[1,1036.793660000898,0.12646400090306997],[1,1037.9255680004135,1.2583720004186034],[1,1038.8559689996764,2.1887729996815324],[1,1039.8031750004739,3.135979000478983],[1,1040.8139530001208,4.146757000125945],[1,1041.7201580004767,5.052962000481784],[1,1042.948369000107,6.281173000112176],[1,1043.8784800004214,7.211284000426531],[1,1044.8761280002072,8.208932000212371],[1,1045.8641680004075,9.196972000412643],[1,1046.7920180009678,10.124822000972927],[1,1047.768811000511,11.101615000516176],[1,1048.6371579999104,11.96996199991554],[1,1049.9623840004206,13.295188000425696],[1,1050.8751730006188,14.207977000623941],[1,1051.8761950004846,15.208999000489712],[1,1052.8984880000353,16.231292000040412],[1,1053.8218640005216,17.154668000526726],[1,1054.789242000319,18.12204600032419],[1,1055.8886410007253,19.221445000730455],[1,1056.7949630003422,0.6727670002728701],[1,1057.819684999995,1.6974889999255538],[1,1058.6981490002945,2.5759530002251267],[1,1059.7797640003264,3.6575680002570152],[1,1060.7963280007243,4.674132000654936],[1,1061.9255830002949,5.803387000225484],[1,1062.8851610012352,6.762965001165867],[1,1063.7401660000905,7.61797000002116],[1,1064.9113950002939,8.789199000224471],[1,1065.61921000015,9.497014000080526],[1,1066.8701210003346,10.74792500026524],[1,1067.8017520001158,11.679556000046432],[1,1068.8197470009327,12.697551000863314],[220,1069.820061000064,13.697864999994636],[1,1070.8036420000717,14.681446000002325],[1,1071.8041280005127,15.68193200044334],[1,1072.8160229995847,0.26082699932157993],[1,1073.7756790006533,1.2204830003902316],[1,1074.6600900003687,2.10489400010556],[1,1075.8206409998238,3.2654449995607138],[1,1076.8837980004027,4.328602000139654],[1,1077.852682000026,5.297485999763012],[1,1078.8700590003282,6.314863000065088],[1,1079.8649720000103,7.309775999747217],[1,1080.7595880003646,8.204392000101507],[1,1081.6274680001661,9.072271999903023],[1,1082.826693000272,10.271497000008821],[1,1083.943162000738,11.38796600047499],[1,1084.8368220003322,12.281626000069082],[1,1085.867549000308,13.312353000044823],[1,1086.8650860004127,14.309890000149608],[1,1087.6940620001405,15.138865999877453],[1,1088.9563240008429,16.401128000579774],[1,1089.778220999986,17.22302499972284],[1,1090.8243810003623,0.5751849999651313],[1,1091.7729489998892,1.5237529994919896],[1,1092.8899900000542,2.640793999657035],[1,1093.7881519999355,3.5389559995383024],[1,1094.814354000613,4.565158000215888],[1,1095.8929220009595,5.64372600056231],[1,1096.6856829999015,6.436486999504268],[1,1097.8378090001643,7.588612999767065],[1,1098.7470440007746,8.497848000377417],[1,1099.942352999933,9.693156999535859],[1,1100.8812830001116,10.632086999714375],[1,1101.876981000416,11.627785000018775],[1,1102.8773030005395,12.628107000142336],[1,1103.6600209996104,13.410824999213219],[1,1104.933227000758,14.684031000360847],[1,1105.8841369999573,15.634940999560058],[1,1106.7953860005364,16.546190000139177],[1,1107.8188610011712,17.569665000773966],[1,1108.8152640005574,18.566068000160158],[1,1109.7435970008373,19.49440100044012],[1,1110.9341360004619,1.065940000116825],[1,1111.8852770002559,2.0170809999108315],[1,1112.8638949999586,2.9956989996135235],[1,1113.697592000477,3.8293960001319647],[1,1114.6988910008222,4.830695000477135],[1,1115.9564429996535,6.088246999308467],[1,1116.8739120000973,7.005715999752283],[1,1117.8074639998376,7.939267999492586],[1,1118.9167680004612,9.04857200011611],[1,1119.6372360000387,9.769039999693632],[1,1120.8796790009364,11.011483000591397],[1,1121.8873670008034,12.0191710004583],[1,1122.8746670000255,13.00647099968046],[1,1123.784867000766,13.916671000421047],[1,1124.8216120004654,14.953416000120342],[1,1125.6607889998704,15.792592999525368],[1,1126.91377799958,17.045581999234855],[1,1127.865786000155,17.99758999980986],[1,1128.8687319997698,19.000535999424756],[1,1129.7668040003628,19.898608000017703],[1,1130.6968670003116,0.8106709998100996],[1,1131.9524469999596,2.066250999458134],[1,1132.873957999982,2.9877619994804263],[1,1133.8641039999202,3.977907999418676],[1,1134.7928660009056,4.9066700004041195],[1,1135.686228000559,5.800032000057399],[1,1136.9554830007255,7.069287000223994],[1,1137.892860000953,8.006664000451565],[1,1138.8600610010326,8.973865000531077],[1,1139.8189740004018,9.932777999900281],[1,1140.6421569995582,10.755960999056697],[1,1141.801401999779,11.915205999277532],[1,1142.9184929998592,13.03229699935764],[1,1143.8845159998164,13.998319999314845],[1,1144.8771909996867,14.990994999185205],[1,1145.8954710001126,16.00927499961108],[1,1146.7369260005653,16.850730000063777],[1,1147.8037250004709,0.9305290002375841],[1,1148.9198340000585,2.0466379998251796],[1,1149.8005960006267,2.9274000003933907],[1,1150.8960819998756,4.0228859996423125],[1,1151.8581250002608,4.984929000027478],[1,1152.7998000001535,5.926603999920189],[1,1153.7127139996737,6.839517999440432],[1,1154.8447049995884,7.971508999355137],[1,1155.794111000374,8.920915000140667],[223,1156.6922770002857,9.819081000052392],[1,1157.8394860010594,10.96629000082612],[1,1158.8053230009973,11.932127000764012],[1,1159.8145900005475,12.941394000314176],[1,1160.8169170003384,13.943721000105143],[1,1161.8115590009838,14.938363000750542],[1,1162.7983980001882,15.92520199995488],[1,1163.8125409996137,16.93934499938041],[1,1164.63030000031,17.75710400007665],[1,1165.8481670003384,18.974971000105143],[1,1166.7975920001045,0.8753959992900491],[1,1167.8071430008858,1.8849470000714064],[1,1168.8302760003135,2.908079999499023],[1,1169.8020160002634,3.879819999448955],[1,1170.8417260004207,4.919529999606311],[1,1171.6415180005133,5.719321999698877],[1,1172.8363390006125,6.9141429997980595],[1,1173.797203999944,7.875007999129593],[1,1174.818684999831,8.896488999016583],[1,1175.8124989997596,9.890302998945117],[1,1176.818991000764,10.896794999949634],[1,1177.853546001017,11.931350000202656],[1,1178.710691000335,12.78849499952048],[1,1179.967859000899,14.04566300008446],[1,1180.8858280004933,14.96363199967891],[1,1181.7965220008045,15.874325999990106],[1,1182.821542000398,0.40334600023925304],[1,1183.8116490002722,1.393453000113368],[1,1184.6207090001553,2.202512999996543],[1,1185.7802920006216,3.3620960004627705],[1,1186.9595030006021,4.541307000443339],[1,1187.7872299998999,5.369033999741077],[1,1188.9158480009064,6.497652000747621],[1,1189.7909740004689,7.372778000310063],[1,1190.6085140006617,8.190318000502884],[1,1191.7534640002996,9.335268000140786],[1,1192.8957060007378,10.47751000057906],[1,1193.8799409996718,11.46174499951303],[1,1194.8651800006628,12.446984000504017],[1,1195.8666280005127,13.448432000353932],[1,1196.6861079996452,14.267911999486387],[1,1197.9692270001397,15.551030999980867],[1,1198.7767110001296,16.358514999970794],[1,1199.825659999624,17.407463999465108],[1,1200.8130200002342,18.39482400007546],[1,1201.815689000301,19.397493000142276],[1,1202.7979390006512,0.8797430004924536],[1,1203.854287000373,1.936091000214219],[1,1204.8674189997837,2.949222999624908],[1,1205.866093000397,3.9478970002382994],[1,1206.8035310003906,4.885335000231862],[1,1207.8173200003803,5.899124000221491],[1,1208.675227000378,6.7570310002192855],[1,1209.931185000576,8.012989000417292],[1,1210.693913999945,8.775717999786139],[1,1211.9436420006678,10.025446000508964],[1,1212.84538000077,10.927184000611305],[1,1213.7794000003487,11.8612040001899],[1,1214.7725999997929,12.854403999634087],[1,1215.9431950002909,14.024999000132084],[1,1216.8450579997152,14.926861999556422],[1,1217.8697230005637,15.951527000404894],[1,1218.8967840000987,16.97858799993992],[1,1219.6924850000069,17.774288999848068],[1,1220.941921000369,19.023725000210106],[1,1221.788354001008,0.1911580003798008],[1,1222.6592830000445,1.0620869994163513],[1,1223.852634000592,2.2554379999637604],[1,1224.805532000959,3.208336000330746],[1,1225.6931030005217,4.0959069998934865],[1,1226.9111419999972,5.313945999369025],[1,1227.8575630011037,6.260367000475526],[1,1228.902850001119,7.305654000490904],[1,1229.7994980011135,8.20230200048536],[1,1230.691846000962,9.094650000333786],[1,1231.8460210012272,10.248825000599027],[1,1232.7903960002586,11.193199999630451],[1,1233.8210900006816,12.223894000053406],[1,1234.636487999931,13.039291999302804],[1,1235.678935999982,14.081739999353886],[1,1236.8292549997568,15.23205899912864],[1,1237.8031719997525,16.205975999124348],[1,1238.614938000217,17.017741999588907],[1,1239.7319410005584,18.134744999930263],[1,1240.8224280010909,19.22523200046271],[1,1241.7954620001838,0.8402659995481372],[1,1242.8162790006027,1.8610829999670386],[1,1243.8093120008707,2.8541160002350807],[1,1244.8117450000718,3.8565489994361997],[1,1245.8123850002885,4.8571889996528625],[1,1246.6898880004883,5.734691999852657],[1,1247.698363000527,6.7431669998914],[1,1248.7481460003182,7.792949999682605],[1,1249.670822000131,8.715625999495387],[1,1250.7091860007495,9.753990000113845],[1,1251.82126800064,10.866072000004351],[1,1252.8364900005981,11.881293999962509],[1,1253.806304000318,12.851107999682426],[1,1254.8172210007906,13.862025000154972],[1,1255.6348010003567,14.67960499972105],[1,1256.7136430004612,15.758446999825537],[1,1257.8447690000758,16.889572999440134],[1,1258.8059710003436,17.850774999707937],[1,1259.8084220010787,18.8532260004431],[1,1260.8224630001932,0.6012669997289777],[1,1261.915231000632,1.694035000167787],[1,1262.6225410001352,2.4013449996709824],[1,1263.684747000225,3.4635509997606277],[1,1264.9112120009959,4.690016000531614],[1,1265.8865919997916,5.665395999327302],[1,1266.8098259996623,6.5886299991980195],[1,1267.8782620001584,7.657065999694169],[1,1268.6353470003232,8.414150999858975],[1,1269.8802350005135,9.659039000049233],[1,1270.8754120003432,10.654215999878943],[1,1271.80863900017,11.587442999705672],[218,1272.817239000462,12.596042999997735],[1,1273.8060110006481,13.58481500018388],[1,1274.64515100047,14.423955000005662],[1,1275.8749259999022,15.653729999437928],[1,1276.8849039999768,16.663707999512553],[1,1277.8667550003156,0.8275589998811483],[1,1278.8153280010447,1.7761320006102324],[1,1279.9145499998704,2.8753539994359016],[1,1280.650885000825,3.61168900039047],[1,1281.6145330006257,4.575337000191212],[1,1282.7671650005504,5.727969000115991],[1,1283.8255410008132,6.7863450003787875],[1,1284.8098640004173,7.770667999982834],[1,1285.8147300006822,8.775534000247717],[1,1286.8115910002962,9.772394999861717],[1,1287.8121760003269,10.772979999892414],[1,1288.8880260009319,11.8488300004974],[1,1289.8025299999863,12.763333999551833],[1,1290.8198029994965,13.780606999062002],[1,1291.8115199999884,14.772323999553919],[1,1292.9156550010666,15.876459000632167],[1,1293.852192000486,16.8129960000515],[1,1294.6393670011312,17.60017100069672],[1,1295.8304250007495,18.79122900031507],[1,1296.8884560000151,19.84925999958068],[1,1297.8576370002702,0.704440999776125],[1,1298.9003400010988,1.7471440006047487],[1,1299.8666790006682,2.7134830001741648],[1,1300.6578720007092,3.504676000215113],[1,1301.906393000856,4.753197000361979],[1,1302.8897609999403,5.736564999446273],[1,1303.8596250005066,6.706429000012577],[1,1304.9062409996986,7.753044999204576],[1,1305.6341840000823,8.480987999588251],[1,1306.8004520004615,9.647255999967456],[1,1307.8190170004964,10.665821000002325],[1,1308.8253770004958,11.672181000001729],[1,1309.8114160001278,12.65821999963373],[1,1310.6391230002046,13.4859269997105],[1,1311.85020800028,14.6970119997859],[1,1312.7992340000346,15.646037999540567],[1,1313.809714000672,16.65651800017804],[1,1314.6455450002104,17.49234899971634],[1,1315.8059260006994,18.652730000205338],[1,1316.8350630002096,0.9548669997602701],[1,1317.8282869998366,1.9480909993872046],[1,1318.8319119997323,2.9517159992828965],[1,1319.8769380003214,3.996741999872029],[1,1320.8637870000675,4.983590999618173],[1,1321.6531640002504,5.77296799980104],[1,1322.8805069997907,7.000310999341309],[1,1323.8004170004278,7.920220999978483],[1,1324.8183200005442,8.938124000094831],[1,1325.7457560002804,9.86555999983102],[1,1326.7244080007076,10.844212000258267],[1,1327.7430980009958,11.862902000546455],[1,1328.988445000723,13.108249000273645],[1,1329.8438470000401,13.963650999590755],[1,1330.7290860004723,14.848890000022948],[1,1331.8436960009858,15.963500000536442],[1,1332.765843000263,16.885646999813616],[1,1333.964836999774,18.08464099932462],[1,1334.854295000434,18.974098999984562],[1,1335.8052660003304,0.45107000041753054],[1,1336.8176629999653,1.4634670000523329],[1,1337.7612800002098,2.4070840002968907],[1,1338.6404880005866,3.2862920006737113],[1,1339.6887810006738,4.334585000760853],[1,1340.8392719998956,5.485075999982655],[1,1341.8099280009046,6.455732000991702],[1,1342.9170470004901,7.562851000577211],[1,1343.8493720004335,8.495176000520587],[1,1344.8706870004535,9.516491000540555],[1,1345.6686540003866,10.314458000473678],[1,1346.95157100074,11.597375000827014],[1,1347.8775720000267,12.523376000113785],[1,1348.8555680001155,13.501372000202537],[1,1349.914736000821,14.560540000908077],[1,1350.7770080007613,15.422812000848353],[1,1351.9092300003394,16.55503400042653],[1,1352.8690380007029,0.8378420006483793],[1,1353.8773960005492,1.8462000004947186],[1,1354.6463280003518,2.615132000297308],[1,1355.7345470003784,3.7033510003238916],[1,1356.8352290000767,4.804033000022173],[1,1357.8095639999956,5.778367999941111],[1,1358.913590000011,6.882393999956548],[1,1359.864009000361,7.832813000306487],[1,1360.9013320002705,8.870136000216007],[1,1361.6150500001386,9.583854000084102],[1,1362.7336240010336,10.702428000979125],[1,1363.8368039997295,11.805607999674976],[1,1364.8280850006267,12.796889000572264],[1,1365.814973000437,13.783777000382543],[1,1366.8137300005183,14.782534000463784],[1,1367.8226410001516,15.791445000097156],[1,1368.8088010000065,16.77760499995202],[1,1369.671844000928,17.640648000873625],[1,1370.7869309997186,18.755734999664128],[1,1371.828226001002,19.797030000947416],[1,1372.8123770002276,0.8301809998229146],[1,1373.8160690004006,1.8338729999959469],[1,1374.8129700003192,2.830773999914527],[1,1375.8157780002803,3.833581999875605],[1,1376.8121610004455,4.829965000040829],[1,1377.8125930000097,5.830396999605],[1,1378.7189800003543,6.736783999949694],[1,1379.8335070004687,7.851311000064015],[1,1380.6361510008574,8.653955000452697],[1,1381.8595839999616,9.877387999556959],[1,1382.795537000522,10.813341000117362],[1,1383.8118510004133,11.829655000008643],[1,1384.8071210002527,12.824924999848008],[1,1385.815421000123,13.833224999718368],[1,1386.8376329997554,14.855436999350786],[1,1387.7362800007686,15.754084000363946],[1,1388.676299000159,16.69410299975425],[1,1389.85445000045,17.87225400004536],[1,1390.7983109997585,18.816114999353886],[1,1391.6174530005082,0.4822570001706481],[1,1392.6267610006034,1.4915650002658367],[1,1393.6678300006315,2.5326340002939105],[1,1394.8425900004804,3.7073940001428127],[1,1395.8032370004803,4.6680410001426935],[1,1396.7420760001987,5.606879999861121],[1,1397.8133980007842,6.678202000446618],[1,1398.8136830003932,7.678487000055611],[1,1399.805190000683,8.669994000345469],[1,1400.8067470006645,9.671551000326872],[1,1401.7505370005965,10.615341000258923],[1,1402.6449920004234,11.509796000085771],[1,1403.9056609999388,12.770464999601245],[1,1404.6847400004044,13.549544000066817],[1,1405.965596999973,14.830400999635458],[1,1406.7731590000913,15.637962999753654],[1,1407.8273750003427,0.49617899954319],[1,1408.845639999956,1.5144439991563559],[1,1409.8758089998737,2.544612999074161],[1,1410.892156000249,3.560959999449551],[1,1411.777693000622,4.446496999822557],[1,1412.8929190002382,5.5617229994386435],[1,1413.7996060010046,6.46841000020504],[1,1414.8249120004475,7.493715999647975],[1,1415.8078810004517,8.476684999652207],[1,1416.8130760006607,9.481879999861121],[1,1417.6380510004237,10.306854999624193],[1,1418.8043510001153,11.473154999315739],[1,1419.6396530009806,12.308457000181079],[1,1420.692178000696,13.360981999896467],[1,1421.9044970003888,14.573300999589264],[1,1422.8522480009124,15.521052000112832],[1,1423.6223780009896,16.29118200019002],[1,1424.6075529996306,17.276356998831034],[1,1425.8160309996456,18.484834998846054],[1,1426.9086270006374,19.577430999837816],[1,1427.8362870002165,0.7150910003110766],[1,1428.8686950001866,1.7474990002810955],[1,1429.875837000087,2.7546410001814365],[1,1430.7251790007576,3.6039830008521676],[1,1431.9527780003846,4.831582000479102],[1,1432.8740860000253,5.752890000119805],[1,1433.859488000162,6.738292000256479],[1,1434.8066819999367,7.685486000031233],[1,1435.6890450008214,8.567849000915885],[1,1436.9580119997263,9.836815999820828],[1,1437.8409820003435,10.719786000438035],[1,1438.903144000098,11.781948000192642],[1,1439.768042000942,12.646846001036465],[1,1440.6421810006723,13.520985000766814],[1,1441.7632809998468,14.64208499994129],[1,1442.758544000797,15.637348000891507],[1,1443.8304700003937,16.70927400048822],[1,1444.8121060002595,17.69091000035405],[1,1445.8140460001305,18.692850000225008],[1,1446.6367700006813,0.15757400076836348],[1,1447.857437999919,1.3782420000061393],[1,1448.6890740003437,2.2098780004307628],[1,1449.6414780002087,3.162282000295818],[1,1450.8732620002702,4.39406600035727],[1,1451.8969890000299,5.417793000116944],[1,1452.8590060006827,6.379810000769794],[1,1453.8695500008762,7.390354000963271],[1,1454.8042540000752,8.325058000162244],[1,1455.7076440006495,9.228448000736535],[1,1456.837205001153,10.358009001240134],[1,1457.6604480007663,11.18125200085342],[1,1458.9153800010681,12.436184001155198],[1,1459.863570000045,13.384374000132084],[1,1460.8631699997932,14.383973999880254],[1,1461.9035600004718,15.424364000558853],[1,1462.7052090000361,16.226013000123203],[1,1463.963927000761,17.484731000848114],[1,1464.7973050000146,18.318109000101686],[1,1465.9152650004253,19.43606900051236],[1,1466.7863880004734,0.3861920004710555],[1,1467.9213910000399,1.521195000037551],[1,1468.6449509998783,2.2447549998760223],[1,1469.9325630003586,3.5323670003563166],[1,1470.7859169999138,4.3857209999114275],[1,1471.8516020001844,5.451406000182033],[2,1472.6071790000424,6.206983000040054],[1,1473.8602379998192,7.4600419998168945],[141,1474.639055000618,8.238859000615776],[1,1475.6789299994707,9.278733999468386],[1,1476.8437340008095,10.443538000807166],[1,1477.6340850004926,11.233889000490308],[1,1478.8563970001414,12.456201000139117],[1,1479.7999609997496,13.399764999747276],[1,1480.8149450002238,14.41474900022149],[1,1481.6118200002238,15.21162400022149],[1,1482.7353269997984,16.335130999796093],[1,1483.6049440000206,17.2047480000183],[1,1484.7108050007373,0.21360900066792965],[1,1485.7077860003337,1.2105900002643466],[1,1486.613625000231,2.116429000161588],[1,1487.6658020000905,3.1686060000211],[1,1488.7025350006297,4.205339000560343],[1,1489.8208360001445,5.323640000075102],[1,1490.795145000331,6.297949000261724],[1,1491.8253950001672,7.328199000097811],[1,1492.793434000574,8.296238000504673],[1,1493.8080010004342,9.31080500036478],[1,1494.8094880003482,10.31229200027883],[1,1495.8111479999498,11.313951999880373],[1,1496.6863050004467,12.189109000377357],[1,1497.8248510006815,13.32765500061214],[1,1498.8428969997913,14.345700999721885],[1,1499.8055430008098,15.308347000740469],[1,1500.8215350005776,16.32433900050819],[1,1501.869525000453,0.5433290004730225],[1,1502.864733000286,1.5385370003059506],[1,1503.732763000764,2.40656700078398],[1,1504.9269449999556,3.6007489999756217],[1,1505.8851899998263,4.55899399984628],[1,1506.7993460008875,5.473150000907481],[1,1507.8183049997315,6.492108999751508],[1,1508.8372890008613,7.511093000881374],[1,1509.7073590001091,8.381163000129163],[1,1510.9655790003017,9.639383000321686],[1,1511.8733810000122,10.547185000032187],[1,1512.798522000201,11.472326000221074],[1,1513.8189450008795,12.492749000899494],[1,1514.738672000356,13.412476000376046],[1,1515.6550440005958,14.328848000615835],[1,1516.8309440007433,15.504748000763357],[1,1517.6223210003227,16.296125000342727],[1,1518.8615260003135,17.535330000333488],[1,1519.9030010011047,18.57680500112474],[1,1520.858645000495,19.532449000515044],[1,1521.8583200005814,0.3251240001991391],[1,1522.7075920002535,1.1743959998711944],[1,1523.8591350009665,2.325939000584185],[1,1524.8042370006442,3.271041000261903],[1,1525.8925870005041,4.359391000121832],[1,1526.8719740007073,5.3387780003249645],[1,1527.8067800002173,6.273583999834955],[1,1528.8108970010653,7.27770100068301],[1,1529.9199919998646,8.386795999482274],[1,1530.7925209999084,9.259324999526143],[1,1531.9196620006114,10.38646600022912],[1,1532.8510309997946,11.317834999412298],[1,1533.6464529996738,12.11325699929148],[1,1534.9127260008827,13.379530000500381],[1,1535.8125179996714,14.279321999289095],[1,1536.91579800006,15.382601999677718],[1,1537.8861050000414,16.35290899965912],[1,1538.8045020010322,17.27130600064993],[1,1539.6121660005301,18.07897000014782],[1,1540.7383099999279,1.0151139991357923],[1,1541.833372999914,2.1101769991219044],[1,1542.8086149999872,3.085418999195099],[1,1543.8144380003214,4.091241999529302],[1,1544.814097000286,5.090900999493897],[1,1545.6192030003294,5.896006999537349],[1,1546.8685769997537,7.1453809989616275],[1,1547.6577289998531,7.934532999061048],[1,1548.8036519996822,9.080455998890102],[1,1549.92948500067,10.20628899987787],[1,1550.8850760003552,11.161879999563098],[1,1551.871846000664,12.14864999987185],[1,1552.899382000789,13.17618599999696],[1,1553.7426530001685,14.019456999376416],[1,1554.941413000226,15.218216999433935],[1,1555.845565000549,16.122368999756873],[1,1556.6361630009487,16.91296700015664],[1,1557.8589089997113,18.13571299891919],[1,1558.804460001178,19.081264000386],[1,1559.6810780009255,19.957882000133395],[1,1560.8303180001676,1.0641219997778535],[1,1561.8155640000477,2.0493679996579885],[1,1562.8266890011728,3.060493000783026],[1,1563.6598850004375,3.8936890000477433],[1,1564.8590130005032,5.092817000113428],[1,1565.8030560007319,6.036860000342131],[1,1566.8166530001909,7.050456999801099],[1,1567.7483520004898,7.982156000100076],[1,1568.8281380003318,9.061941999942064],[1,1569.7386340005323,9.972438000142574],[1,1570.760158999823,10.993962999433279],[1,1571.9317239997908,12.165527999401093],[1,1572.8628800008446,13.096684000454843],[1,1573.7988520003855,14.032655999995768],[1,1574.7493380000815,14.983141999691725],[1,1575.9584189997986,16.19222299940884],[1,1576.8284240001813,17.062227999791503],[1,1577.8728020004928,18.106606000103056],[1,1578.8489410001785,0.2717450000345707],[1,1579.6875570006669,1.1103610005229712],[1,1580.9631139999256,2.385917999781668],[1,1581.8734660008922,3.2962700007483363],[1,1582.805654000491,4.228458000347018],[1,1583.8811200000346,5.303923999890685],[1,1584.8618879998103,6.284691999666393],[1,1585.6192360008135,7.042040000669658],[1,1586.7231900002807,8.145994000136852],[1,1587.8411610005423,9.263965000398457],[1,1588.8082540007308,10.231058000586927],[1,1589.8157040001824,11.238508000038564],[1,1590.625762999989,12.048566999845207],[1,1591.7840910004452,13.206895000301301],[1,1592.8191400002688,14.241944000124931],[1,1593.6671690009534,15.08997300080955],[1,1594.6590660009533,16.08187000080943],[1,1595.7523700008169,17.175174000672996],[1,1596.8300910005346,18.25289500039071],[1,1597.8077540006489,19.23055800050497],[1,1598.6821060003713,0.628910000436008],[1,1599.8397160004824,1.7865200005471706],[1,1600.7989189997315,2.7457229997962713],[1,1601.8497510002926,3.79655500035733],[1,1602.8145679999143,4.761371999979019],[1,1603.713388999924,5.660192999988794],[1,1604.8309580003843,6.777762000449002],[1,1605.8631250010803,7.809929001145065],[1,1606.795747000724,8.742551000788808],[1,1607.6677230000496,9.614527000114322],[1,1608.6893490003422,10.636153000406921],[1,1609.8377510001883,11.784555000253022],[1,1610.8086470002308,12.75545100029558],[1,1611.6331970002502,13.580001000314951],[1,1612.8079830007628,14.754787000827491],[1,1613.820447999984,15.767252000048757],[1,1614.811662000604,16.758466000668705],[1,1615.813873999752,17.760677999816835],[1,1616.8129730001092,18.759777000173926],[1,1617.809990000911,0.27079400047659874],[1,1618.6279469998553,1.0887509994208813],[1,1619.8643940007314,2.3251980002969503],[1,1620.6605760008097,3.1213800003752112],[1,1621.8614790001884,4.322282999753952],[1,1622.7988630011678,5.259667000733316],[1,1623.8034290000796,6.2642329996451735],[1,1624.8152670003474,7.276070999912918],[1,1625.7039919998497,8.164795999415219],[1,1626.8403010005131,9.301105000078678],[1,1627.6252840002999,10.086087999865413],[1,1628.8593460004777,11.320150000043213],[1,1629.7987610008568,12.259565000422299],[1,1630.79493700061,13.255741000175476],[1,1631.8179120011628,14.27871600072831],[1,1632.7577700000256,15.218573999591172],[1,1633.8260320005938,16.286836000159383],[1,1634.8092550002038,17.27005899976939],[1,1635.6761499997228,0.23595399968326092],[1,1636.8588030003011,1.4186070002615452],[1,1637.6176330000162,2.177436999976635],[1,1638.6276920000091,3.187495999969542],[1,1639.7772390004247,4.337043000385165],[1,1640.7255000006407,5.2853040006011724],[1,1641.6320320004597,6.191836000420153],[1,1642.8522180002183,7.412022000178695],[1,1643.6901540001854,8.249958000145853],[1,1644.8379420004785,9.397746000438929],[1,1645.833588999696,10.393392999656498],[1,1646.8334619998932,11.393265999853611],[1,1647.7132360003889,12.273040000349283],[1,1648.8559850007296,13.415789000689983],[1,1649.8133479999378,14.373151999898255],[1,1650.8268170002848,15.386621000245214],[1,1651.780675000511,16.340479000471532],[1,1652.6173820002005,0.11118599958717823],[1,1653.6050120005384,1.0988159999251366],[1,1654.7845580009744,2.278362000361085],[1,1655.8423009999096,3.336104999296367],[1,1656.808578000404,4.3023819997906685],[1,1657.8154220003635,5.309225999750197],[1,1658.6591170011088,6.152921000495553],[1,1659.8735210001469,7.367324999533594],[1,1660.8474829997867,8.341286999173462],[1,1661.7122470010072,9.206051000393927],[1,1662.8485730011016,10.34237700048834],[1,1663.60868600104,11.10249000042677],[1,1664.8984500002116,12.392253999598324],[1,1665.8153690006584,13.30917300004512],[1,1666.8662189999595,14.360022999346256],[1,1667.6620260002092,15.15582999959588],[1,1668.8336740005761,16.327477999962866],[1,1669.8109699999914,17.304773999378085],[1,1670.8140400005504,18.307843999937177],[1,1671.8139530001208,19.307756999507546],[1,1672.7197570009157,0.3985610008239746],[1,1673.836827000603,1.5156310005113482],[1,1674.8067950000986,2.485599000006914],[228,1675.6504000006244,3.329204000532627],[244,1676.6348290005699,4.3136330004781485],[1,1677.8468700004742,5.525674000382423],[1,1678.8047220008448,6.483526000753045],[1,1679.7275990005583,7.4064030004665256],[1,1680.8959530005231,8.574757000431418],[1,1681.711672000587,9.390476000495255],[1,1682.893935000524,10.572739000432193],[1,1683.8232760000974,11.502080000005662],[1,1684.8184320004657,12.49723600037396],[1,1685.8842420009896,13.563046000897884],[1,1686.7918180003762,14.470622000284493],[1,1687.883497000672,15.562301000580192],[1,1688.8595360005274,16.53834000043571],[1,1689.80264700111,0.5834510009735823],[1,1690.8172010006383,1.598005000501871],[1,1691.619019000791,2.399823000654578],[1,1692.6935940003023,3.47439800016582],[1,1693.9128550002351,4.693659000098705],[1,1694.8925410006195,5.673345000483096],[1,1695.6552760004997,6.43608000036329],[1,1696.8922730004415,7.673077000305057],[1,1697.802962999791,8.583766999654472],[1,1698.816335001029,9.59713900089264],[1,1699.7012750003487,10.482079000212252],[1,1700.7334440005943,11.514248000457883],[1,1701.8334350008518,12.614239000715315],[1,1702.8099630009383,13.590767000801861],[1,1703.8142290003598,14.595033000223339],[1,1704.8128630006686,15.59366700053215],[1,1705.8151270002127,16.595931000076234],[223,1706.7184760011733,17.499280001036823],[1,1707.8312769997865,18.61208099965006],[1,1708.672577000223,19.453381000086665],[1,1709.820997999981,1.0458019999787211],[1,1710.8050170000643,2.0298210000619292],[1,1711.8143350007012,3.039139000698924],[1,1712.8113510003313,4.036155000329018],[1,1713.812886000611,5.037690000608563],[1,1714.80902899988,6.033832999877632],[1,1715.8125480003655,7.037352000363171],[1,1716.6134200002998,7.838224000297487],[1,1717.704000000842,8.928804000839591],[1,1718.8410170003772,10.065821000374854],[1,1719.8454770008102,11.070281000807881],[1,1720.8027680004016,12.027572000399232],[1,1721.8148060003296,13.03961000032723],[1,1722.810175999999,14.034979999996722],[1,1723.8123240005225,15.03712800052017],[1,1724.8107100008056,16.035514000803232],[1,1725.6392940003425,16.864098000340164],[1,1726.8640240002424,18.088828000240028],[1,1727.863851999864,19.088655999861658],[1,1728.8217150010169,0.5835190005600452],[1,1729.8199060009792,1.5817100005224347],[1,1730.7459900006652,2.507794000208378],[1,1731.6517710005865,3.41357500012964],[1,1732.6932060001418,4.4550099996849895],[1,1733.8208500007167,5.582654000259936],[1,1734.6139139998704,6.3757179994136095],[1,1735.7631029998884,7.5249069994315505],[1,1736.6581820007414,8.419986000284553],[1,1737.8346390007064,9.596443000249565],[1,1738.788374000229,10.550177999772131],[1,1739.8051310004666,11.566935000009835],[1,1740.6065820008516,12.368386000394821],[1,1741.6543410001323,13.416144999675453],[1,1742.661929000169,14.423732999712229],[1,1743.8470450006425,15.608849000185728],[1,1744.7354570003226,16.49726099986583],[1,1745.8186050010845,17.580409000627697],[1,1746.6984780002385,18.460281999781728],[1,1747.8396470006555,19.601451000198722],[1,1748.629731000401,0.4335350003093481],[1,1749.6423280006275,1.4461320005357265],[1,1750.630458000116,2.4342620000243187],[1,1751.6420710003003,3.4458750002086163],[1,1752.6849310006946,4.488735000602901],[1,1753.7457550009713,5.549559000879526],[1,1754.8418080005795,6.645612000487745],[1,1755.8216320006177,7.625436000525951],[1,1756.8079190002754,8.611723000183702],[1,1757.8104900000617,9.61429399996996],[1,1758.8085440006107,10.612348000518978],[1,1759.8323230007663,11.636127000674605],[1,1760.7585660004988,12.5623700004071],[1,1761.8525140006095,13.656318000517786],[1,1762.8286269996315,14.632430999539793],[1,1763.6188900005072,15.422694000415504],[1,1764.8651940003037,16.668998000212014],[1,1765.8261970002204,17.630001000128686],[1,1766.7802250003442,18.584029000252485],[1,1767.892156000249,19.695960000157356],[1,1768.8629990005866,0.5498029999434948],[1,1769.804316001013,1.4911200003698468],[1,1770.8174860011786,2.5042900005355477],[1,1771.8149580005556,3.50176199991256],[1,1772.800009000115,4.486812999472022],[1,1773.8173430003226,5.504146999679506],[1,1774.6575890006498,6.344393000006676],[1,1775.8173799999058,7.50418399926275],[1,1776.8129179999232,8.499721999280155],[1,1777.9151079999283,9.601911999285221],[1,1778.8148309998214,10.50163499917835],[1,1779.7608070001006,11.447610999457538],[1,1780.7147110002115,12.401514999568462],[1,1781.9048330001533,13.591636999510229],[1,1782.6280110003427,14.314814999699593],[1,1783.8213600004092,15.508163999766111],[1,1784.8886010004207,16.575404999777675],[1,1785.8963329996914,17.583136999048293],[1,1786.8897220008075,0.4845259999856353],[1,1787.8590069999918,1.4538109991699457],[1,1788.8987670000643,2.4935709992423654],[1,1789.803112000227,3.397915999405086],[1,1790.8165890006348,4.411392999812961],[1,1791.8160910001025,5.410894999280572],[1,1792.7147050006315,6.309508999809623],[1,1793.9394829999655,7.53428699914366],[1,1794.6443070005625,8.23911099974066],[1,1795.8629219997674,9.457725998945534],[1,1796.8352150004357,10.430018999613822],[1,1797.8094779998064,11.404281998984516],[1,1798.8163230000064,12.41112699918449],[1,1799.807746999897,13.402550999075174],[1,1800.8074900005013,14.402293999679387],[1,1801.7108440008014,15.305647999979556],[1,1802.6762470006943,16.271050999872386],[1,1803.8479660004377,17.442769999615848],[1,1804.8028239998966,18.397627999074757],[1,1805.8158120000735,0.8846159996464849],[1,1806.7282180003822,1.7970219999551773],[1,1807.8318530004472,2.9006570000201464],[1,1808.8076820001006,3.876485999673605],[1,1809.6051200004295,4.673924000002444],[1,1810.7484740000218,5.817277999594808],[1,1811.74131700024,6.81012099981308],[1,1812.8568629994988,7.9256669990718365],[1,1813.7971720006317,8.865976000204682],[1,1814.6188220009208,9.687626000493765],[1,1815.8697040006518,10.938508000224829],[1,1816.7942320005968,11.863036000169814],[1,1817.8117900006473,12.880594000220299],[1,1818.8450430007651,13.913847000338137],[1,1819.6548870000988,14.723690999671817],[1,1820.825618000701,15.894422000274062],[1,1821.8602160001174,16.929019999690354],[1,1822.8246360002086,17.89343999978155],[1,1823.8123710006475,0.4741750005632639],[1,1824.8161480007693,1.4779520006850362],[1,1825.8119980003685,2.473802000284195],[1,1826.8131500007585,3.474954000674188],[1,1827.635658999905,4.297462999820709],[1,1828.7931090006605,5.454913000576198],[1,1829.8183810003102,6.480185000225902],[1,1830.8138750009239,7.475679000839591],[1,1831.8138920003548,8.475696000270545],[1,1832.8146820003167,9.476486000232399],[1,1833.8118230002,10.473627000115812],[1,1834.810490000993,11.472294000908732],[1,1835.6649949997663,12.326798999682069],[1,1836.7764220004901,13.438226000405848],[1,1837.6617480004206,14.323552000336349],[1,1838.9674420002848,15.62924600020051],[1,1839.7721500005573,16.433954000473022],[1,1840.8264739997685,17.488277999684215],[1,1841.8175530005246,18.47935700044036],[2,1842.8205050006509,0.14630900043994188],[1,1843.8400560002774,1.1658600000664592],[1,1844.8741290001199,2.199932999908924],[1,1845.8620589999482,3.1878629997372627],[1,1846.7016200004146,4.0274240002036095],[1,1847.9060930004343,5.231897000223398],[1,1848.792511000298,6.118315000087023],[1,1849.8213980002329,7.1472020000219345],[1,1850.6664820006117,7.992286000400782],[1,1851.8228010004386,9.14860500022769],[1,1852.812386999838,10.138190999627113],[1,1853.6901230001822,11.01592699997127],[1,1854.7308530006558,12.05665700044483],[1,1855.8336200006306,13.159424000419676],[1,1856.7919800002128,14.117784000001848],[1,1857.6589020006359,14.984706000424922],[1,1858.6220020009205,15.947806000709534],[1,1859.7328089997172,17.058612999506295],[1,1860.7401080010459,18.065912000834942],[1,1861.8411149997264,0.9849189994856715],[1,1862.8243019999936,1.9681059997528791],[1,1863.881380001083,3.0251840008422732],[1,1864.8581400001422,4.001943999901414],[1,1865.8754050005227,5.01920900028199],[1,1866.7946270005777,5.938431000337005],[1,1867.909342000261,7.053146000020206],[1,1868.850545000285,7.994349000044167],[1,1869.8651990005746,9.009003000333905],[1,1870.893935000524,10.037739000283182],[1,1871.7076840000227,10.851487999781966],[1,1872.7748680002987,11.918672000057995],[1,1873.8188220001757,12.962625999934971],[1,1874.8094520010054,13.953256000764668],[1,1875.8279609996825,14.971764999441803],[1,1876.8059360003099,15.949740000069141],[1,1877.8130290005356,16.956833000294864],[1,1878.811151000671,17.954955000430346],[1,1879.6212480003014,18.765052000060678],[1,1880.7770720003173,19.920876000076532],[249,1881.8047280004248,20.94853200018406],[1,1882.6847740001976,0.7525779996067286],[1,1883.8436040002853,1.9114079996943474],[1,1884.71999900043,2.7878029998391867],[1,1885.8901030011475,3.957907000556588],[1,1886.8161070002243,4.883910999633372],[1,1887.9119620006531,5.979766000062227],[1,1888.6709060007706,6.738710000179708],[1,1889.9180930005386,7.985896999947727],[1,1890.7854070002213,8.853210999630392],[1,1891.821813000366,9.889616999775171],[1,1892.6789060002193,10.746709999628365],[1,1893.9111010003835,11.978904999792576],[1,1894.8888199999928,12.956623999401927],[1,1895.6348470002413,13.70265099965036],[1,1896.8699930002913,14.937796999700367],[1,1897.8998159999028,15.967619999311864],[1,1898.8512789998204,16.91908299922943],[1,1899.9078599996865,17.97566399909556],[1,1900.6278950003907,18.695698999799788],[1,1901.6719400007278,0.9527440005913377],[1,1902.9357920009643,2.216596000827849],[1,1903.883555999957,3.16435999982059],[1,1904.8739889999852,4.154792999848723],[1,1905.8956860005856,5.176490000449121],[1,1906.7040360001847,5.98484000004828],[1,1907.8576700007543,7.138474000617862],[1,1908.8017150005326,8.082519000396132],[1,1909.8850760003552,9.165880000218749],[1,1910.8759160004556,10.156720000319183],[1,1911.897738000378,11.178542000241578],[1,1912.7389879999682,12.019791999831796],[1,1913.9248320003971,13.20563600026071],[1,1914.885645000264,14.166449000127614],[1,1915.8423410011455,15.123145001009107],[1,1916.9083820004016,16.18918600026518],[1,1917.6712840003893,16.952088000252843],[1,1918.8824930004776,18.163297000341117],[1,1919.8621060000733,0.8319099992513657],[1,1920.8838480003178,1.8536519994959235],[1,1921.8641430009156,2.833947000093758],[1,1922.6476900000125,3.6174939991906285],[1,1923.776877000928,4.746681000106037],[1,1924.8221800010651,5.7919840002432466],[1,1925.9195790002123,6.889382999390364],[1,1926.8619470000267,7.831750999204814],[1,1927.8692699996755,8.839073998853564],[1,1928.7932730000466,9.763076999224722],[1,1929.6268600001931,10.59666399937123],[1,1930.7551790010184,11.724983000196517],[1,1931.8287690002471,12.798572999425232],[1,1932.822448999621,13.792252998799086],[1,1933.8428750010207,14.812679000198841],[1,1934.8064840007573,15.776287999935448],[1,1935.8144070003182,16.78421099949628],[1,1936.640246000141,17.610049999319017],[1,1937.8553750002757,18.825178999453783],[1,1938.7931059999391,19.762909999117255],[1,1939.936005000025,1.059808999300003],[1,1940.7781480001286,1.9019519994035363],[1,1941.8219790002331,2.945782999508083],[1,1942.9118520002812,4.035655999556184],[1,1943.871838000603,4.995641999877989],[1,1944.9013959998265,6.02519999910146],[1,1945.7156330002472,6.83943699952215],[1,1946.9291020007804,8.052906000055373],[1,1947.8827370004728,9.006540999747813],[1,1948.846497000195,9.970300999470055],[1,1949.9023580001667,11.026161999441683],[1,1950.804046000354,11.927849999628961],[1,1951.696818000637,12.820621999911964],[1,1952.9662230005488,14.090026999823749],[1,1953.6182450000197,14.742048999294639],[1,1954.9444220000878,16.068225999362767],[1,1955.8596379999071,16.983441999182105],[1,1956.6512160003185,17.775019999593496],[1,1957.709362000227,18.833165999501944],[1,1958.7544040000066,19.878207999281585],[1,1959.6303909998387,0.7571949996054173],[1,1960.6072340002283,1.7340379999950528],[1,1961.719634000212,2.8464379999786615],[1,1962.6551290005445,3.7819330003112555],[1,1963.8401920003816,4.966996000148356],[1,1964.7874310007319,5.914235000498593],[1,1965.8019650001079,6.928768999874592],[1,1966.7984050000086,7.92520899977535],[1,1967.6495160004124,8.776320000179112],[1,1968.8105470007285,9.937351000495255],[1,1969.7973079998046,10.924111999571323],[1,1970.8795780008659,12.006382000632584],[1,1971.7801920007914,12.906996000558138],[1,1972.8142290003598,13.941033000126481],[1,1973.8106470005587,14.937451000325382],[1,1974.8122509997338,15.939054999500513],[1,1975.8112329998985,16.9380369996652],[1,1976.814313000068,17.941116999834776],[1,1977.7282029995695,18.855006999336183],[1,1978.8362269997597,19.96303099952638],[1,1979.8055260004476,0.8943300005048513],[1,1980.814575000666,1.903379000723362],[1,1981.668740999885,2.7575449999421835],[1,1982.7697499999776,3.8585540000349283],[1,1983.8101709997281,4.898974999785423],[1,1984.617146000266,5.705950000323355],[1,1985.7390440003946,6.827848000451922],[1,1986.6328470008448,7.721651000902057],[1,1987.6360700000077,8.724874000065029],[1,1988.7657940005884,9.854598000645638],[1,1989.8079270003363,10.896731000393629],[1,1990.800293999724,11.88909799978137],[1,1991.79532100074,12.884125000797212],[1,1992.8039239998907,13.892727999947965],[1,1993.7927540000528,14.88155800011009],[1,1994.8042299998924,15.893033999949694],[1,1995.8030700003728,16.891874000430107],[1,1996.81365500018,17.902459000237286],[1,1997.833080000244,18.92188400030136],[1,1998.8043940002099,0.797197999432683],[1,1999.9431990003213,1.9360029995441437],[1,2000.7778799999505,2.770683999173343],[1,2001.8194480007514,3.812251999974251],[1,2002.8130710003898,4.80587499961257],[1,2003.8117520008236,5.804556000046432],[1,2004.7369160000235,6.729719999246299],[1,2005.778461000882,7.771265000104904],[1,2006.8195740003139,8.812377999536693],[1,2007.8083619996905,9.801165998913348],[1,2008.9344850005582,10.927288999781013],[1,2009.842423000373,11.835226999595761],[1,2010.8686050008982,12.861409000121057],[1,2011.8233720008284,13.8161760000512],[1,2012.6893170000985,14.682120999321342],[1,2013.8978390004486,15.8906429996714],[1,2014.8023020001128,16.795105999335647],[1,2015.9173550000414,17.91015899926424],[1,2016.8233179999515,18.816121999174356],[2,2017.6787189999595,19.671522999182343],[1,2018.8438650006428,1.099669000133872],[1,2019.8719160007313,2.1277200002223253],[1,2020.8637990010902,3.1196030005812645],[1,2021.7778490008786,4.033653000369668],[1,2022.897409000434,5.153212999925017],[1,2023.733413000591,5.989217000082135],[1,2024.613279000856,6.869083000347018],[1,2025.7541930004954,8.00999699998647],[1,2026.828550000675,9.084354000166059],[1,2027.8115190006793,10.06732300017029],[1,2028.8193680010736,11.075172000564635],[1,2029.6536710001528,11.909474999643862],[1,2030.859098000452,13.114901999942958],[1,2031.7911540009081,14.046958000399172],[1,2032.7556070005521,15.011411000043154],[1,2033.7750260001048,16.03082999959588],[1,2034.8356980001554,17.091501999646425],[1,2035.7288540005684,17.984658000059426],[1,2036.8338050004095,0.9856089996173978],[1,2037.647740000859,1.7995440000668168],[1,2038.9073689999059,3.059172999113798],[1,2039.8254350004718,3.9772389996796846],[1,2040.8081760006025,4.959979999810457],[1,2041.8125069998205,5.964310999028385],[1,2042.8098150007427,6.961618999950588],[1,2043.6054660007358,7.757269999943674],[1,2044.8013800000772,8.953183999285102],[1,2045.8339599994943,9.985763998702168],[1,2046.8001680001616,10.951971999369562],[1,2047.8402200005949,11.992023999802768],[1,2048.838872000575,12.99067599978298],[1,2049.821011000313,13.972814999520779],[1,2050.6242580004036,14.776061999611557],[1,2051.8094389997423,15.961242998950183],[1,2052.83593699988,16.98774099908769],[1,2053.8301990004256,17.98200299963355],[1,2054.811739000492,18.963542999699712],[269,2055.8164490005,19.968252999708056],[254,2056.7909430004656,20.942746999673545],[1,2057.8003080002964,0.7771119996905327],[1,2058.819326000288,1.7961299996823072],[1,2059.8089000005275,2.7857039999216795],[1,2060.815626000054,3.792429999448359],[1,2061.813508000225,4.790311999619007],[1,2062.910803999752,5.887607999145985],[1,2063.852223000489,6.829026999883354],[1,2064.8127580005676,7.789561999961734],[1,2065.8119019996375,8.788705999031663],[1,2066.651649000123,9.628452999517322],[1,2067.821871000342,10.79867499973625],[1,2068.8628410007805,11.839645000174642],[1,2069.746664000675,12.72346800006926],[1,2070.647220999934,13.624024999327958],[1,2071.7532230000943,14.730026999488473],[1,2072.8254370009527,15.80224100034684],[1,2073.6675590006635,16.644363000057638],[2,2074.644510000013,17.621313999406993],[1,2075.7259010002017,1.0257049994543195],[1,2076.8330979999155,2.132901999168098],[1,2077.909076999873,3.2088809991255403],[1,2078.8891179999337,4.188921999186277],[1,2079.856398999691,5.156202998943627],[1,2080.675085000694,5.974888999946415],[1,2081.851134000346,7.150937999598682],[1,2082.6819550003856,7.981758999638259],[1,2083.83419300057,9.133996999822557],[1,2084.8078370001167,10.107640999369323],[1,2085.8111619995907,11.110965998843312],[1,2086.8112900005654,12.111093999817967],[1,2087.67910100054,12.978904999792576],[1,2088.843396999873,14.143200999125838],[1,2089.7072499999776,15.007053999230266],[1,2090.772649000399,16.072452999651432],[1,2091.8238370008767,0.9726410005241632],[1,2092.8391720009968,1.9879760006442666],[1,2093.836464000866,2.985268000513315],[1,2094.837946999818,3.9867509994655848],[1,2095.8846780005842,5.033482000231743],[1,2096.7342480011284,5.883052000775933],[1,2097.6858090003952,6.8346130000427365],[1,2098.85030500032,7.999108999967575],[1,2099.726568000391,8.875372000038624],[1,2100.8336789999157,9.982482999563217],[1,2101.9062210004777,11.05502500012517],[1,2102.8539960002527,12.002799999900162],[1,2103.864211000502,13.013015000149608],[1,2104.6502329995856,13.799036999233067],[1,2105.8628970002756,15.01170099992305],[1,2106.802761000581,15.951565000228584],[1,2107.8167900005355,16.965594000183046],[1,2108.798458999954,17.947262999601662],[1,2109.816482000053,18.965285999700427],[1,2110.8143260004,19.963130000047386],[1,2111.811856000684,0.9166600005701184],[1,2112.620641000569,1.7254450004547834],[1,2113.751876000315,2.8566800002008677],[1,2114.826333999634,3.9311379995197058],[1,2115.606031000614,4.710835000500083],[1,2116.863976000808,5.968780000694096],[1,2117.865122999996,6.969926999881864],[1,2118.898467999883,8.003271999768913],[1,2119.890103000216,8.994907000102103],[1,2120.643872000277,9.748676000162959],[1,2121.9145110007375,11.019315000623465],[1,2122.8887220006436,11.993526000529528],[1,2123.6217110008,12.72651500068605],[1,2124.8638949999586,13.968698999844491],[1,2125.793077000417,14.897881000302732],[1,2126.8502540001646,15.955058000050485],[1,2127.8497230000794,16.95452699996531],[1,2128.881616000086,17.986419999971986],[1,2129.8748329998925,18.97963699977845],[1,2130.8006790000945,0.08648299984633923],[1,2131.771920000203,1.05772399995476],[1,2132.800973000005,2.086776999756694],[1,2133.8804060006514,3.1662100004032254],[1,2134.8653730005026,4.151177000254393],[1,2135.895651000552,5.181455000303686],[1,2136.9046409996226,6.190444999374449],[1,2137.6356930006295,6.9214970003813505],[1,2138.8794500008225,8.16525400057435],[1,2139.8081209994853,9.09392499923706],[1,2140.8145080003887,10.100312000140548],[1,2141.8152610007674,11.101065000519156],[1,2142.8153300005943,12.101134000346065],[1,2143.609228000045,12.895031999796629],[1,2144.8266620002687,14.112466000020504],[1,2145.908375000581,15.194179000332952],[1,2146.872197999619,16.158001999370754],[1,2147.804908000864,17.090712000615895],[1,2148.914601000957,18.200405000708997],[1,2149.630034000613,18.9158380003646],[1,2150.8920250004157,20.17782900016755],[1,2151.9087439998984,0.8845479991286993],[1,2152.8905040007085,1.8663079999387264],[1,2153.862392000854,2.838196000084281],[1,2154.8997600004077,3.8755639996379614],[1,2155.6715909997,4.647394998930395],[1,2156.874460000545,5.850263999775052],[1,2157.79109099973,6.766894998960197],[1,2158.8208560002968,7.796659999527037],[1,2159.652120999992,8.62792499922216],[1,2160.935067000799,9.910871000029147],[1,2161.7860230011865,10.761827000416815],[1,2162.6184769999236,11.594280999153852],[1,2163.7388209998608,12.71462499909103],[1,2164.8284080000594,13.804211999289691],[1,2165.815512000583,14.791315999813378],[1,2166.814605999738,15.790409998968244],[1,2167.8130340008065,16.788838000036776],[1,2168.814829000272,17.790632999502122],[1,2169.617557000369,0.17436099983751774],[1,2170.926385000348,1.4831889998167753],[1,2171.662192000076,2.218995999544859],[1,2172.836941000074,3.3937449995428324],[1,2173.8030410008505,4.359845000319183],[1,2174.81625800021,5.373061999678612],[1,2175.9112950004637,6.468098999932408],[1,2176.6563780000433,7.213181999512017],[1,2177.9551680004224,8.511971999891102],[1,2178.7405840000138,9.297387999482453],[1,2179.903601001017,10.46040500048548],[1,2180.858527000062,11.415330999530852],[1,2181.8494900008664,12.406294000335038],[1,2182.9172170003876,13.474020999856293],[1,2183.665430000052,14.22223399952054],[1,2184.8925689999014,15.449372999370098],[1,2185.8870890000835,16.44389299955219],[1,2186.8858559997752,17.442659999243915],[1,2187.8618910005316,0.5246950006112456],[1,2188.902037001215,1.5648410012945533],[1,2189.7507520010695,2.413556001149118],[1,2190.83343099989,3.4962349999696016],[1,2191.806486000307,4.469290000386536],[1,2192.8031490007415,5.465953000821173],[1,2193.8019500002265,6.4647540003061295],[1,2194.6747390003875,7.337543000467122],[1,2195.8484660005197,8.511270000599325],[1,2196.610328000039,9.273132000118494],[1,2197.6344190007076,10.297223000787199],[1,2198.7676440002397,11.430448000319302],[1,2199.9606680003926,12.623472000472248],[1,2200.7764030005783,13.439207000657916],[1,2201.805762000382,14.468566000461578],[1,2202.8173759998754,15.480179999954998],[1,2203.639790000394,16.30259400047362],[1,2204.763176000677,17.42598000075668],[1,2205.672383000143,18.335187000222504],[1,2206.6802830006927,0.8440870000049472],[1,2207.699731000699,1.8635350000113249],[1,2208.610504999757,2.774308999069035],[1,2209.8032840006053,3.9670879999175668],[1,2210.793959000148,4.957762999460101],[1,2211.821862000972,5.9856660002842546],[1,2212.8056220011786,6.969426000490785],[1,2213.8096190001816,7.973422999493778],[1,2214.8261700002477,8.98997399955988],[1,2215.831927000545,9.995730999857187],[1,2216.8020240003243,10.96582799963653],[1,2217.7412879997864,11.905091999098659],[1,2218.8889850005507,13.052788999862969],[1,2219.848141000606,14.011944999918342],[1,2220.807412000373,14.971215999685228],[1,2221.838496999815,16.00230099912733],[1,2222.6164230005816,16.780226999893785],[1,2223.6848259996623,17.848629998974502],[1,2224.8459790004417,1.06878300011158],[1,2225.918511000462,2.1413150001317263],[1,2226.870738999918,3.093542999587953],[1,2227.8798980005085,4.102702000178397],[1,2228.816581000574,5.039385000243783],[1,2229.723774000071,5.946577999740839],[1,2230.663365000859,6.886169000528753],[1,2231.815923999995,8.038727999664843],[1,2232.815249000676,9.038053000345826],[1,2233.814892999828,10.037696999497712],[1,2234.8159560002387,11.038759999908507],[1,2235.83178899996,12.054592999629676],[1,2236.8118820004165,13.034686000086367],[1,2237.817902000621,14.040706000290811],[1,2238.741087000817,14.96389100048691],[1,2239.927725000307,16.150528999976814],[1,2240.7834320003167,17.00623599998653],[1,2241.8239750005305,18.04677900020033],[1,2242.7088070008904,18.931611000560224],[1,2243.7555980002508,19.978401999920607],[1,2244.830061000772,0.8638650001958013],[1,2245.6196760004386,1.6534799998626113],[1,2246.67312400043,2.706927999854088],[1,2247.719897000119,3.753700999543071],[1,2248.8320750007406,4.865879000164568],[1,2249.806657000445,5.84046099986881],[1,2250.615561001003,6.649365000426769],[1,2251.6150710005313,7.6488749999552965],[1,2252.8572150003165,8.891018999740481],[1,2253.79590800032,9.829711999744177],[1,2254.6070460006595,10.640850000083447],[1,2255.8249319996685,11.85873599909246],[1,2256.806657000445,12.84046099986881],[1,2257.806834001094,13.840638000518084],[1,2258.8098539998755,14.843657999299467],[1,2259.843522001058,15.877326000481844],[1,2260.820387000218,16.854190999642015],[1,2261.841014000587,17.874818000011146],[1,2262.6613490004092,18.695152999833226],[1,2263.835044000298,19.868847999721766],[1,2264.873422000557,0.9492260003462434],[1,2265.797747001052,1.873551000840962],[1,2266.8152640005574,2.891068000346422],[1,2267.8103040009737,3.8861080007627606],[1,2268.867637000978,4.943441000767052],[1,2269.862484000623,5.938288000412285],[1,2270.745443000458,6.82124700024724],[1,2271.9015199998394,7.977323999628425],[1,2272.670969000086,8.746772999875247],[1,2273.8448879998177,9.920691999606788],[1,2274.8032349999994,10.879038999788463],[1,2275.8929690010846,11.968773000873625],[1,2276.8878460004926,12.963650000281632],[1,2277.7201400008053,13.795944000594318],[1,2278.73513700068,14.810941000469029],[1,2279.9527169996873,16.028520999476314],[1,2280.6822760002688,16.758080000057817],[1,2281.875207000412,17.951011000201106],[1,2282.80044899974,0.32625299971550703],[276,2283.818444000557,1.3442480005323887],[278,2284.645130000077,2.1709340000525117],[1,2285.8087480012327,3.334552001208067],[1,2286.853958000429,4.379762000404298],[1,2287.8679760005325,5.393780000507832],[1,2288.862787000835,6.3885910008102655],[1,2289.7912969999015,7.317100999876857],[1,2290.7066490007564,8.232453000731766],[1,2291.841564000584,9.367368000559509],[1,2292.80670100078,10.33250500075519],[1,2293.9166780002415,11.442482000216842],[1,2294.85618500039,12.381989000365138],[1,2295.895895000547,13.421699000522494],[1,2296.7066160012037,14.23242000117898],[1,2297.9491190006956,15.47492300067097],[1,2298.863378999755,16.38918299973011],[1,2299.7691110000014,0.7819149997085333],[1,2300.8888480011374,1.9016520008444786],[1,2301.8657980002463,2.878601999953389],[1,2302.6327470010146,3.6455510007217526],[1,2303.7105510002,4.723354999907315],[1,2304.911552000791,5.924356000497937],[1,2305.8859750004485,6.898779000155628],[1,2306.756300000474,7.76910400018096],[1,2307.8277179999277,8.840521999634802],[1,2308.8121389998123,9.824942999519408],[1,2309.9171940004453,10.929998000152409],[1,2310.7496429998428,11.762446999549866],[1,2311.92765900027,12.940462999977171],[1,2312.8510610004887,13.863865000195801],[1,2313.7297380007803,14.742542000487447],[1,2314.9281700011343,15.94097400084138],[1,2315.6136420005932,16.626446000300348],[1,2316.7713680006564,17.78417200036347],[1,2317.9306220011786,18.943426000885665],[1,2318.86226500012,0.7120690001174808],[1,2319.865183999762,1.7149879997596145],[1,2320.8999550007284,2.749759000726044],[1,2321.714408000931,3.564212000928819],[1,2322.8516630008817,4.701467000879347],[1,2323.6373460004106,5.487150000408292],[280,2324.64013800025,6.489942000247538],[280,2325.8193710008636,7.669175000861287],[280,2326.8078530002385,8.657657000236213],[280,2327.809631999582,9.659435999579728],[280,2328.8090820005164,10.65888600051403],[280,2329.8092950005084,11.659099000506103],[280,2330.6368460003287,12.486650000326335],[280,2331.843255000189,13.693059000186622],[280,2332.8056429997087,14.655446999706328],[280,2333.8133910000324,15.6631950000301],[1,2334.8079710006714,16.657775000669062],[1,2335.8118300000206,17.66163400001824],[1,2336.72124800086,0.5260520009323955],[1,2337.8348660003394,1.63967000041157],[1,2338.805101000704,2.6099050007760525],[1,2339.6144340001047,3.419238000176847],[1,2340.754131999798,4.5589359998703],[1,2341.7694010008126,5.574205000884831],[1,2342.8230460006744,6.627850000746548],[1,2343.8094770004973,7.614281000569463],[1,2344.8121090000495,8.616913000121713],[1,2345.8108179997653,9.615621999837458],[1,2346.6917930003256,10.496597000397742],[1,2347.782794000581,11.587598000653088],[1,2348.6155910007656,12.420395000837743],[1,2349.7506050011143,13.55540900118649],[1,2350.8288030009717,14.633607001043856],[1,2351.8090970003977,15.613901000469923],[1,2352.8130320003256,0.41983599960803986],[1,2353.812386999838,1.4191909991204739],[1,2354.8123960010707,2.4192000003531575],[1,2355.811762000434,3.4185659997165203],[1,2356.616274001077,4.223078000359237],[282,2357.688453000039,5.295256999321282],[282,2358.646715000272,6.253518999554217],[282,2359.6822420004755,7.2890459997579455],[1,2360.8409630004317,8.447766999714077],[1,2361.8170229997486,9.423826999031007],[1,2362.8077140003443,10.414517999626696],[1,2363.723097000271,11.329900999553502],[1,2364.8375770011917,12.444381000474095],[1,2365.79397600051,13.400779999792576],[1,2366.8194460002705,14.426249999552965],[1,2367.8097020005807,15.416505999863148],[1,2368.811935001053,16.418739000335336],[1,2369.8112580003217,17.418061999604106],[1,2370.8112000003457,18.418003999628127],[2,2371.6448570005596,0.013660999946296215],[1,2372.8614750010893,1.2302790004760027],[1,2373.622675999999,1.9914799993857741],[1,2374.7601150004193,3.1289189998060465],[1,2375.8521050000563,4.220908999443054],[1,2376.8084380012006,5.177242000587285],[1,2377.8128410000354,6.181644999422133],[282,2378.634395000525,7.003198999911547],[282,2379.7504620002583,8.119265999644995],[282,2380.7960529997945,9.164856999181211],[282,2381.7298460006714,10.098650000058115],[282,2382.81693200022,11.18573599960655],[282,2383.6167210005224,11.985524999909103],[282,2384.6341730002314,13.002976999618113],[282,2385.7784730009735,14.14727700036019],[282,2386.814992000349,15.183795999735594],[282,2387.805900000967,16.174704000353813],[282,2388.6179760005325,16.986779999919236],[2,2389.8459760006517,0.013780000619590282],[1,2390.6282840007916,0.7960880007594824],[1,2391.64776000008,1.8155640000477433],[1,2392.6210240004584,2.7888280004262924],[1,2393.6758230002597,3.8436270002275705],[1,2394.7549259997904,4.922729999758303],[1,2395.8307100003585,5.998514000326395],[1,2396.7995180003345,6.967322000302374],[1,2397.815926000476,7.983730000443757],[1,2398.8107020007446,8.978506000712514],[1,2399.608106000349,9.775910000316799],[1,2400.868691000156,11.036495000123978],[1,2401.7944130003452,11.962217000313103],[1,2402.6065770005807,12.774381000548601],[1,2403.758466999978,13.9262709999457],[1,2404.6889570001513,14.85676100011915],[1,2405.8437370005995,16.011541000567377],[1,2406.752783000469,16.92058700043708],[1,2407.8355870004743,18.003391000442207],[1,2408.8046270003542,18.972431000322104],[2,2409.6114010009915,19.779205000959337],[1,2410.670669999905,1.007473999634385],[1,2411.822644000873,2.159448000602424],[1,2412.804693000391,3.14149700012058],[1,2413.8130170004442,4.149821000173688],[1,2414.810828999616,5.14763299934566],[1,2415.812414000742,6.149218000471592],[1,2416.810546000488,7.147350000217557],[1,2417.8114640004933,8.148268000222743],[1,2418.7444460000843,9.081249999813735],[1,2419.713935000822,10.050739000551403],[1,2420.609532999806,10.94633699953556],[1,2421.760266000405,12.097070000134408],[1,2422.8240550002083,13.160858999937773],[1,2423.807312000543,14.144116000272334],[1,2424.811352000572,15.148156000301242],[1,2425.809954000637,16.14675800036639],[1,2426.8114430001006,17.148246999830008],[1,2427.6430500000715,17.97985399980098],[1,2428.8534900005907,19.190294000320137],[1,2429.612661000341,19.94946500007063],[1,2430.8623780002818,1.1701819999143481],[1,2431.799340000376,2.1071440000087023],[1,2432.813420000486,3.121224000118673],[1,2433.80767800007,4.115481999702752],[1,2434.805696000345,5.113499999977648],[1,2435.8121990012005,6.120003000833094],[1,2436.6800920004025,6.987896000035107],[1,2437.8376080002636,8.145411999896169],[1,2438.6791890002787,8.986992999911308],[1,2439.83101200033,10.13881599996239],[1,2440.793215001002,11.101019000634551],[1,2441.8029860006645,12.11079000029713],[1,2442.8117350004613,13.119539000093937],[1,2443.8292970005423,14.13710100017488],[1,2444.728577000089,15.036380999721587],[1,2445.832148999907,16.139952999539673],[1,2446.644278000109,16.952081999741495],[1,2447.7977889999747,18.105592999607325],[1,2448.8108010003343,19.11860499996692],[1,2449.75085600093,20.058660000562668],[1,2450.7055919999257,0.8753959992900491],[1,2451.847400000319,2.017203999683261],[1,2452.818262000568,2.988065999932587],[1,2453.8111990001053,3.981002999469638],[1,2454.6147810006514,4.784585000015795],[1,2455.7688170010224,5.9386210003867745],[1,2456.825660000555,6.995463999919593],[1,2457.803248000331,7.973051999695599],[1,2458.749397000298,8.91920099966228],[1,2459.831198000349,10.00100199971348],[1,2460.8108879998326,10.980691999197006],[1,2461.6229170002043,11.7927209995687],[1,2462.862193999812,13.031997999176383],[1,2463.785215000622,13.95501899998635],[1,2464.6044200006872,14.774224000051618],[1,2465.8620650004596,16.031868999823928],[1,2466.7099850000814,16.879788999445736],[1,2467.8350920006633,18.004896000027657],[1,2468.797983000055,0.7267869999632239],[1,2469.7862250003964,1.7150290003046393],[1,2470.8181960005313,2.7470000004395843],[1,2471.809142000042,3.7379459999501705],[1,2472.822150000371,4.750954000279307],[1,2473.79484600015,5.7236500000581145],[1,2474.746291000396,6.675095000304282],[1,2475.8287970004603,7.757601000368595],[1,2476.808152999729,8.736956999637187],[1,2477.8124820003286,9.741286000236869],[1,2478.810883999802,10.73968799971044],[1,2479.8117169998586,11.740520999766886],[1,2480.619738000445,12.548542000353336],[1,2481.854306000285,13.783110000193119],[1,2482.6193960011005,14.548200001008809],[1,2483.719598000869,15.648402000777423],[1,2484.8897550003603,16.81855900026858],[1,2485.8467359999195,17.775539999827743],[1,2486.88521600049,18.81402000039816],[1,2487.8226880002767,19.751492000184953],[289,2488.813325000927,20.74212900083512],[297,2489.6734980000183,21.602301999926567],[301,2490.795479999855,22.72428399976343],[336,2491.8085160003975,23.737320000305772],[338,2492.8068630006164,0.4586669998243451],[338,2493.8133430005983,1.4651469998061657],[338,2494.8092379998416,2.4610419990494847],[338,2495.8105470007285,3.4623509999364614],[338,2496.6993890004233,4.3511929996311665],[338,2497.6629490004852,5.314752999693155],[1,2498.810046000406,6.46184999961406],[1,2499.7240329999477,7.375836999155581],[1,2500.610220000148,8.262023999355733],[1,2501.86573300045,9.51753699965775],[1,2502.7958620004356,10.447665999643505],[1,2503.8150380002335,11.466841999441385],[1,2504.810336999595,12.46214099880308],[1,2505.8198140002787,13.471617999486625],[1,2506.8083030004054,14.460106999613345],[1,2507.647420000285,15.299223999492824],[1,2508.68547399994,16.337277999147773],[1,2509.8369470005855,17.48875099979341],[1,2510.8046200005338,18.456423999741673],[1,2511.81442000065,19.466223999857903],[1,2512.810657000169,0.7134609995409846],[1,2513.8112740004435,1.7140779998153448],[1,2514.606011000462,2.508814999833703],[1,2515.636068000458,3.5388719998300076],[1,2516.654531000182,4.557334999553859],[1,2517.8476449996233,5.750448998995125],[1,2518.8678080001846,6.770611999556422],[1,2519.870014999993,7.772818999364972],[1,2520.864360000938,8.767164000310004],[1,2521.864233000204,9.767036999575794],[1,2522.6403940003365,10.543197999708354],[1,2523.7874410003424,11.690244999714196],[1,2524.821063000709,12.723867000080645],[1,2525.7183039998636,13.621107999235392],[1,2526.9188179997727,14.821621999144554],[1,2527.8533620005473,15.756165999919176],[1,2528.6293870005757,16.53219099994749],[1,2529.7190939998254,17.621897999197245],[1,2530.9395590005443,18.842362999916077],[1,2531.7867010002956,0.6925050001591444],[1,2532.8239170005545,1.729721000418067],[1,2533.8116279998794,2.7174319997429848],[1,2534.8870140006766,3.7928180005401373],[1,2535.7293440001085,4.635147999972105],[1,2536.8355730008334,5.741377000696957],[1,2537.904265000485,6.810069000348449],[1,2538.8714220011607,7.777226001024246],[136,2539.614879000932,8.520683000795543],[1,2540.859156000428,9.764960000291467],[1,2541.6360659999773,10.541869999840856],[1,2542.9048060001805,11.810610000044107],[1,2543.862011999823,12.767815999686718],[1,2544.8666920000687,13.77249599993229],[1,2545.8195280004293,14.725332000292838],[1,2546.61158800032,15.517392000183463],[1,2547.8658400010318,16.77164400089532],[1,2548.717426000163,17.623230000026524],[281,2549.76417999994,0.2909839991480112],[349,2550.8071900000796,1.333993999287486],[359,2551.807135000825,2.333939000032842],[2,2552.809402000159,3.336205999366939],[1,2553.811687000096,4.338490999303758],[1,2554.8154110005125,5.342214999720454],[1,2555.9277620008215,6.454566000029445],[1,2556.65393699985,7.180740999057889],[2,2557.727023000829,8.253827000036836],[2,2558.850197000429,9.377000999636948],[2,2559.800122000277,10.326925999484956],[1,2560.914676000364,11.441479999572039],[1,2561.8995160004124,12.426319999620318],[1,2562.873576000333,13.400379999540746],[1,2563.7653990006074,14.292202999815345],[1,2564.9510319996625,15.477835998870432],[1,2565.8276650002226,16.354468999430537],[1,2566.878199000843,17.405003000050783],[1,2567.7806660002097,0.23546999972313643],[1,2568.649941000156,1.1047449996694922],[1,2569.8162710005417,2.2710750000551343],[1,2570.8135240003467,3.2683279998600483],[1,2571.816634000279,4.271437999792397],[1,2572.813395000994,5.268199000507593],[1,2573.6802310002968,6.135034999810159],[1,2574.848581000231,7.303384999744594],[1,2575.634901001118,8.089705000631511],[1,2576.714676001109,9.16948000062257],[1,2577.7803110005334,10.23511500004679],[1,2578.8836510004476,11.338454999960959],[1,2579.895525000058,12.350328999571502],[1,2580.711606999859,13.166410999372602],[1,2581.8396800002083,14.294483999721706],[1,2582.8091210005805,15.263925000093877],[1,2583.7149189999327,16.169722999446094],[1,2584.947871999815,1.1226759990677238],[1,2585.848434000276,2.0232379995286465],[1,2586.8705190001056,3.045322999358177],[1,2587.8075290005654,3.982332999818027],[1,2588.7273820005357,4.902185999788344],[1,2589.904550000094,6.079353999346495],[1,2590.7904640007764,6.9652680000290275],[1,2591.8212780002505,7.996081999503076],[1,2592.6488140001893,8.823617999441922],[1,2593.957100001164,10.131904000416398],[1,2594.666290000081,10.84109399933368],[1,2595.947780000977,12.122584000229836],[1,2596.8786690002307,13.053472999483347],[1,2597.8359180008993,14.010722000151873],[1,2598.8008850011975,14.975689000450075],[1,2599.7475809995085,15.922384998761117],[1,2600.934808000922,17.10961200017482],[1,2601.863072000444,18.037875999696553],[1,2602.8940220000222,19.06882599927485],[2,2603.7472320003435,0.14203600026667118],[1,2604.7572530005127,1.1520570004358888],[1,2605.926404999569,2.321208999492228],[1,2606.7821570001543,3.1769610000774264],[1,2607.823783000931,4.218587000854313],[1,2608.6966979997233,5.091501999646425],[1,2609.8743960000575,6.2691999999806285],[1,2610.798767000437,7.1935710003599524],[1,2611.915466000326,8.310270000249147],[1,2612.885426000692,9.28023000061512],[1,2613.7483190000057,10.143122999928892],[1,2614.83920600079,11.23401000071317],[1,2615.62074000109,12.01554400101304],[1,2616.7898789998144,13.18468299973756],[1,2617.9016310004517,14.296435000374913],[1,2618.8933290001005,15.288133000023663],[1,2619.8711379999295,16.265941999852657],[1,2620.8773309998214,17.272134999744594],[1,2621.8328130003065,18.227617000229657],[1,2622.804803000763,19.19960700068623],[1,2623.8169069997966,0.8197109997272491],[1,2624.8146040001884,1.8174080001190305],[1,2625.9151630001143,2.9179670000448823],[1,2626.8559210002422,3.8587250001728535],[1,2627.9003420006484,4.9031460005789995],[1,2628.7372700003907,5.740074000321329],[1,2629.9177369996905,6.920540999621153],[1,2630.876644000411,7.879448000341654],[1,2631.7922090003267,8.795013000257313],[1,2632.905254000798,9.908058000728488],[1,2633.799658000469,10.802462000399828],[1,2634.846497000195,11.849301000125706],[1,2635.8792679999024,12.882071999832988],[1,2636.8085960000753,13.81140000000596],[1,2637.8830420011654,14.88584600109607],[1,2638.6357410000637,15.638544999994338],[1,2639.669368000701,16.67217200063169],[1,2640.8333409996703,0.9971449989825487],[1,2641.8097050003707,1.973508999682963],[1,2642.915742000565,3.079545999877155],[1,2643.8727080002427,4.036511999554932],[1,2644.899988000281,5.063791999593377],[1,2645.7414510007948,5.90525500010699],[1,2646.934905000031,7.098708999343216],[1,2647.6823740005493,7.846177999861538],[1,2648.8793120002374,9.043115999549627],[1,2649.897138000466,10.060941999778152],[1,2650.86486900039,11.028672999702394],[1,2651.666317000054,11.830120999366045],[1,2652.909563000314,13.07336699962616],[1,2653.903959000483,14.067762999795377],[1,2654.869547000155,15.033350999467075],[1,2655.8995610000566,16.063364999368787],[1,2656.67553300038,16.839336999692023],[1,2657.8483770005405,18.012180999852717],[1,2658.805425999686,18.969229998998344],[2,2659.6941880006343,19.857991999946535],[1,2660.941112000495,1.1819160003215075],[1,2661.846698001027,2.0875020008534193],[1,2662.7773870006204,3.018191000446677],[1,2663.8825510004535,4.123355000279844],[1,2664.8143770005554,5.055181000381708],[1,2665.814965000376,6.055769000202417],[1,2666.815995000303,7.056799000129104],[1,2667.812328000553,8.053132000379264],[1,2668.617906000465,8.858710000291467],[1,2669.668335000053,9.90913899987936],[1,2670.823513000272,11.064317000098526],[1,2671.80930200126,12.050106001086533],[1,2672.8137039998546,13.054507999680936],[2,2673.615966000594,13.85677000042051],[1,2674.858490999788,15.099294999614358],[1,2675.7989499997348,16.03975399956107],[1,2676.8146290006116,17.055433000437915],[1,2677.7347740009427,17.97557800076902],[1,2678.84915599972,19.08995999954641],[1,2679.6498199999332,0.6656239992007613],[1,2680.8511160006747,1.8669199999421835],[1,2681.721513000317,2.7373169995844364],[1,2682.8456660006195,3.861469999887049],[1,2683.812845000997,4.828649000264704],[1,2684.7892519999295,5.805055999197066],[1,2685.6731440005824,6.6889479998499155],[1,2686.8498580008745,7.865662000142038],[1,2687.821478000842,8.837282000109553],[1,2688.8266640007496,9.842468000017107],[1,2689.8109180005267,10.826721999794245],[1,2690.8179489998147,11.833752999082208],[1,2691.812961000018,12.82876499928534],[1,2692.6528350003064,13.668638999573886],[385,2693.795443999581,14.811247998848557],[1,2694.809004999697,15.824808998964727],[1,2695.8135850001127,0.922388999722898],[1,2696.6309820003808,1.7397859999909997],[1,2697.872537000105,2.98134099971503],[1,2698.801572000608,3.9103760002180934],[1,2699.817284000106,4.926087999716401],[1,2700.617195000872,5.725999000482261],[1,2701.87518200092,6.983986000530422],[1,2702.802346000448,7.9111500000581145],[1,2703.6717349998653,8.780538999475539],[1,2704.8488630009815,9.957667000591755],[1,2705.804499000311,10.913302999921143],[1,2706.813450000249,11.922253999859095],[1,2707.811234000139,12.920037999749184],[1,2708.8653890006244,13.974193000234663],[1,2709.703508000821,14.81231200043112],[1,2710.8671009996906,15.975904999300838],[1,2711.821260000579,16.930064000189304],[1,2712.8639200003818,17.972723999992013],[1,2713.8521170001477,18.960920999757946],[1,2714.8088750001043,0.2736789993941784],[1,2715.618846000172,1.083649999462068],[1,2716.7901200000197,2.25492399930954],[1,2717.819516999647,3.2843209989368916],[1,2718.8120250003412,4.276828999631107],[1,2719.812601001002,5.277405000291765],[1,2720.814094000496,6.2788979997858405],[1,2721.8110810006037,7.275884999893606],[387,2722.6962800007313,8.16108400002122],[1,2723.8346589999273,9.299462999217212],[1,2724.6632909998298,10.12809499911964],[1,2725.825259000063,11.290062999352813],[1,2726.643636999652,12.10844099894166],[1,2727.9191490001976,13.38395299948752],[1,2728.84268600028,14.307489999569952],[1,2729.9023100007325,15.367114000022411],[1,2730.6804820001125,16.145285999402404],[1,2731.789358000271,17.254161999560893],[1,2732.890027000569,18.354830999858677],[1,2733.8550620004535,0.7788660004734993],[1,2734.8653790000826,1.7891830001026392],[1,2735.861845000647,2.7856490006670356],[1,2736.897462000139,3.821266000159085],[1,2737.771550000645,4.695354000665247],[1,2738.8430329998955,5.76683699991554],[1,2739.6424410007894,6.566245000809431],[1,2740.8553000008687,7.779104000888765],[1,2741.645817000419,8.569621000438929],[1,2742.9521170007065,9.875921000726521],[1,2743.6785720000044,10.602376000024378],[1,2744.916221000254,11.840025000274181],[1,2745.8520960006863,12.775900000706315],[1,2746.8999140001833,13.823718000203371],[1,2747.6779500003904,14.601754000410438],[1,2748.8568690009415,15.780673000961542],[1,2749.7937830006704,16.7175870006904],[1,2750.925799000077,1.0326029993593693],[1,2751.886250000447,1.9930539997294545],[1,2752.859637000598,2.966440999880433],[1,2753.9025470009074,4.009351000189781],[1,2754.7052890006453,4.8120929999277],[1,2755.916397999972,6.023201999254525],[1,2756.7893730001524,6.896176999434829],[1,2757.8214540006593,7.928257999941707],[1,2758.8817940000445,8.988597999326885],[1,2759.8474960001186,9.954299999400973],[1,2760.9004990011454,11.007303000427783],[1,2761.7967520002276,11.90355599950999],[1,2762.9428209997714,13.049624999053776],[1,2763.7856230000034,13.892426999285817],[1,2764.8348059998825,14.941609999164939],[1,2765.656272000633,15.7630759999156],[1,2766.766122000292,16.872925999574363],[1,2767.8092020004988,17.91600599978119],[1,2768.9106149999425,19.0174189992249],[1,2769.871164000593,0.7329679997637868],[1,2770.8789910003543,1.740794999524951],[1,2771.862182000652,2.7239859998226166],[1,2772.6550160003826,3.516819999553263],[1,2773.7723170006648,4.634120999835432],[1,2774.822835000232,5.684638999402523],[1,2775.9189430009574,6.780747000128031],[1,2776.8542670002207,7.716070999391377],[1,2777.881958000362,8.74376199953258],[1,2778.8966920003295,9.758495999500155],[1,2779.8716350011528,10.733439000323415],[1,2780.6923480005935,11.554151999764144],[1,2781.917599000968,12.7794030001387],[1,2782.7845900002867,13.64639399945736],[1,2783.9201960004866,14.781999999657273],[1,2784.87055900041,15.7323629995808],[1,2785.877787999809,16.73959199897945],[1,2786.640393000096,17.502196999266744],[1,2787.862812000327,1.1026159999892116],[1,2788.9014090001583,2.1412129998207092],[1,2789.7792130010203,3.019017000682652],[1,2790.819215000607,4.059019000269473],[1,2791.813384000212,5.053187999874353],[1,2792.6651520002633,5.904955999925733],[1,2793.911807999946,7.151611999608576],[1,2794.8851880002767,8.124991999939084],[1,2795.8587270006537,9.098531000316143],[1,2796.844473999925,10.084277999587357],[1,2797.698482000269,10.938285999931395],[1,2798.8650830006227,12.104887000285089],[1,2799.631057000719,12.87086100038141],[1,2800.9823360005394,14.222140000201762],[1,2801.835050000809,15.074854000471532],[1,2802.8878319999203,16.127635999582708],[1,2803.86062700022,17.10043099988252],[1,2804.665010000579,17.90481400024146],[1,2805.864791000262,19.104594999924302],[1,2806.795789000578,0.7745930003002286],[1,2807.820022000931,1.7988260006532073],[1,2808.6308490000665,2.6096529997885227],[1,2809.914097000845,3.8929010005667806],[1,2810.6230420004576,4.601846000179648],[1,2811.8357589999214,5.814562999643385],[1,2812.8337500002235,6.812553999945521],[1,2813.9337790003046,7.912583000026643],[1,2814.895077000372,8.873881000094116],[1,2815.835965000093,9.814768999814987],[1,2816.6288860002533,10.607689999975264],[1,2817.844913000241,11.823716999962926],[1,2818.8905340004712,12.869338000193238],[1,2819.7817460000515,13.760549999773502],[1,2820.9221410006285,14.900945000350475],[1,2821.8651870004833,15.843991000205278],[1,2822.6193030001596,16.598106999881566],[1,2823.754181000404,17.732985000126064],[1,2824.726487999782,18.70529199950397],[1,2825.9584849998355,19.937288999557495],[1,2826.8778220005333,0.8006260003894567],[1,2827.8687340002507,1.7915380001068115],[1,2828.8947380008176,2.8175420006737113],[1,2829.792461000383,3.7152650002390146],[1,2830.889032000676,4.811836000531912],[1,2831.859606000595,5.782410000450909],[1,2832.8989770002663,6.821781000122428],[1,2833.6565020009875,7.579306000843644],[1,2834.659673999995,8.582477999851108],[1,2835.8735110005364,9.796315000392497],[1,2836.798301000148,10.721105000004172],[1,2837.81761000026,11.740414000116289],[1,2838.8137770006433,12.736581000499427],[1,2839.812707000412,13.735511000268161],[1,2840.638174000196,14.560978000052273],[1,2841.6293040001765,15.552108000032604],[1,2842.724937000312,16.647741000168025],[1,2843.834116000682,1.0439200000837445],[1,2844.805903000757,2.015707000158727],[1,2845.917887000367,3.1276909997686744],[1,2846.8127840003,4.0225879997015],[1,2847.8175300005823,5.027333999983966],[1,2848.8433900000528,6.053193999454379],[1,2849.8922730004415,7.102076999843121],[1,2850.847260000184,8.057063999585807],[1,2851.8679840005934,9.077787999995053],[1,2852.899636000395,10.10943999979645],[1,2853.731550000608,10.941354000009596],[1,2854.9224860006943,12.132290000095963],[1,2855.854135000147,13.063938999548554],[1,2856.80390500091,14.013709000311792],[1,2857.817360999994,15.027164999395609],[1,2858.647011000663,15.856815000064671],[1,2859.69704800006,16.90685199946165],[1,2860.840140000917,18.049944000318646],[1,2861.9016199996695,0.9294239990413189],[1,2862.8707170002162,1.8985209995880723],[1,2863.7946590008214,2.8224630001932383],[1,2864.8643749998882,3.892178999260068],[1,2865.8270170008764,4.854821000248194],[1,2866.886086001061,5.91389000043273],[1,2867.8678080001846,6.895611999556422],[1,2868.881021999754,7.908825999125838],[1,2869.8603400010616,8.888144000433385],[1,2870.8701980002224,9.898001999594271],[1,2871.728029000573,10.755832999944687],[1,2872.950071000494,11.97787499986589],[1,2873.7780619999394,12.805865999311209],[1,2874.8251350009814,13.852939000353217],[1,2875.750898000784,14.778702000156045],[1,2876.89708600007,15.924889999441803],[1,2877.8268270008266,16.854631000198424],[1,2878.8878319999203,17.915635999292135],[1,2879.874063000083,18.901866999454796],[1,2880.693737000227,19.7215409995988],[1,2881.617397001013,0.8312010010704398],[1,2882.767294000834,1.9810980008915067],[1,2883.9059039996937,3.119707999750972],[1,2884.7145819999278,3.9283859999850392],[1,2885.9048420004547,5.118646000511944],[1,2886.8707650005817,6.084569000639021],[1,2887.6997579997405,6.913561999797821],[1,2888.9664160003886,8.180220000445843],[1,2889.7215230008587,8.935327000916004],[1,2890.8327799998224,10.046583999879658],[1,2891.801039000973,11.014843001030385],[1,2892.8164619999006,12.03026599995792],[1,2893.606221999973,12.820026000030339],[1,2894.747139000334,13.960943000391126],[390,2895.8142030006275,15.028007000684738],[1,2896.8084410009906,16.02224500104785],[1,2897.62904200051,0.30984599981456995],[1,2898.8585020005703,1.5393059998750687],[1,2899.7999460007995,2.480750000104308],[1,2900.8141590002924,3.494962999597192],[1,2901.6548360008746,4.33564000017941],[1,2902.7059200005606,5.386723999865353],[1,2903.849100000225,6.529903999529779],[1,2904.803629000671,7.484432999975979],[1,2905.8102650009096,8.491069000214338],[1,2906.8087780009955,9.489582000300288],[1,2907.8067500004545,10.487553999759257],[1,2908.80429500062,11.485098999924958],[1,2909.6181749999523,12.298978999257088],[1,2910.76774100028,13.448544999584556],[1,2911.7096060011536,14.39041000045836],[1,2912.886554000899,15.567358000203967],[1,2913.830806000158,16.511609999462962],[1,2914.9110510004684,17.591854999773204],[1,2915.793003999628,18.473807998932898],[1,2916.915079000406,19.59588299971074],[1,2917.8438030006364,0.5036070002242923],[1,2918.871089000255,1.530892999842763],[1,2919.866917000152,2.526720999740064],[1,2920.8642260003835,3.5240299999713898],[1,2921.904074001126,4.563878000713885],[1,2922.679847001098,5.33965100068599],[1,2923.836075000465,6.49587900005281],[1,2924.810485000722,7.470289000310004],[1,2925.8909690007567,8.550773000344634],[1,2926.864532000385,9.524335999973118],[1,2927.878492999822,10.538296999409795],[1,2928.8793320003897,11.539135999977589],[1,2929.8617340000346,12.521537999622524],[1,2930.646088000387,13.305891999974847],[1,2931.798621000722,14.458425000309944],[1,2932.8188410000876,15.478644999675453],[1,2933.8137370003387,16.473540999926627],[1,2934.8138960003853,0.5916999997571111],[1,2935.813347999938,1.591151999309659],[1,2936.8158900002018,2.5936939995735884],[1,2937.625723999925,3.4035279992967844],[1,2938.74700400047,4.524807999841869],[1,2939.808816000819,5.586620000191033],[1,2940.813578000292,6.591381999664009],[1,2941.8104860009626,7.588290000334382],[1,2942.9124500006437,8.690254000015557],[1,2943.7965029999614,9.574306999333203],[1,2944.911094999872,10.688898999243975],[1,2945.7216610005125,11.499464999884367],[1,2946.909955999814,12.6877599991858],[1,2947.8534590005875,13.63126299995929],[1,2948.883616000414,14.661419999785721],[1,2949.8938070004806,15.671610999852419],[1,2950.6451200004667,16.42292399983853],[1,2951.8788840007037,17.65668800007552],[1,2952.8623680006713,18.640172000043094],[1,2953.8649220000952,0.5827259998768568],[1,2954.8659119997174,1.5837159994989634],[1,2955.6906679999083,2.4084719996899366],[1,2956.9386560004205,3.6564600002020597],[1,2957.78250200022,4.5003060000017285],[1,2958.8245419999585,5.542345999740064],[1,2959.6437910003588,6.361595000140369],[1,2960.958872999996,7.6766769997775555],[1,2961.7634760010988,8.48128000088036],[1,2962.9387190006673,9.656523000448942],[1,2963.7914290009066,10.509233000688255],[1,2964.902536000125,11.620339999906719],[1,2965.7993300007656,12.51713400054723],[1,2966.658610000275,13.376414000056684],[1,2967.8869750006124,14.604779000394046],[1,2968.893855000846,15.611659000627697],[1,2969.8730859998614,16.590889999642968],[1,2970.83690200001,17.554705999791622],[1,2971.848787000403,0.2665910003706813],[1,2972.679425000213,1.0972290001809597],[1,2973.836630000733,2.254434000700712],[1,2974.809672000818,3.2274760007858276],[1,2975.88560300041,4.303407000377774],[1,2976.872814000584,5.290618000552058],[1,2977.897622000426,6.315426000393927],[1,2978.753531000577,7.1713350005447865],[1,2979.939475000836,8.357279000803828],[1,2980.8719669999555,9.289770999923348],[1,2981.852905999869,10.270709999836981],[1,2982.9150419998914,11.332845999859273],[1,2983.732617000118,12.150421000085771],[1,2984.9466820005327,13.36448600050062],[1,2985.87835900113,14.296163001097739],[1,2986.921731000766,15.339535000734031],[1,2987.8689240003005,16.28672800026834],[1,2988.899488000199,17.317292000167072],[1,2989.7555499998853,18.173353999853134],[1,2990.808857000433,0.9006610000506043],[1,2991.814276999794,1.9060809994116426],[1,2992.71103100013,2.8028349997475743],[1,2993.8962800009176,3.9880840005353093],[1,2994.889022000134,4.980825999751687],[1,2995.687328999862,5.779132999479771],[1,2996.874201000668,6.966005000285804],[1,2997.807172000408,7.898976000025868],[1,2998.8222780004144,8.914082000032067],[1,2999.8767950003967,9.968599000014365],[1,3000.8632739996538,10.955077999271452],[1,3001.697752000764,11.789556000381708],[1,3002.7805930003524,12.872396999970078],[1,3003.9233630001545,14.015166999772191],[1,3004.842381000519,14.934185000136495],[1,3005.9040290005505,15.995833000168204],[1,3006.780788000673,16.87259200029075],[1,3007.819134999998,17.91093899961561],[1,3008.7266600001603,18.818463999778032],[1,3009.8448210004717,19.936625000089407],[1,3010.80438500084,0.8511890005320311],[1,3011.818300000392,1.8651040000841022],[1,3012.8131610006094,2.8599650003015995],[1,3013.81220700033,3.859011000022292],[1,3014.8128740005195,4.859678000211716],[1,3015.810847000219,5.8576509999111295],[1,3016.7821070011705,6.828911000862718],[1,3017.8943870002404,7.941190999932587],[1,3018.857335999608,8.904139999300241],[1,3019.898103000596,9.944907000288367],[1,3020.8865090003237,10.933313000015914],[1,3021.623530000448,11.670334000140429],[1,3022.6822899999097,12.7290939996019],[1,3023.8423060001805,13.889109999872744],[1,3024.8067000005394,14.853504000231624],[1,3025.913515999913,15.960319999605417],[1,3026.8512549996376,16.898058999329805],[1,3027.9018730008975,17.94867700058967],[1,3028.7266600010917,18.77346400078386],[1,3029.903950000182,1.0787539994344115],[1,3030.693145000376,1.8679489996284246],[1,3031.8952169995755,3.070020998828113],[1,3032.890735000372,4.06553899962455],[1,3033.756997000426,4.931800999678671],[1,3034.6644230000675,5.83922699932009],[1,3035.9312450001016,7.106048999354243],[1,3036.783037999645,7.957841998897493],[1,3037.919578000903,9.094382000155747],[1,3038.8525120001286,10.027315999381244],[1,3039.9149190010503,11.08972300030291],[1,3040.758313000202,11.933116999454796],[1,3041.8276209998876,13.002424999140203],[1,3042.81413300056,13.988936999812722],[1,3043.813920999877,14.988724999129772],[1,3044.8147840006277,15.989587999880314],[1,3045.813848000951,16.98865200020373],[1,3046.7210780009627,17.89588200021535],[1,3047.711943000555,18.886746999807656],[1,3048.653591000475,19.828394999727607],[1,3049.8314700005576,1.0942740002647042],[1,3050.8603659998626,2.1231699995696545],[1,3051.821332000196,3.084135999903083],[1,3052.8731960002333,4.135999999940395],[1,3053.859143000096,5.1219469998031855],[1,3054.90017599985,6.1629799995571375],[1,3055.7616710001603,7.02447499986738],[1,3056.7183429999277,7.981146999634802],[1,3057.836249999702,9.09905399940908],[1,3058.701898999512,9.964702999219298],[1,3059.7083550002426,10.971158999949694],[1,3060.686596999876,11.949400999583304],[1,3061.6289490005,12.891753000207245],[1,3062.7978320010006,14.060636000707746],[1,3063.8288310002536,15.091634999960661],[1,3064.806619000621,16.069423000328243],[1,3065.7437610002235,17.00656499993056],[1,3066.829206000082,18.092009999789298],[1,3067.8082320000976,19.071035999804735],[1,3068.6200270000845,0.03383099939674139],[1,3069.614055001177,1.0278590004891157],[1,3070.8223850009963,2.2361890003085136],[1,3071.861090000719,3.274894000031054],[1,3072.7978029996157,4.211606998927891],[1,3073.8180200001225,5.2318239994347095],[1,3074.8000079998747,6.213811999186873],[1,3075.8018620004877,7.215665999799967],[1,3076.8153060004115,8.229109999723732],[1,3077.6235580006614,9.037361999973655],[1,3078.7684559999034,10.182259999215603],[1,3079.746125000529,11.159928999841213],[1,3080.9318719999865,12.345675999298692],[1,3081.790007000789,13.203811000101268],[1,3082.81924500037,14.233048999682069],[1,3083.8845790000632,15.298382999375463],[1,3084.7404120005667,16.154215999878943],[1,3085.9092389997095,17.32304299902171],[1,3086.850117000751,0.7929210001602769],[1,3087.9015500005335,1.8443539999425411],[1,3088.888074000366,2.8308779997751117],[1,3089.631297999993,3.574101999402046],[1,3090.8610260002315,4.803829999640584],[1,3091.8048990005627,5.747702999971807],[1,3092.8915740009397,6.834378000348806],[1,3093.872599000111,7.815402999520302],[1,3094.6575699998066,8.600373999215662],[1,3095.924535000697,9.867339000105858],[1,3096.712011001073,10.654815000481904],[1,3097.8756700009108,11.818474000319839],[414,3098.799662999809,12.742466999217868],[1,3099.800172000192,13.742975999601185],[1,3100.886310000904,14.829114000312984],[1,3101.893230000511,15.836033999919891],[1,3102.803432000801,16.746236000210047],[1,3103.907767000608,0.6935710003599524],[1,3104.88560300041,1.6714070001617074],[1,3105.8752530002967,2.6610570000484586],[1,3106.8906310005113,3.6764350002631545],[1,3107.796408000402,4.582212000153959],[1,3108.7627180004492,5.5485220002010465],[1,3109.6154479999095,6.401251999661326],[1,3110.8669760003686,7.652780000120401],[1,3111.8019990008324,8.587803000584245],[1,3112.8158110007644,9.601615000516176],[1,3113.6635079998523,10.449311999604106],[1,3114.8096110001206,11.595414999872446],[1,3115.8023269996047,12.588130999356508],[1,3116.7186620002612,13.504466000013053],[1,3117.8481840007007,14.633988000452518],[1,3118.6313829999417,15.417186999693513],[1,3119.735011000186,16.52081499993801],[1,3120.6616350002587,17.44743900001049],[1,3121.8440549997613,18.62985899951309],[1,3122.8033020002767,19.58910600002855],[2,3123.699111999944,0.8109159991145134],[1,3124.65895299986,1.7707569990307093],[1,3125.8083000006154,2.920103999786079],[1,3126.8130320003256,3.924835999496281],[1,3127.867817000486,4.979620999656618],[1,3128.8198570003733,5.931660999543965],[1,3129.83650300093,6.948307000100613],[1,3130.802711000666,7.914514999836683],[1,3131.7349610012025,8.846765000373125],[1,3132.6291040005162,9.740907999686897],[1,3133.911144000478,11.02294799964875],[1,3134.808696000837,11.92050000000745],[1,3135.8809030009434,12.992707000114024],[1,3136.860289000906,13.972093000076711],[1,3137.6981570003554,14.809960999526083],[1,3138.937944000587,16.04974799975753],[1,3139.8893240001053,17.001127999275923],[1,3140.794222000055,17.906025999225676],[1,3141.8211150001734,0.42091900017112494],[1,3142.811831000261,1.4116350002586842],[1,3143.6272860001773,2.2270900001749396],[1,3144.911318000406,3.5111220004037023],[1,3145.8910240009427,4.4908280009403825],[1,3146.874107000418,5.473911000415683],[1,3147.804624000564,6.404428000561893],[1,3148.8157030008733,7.415507000871003],[1,3149.7776800002903,8.37748400028795],[1,3150.6361710010096,9.235975001007318],[1,3151.771004999988,10.370808999985456],[1,3152.823698000051,11.423502000048757],[1,3153.80903199967,12.408835999667645],[1,3154.8129540001974,13.412758000195026],[1,3155.8127630008385,14.412567000836134],[1,3156.809949999675,15.40975399967283],[1,3157.813089000061,16.41289300005883],[1,3158.8711010003462,17.47090500034392],[1,3159.6376630002633,18.23746700026095],[1,3160.8531200001016,19.4529240000993],[1,3161.89659900032,0.6944030001759529],[1,3162.85619099997,1.6539949998259544],[1,3163.7644990002736,2.5623030001297593],[1,3164.6286540003493,3.426458000205457],[1,3165.7581540001556,4.555958000011742],[1,3166.8419190002605,5.639723000116646],[1,3167.8742460003123,6.672050000168383],[1,3168.87431700062,7.6721210004761815],[1,3169.869044000283,8.666848000138998],[1,3170.8976120008156,9.695416000671685],[1,3171.7147440006956,10.51254800055176],[1,3172.7380210002884,11.535825000144541],[1,3173.833796000108,12.631599999964237],[1,3174.810805999674,13.608609999530017],[1,3175.816023000516,14.613827000372112],[1,3176.8921520002186,15.689956000074744],[1,3177.865551000461,16.663355000317097],[1,3178.669648000039,17.467451999895275],[1,3179.8373290002346,18.63513300009072],[1,3180.8076120000333,19.605415999889374],[1,3181.626302000135,0.6101059997454286],[1,3182.8799800006673,1.8637840002775192],[1,3183.681270000525,2.665074000135064],[1,3184.847179001197,3.830983000807464],[1,3185.8984859995544,4.882289999164641],[1,3186.7908010007814,5.7746050003916025],[1,3187.7437220001593,6.727525999769568],[1,3188.618112999946,7.601916999556124],[1,3189.8577950000763,8.84159899968654],[1,3190.6690300004557,9.652834000065923],[1,3191.84789200034,10.83169599995017],[1,3192.7695260001346,11.753329999744892],[1,3193.8217370007187,12.805541000328958],[1,3194.8081590011716,13.791963000781834],[1,3195.7015750007704,14.685379000380635],[1,3196.8837880007923,15.86759200040251],[1,3197.846486000344,16.830289999954402],[1,3198.802426001057,0.6942300004884601],[1,3199.6356210000813,1.527424999512732],[1,3200.8539300002158,2.7457339996472],[1,3201.902917000465,3.7947209998965263],[1,3202.7142880009487,4.606092000380158],[1,3203.9230059999973,5.8148099994286895],[1,3204.858642000705,6.750446000136435],[1,3205.9008450005203,7.79264899995178],[2,3206.729129999876,8.620933999307454],[1,3207.8315120004117,9.72331599984318],[1,3208.6446770010516,10.536481000483036],[1,3209.849741000682,11.741545000113547],[1,3210.9035360012203,12.795340000651777],[1,3211.856932000257,13.748735999688506],[1,3212.899120000191,14.790923999622464],[1,3213.7975670006126,15.689371000044048],[1,3214.8103710003197,16.70217499975115],[1,3215.9175709998235,0.9943749997764826],[1,3216.8583180001006,1.935122000053525],[1,3217.8818960003555,2.958700000308454],[1,3218.8929940005764,3.9697980005294085],[1,3219.761800000444,4.8386040003970265],[1,3220.9119690004736,5.98877300042659],[1,3221.8900370011106,6.966841001063585],[1,3222.863377000205,7.940181000158191],[1,3223.7877290006727,8.86453300062567],[1,3224.6307490002364,9.707553000189364],[1,3225.757152000442,10.83395600039512],[1,3226.9285780005157,12.005382000468671],[1,3227.8836170006543,12.960421000607312],[1,3228.865493000485,13.942297000437975],[1,3229.8958330005407,14.972637000493705],[1,3230.720651000738,15.797455000691116],[1,3231.8386850003153,16.91548900026828],[1,3232.804870000109,17.88167400006205],[1,3233.8345400001854,0.6943439999595284],[1,3234.8108430001885,1.6706469999626279],[1,3235.817087000236,2.676891000010073],[1,3236.8143390007317,3.6741430005058646],[1,3237.6150369998068,4.47484099958092],[1,3238.757124000229,5.616928000003099],[1,3239.8436290007085,6.703433000482619],[1,3240.8053180007264,7.66512200050056],[1,3241.8196830004454,8.679487000219524],[1,3242.6920000007376,9.551804000511765],[1,3243.866090000607,10.725894000381231],[1,3244.633934000507,11.493738000281155],[1,3245.6632560007274,12.523060000501573],[1,3246.8147220006213,13.674526000395417],[1,3247.820163000375,14.67996700014919],[1,3248.8194730002433,15.679277000017464],[1,3249.8298590006307,16.689663000404835],[1,3250.8305139997974,0.5353179993107915],[1,3251.8275460004807,1.5323499999940395],[1,3252.8177939997986,2.5225979993119836],[1,3253.6879650009796,3.39276900049299],[1,3254.848016000353,4.552819999866188],[1,3255.8262110007927,5.53101500030607],[1,3256.819826999679,6.5246309991925955],[1,3257.8137500006706,7.51855400018394],[1,3258.8139550006017,8.518759000115097],[1,3259.816164000891,9.520968000404537],[1,3260.7373240003362,10.442127999849617],[1,3261.8238890003413,11.528692999854684],[1,3262.908692999743,12.613496999256313],[1,3263.8548570005223,13.559661000035703],[1,3264.812250999734,14.517054999247193],[1,3265.7675270000473,15.472330999560654],[1,3266.8389530004933,16.543757000006735],[1,3267.9035010002553,0.9393050000071526],[1,3268.8726770002395,1.9084809999912977],[1,3269.864728000015,2.9005319997668266],[1,3270.8949680002406,3.93077199999243],[1,3271.843559000641,4.879363000392914],[1,3272.9254299998283,5.961233999580145],[1,3273.785455999896,6.8212599996477365],[1,3274.821110000834,7.856914000585675],[1,3275.8136340007186,8.8494380004704],[1,3276.91318600066,9.948990000411868],[1,3277.657872000709,10.693676000460982],[1,3278.791782000102,11.827585999853909],[1,3279.82705800049,12.862862000241876],[1,3280.7194220004603,13.755226000212133],[1,3281.8267770009115,14.86258100066334],[1,3282.8116630008444,15.847467000596225],[1,3283.822410000488,16.85821400023997],[1,3284.6265980005264,17.662402000278234],[1,3285.6506610000506,0.9134649997577071],[1,3286.6750210002065,1.9378249999135733],[1,3287.8243310004473,3.087135000154376],[1,3288.7953360006213,4.058140000328422],[1,3289.8010459998623,5.063849999569356],[1,3290.623778999783,5.8865829994902015],[1,3291.842280000448,7.10508400015533],[1,3292.7102780006826,7.973082000389695],[1,3293.639774000272,8.902577999979258],[1,3294.8376290006563,10.10043300036341],[1,3295.799080999568,11.061884999275208],[1,3296.714728999883,11.97753299959004],[1,3297.627553000115,12.890356999821961],[1,3298.7655260004103,14.028330000117421],[1,3299.821592000313,15.084396000020206],[1,3300.792102999985,16.05490699969232],[1,3301.6079830005765,16.8707870002836],[1,3302.845335001126,18.108139000833035],[422,3303.7908290009946,19.053633000701666],[1,3304.7956460006535,0.36045000050216913],[1,3305.8180220006034,1.3828260004520416],[1,3306.7434180006385,2.3082220004871488],[1,3307.827950000763,3.3927540006116033],[1,3308.810711001046,4.375515000894666],[1,3309.77709300071,5.341897000558674],[1,3310.8426510002464,6.407455000095069],[1,3311.8033819999546,7.368185999803245],[1,3312.8199790008366,8.384783000685275],[1,3313.605926000513,9.1707300003618],[1,3314.7082710005343,10.27307500038296],[1,3315.8481369996443,11.412940999493003],[1,3316.8015380008146,12.36634200066328],[1,3317.6801530011,13.244957000948489],[1,3318.8510170001537,14.415821000002325],[1,3319.853853999637,15.418657999485731],[1,3320.881353000179,16.446157000027597],[1,3321.805420000106,17.37022399995476],[1,3322.798439000733,18.36324300058186],[1,3323.7351220007986,19.299926000647247],[1,3324.701713000424,0.733517000451684],[1,3325.7068340005353,1.738638000562787],[1,3326.852165000513,2.8839690005406737],[1,3327.807061000727,3.838865000754595],[1,3328.799627000466,4.831431000493467],[1,3329.7057710001245,5.737575000151992],[1,3330.7243830002844,6.756187000311911],[1,3331.8079660004005,7.839770000427961],[1,3332.8121520010754,8.843956001102924],[1,3333.831830000505,9.863634000532329],[1,3334.804925000295,10.83672900032252],[1,3335.6540430001915,11.685847000218928],[1,3336.817518000491,12.849322000518441],[1,3337.8083840003237,13.84018800035119],[1,3338.811422000639,14.843226000666618],[1,3339.6217790003866,15.653583000414073],[1,3340.744572000578,16.776376000605524],[1,3341.8295390000567,1.0133429998531938],[1,3342.8065450005233,1.9903490003198385],[1,3343.7469360008836,2.930740000680089],[1,3344.8625150006264,4.046319000422955],[1,3345.7981449998915,4.981948999688029],[1,3346.817979000509,6.001783000305295],[1,3347.816974000074,7.000777999870479],[1,3348.729292999953,7.913096999749541],[1,3349.772011999972,8.955815999768674],[1,3350.8376910006627,10.021495000459254],[1,3351.8232290009037,11.007033000700176],[1,3352.8739120000973,12.057715999893844],[1,3353.8648060001433,13.0486099999398],[1,3354.8951420011,14.078946000896394],[1,3355.8695520004258,15.053356000222266],[1,3356.696450000629,15.880254000425339],[1,3357.837520000525,17.02132400032133],[1,3358.705592000857,17.889396000653505],[1,3359.697020000778,18.88082400057465],[1,3360.918705999851,20.102509999647737],[1,3361.6972510004416,0.6860549999400973],[1,3362.8401000006124,1.8289040001109242],[1,3363.8033070005476,2.792111000046134],[1,3364.6621530009434,3.6509570004418492],[1,3365.8270490001887,4.815852999687195],[1,3366.8023739997298,5.791177999228239],[1,3367.787432000041,6.7762359995394945],[1,3368.697976999916,7.686780999414623],[1,3369.6841820003465,8.672985999844968],[1,3370.668122000061,9.656925999559462],[1,3371.708969000727,10.697773000225425],[1,3372.6301610004157,11.61896499991417],[1,3373.703613000922,12.692417000420392],[1,3374.6186760002747,13.607479999773204],[1,3375.770961999893,14.759765999391675],[1,3376.805301000364,15.794104999862611],[1,3377.6133509995416,16.602154999040067],[1,3378.605666000396,17.5944699998945],[1,3379.8493649996817,18.838168999180198],[1,3380.8014410007745,0.356245000846684],[1,3381.6386559996754,1.1934599997475743],[1,3382.68237900082,2.2371830008924007],[1,3383.626444000751,3.1812480008229613],[1,3384.8440870009363,4.398891001008451],[1,3385.703564000316,5.2583680003881454],[1,3386.6034900005907,6.158294000662863],[1,3387.6714559998363,7.226259999908507],[1,3388.8127190005034,8.367523000575602],[1,3389.659740000963,9.214544001035392],[1,3390.8353780005127,10.3901820005849],[1,3391.788838000037,11.343642000108957],[1,3392.8000109996647,12.354814999736845],[1,3393.692015000619,13.246819000691175],[1,3394.710453000851,14.265257000923157],[1,3395.715840000659,15.270644000731409],[1,3396.7774680005386,16.33227200061083],[1,3397.818347000517,17.373151000589132],[1,3398.865261000581,18.420065000653267],[1,3399.7194170001894,0.7432209998369217],[1,3400.8349160002545,1.8587199999019504],[1,3401.80506900046,2.8288730001077056],[1,3402.813544000499,3.8373480001464486],[1,3403.6204330008477,4.644237000495195],[1,3404.7413240000606,5.7651279997080564],[1,3405.9139090003446,6.937712999992073],[1,3406.8662020005286,7.890006000176072],[1,3407.7965330006555,8.82033700030297],[1,3408.815907999873,9.83971199952066],[1,3409.876050000079,10.899853999726474],[1,3410.6623670002446,11.686170999892056],[1,3411.718310000375,12.742114000022411],[1,3412.9523360002786,13.97613999992609],[1,3413.861715000123,14.885518999770284],[1,3414.8651740001515,15.888977999798954],[1,3415.8084030002356,16.832206999883056],[1,3416.7969019999728,0.19970599934458733],[1,3417.6284520011395,1.0312560005113482],[1,3418.7849249998108,2.187728999182582],[1,3419.918821999803,3.321625999175012],[1,3420.8190679997206,4.2218719990924],[1,3421.906793001108,5.309597000479698],[1,3422.853872001171,6.256676000542939],[1,3423.6653049997985,7.068108999170363],[1,3424.841085000895,8.24388900026679],[1,3425.807373000309,9.210176999680698],[1,3426.9182610008866,10.321065000258386],[1,3427.8634919999167,11.266295999288559],[1,3428.8664230005816,12.26922699995339],[1,3429.618679000996,13.02148300036788],[1,3430.7978650005534,14.200668999925256],[1,3431.8877180004492,15.290521999821067],[1,3432.866521000862,16.26932500023395],[1,3433.826270000078,0.40107399970293045],[1,3434.9073950005695,1.4821990001946688],[1,3435.8014310002327,2.376234999857843],[1,3436.9270029999316,3.5018069995567203],[1,3437.8865970000625,4.461400999687612],[1,3438.873208999634,5.4480129992589355],[1,3439.8034720011055,6.378276000730693],[1,3440.6927320007235,7.267536000348628],[1,3441.8192850006744,8.394089000299573],[1,3442.916127000004,9.4909309996292],[1,3443.8660080004483,10.440812000073493],[1,3444.877923999913,11.452727999538183],[1,3445.8775490000844,12.452352999709547],[1,3446.726355000399,13.3011590000242],[1,3447.9534410005435,14.528245000168681],[1,3448.8939860006794,15.46879000030458],[1,3449.812889000401,16.387693000026047],[1,3450.8855850007385,17.460389000363648],[1,3451.741772999987,18.316576999612153],[1,3452.742839000188,19.31764299981296],[1,3453.8894990002736,0.9333029994741082],[1,3454.895692001097,1.9394960002973676],[1,3455.805422000587,2.84922599978745],[2,3456.642711000517,3.686514999717474],[1,3457.6204990008846,4.664303000085056],[1,3458.7696190001443,5.813422999344766],[1,3459.6950869997963,6.738890998996794],[1,3460.926627000794,7.970430999994278],[1,3461.867527000606,8.911330999806523],[1,3462.945368000306,9.989171999506652],[1,3463.8081210004166,10.85192499961704],[1,3464.9324870007113,11.976290999911726],[1,3465.7959789996967,12.839782998897135],[1,3466.8841979997233,13.928001998923719],[1,3467.8705770000815,14.914380999282002],[1,3468.900180000812,15.943984000012279],[1,3469.7563790008426,16.800183000043035],[1,3470.932973000221,17.976776999421418],[1,3471.883978000842,18.927782000042498],[1,3472.88376800064,19.92757199984044],[2,3473.6511240005493,0.6479280004277825],[1,3474.756858999841,1.7536629997193813],[1,3475.674544000067,2.671347999945283],[1,3476.9425649996847,3.9393689995631576],[1,3477.881093000062,4.877896999940276],[1,3478.8755340008065,5.872338000684977],[1,3479.8649500003085,6.86175400018692],[1,3480.6328159999102,7.6296199997887015],[1,3481.808760000393,8.80556400027126],[1,3482.816760000773,9.81356400065124],[1,3483.6297679999843,10.62657199986279],[1,3484.8607310000807,11.85753499995917],[1,3485.8027980010957,12.799602000974119],[1,3486.8173620002344,13.814166000112891],[1,3487.813917000778,14.810721000656486],[1,3488.691910000518,15.68871400039643],[1,3489.848505000584,16.845309000462294],[1,3490.7853430006653,0.8231470007449389],[1,3491.8182320008054,1.8560360008850694],[1,3492.8791110003367,2.9169150004163384],[1,3493.86129200086,3.8990960009396076],[1,3494.8659440008923,4.903748000971973],[1,3495.7246260000393,5.762430000118911],[1,3496.915145000443,6.952949000522494],[1,3497.8238230003044,7.861627000384033],[1,3498.822255000472,8.8600590005517],[1,3499.910829000175,9.948633000254631],[1,3500.8563330005854,10.894137000665069],[1,3501.6823770003393,11.720181000418961],[1,3502.9549230001867,12.992727000266314],[1,3503.7840010002255,13.821805000305176],[1,3504.8237380003557,14.861542000435293],[1,3505.8123660003766,15.850170000456274],[427,3506.800370000303,16.838174000382423],[453,3507.7974319998175,17.835235999897122],[458,3508.609303000383,18.64710700046271],[1,3509.673049000092,0.7048530001193285],[1,3510.890837000683,1.9226410007104278],[1,3511.857863999903,2.88966799993068],[1,3512.8367560002953,3.868560000322759],[1,3513.8768960004672,4.9087000004947186],[1,3514.694203999825,5.7260079998523],[1,3515.635716000572,6.667520000599325],[1,3516.847301000729,7.879105000756681],[1,3517.80699400045,8.838798000477254],[1,3518.817273000255,9.849077000282705],[1,3519.816231000237,10.848035000264645],[1,3520.813686000183,11.845490000210702],[1,3521.6715479996055,12.703351999633014],[1,3522.6612400002778,13.693044000305235],[1,3523.7317630006,14.763567000627518],[1,3524.830830000341,15.862634000368416],[1,3525.8075080001727,16.839312000200152],[1,3526.9100850000978,17.94188900012523],[1,3527.8494359999895,18.881240000016987],[1,3528.6429970003664,0.16880100034177303],[1,3529.9567320011556,1.4825360011309385],[1,3530.6375070000067,2.163310999982059],[1,3531.8551200004295,3.380924000404775],[1,3532.808357000351,4.334161000326276],[1,3533.8130610007793,5.338865000754595],[1,3534.912197000347,6.4380010003224015],[1,3535.8148530004546,7.340657000429928],[1,3536.808863000013,8.334666999988258],[1,3537.6158189997077,9.141622999683022],[1,3538.6855009999126,10.211304999887943],[1,3539.8346970006824,11.360501000657678],[1,3540.802332000807,12.328136000782251],[1,3541.8193570002913,13.345161000266671],[1,3542.8161320006475,14.341936000622809],[1,3543.8107540002093,15.336558000184596],[1,3544.813738000579,16.339542000554502],[1,3545.674806000665,17.200610000640154],[1,3546.705648000352,18.23145200032741],[1,3547.847973000258,0.4957769997417927],[1,3548.789639000781,1.4374430002644658],[1,3549.6283390000463,2.2761429995298386],[1,3550.705440000631,3.3532440001145005],[1,3551.825499000028,4.473302999511361],[1,3552.791771000251,5.439574999734759],[1,3553.8019479997456,6.449751999229193],[1,3554.710658000782,7.3584620002657175],[1,3555.758421000093,8.406224999576807],[1,3556.8562450008467,9.50404900033027],[1,3557.787752999924,10.435556999407709],[1,3558.8181640002877,11.465967999771237],[1,3559.810968999751,12.458772999234498],[1,3560.908955000341,13.556758999824524],[1,3561.851879999973,14.499683999456465],[1,3562.7317340001464,15.379537999629974],[1,3563.821152999997,16.468956999480724],[1,3564.8476300006732,17.49543400015682],[1,3565.8043480003253,18.452151999808848],[1,3566.8141720006242,19.461976000107825],[1,3567.6084620002657,0.15726600028574467],[1,3568.8855600003153,1.4343640003353357],[1,3569.8015740010887,2.3503780011087656],[1,3570.7754520010203,3.3242560010403395],[1,3571.881737000309,4.430541000328958],[1,3572.870378999971,5.4191829999908805],[1,3573.7977799996734,6.346583999693394],[1,3574.821409001015,7.370213001035154],[1,3575.665386000648,8.214190000668168],[1,3576.647323000245,9.196127000264823],[1,3577.866833000444,10.415637000463903],[1,3578.8962300000712,11.445034000091255],[1,3579.7793830009177,12.32818700093776],[1,3580.8848780002445,13.433682000264525],[1,3581.8999140001833,14.448718000203371],[1,3582.6221639998257,15.170967999845743],[1,3583.7684070002288,16.31721100024879],[1,3584.82619300019,17.374997000209987],[1,3585.8104539997876,0.5632579997181892],[1,3586.86235900037,1.6151630003005266],[1,3587.881175001152,2.63397900108248],[1,3588.848639000207,3.601443000137806],[1,3589.684965999797,4.437769999727607],[1,3590.749347000383,5.502151000313461],[1,3591.774996000342,6.527800000272691],[1,3592.9302070010453,7.6830110009759665],[1,3593.877531000413,8.63033500034362],[1,3594.861287000589,9.614091000519693],[1,3595.8609170001,10.613721000030637],[1,3596.913650999777,11.66645499970764],[1,3597.7548850001767,12.507689000107348],[1,3598.9317600009963,13.684564000926912],[1,3599.885387000628,14.638191000558436],[1,3600.858203000389,15.61100700031966],[1,3601.8651350000873,16.61793900001794],[1,3602.8301550000906,17.58295900002122],[1,3603.8054099995643,18.55821399949491],[1,3604.9084519995376,19.661255999468267],[1,3605.8879450000823,0.8207489997148514],[1,3606.789429999888,1.7222339995205402],[1,3607.8194880001247,2.75229199975729],[1,3608.8134130006656,3.746217000298202],[1,3609.7281710011885,4.660975000821054],[1,3610.8756950004026,5.808499000035226],[1,3611.8982640001923,6.8310679998248816],[1,3612.8936029998586,7.826406999491155],[1,3613.8547300007194,8.787534000352025],[1,3614.8852840010077,9.818088000640273],[1,3615.892098000273,10.824901999905705],[1,3616.782614001073,11.71541800070554],[1,3617.9422660004348,12.875070000067353],[1,3618.8773130010813,13.810117000713944],[1,3619.861878001131,14.794682000763714],[1,3620.9036560002714,15.836459999904037],[1,3621.6958930008113,16.628697000443935],[1,3622.956429000944,17.889233000576496],[1,3623.7782359998673,18.711039999499917],[1,3624.824643000029,19.757446999661624],[1,3625.6227050004527,0.7135089999064803],[1,3626.9428320005536,2.033636000007391],[1,3627.717558001168,2.8083620006218553],[1,3628.6368209999055,3.72762499935925],[1,3629.9624580005184,5.053261999972165],[1,3630.8915790002793,5.98238299973309],[1,3631.863136,6.953939999453723],[1,3632.8694440005347,7.960247999988496],[1,3633.898302000016,8.989105999469757],[1,3634.7953150002286,9.886118999682367],[1,3635.8821310000494,10.972934999503195],[1,3636.8643539994955,11.95515799894929],[1,3637.8461820008233,12.936986000277102],[1,3638.884810999967,13.97561499942094],[1,3639.675796000287,14.76659999974072],[1,3640.7559289997444,15.846732999198139],[1,3641.828334000893,0.524138000793755],[1,3642.9090430000797,1.6048469999805093],[1,3643.8844720004126,2.580276000313461],[1,3644.863111000508,3.558915000408888],[1,3645.8985260007903,4.594330000691116],[1,3646.7034960007295,5.399300000630319],[1,3647.8420210005715,6.537825000472367],[1,3648.6755410004407,7.371345000341535],[1,3649.6746040005237,8.370408000424504],[1,3650.8495100010186,9.545314000919461],[1,3651.6763209998608,10.372124999761581],[1,3652.859966000542,11.555770000442863],[1,3653.802567000501,12.498371000401676],[1,3654.735085000284,13.430889000184834],[1,3655.829332000576,14.525136000476778],[1,3656.8095329999924,15.505336999893188],[1,3657.8131720004603,16.508976000361145],[1,3658.6186610003933,17.31446500029415],[1,3659.9244600003585,18.62026400025934],[2,3660.7853740006685,0.0041780006140470505],[1,3661.6348280003294,0.8536320002749562],[1,3662.8455170001835,2.0643210001289845],[1,3663.877081000246,3.095885000191629],[1,3664.8938929997385,4.112696999683976],[1,3665.84731800016,5.066122000105679],[1,3666.9079480003566,6.126752000302076],[1,3667.8169379998,7.035741999745369],[1,3668.697675000876,7.91647900082171],[1,3669.964533000253,9.183337000198662],[1,3670.8884410001338,10.107245000079274],[1,3671.8798569999635,11.098660999909043],[1,3672.898493000306,12.11729700025171],[2,3673.7942420002073,13.013046000152826],[1,3674.66058600042,13.879390000365674],[1,3675.819366999902,15.038170999847353],[1,3676.909850000404,16.128654000349343],[1,3677.8673320002854,17.08613600023091],[1,3678.865427000448,18.08423100039363],[1,3679.8995940005407,19.118398000486195],[1,3680.7543640006334,19.97316800057888],[1,3681.9451980004087,1.0640019997954369],[1,3682.8777200011536,1.9965240005403757],[1,3683.809045000002,2.927848999388516],[1,3684.9140830002725,4.03288699965924],[1,3685.6815959997475,4.8003999991342425],[1,3686.9644590001553,6.0832629995420575],[1,3687.8756190007553,6.994423000141978],[1,3688.8658760003746,7.984679999761283],[1,3689.633520000614,8.752324000000954],[1,3690.6736639998853,9.792467999272048],[1,3691.80940700043,10.928210999816656],[1,3692.934349000454,12.053152999840677],[1,3693.8814460001886,13.000249999575317],[1,3694.8777590002865,13.996562999673188],[1,3695.8626170009375,14.98142100032419],[1,3696.9170400006697,16.035844000056386],[1,3697.7878000009805,16.906604000367224],[1,3698.938392001204,18.05719600059092],[1,3699.850255000405,18.96905899979174],[1,3700.8086900003254,0.49049399979412556],[1,3701.8164510000497,1.4982549995183945],[1,3702.8138110004365,2.4956149999052286],[1,3703.6804349999875,3.362238999456167],[1,3704.8350080000237,4.516811999492347],[1,3705.6493580006063,5.331162000074983],[1,3706.7039200002328,6.38572399970144],[1,3707.8387660002336,7.520569999702275],[1,3708.8055900000036,8.48739399947226],[472,3709.8140870006755,9.495891000144184],[1,3710.802338999696,10.48414299916476],[1,3711.700866000727,11.382670000195503],[1,3712.962117999792,12.643921999260783],[1,3713.8958150008693,13.577619000338018],[1,3714.892709000036,14.574512999504805],[1,3715.8027900001034,15.484593999572098],[1,3716.694016000256,16.375819999724627],[1,3717.941576000303,17.623379999771714],[1,3718.833798999898,0.7886029994115233],[1,3719.8807939998806,1.83559799939394],[1,3720.874076000415,2.8288799999281764],[1,3721.8781660003588,3.832969999872148],[1,3722.7069020001218,4.66170599963516],[1,3723.843874000944,5.798678000457585],[1,3724.8088030004874,6.763607000000775],[1,3725.9127670004964,7.867571000009775],[1,3726.8712640004233,8.82606799993664],[1,3727.8979690000415,9.852772999554873],[1,3728.759776000865,10.714580000378191],[1,3729.9715950004756,11.926398999989033],[1,3730.8705660002306,12.825369999743998],[1,3731.8110230006278,13.765827000141144],[1,3732.9157809996977,14.870584999211133],[1,3733.7464979998767,15.701301999390125],[1,3734.858139000833,16.812943000346422],[1,3735.9179440001026,0.9267480000853539],[1,3736.8522590007633,1.8610630007460713],[1,3737.870522000827,2.8793260008096695],[1,3738.898114000447,3.9069180004298687],[1,3739.6911620004103,4.699966000393033],[1,3740.704843000509,5.713647000491619],[1,3741.8064270000905,6.815231000073254],[1,3742.913067000918,7.921871000900865],[1,3743.8507380001247,8.859542000107467],[1,3744.8668210003525,9.875625000335276],[1,3745.8971009999514,10.905904999934137],[1,3746.7592090005055,11.768013000488281],[1,3747.930582000874,12.939386000856757],[1,3748.7947140010074,13.803518000990152],[1,3749.918539999984,14.927343999966979],[1,3750.853043000214,15.861847000196576],[1,3751.6589840007946,16.667788000777364],[1,3752.9225580003113,17.93136200029403],[1,3753.8514010002837,18.860205000266433],[1,3754.88666100055,19.895465000532568],[1,3755.8764880001545,0.8682920001447201],[1,3756.7013189997524,1.6931229997426271],[1,3757.833130000159,2.8249340001493692],[1,3758.8099809996784,3.801784999668598],[1,3759.830268001184,4.822072001174092],[1,3760.8091460010037,5.8009500009939075],[1,3761.815987001173,6.807791001163423],[1,3762.803606000729,7.79541000071913],[1,3763.813246000558,8.805050000548363],[1,3764.7445350000635,9.736339000053704],[1,3765.835777000524,10.827581000514328],[1,3766.805354000069,11.797158000059426],[1,3767.8327860003337,12.824590000323951],[1,3768.8247360000387,13.816540000028908],[1,3769.808141000569,14.799945000559092],[1,3770.80874499958,15.80054899957031],[1,3771.8069380009547,16.798742000944912],[1,3772.8303890004754,17.82219300046563],[1,3773.7063620006666,18.698166000656784],[1,3774.6481890007854,0.8599930005148053],[1,3775.6122520007193,1.8240560004487634],[1,3776.6485470002517,2.860350999981165],[1,3777.847750999965,4.059554999694228],[1,3778.8218339998275,5.033637999556959],[1,3779.8416069997475,6.05341099947691],[1,3780.718683000654,6.930487000383437],[1,3781.89477299992,8.106576999649405],[1,3782.789098000154,9.000901999883354],[1,3783.8183560008183,10.030160000547767],[1,3784.810562999919,11.022366999648511],[1,3785.8119179997593,12.023721999488771],[1,3786.8324509998783,13.044254999607801],[1,3787.831766000949,14.0435700006783],[1,3788.867132000625,15.078936000354588],[1,3789.8597999997437,16.071603999473155],[1,3790.6715420000255,0.2403459995985031],[1,3791.855879999697,1.4246839992702007],[1,3792.6465340005234,2.2153380000963807],[1,3793.9111430002376,3.479946999810636],[1,3794.883258000016,4.452061999589205],[1,3795.855853999965,5.424657999537885],[1,3796.6544409999624,6.223244999535382],[1,3797.6591770006344,7.227981000207365],[1,3798.8105830000713,8.379386999644339],[1,3799.811978000216,9.380781999789178],[1,3800.8127970006317,10.381601000204682],[1,3801.8106180010363,11.379422000609338],[1,3802.8853140007704,12.454118000343442],[1,3803.821461999789,13.390265999361873],[1,3804.6482739998028,14.21707799937576],[1,3805.930517000146,15.499320999719203],[1,3806.7775280009955,16.34633200056851],[1,3807.81838699989,17.3871909994632],[1,3808.9118889998645,18.48069299943745],[1,3809.795233001001,0.03203700017184019],[1,3810.663029000163,0.8998329993337393],[1,3811.910052000545,2.1468559997156262],[1,3812.850805000402,3.0876089995726943],[1,3813.86486000102,4.1016640001907945],[1,3814.806320999749,5.043124998919666],[1,3815.7357100006193,5.972513999789953],[1,3816.908026000485,7.144829999655485],[1,3817.882021000609,8.118824999779463],[1,3818.801075000316,9.037878999486566],[1,3819.8169830003753,10.053786999545991],[1,3820.8141780002043,11.050981999374926],[1,3821.6186810005456,11.855484999716282],[1,3822.803640000522,13.040443999692798],[1,3823.8143690004945,14.051172999665141],[1,3824.8136150008067,15.05041899997741],[1,3825.6656270008534,15.90243100002408],[1,3826.7203150009736,16.957119000144303],[1,3827.6255950005725,17.862398999743164],[1,3828.9816840002313,0.550487999804318],[1,3829.7717420002446,1.3405459998175502],[1,3830.649325000122,2.218128999695182],[1,3831.690696001053,3.2595000006258488],[1,3832.7323090005666,4.301113000139594],[1,3833.830385000445,5.399189000017941],[1,3834.7356610000134,6.304464999586344],[1,3835.8324210001156,7.401224999688566],[1,3836.8129460001364,8.381749999709427],[1,3837.8126370003447,9.381440999917686],[1,3838.813876000233,10.382679999805987],[1,3839.6354559995234,11.204259999096394],[1,3840.7037150003016,12.272518999874592],[1,3841.7117470009252,13.280551000498235],[1,3842.684874000028,14.253677999600768],[1,3843.83188300021,15.40068699978292],[1,3844.807390000671,16.37619400024414],[1,3845.814360000193,17.38316399976611],[1,3846.810098000802,18.378902000375092],[1,3847.6972920009866,0.20309600047767162],[1,3848.845623999834,1.3514279993250966],[1,3849.697125000879,2.2029290003702044],[1,3850.840433999896,3.3462379993870854],[1,3851.7869980009273,4.292802000418305],[1,3852.8140380000696,5.319841999560595],[1,3853.7077860003337,6.213589999824762],[1,3854.7942260000855,7.300029999576509],[1,3855.699084000662,8.204888000153005],[1,3856.62672900036,9.13253299985081],[1,3857.858705000952,10.364509000442922],[1,3858.6772870002314,11.18309099972248],[1,3859.6571350004524,12.162938999943435],[1,3860.84577000048,13.351573999971151],[1,3861.8036220008507,14.309426000341773],[1,3862.813141000457,15.318944999948144],[1,3863.7182450005785,16.2240490000695],[1,3864.654349000193,17.160152999684215],[1,3865.808338000439,0.9631420001387596],[1,3866.813571999781,1.968375999480486],[1,3867.86477500014,3.019578999839723],[1,3868.8540629995987,4.008866999298334],[1,3869.8597770007327,5.014581000432372],[1,3870.823725000024,5.978528999723494],[1,3871.7375620007515,6.892366000451148],[1,3872.83420199994,7.98900599963963],[1,3873.7079830011353,8.862787000834942],[1,3874.8133640000597,9.968167999759316],[1,3875.8115610005334,10.966365000233054],[1,3876.811781999655,11.96658599935472],[1,3877.6609350005165,12.815739000216126],[1,3878.638969000429,13.793773000128567],[1,3879.8523380002007,15.007141999900341],[1,3880.7775320000947,15.932335999794304],[1,3881.7704710001126,16.925274999812245],[1,3882.9198720008135,18.074676000513136],[1,3883.8397770002484,18.994580999948084],[1,3884.8724400000647,20.027243999764323],[1,3885.8662550002337,0.885058999992907],[1,3886.7195930005983,1.7383970003575087],[1,3887.9004280008376,2.9192320005968213],[1,3888.904672000557,3.923476000316441],[1,3889.875477001071,4.894281000830233],[1,3890.6507879998535,5.669591999612749],[1,3891.8508610008284,6.869665000587702],[1,3892.775151000358,7.793955000117421],[1,3893.7153000002727,8.734104000031948],[1,3894.92060800083,9.939412000589073],[1,3895.8647210001945,10.883524999953806],[1,3896.901693000458,11.920497000217438],[1,3897.6672499999404,12.686053999699652],[1,3898.7173030003905,13.736107000149786],[1,3899.9629750009626,14.981779000721872],[1,3900.88117699977,15.899980999529362],[1,3901.8763190004975,16.895123000256717],[1,3902.8995570009574,17.918361000716686],[1,3903.699479000643,18.718283000402153],[1,3904.935885000974,19.954689000733197],[1,3905.8809140007943,0.8387180007994175],[1,3906.7977860001847,1.7555900001898408],[1,3907.818989000283,2.7767930002883077],[1,3908.814948000014,3.7727520000189543],[1,3909.7072160001844,4.665020000189543],[1,3910.954479000531,5.912283000536263],[475,3911.778420000337,6.73622400034219],[1,3912.627983001061,7.58578700106591],[1,3913.940130000934,8.89793400093913],[1,3914.8504880005494,9.808292000554502],[1,3915.811029000208,10.768833000212908],[1,3916.8292010007426,11.78700500074774],[1,3917.9175540003926,12.875358000397682],[1,3918.8507840009406,13.808588000945747],[1,3919.8738219998777,14.831625999882817],[1,3920.89659600053,15.854400000534952],[1,3921.695135001093,16.652939001098275],[1,3922.958215000108,1.1410189997404814],[1,3923.779375000857,1.9621790004894137],[1,3924.824584000744,3.0073880003765225],[1,3925.814147000201,3.9969509998336434],[1,3926.816385000013,4.999188999645412],[1,3927.6412620004267,5.824066000059247],[1,3928.712432000786,6.895236000418663],[1,3929.8466480001807,8.029451999813318],[1,3930.80602700077,8.98883100040257],[1,3931.813326000236,9.996129999868572],[1,3932.8129150010645,10.995719000697136],[1,3933.8121830001473,11.99498699977994],[1,3934.817529999651,13.000333999283612],[1,3935.6468550004065,13.8296590000391],[1,3936.8120560003445,14.994859999977052],[1,3937.8710719998926,16.05387599952519],[1,3938.815578999929,16.998382999561727],[1,3939.8320140009746,18.014818000607193],[1,3940.805833999999,18.988637999631464],[1,3941.618110000156,0.1359139997512102],[1,3942.915985999629,1.4337899992242455],[1,3943.6138760000467,2.131679999642074],[1,3944.825121000409,3.3429250000044703],[1,3945.8463540002704,4.364157999865711],[1,3946.854143000208,5.3719469998031855],[1,3947.7361220009625,6.25392600055784],[1,3948.83632100001,7.354124999605119],[1,3949.8116270005703,8.329431000165641],[1,3950.7685110000893,9.286314999684691],[1,3951.6807130007073,10.198517000302672],[1,3952.951166000217,11.468969999812543],[1,3953.842943000607,12.360747000202537],[1,3954.8705169996247,13.388320999220014],[1,3955.894629000686,14.412433000281453],[1,3956.701466000639,15.219270000234246],[1,3957.837487000972,16.355291000567377],[1,3958.8078860007226,17.32569000031799],[1,3959.9115350004286,18.4293390000239],[1,3960.851402000524,19.369206000119448],[1,3961.8426060006022,0.4184100003913045],[1,3962.8694690000266,1.4452729998156428],[1,3963.6795660005882,2.2553700003772974],[1,3964.94723800011,3.523041999898851],[1,3965.868875000626,4.444679000414908],[1,3966.8114640004933,5.387268000282347],[1,3967.8734180005267,6.449222000315785],[1,3968.69222000055,7.26802400033921],[1,3969.914557000622,8.490361000411212],[1,3970.88136100024,9.457165000028908],[1,3971.878691000864,10.454495000652969],[1,3972.895132000558,11.470936000347137],[1,3973.644899999723,12.220703999511898],[1,3974.772605000064,13.348408999852836],[1,3975.825250000693,14.401054000481963],[1,3976.8125,15.38830399978906],[1,3977.728336000815,16.304140000604093],[1,3978.835309999995,17.411113999783993],[1,3979.8074770001695,18.383280999958515],[1,3980.8163890000433,19.392192999832332],[1,3981.754863000475,0.8626669999212027],[1,3982.602892000228,1.710695999674499],[1,3983.750102000311,2.8579059997573495],[1,3984.760166000575,3.8679700000211596],[1,3985.6201340006664,4.727938000112772],[1,3986.853869999759,5.961673999205232],[1,3987.792779000476,6.900582999922335],[1,3988.64139000047,7.749193999916315],[1,3989.6729870010167,8.780791000463068],[1,3990.826499001123,9.934303000569344],[1,3991.809973000549,10.917776999995112],[1,3992.6862820005044,11.794085999950767],[1,3993.731509000063,12.839312999509275],[1,3994.8249200005084,13.93272399995476],[1,3995.808111000806,14.915915000252426],[1,3996.686676000245,15.794479999691248],[1,3997.646660000086,16.754463999532163],[1,3998.790008000098,17.8978119995445],[1,3999.817267000675,18.925071000121534],[1,4000.8108959998935,0.12369999941438437],[1,4001.8263079999015,1.1391119994223118],[1,4002.8254650002345,2.1382689997553825],[1,4003.8615620005876,3.174366000108421],[1,4004.651076000184,3.963879999704659],[1,4005.8693740004674,5.182177999988198],[1,4006.8560049999505,6.168808999471366],[1,4007.8004270009696,7.113231000490487],[1,4008.7987559996545,8.11155999917537],[1,4009.8894620006904,9.202266000211239],[1,4010.8306800005957,10.143484000116587],[1,4011.819502000697,11.132306000217795],[1,4012.840931000188,12.153734999708831],[1,4013.72761500068,13.040419000200927],[1,4014.914683001116,14.227487000636756],[1,4015.7829350000247,15.095738999545574],[1,4016.818433000706,16.131237000226974],[1,4017.8092989996076,17.1221029991284],[1,4018.6862350003794,17.999038999900222],[1,4019.901925000362,0.289729000069201],[1,4020.852313000709,1.2401170004159212],[1,4021.8092480003834,2.19705200009048],[1,4022.8733789995313,3.261182999238372],[1,4023.844637000002,4.23244099970907],[1,4024.735366000794,5.123170000500977],[1,4025.765000000596,6.152804000303149],[1,4026.909513999708,7.2973179994151],[1,4027.8531490005553,8.24095300026238],[1,4028.794981000945,9.182785000652075],[1,4029.817402000539,10.205206000246108],[1,4030.6678880006075,11.055692000314593],[1,4031.7637670002878,12.151570999994874],[1,4032.8243380002677,13.212141999974847],[1,4033.915255000815,14.303059000521898],[1,4034.7952629998326,15.183066999539733],[1,4035.919481000863,16.30728500057012],[1,4036.79049300123,17.178297000937164],[1,4037.892072000541,18.279876000247896],[1,4038.784836000763,19.172640000469983],[1,4039.638809000142,20.02661299984902],[1,4040.7720520002767,1.055855999700725],[1,4041.822484999895,2.1062889993190765],[1,4042.614808000624,2.8986120000481606],[1,4043.669600999914,3.9534049993380904],[1,4044.855533000082,5.139336999505758],[1,4045.723221000284,6.007024999707937],[1,4046.832720000297,7.116523999720812],[1,4047.6179480003193,7.901751999743283],[1,4048.8715820005164,9.155385999940336],[1,4049.8097400004044,10.093543999828398],[1,4050.811118000187,11.09492199961096],[1,4051.810744000599,12.094548000022769],[1,4052.76388100069,13.047685000114143],[1,4053.8975659999996,14.181369999423623],[1,4054.851692000404,15.135495999827981],[1,4055.905639000237,16.18944299966097],[1,4056.788792000152,17.07259599957615],[1,4057.816434999928,18.10023899935186],[1,4058.611212000251,18.895015999674797],[2,4059.7708620009944,20.054666000418365],[1,4060.920216000639,1.1480200001969934],[1,4061.832490000874,2.0602940004318953],[1,4062.8872410003096,3.1150449998676777],[1,4063.793025000021,4.020828999578953],[1,4064.6296110004187,4.857414999976754],[1,4065.7921150000766,6.019918999634683],[1,4066.709838000126,6.937641999684274],[1,4067.9571449998766,8.18494899943471],[1,4068.8777660010383,9.105570000596344],[1,4069.8623960008845,10.090200000442564],[1,4070.873012000695,11.100816000252962],[1,4071.8694430002943,12.09724699985236],[1,4072.751068999991,12.978872999548912],[1,4073.8399320002645,14.067735999822617],[1,4074.808517000638,15.03632100019604],[1,4075.629219001159,15.857023000717163],[1,4076.794308000244,17.02211199980229],[1,4077.819707000628,18.047511000186205],[1,4078.6781100006774,18.905914000235498],[1,4079.668431000784,0.039235000498592854],[1,4080.6972540002316,1.068057999946177],[1,4081.8437870005146,2.2145910002291203],[1,4082.803725000471,3.17452900018543],[1,4083.8669379996136,4.2377419993281364],[1,4084.6550110001117,5.0258149998262525],[1,4085.9049859996885,6.2757899994030595],[1,4086.813779000193,7.184582999907434],[1,4087.745890000835,8.116694000549614],[1,4088.9103240007535,9.281128000468016],[1,4089.7887170007452,10.15952100045979],[1,4090.8202030006796,11.191007000394166],[1,4091.812709000893,12.18351300060749],[1,4092.8141240002587,13.184927999973297],[1,4093.9121010005474,14.282905000261962],[1,4094.7941239997745,15.16492799948901],[1,4095.9331600004807,16.303964000195265],[1,4096.881881999783,17.25268599949777],[1,4097.838690999895,18.209494999609888],[1,4098.795300000347,0.16910399962216616],[1,4099.744699000381,1.1185029996559024],[1,4100.951734000817,2.3255380000919104],[1,4101.62875500042,3.002558999694884],[1,4102.927627000026,4.301430999301374],[1,4103.859431000426,5.233234999701381],[1,4104.900655000471,6.274458999745548],[1,4105.70852100011,7.082324999384582],[1,4106.963046999648,8.336850998923182],[1,4107.776755000465,9.150558999739587],[1,4108.824063000269,10.197866999544203],[1,4109.657631000504,11.031434999778867],[1,4110.934904000722,12.308707999996841],[1,4111.647036000155,13.020839999429882],[1,4112.902065000497,14.275868999771774],[1,4113.8548820009455,15.228686000220478],[1,4114.657368000597,16.03117199987173],[472,4115.855835000984,17.22963900025934],[1,4116.795083000325,0.16288699954748154],[1,4117.698033000343,1.065836999565363],[1,4118.908551000059,2.276354999281466],[1,4119.883948000148,3.2517519993707538],[1,4120.876032999717,4.243836998939514],[1,4121.8812850005925,5.249088999815285],[1,4122.6954960003495,6.063299999572337],[1,4123.850092000328,7.217895999550819],[1,4124.661508000456,8.029311999678612],[1,4125.951644000597,9.319447999820113],[1,4126.878715000115,10.24651899933815],[1,4127.866067000665,11.233870999887586],[1,4128.8874150002375,12.25521899946034],[1,4129.668081000447,13.035884999670088],[1,4130.90634999983,14.274153999052942],[1,4131.7848439998925,15.152647999115288],[1,4132.899623000063,16.267426999285817],[1,4133.620222000405,16.988025999628007],[1,4134.959941999987,18.327745999209583],[1,4135.740242000669,19.108045999892056],[1,4136.791691000573,0.22849499993026257],[1,4137.914692000486,1.3514959998428822],[1,4138.8861350007355,2.322939000092447],[2,4139.7511480003595,3.1879519997164607],[1,4140.823114000261,4.259917999617755],[1,4141.612379000522,5.049182999879122],[1,4142.756103000604,6.192906999960542],[1,4143.903713000007,7.340516999363899],[1,4144.787887000479,8.22469099983573],[1,4145.820484000258,9.257287999615073],[1,4146.606826000847,10.043630000203848],[1,4147.854587000795,11.291391000151634],[1,4148.797606999986,12.2344109993428],[1,4149.814795000479,13.25159899983555],[1,4150.637295000255,14.074098999612033],[1,4151.793552000076,15.230355999432504],[1,4152.826148000546,16.262951999902725],[1,4153.809692000039,0.8994959993287921],[1,4154.81151700113,1.901321000419557],[1,4155.879151000641,2.9689549999311566],[1,4156.843419000506,3.9332229997962713],[1,4157.802713001147,4.892517000436783],[1,4158.817336000502,5.90713999979198],[1,4159.647668000311,6.73747199960053],[1,4160.791651000269,7.881454999558628],[1,4161.847005000338,8.936808999627829],[1,4162.807543001138,9.897347000427544],[1,4163.686460000463,10.7762639997527],[1,4164.847697000019,11.937500999309123],[1,4165.814792999998,12.904596999287605],[1,4166.70148000028,13.791283999569714],[1,4167.634870000184,14.724673999473453],[1,4168.854121000506,15.943924999795854],[1,4169.815044000745,16.90484800003469],[1,4170.809396999888,17.899200999177992],[1,4171.6843390008435,0.18314300011843443],[1,4172.858358999714,1.3571629989892244],[1,4173.6289610005915,2.1277649998664856],[1,4174.857021000236,3.355824999511242],[1,4175.8032240001485,4.302027999423444],[1,4176.631354000419,5.130157999694347],[1,4177.663730000146,6.1625339994207025],[1,4178.829683000222,7.328486999496818],[1,4179.604887000285,8.103690999560058],[1,4180.654659000225,9.153462999500334],[1,4181.8366849999875,10.335488999262452],[1,4182.675111000426,11.173914999701083],[1,4183.723781000823,12.222585000097752],[1,4184.610518000089,13.109321999363601],[1,4185.843668000773,14.342472000047565],[1,4186.789177999832,15.287981999106705],[1,4187.815607000142,16.314410999417305],[1,4188.801959999837,17.30076399911195],[1,4189.611282999627,18.11008699890226],[1,4190.747112000361,19.245915999636054],[1,4191.812425000593,1.0092290006577969],[1,4192.8037130003795,2.0005170004442334],[1,4193.702933000401,2.899737000465393],[1,4194.837821000256,4.034625000320375],[1,4195.794118001126,4.990922001190484],[1,4196.815274000168,6.012078000232577],[1,4197.665439000353,6.862243000417948],[1,4198.840157000348,8.036961000412703],[1,4199.8054150007665,9.002219000831246],[1,4200.811255000532,10.008059000596404],[1,4201.74112599995,10.937930000014603],[1,4202.829931999557,12.026735999621451],[1,4203.796731000766,12.993535000830889],[1,4204.814251000062,14.011055000126362],[1,4205.81192000024,15.008724000304937],[1,4206.809379000217,16.006183000281453],[1,4207.811900001019,17.00870400108397],[1,4208.647645000368,17.844449000433087],[1,4209.785904999822,18.98270899988711],[1,4210.666210000403,19.863014000467956],[1,4211.811769000255,1.0865730000659823],[1,4212.672663000412,1.9474670002236962],[1,4213.818975000642,3.093779000453651],[1,4214.810310999863,4.085114999674261],[1,4215.808296999894,5.0831009997054935],[1,4216.807809000835,6.082613000646234],[1,4217.8079140000045,7.082717999815941],[1,4218.727209000848,8.002013000659645],[1,4219.831463000737,9.106267000548542],[1,4220.770003000274,10.044807000085711],[1,4221.612554000691,10.88735800050199],[1,4222.8668180005625,12.1416220003739],[1,4223.788589000702,13.063393000513315],[1,4224.817731000483,14.092535000294447],[1,4225.6389540005475,14.91375800035894],[1,4226.854342000559,16.129146000370383],[1,4227.799435000867,17.074239000678062],[1,4228.8095660004765,18.08437000028789],[1,4229.768860000186,0.14166400022804737],[1,4230.694147000089,1.0669510001316667],[1,4231.671081000008,2.043885000050068],[1,4232.768114000559,3.140918000601232],[1,4233.814797000028,4.187601000070572],[1,4234.812401999719,5.18520599976182],[1,4235.810352000408,6.1831560004502535],[1,4236.772672000341,7.145476000383496],[1,4237.8208220005035,8.193626000545919],[1,4238.72683800105,9.099642001092434],[1,4239.757636000402,10.13044000044465],[1,4240.609473000281,10.982277000322938],[1,4241.689265000634,12.062069000676274],[1,4242.838182000443,13.210986000485718],[1,4243.803857999854,14.176661999896169],[1,4244.81326800026,15.186072000302374],[1,4245.810857000761,16.183661000803113],[1,4246.806767000817,17.17957100085914],[1,4247.812696000561,18.185500000603497],[1,4248.610241000541,18.983045000582933],[1,4249.8574330005795,0.3682369999587536],[1,4250.794324000366,1.3051279997453094],[1,4251.636068000458,2.146871999837458],[1,4252.6667600004,3.1775639997795224],[1,4253.802970000543,4.3137739999219775],[1,4254.797763000242,5.308566999621689],[1,4255.814959000796,6.325763000175357],[1,4256.810689000413,7.321492999792099],[1,4257.81202299986,8.322826999239624],[1,4258.728978000581,9.239781999960542],[1,4259.831621999852,10.342425999231637],[1,4260.798916000873,11.309720000252128],[1,4261.758229000494,12.269032999873161],[1,4262.818914000876,13.329718000255525],[1,4263.614539000206,14.125342999584973],[1,4264.750842999667,15.261646999046206],[1,4265.822456000373,16.333259999752045],[1,4266.803354000673,17.314158000051975],[1,4267.807757000439,18.318560999818146],[1,4268.807510000654,0.5133140003308654],[1,4269.812271000817,1.5180750004947186],[1,4270.810837999918,2.5166419995948672],[1,4271.612418000586,3.3182220002636313],[1,4272.776084000245,4.481887999922037],[1,4273.808258000761,5.514062000438571],[1,4274.675329000689,6.38113300036639],[1,4275.814344000071,7.520147999748588],[1,4276.81230899971,8.518112999387085],[1,4277.81104600057,9.51685000024736],[1,4278.821136000566,10.526940000243485],[1,4279.64996800106,11.355772000737488],[1,4280.623467000201,12.329270999878645],[1,4281.722059999593,13.427863999269903],[1,4282.828967999667,14.53477199934423],[1,4283.672563999891,15.378367999568582],[1,4284.719450999983,16.425254999659956],[1,4285.832613999955,17.538417999632657],[1,4286.787607000209,18.49341099988669],[1,4287.813618999906,19.519422999583185],[1,4288.647665000521,0.5534690003842115],[1,4289.847249999642,1.753053999505937],[1,4290.799483000301,2.7052870001643896],[1,4291.814544999972,3.720348999835551],[1,4292.613797000609,4.519601000472903],[1,4293.761795000173,5.6675990000367165],[1,4294.819938000292,6.725742000155151],[1,4295.796805000864,7.702609000727534],[1,4296.691805000417,8.5976090002805],[1,4297.606798000634,9.512602000497282],[1,4298.776575000025,10.682378999888897],[1,4299.805405000225,11.711209000088274],[1,4300.7972490005195,12.703053000383079],[1,4301.800003999844,13.705807999707758],[1,4302.774860000238,14.680664000101388],[1,4303.804345999844,15.710149999707937],[1,4304.798077000305,16.70388100016862],[1,4305.63879499957,17.54459899943322],[1,4306.715383000672,18.62118700053543],[1,4307.835576000623,19.74138000048697],[1,4308.626981000416,0.7227849997580051],[1,4309.742596000433,1.8383999997749925],[1,4310.663681000471,2.7594849998131394],[1,4311.848100000061,3.943903999403119],[1,4312.803645000793,4.899449000135064],[1,4313.827007000335,5.922810999676585],[1,4314.808158,6.9039619993418455],[1,4315.653952000663,7.749756000004709],[1,4316.7696470003575,8.865450999699533],[1,4317.834430000745,9.930234000086784],[476,4318.80931400042,10.905117999762297],[1,4319.80651300028,11.90231699962169],[1,4320.81366099976,12.909464999102056],[1,4321.616927000694,13.712731000036001],[1,4322.86168699991,14.957490999251604],[1,4323.78761800006,15.883421999402344],[1,4324.644811000675,16.740615000016987],[1,4325.623560000211,0.9103640001267195],[1,4326.86158900056,2.1483930004760623],[1,4327.796266000718,3.0830700006335974],[1,4328.810882000253,4.0976860001683235],[1,4329.630624000914,4.917428000830114],[1,4330.8527520000935,6.139556000009179],[1,4331.797524999827,7.084328999742866],[1,4332.632909000851,7.919713000766933],[1,4333.642341000028,8.929144999943674],[1,4334.79050100036,10.077305000275373],[1,4335.816212000325,11.103016000241041],[1,4336.806770000607,12.093574000522494],[1,4337.807851000689,13.09465500060469],[1,4338.689788999967,13.976592999882996],[1,4339.842546000145,15.129350000061095],[1,4340.6564170001075,15.943221000023186],[1,4341.754108999856,0.13091299962252378],[1,4342.697673000395,1.0744770001620054],[1,4343.839922000654,2.216726000420749],[1,4344.8065290004015,3.1833330001682043],[1,4345.809669000097,4.1864729998633265],[1,4346.617116000503,4.993920000270009],[1,4347.853885000572,6.230689000338316],[1,4348.652713000774,7.029517000541091],[1,4349.846339999698,8.22314399946481],[1,4350.673722000793,9.05052600055933],[1,4351.795300000347,10.172104000113904],[1,4352.629159000702,11.00596300046891],[1,4353.773958999664,12.150762999430299],[1,4354.780338000506,13.15714200027287],[1,4355.818390999921,14.195194999687374],[1,4356.813916000538,15.190720000304282],[1,4357.810695000924,16.187499000690877],[1,4358.813835999928,17.190639999695122],[1,4359.627240000293,18.004044000059366],[1,4360.736002000049,1.033805999904871],[1,4361.824878000654,2.1226820005103946],[1,4362.6419970002025,2.939801000058651],[1,4363.7858330002055,4.083637000061572],[1,4364.814176999964,5.111980999819934],[1,4365.81057500001,6.108378999866545],[1,4366.813098999672,7.110902999527752],[1,4367.827778000385,8.125582000240684],[1,4368.707849000581,9.005653000436723],[1,4369.64804100059,9.945845000445843],[1,4370.8523040004075,11.150108000263572],[1,4371.699890000746,11.997694000601768],[1,4372.851028000936,13.148832000792027],[1,4373.794275000691,14.092079000547528],[1,4374.811008000746,15.108812000602484],[1,4375.841423000209,16.139227000065148],[1,4376.799713000655,17.09751700051129],[1,4377.718287000433,18.016091000288725],[1,4378.830423000269,0.3132269997149706],[1,4379.6047800006345,1.087584000080824],[1,4380.751786000095,2.2345899995416403],[1,4381.6611560005695,3.1439600000157952],[1,4382.855956000276,4.338759999722242],[1,4383.801020001061,5.283824000507593],[1,4384.816856999882,6.299660999327898],[1,4385.805532000959,7.288336000405252],[1,4386.812496000901,8.295300000347197],[1,4387.812446000986,9.295250000432134],[1,4388.636738000438,10.11954199988395],[1,4389.719207000919,11.202011000365019],[1,4390.838171000592,12.320975000038743],[1,4391.626092000864,13.108896000310779],[1,4392.858946000226,14.341749999672174],[1,4393.800230000168,15.283033999614418],[1,4394.620122000575,16.102926000021398],[1,4395.859390000813,17.342194000259042],[1,4396.690759000368,18.17356299981475],[1,4397.717268000357,19.200071999803185],[1,4398.834687000141,0.3054909994825721],[1,4399.801281999797,1.2720859991386533],[1,4400.611720999703,2.0825249990448356],[1,4401.857859000564,3.328662999905646],[1,4402.614246999845,4.085050999186933],[1,4403.853470000438,5.3242739997804165],[1,4404.800596000627,6.271399999968708],[1,4405.813223000616,7.2840269999578595],[1,4406.707322000526,8.178125999867916],[1,4407.829340000637,9.3001439999789],[1,4408.634871999733,10.105675999075174],[1,4409.671025999822,11.141829999163747],[1,4410.842996000312,12.313799999654293],[1,4411.798131000251,13.268934999592602],[1,4412.809089000337,14.27989299967885],[1,4413.723078000359,15.193881999701262],[1,4414.828319001012,16.299123000353575],[1,4415.628422000445,17.09922599978745],[1,4416.76368500106,18.23448900040239],[1,4417.827142000198,19.29794599954039],[1,4418.802796000615,0.651600000448525],[1,4419.808619000949,1.6574230007827282],[1,4420.811877000146,2.660680999979377],[1,4421.803073001094,3.651877000927925],[1,4422.8193990001455,4.668202999979258],[1,4423.613667001016,5.462471000850201],[1,4424.730975001119,6.57977900095284],[1,4425.825600000098,7.67440399993211],[1,4426.79330800008,8.64211199991405],[1,4427.81634500064,9.66514900047332],[1,4428.8168290006,10.665633000433445],[1,4429.815838000737,11.664642000570893],[1,4430.802408000454,12.65121200028807],[1,4431.8046089997515,13.65341299958527],[1,4432.813773999922,14.66257799975574],[1,4433.617268000729,15.466072000563145],[1,4434.845639000647,16.694443000480533],[1,4435.646614000201,17.495418000034988],[1,4436.841350000352,18.69015400018543],[1,4437.669518000446,19.518322000280023],[1,4438.832481000572,0.6372850006446242],[1,4439.686797000468,1.4916010005399585],[1,4440.615502000786,2.4203060008585453],[1,4441.623070000671,3.4278740007430315],[1,4442.856674000621,4.661478000693023],[1,4443.787171000615,5.5919750006869435],[1,4444.683971000835,6.488775000907481],[1,4445.708339001052,7.513143001124263],[1,4446.839809000492,8.644613000564277],[1,4447.805096999742,9.609900999814272],[1,4448.812454000115,10.617258000187576],[1,4449.709322000854,11.514126000925899],[1,4450.800623000599,12.605427000671625],[1,4451.815527999774,13.620331999845803],[1,4452.811464999802,14.616268999874592],[1,4453.695852000266,15.500656000338495],[1,4454.848873999901,16.653677999973297],[1,4455.801152000204,17.60595600027591],[1,4456.813012000173,18.61781600024551],[1,4457.810018000193,0.6438219994306564],[1,4458.812315000221,1.6461189994588494],[1,4459.811735000461,2.645538999699056],[1,4460.809288000688,3.643091999925673],[1,4461.7256930004805,4.559496999718249],[1,4462.81230100058,5.646104999817908],[1,4463.806983000599,6.640786999836564],[1,4464.812142000534,7.645945999771357],[1,4465.810653000139,8.644456999376416],[1,4466.604421000928,9.438225000165403],[1,4467.618887000717,10.452690999954939],[1,4468.862108000554,11.69591199979186],[1,4469.8014470003545,12.635250999592245],[1,4470.726076999679,13.559880998916924],[1,4471.765680000186,14.599483999423683],[1,4472.83198499959,15.665788998827338],[1,4473.615524000488,16.449327999725938],[1,4474.846994999796,17.68079899903387],[1,4475.802249999717,0.5870539993047714],[1,4476.813063000329,1.5978669999167323],[1,4477.643191999756,2.4279959993436933],[1,4478.856143000536,3.6409470001235604],[1,4479.797010000795,4.5818140003830194],[1,4480.625046000816,5.4098500004038215],[1,4481.846539000981,6.6313430005684495],[1,4482.715824000537,7.500628000125289],[1,4483.82994800061,8.614752000197768],[1,4484.705280000344,9.490083999931812],[1,4485.832766000181,10.61756999976933],[1,4486.79822599981,11.583029999397695],[1,4487.810827000067,12.595630999654531],[1,4488.806179000996,13.590983000583947],[1,4489.631830000319,14.41663399990648],[1,4490.602829000913,15.3876330005005],[1,4491.855043000542,0.2108470005914569],[1,4492.801860000007,1.157664000056684],[1,4493.73900299985,2.094806999899447],[1,4494.716986999847,3.0727909998968244],[1,4495.6128410007805,3.9686450008302927],[1,4496.6856800001115,5.04148400016129],[1,4497.830655000173,6.186459000222385],[1,4498.612711000256,6.96851500030607],[1,4499.8558360002935,8.211640000343323],[1,4500.640278000385,8.996082000434399],[1,4501.782897000201,10.138701000250876],[1,4502.73379100021,11.089595000259578],[1,4503.826671999879,12.18247599992901],[1,4504.639141000807,12.994945000857115],[1,4505.742347001098,14.098151001147926],[1,4506.824908000417,15.180712000466883],[1,4507.773750999942,16.12955499999225],[1,4508.67091100011,17.02671500016004],[1,4509.8172989999875,18.173103000037372],[1,4510.80525400117,19.161058001220226],[1,4511.809350000694,0.32015400007367134],[1,4512.806049999781,1.3168539991602302],[1,4513.807029000483,2.3178329998627305],[1,4514.8084580004215,3.3192619998008013],[1,4515.812087000348,4.322890999726951],[1,4516.8128909999505,5.323694999329746],[1,4517.729411000386,6.240214999765158],[1,4518.832240000367,7.343043999746442],[1,4519.6591750001535,8.16997899953276],[500,4520.810778000392,9.321581999771297],[1,4521.735660000704,10.246464000083506],[1,4522.831543000415,11.342346999794245],[501,4523.616086000577,12.126889999955893],[1,4524.786722000688,13.297526000067592],[1,4525.800328000449,14.311131999827921],[1,4526.629693000577,15.140496999956667],[1,4527.85069799982,16.36150199919939],[1,4528.642687000334,17.15349099971354],[1,4529.795691000298,1.0794949997216463],[1,4530.61930300016,1.9031069995835423],[1,4531.631930000149,2.9157339995726943],[1,4532.672801000066,3.9566049994900823],[1,4533.829846000299,5.113649999722838],[1,4534.807165000588,6.0909690000116825],[1,4535.811631000601,7.095435000024736],[1,4536.619319000281,7.903122999705374],[1,4537.718665000051,9.00246899947524],[1,4538.763283000328,10.047086999751627],[1,4539.819309000857,11.103113000281155],[1,4540.641432999633,11.925236999057233],[1,4541.8460640003905,13.12986799981445],[1,4542.610322999768,13.89412699919194],[1,4543.847274000756,15.131078000180423],[1,4544.797017000616,16.080821000039577],[1,4545.62113400083,16.904938000254333],[1,4546.62565900106,17.90946300048381],[1,4547.6457550004125,18.929558999836445],[1,4548.826365000568,0.4301690002903342],[1,4549.805190000683,1.4089940004050732],[1,4550.8082510000095,2.412054999731481],[511,4551.812145999633,3.4159499993547797],[1,4552.689309000038,4.2931129997596145],[1,4553.8386550005525,5.442459000274539],[1,4554.646575000137,6.250378999859095],[1,4555.851921000518,7.455725000239909],[1,4556.682473000139,8.286276999861002],[1,4557.840189000592,9.44399300031364],[1,4558.609823999926,10.213627999648452],[1,4559.857867999934,11.461671999655664],[1,4560.793959000148,12.397762999869883],[1,4561.809946999885,13.413750999607146],[1,4562.628668000922,14.232472000643611],[1,4563.772150000557,15.375954000279307],[1,4564.711008001119,16.314812000840902],[1,4565.826504000463,17.430308000184596],[1,4566.805820000358,18.40962400007993],[1,4567.814100001007,19.417904000729322],[1,4568.811114001088,0.9249180005863309],[1,4569.811753000133,1.925556999631226],[1,4570.8099729996175,2.923776999115944],[1,4571.796697000042,3.9105009995400906],[1,4572.739193000831,4.8529970003291965],[1,4573.609339000657,5.723143000155687],[1,4574.86650100071,6.980305000208318],[1,4575.802458000369,7.9162619998678565],[1,4576.682838000357,8.796641999855638],[1,4577.831697000191,9.945500999689102],[1,4578.823854000308,10.937657999806106],[1,4579.625009000301,11.738812999799848],[1,4580.76175800059,12.875562000088394],[1,4581.745729000308,13.859532999806106],[1,4582.824382000603,14.938186000101268],[1,4583.7925650002435,15.906368999741971],[1,4584.821736000478,16.935539999976754],[1,4585.809454999864,17.923258999362588],[1,4586.640960000455,18.754763999953866],[1,4587.855151000433,19.968954999931157],[1,4588.695900000632,0.7587040001526475],[1,4589.60329400003,1.6660979995504022],[1,4590.703773000278,2.766576999798417],[1,4591.665905000642,3.7287090001627803],[1,4592.847475000657,4.9102790001779795],[1,4593.803896000609,5.86670000012964],[1,4594.652437000535,6.715241000056267],[1,4595.851779000834,7.914583000354469],[1,4596.81423300039,8.87703699991107],[1,4597.679310000502,9.742114000022411],[1,4598.820419000462,10.883222999982536],[1,4599.815799000673,11.878603000193834],[1,4600.658722001128,12.721526000648737],[1,4601.850607000291,13.913410999812186],[1,4602.697752000764,14.76055600028485],[1,4603.848701000214,15.911504999734461],[1,4604.797457000241,16.860260999761522],[1,4605.809538000263,17.872341999784112],[1,4606.632148000412,0.35095200035721064],[1,4607.766375000589,1.4851790005341172],[1,4608.824970999733,2.543774999678135],[1,4609.639622000046,3.3584259999915957],[1,4610.854345000349,4.5731490002945065],[1,4611.801221000031,5.520024999976158],[1,4612.827030999586,6.5458349995315075],[1,4613.73321100045,7.452015000395477],[1,4614.608483999968,8.327287999913096],[1,4615.710338000208,9.42914200015366],[1,4616.836106000468,10.554910000413656],[1,4617.802256000228,11.521060000173748],[1,4618.814295000397,12.53309900034219],[1,4619.8098510000855,13.528655000030994],[1,4620.8108290005475,14.52963300049305],[1,4621.773105000146,15.491909000091255],[1,4622.763315000571,16.482119000516832],[1,4623.718649000861,17.437453000806272],[1,4624.788848000579,18.507652000524104],[1,4625.821016000584,0.944819999858737],[1,4626.8017840003595,1.9255879996344447],[1,4627.807423000224,2.9312269994989038],[1,4628.806987999938,3.9307919992133975],[1,4629.80670200102,4.930506000295281],[1,4630.62201000005,5.745813999325037],[1,4631.8588239997625,6.982627999037504],[1,4632.654644999653,7.77844899892807],[1,4633.633624000475,8.75742799974978],[1,4634.656056000851,9.779860000126064],[1,4635.8511990001425,10.975002999417484],[1,4636.803160999902,11.926964999176562],[1,4637.814155000262,12.937958999536932],[1,4638.729969999753,13.853773999027908],[1,4639.834228999913,14.958032999187708],[1,4640.685879999772,15.809683999046683],[1,4641.839452000335,16.963255999609828],[1,4642.619959999807,17.743763999082148],[1,4643.859368999489,18.98317299876362],[1,4644.643600000069,19.767403999343514],[1,4645.773451000452,0.8612550003454089],[1,4646.815740000457,1.9035440003499389],[1,4647.632357000373,2.720161000266671],[1,4648.678451000713,3.7662550006061792],[1,4649.830795000307,4.918599000200629],[1,4650.750858999789,5.838662999682128],[1,4651.6926130009815,6.780417000874877],[1,4652.841275000013,7.929078999906778],[1,4653.654791000299,8.742595000192523],[1,4654.794395999983,9.88219999987632],[1,4655.632919999771,10.720723999664187],[1,4656.7750610001385,11.862865000031888],[1,4657.811765000224,12.89956900011748],[1,4658.639810000546,13.727614000439644],[1,4659.848699999973,14.936503999866545],[1,4660.717636000365,15.805440000258386],[1,4661.835211000405,16.92301500029862],[1,4662.6658950010315,17.753699000924826],[1,4663.750254000537,18.838058000430465],[1,4664.837550001219,19.925354001112282],[1,4665.807033999823,0.8748379992321134],[1,4666.604853999801,1.6726579992100596],[1,4667.876375000924,2.9441790003329515],[1,4668.796217001043,3.8640210004523396],[1,4669.8143050009385,4.882109000347555],[1,4670.609769000672,5.6775730000808835],[1,4671.688254000619,6.756058000028133],[1,4672.823047000915,7.890851000323892],[1,4673.815830999985,8.883634999394417],[1,4674.79802600015,9.865829999558628],[1,4675.815407000482,10.883210999891162],[1,4676.775107000023,11.842910999432206],[1,4677.819698000327,12.887501999735832],[1,4678.625297999941,13.693101999349892],[1,4679.858497000299,14.926300999708474],[1,4680.711596000008,15.779399999417365],[1,4681.756776000373,16.824579999782145],[1,4682.754402000457,17.822205999866128],[1,4683.820351000875,18.888155000284314],[1,4684.674774000421,19.742577999830246],[1,4685.846295000054,1.0930989999324083],[1,4686.637171000242,1.8839750001206994],[1,4687.8498720005155,3.096676000393927],[1,4688.60397200007,3.8507759999483824],[1,4689.73947200086,4.986276000738144],[1,4690.829602000304,6.076406000182033],[1,4691.805326000787,7.052130000665784],[1,4692.810774999671,8.05757899954915],[1,4693.646906000562,8.893710000440478],[1,4694.647517000325,9.89432100020349],[1,4695.801820000634,11.048624000512064],[1,4696.807380001061,12.05418400093913],[1,4697.6581160007045,12.904920000582933],[1,4698.844255000353,14.091059000231326],[1,4699.623118000105,14.86992199998349],[1,4700.788159000687,16.034963000565767],[1,4701.785242000595,17.0320460004732],[1,4702.813110000454,18.059914000332355],[1,4703.8134350003675,19.06023900024593],[1,4704.814531000331,0.7503349995240569],[1,4705.807180000469,1.7429839996621013],[1,4706.824192999862,2.759996999055147],[1,4707.808083999902,3.7438879990950227],[1,4708.811023000628,4.746826999820769],[1,4709.721766000614,5.657569999806583],[1,4710.843806000426,6.779609999619424],[1,4711.8034860007465,7.739289999939501],[1,4712.812909000553,8.748712999746203],[1,4713.8114480003715,9.747251999564469],[1,4714.812215000391,10.74801899958402],[1,4715.810645001009,11.74644900020212],[1,4716.767634000629,12.7034379998222],[1,4717.642953000031,13.578756999224424],[1,4718.812908000313,14.748711999505758],[1,4719.81258400064,15.74838799983263],[1,4720.739771001041,16.67557500023395],[1,4721.620930999517,17.556734998710454],[1,4722.642368000001,18.578171999193728],[1,4723.877954000607,19.813757999800146],[531,4724.65189900063,20.587702999822795],[1,4725.844936000183,0.6997400000691414],[1,4726.613585000858,1.4683890007436275],[1,4727.7821710007265,2.6369750006124377],[1,4728.620912000537,3.4757160004228354],[1,4729.860101999715,4.714905999600887],[1,4730.8265760000795,5.681379999965429],[1,4731.648317000829,6.5031210007146],[1,4732.850891000591,7.705695000477135],[1,4733.801837000065,8.656640999950469],[1,4734.627062000334,9.48186600022018],[1,4735.695763000287,10.550567000173032],[1,4736.703866999596,11.558670999482274],[1,4737.8459540000185,12.700757999904454],[1,4738.826460000128,13.68126400001347],[1,4739.609068000689,14.463872000575066],[1,4740.861831000075,15.716634999960661],[1,4741.656241999939,16.511045999825],[1,4742.7333150003105,0.38911900017410517],[1,4743.830524000339,1.486328000202775],[1,4744.804853000678,2.460657000541687],[1,4745.613404000178,3.2692080000415444],[1,4746.745423000306,4.401227000169456],[1,4747.828482001089,5.484286000952125],[1,4748.807276000269,6.463080000132322],[1,4749.619649000466,7.275453000329435],[1,4750.859884999692,8.515688999556005],[1,4751.603229999542,9.259033999405801],[1,4752.860115000978,10.515919000841677],[1,4753.796049000695,11.451853000558913],[1,4754.733944000676,12.38974800053984],[1,4755.606580000371,13.262384000234306],[1,4756.760476999916,14.416280999779701],[1,4757.824556000531,15.480360000394285],[1,4758.793040000834,16.448844000697136],[1,4759.616760999896,17.272564999759197],[1,4760.854957000352,18.510761000216007],[1,4761.796974000521,0.6727780001237988],[1,4762.80970100034,1.6855049999430776],[1,4763.802551000379,2.6783549999818206],[1,4764.61090800073,3.4867120003327727],[1,4765.7431940007955,4.618998000398278],[1,4766.6242829998955,5.500086999498308],[1,4767.858676000498,6.73448000010103],[1,4768.799151000567,7.674955000169575],[1,4769.814970999956,8.690774999558926],[1,4770.8099840004,9.685788000002503],[1,4771.627371000126,10.503174999728799],[1,4772.608375000767,11.484179000370204],[1,4773.66597900074,12.541783000342548],[1,4774.813963000663,13.68976700026542],[1,4775.741768999957,14.617572999559343],[1,4776.833417000249,15.709220999851823],[1,4777.781614000909,16.657418000511825],[1,4778.818921000697,17.694725000299513],[1,4779.620995000005,18.496798999607563],[1,4780.746823000722,19.622627000324428],[1,4781.827856000513,1.0006600003689528],[1,4782.615846000612,1.7886500004678965],[1,4783.734655000269,2.9074590001255274],[1,4784.830858000554,4.003662000410259],[1,4785.807072000578,4.97987600043416],[1,4786.604058000259,5.776862000115216],[1,4787.863301000558,7.036105000413954],[1,4788.802427000366,7.975231000222266],[1,4789.813529999927,8.9863339997828],[1,4790.695495000109,9.86829899996519],[1,4791.658400000073,10.83120399992913],[1,4792.803136999719,11.97594099957496],[1,4793.816180000082,12.988983999937773],[1,4794.675963000394,13.848767000250518],[1,4795.685703000054,14.858506999909878],[1,4796.848382000811,16.021186000667512],[1,4797.640762000345,16.813566000200808],[1,4798.854973999783,18.02777799963951],[1,4799.654401000589,18.827205000445247],[1,4800.813622000627,19.986426000483334],[1,4801.645660000853,0.7694640001282096],[1,4802.621203000657,1.7450069999322295],[1,4803.662379000336,2.786182999610901],[1,4804.8297090008855,3.9535130001604557],[1,4805.802539000288,4.926342999562621],[1,4806.809963000007,5.933766999281943],[1,4807.807711000554,6.931514999829233],[1,4808.612145000137,7.735948999412358],[1,4809.652030000463,8.775833999738097],[1,4810.784998999909,9.908802999183536],[1,4811.819862999953,10.943666999228299],[1,4812.614750000648,11.73855399992317],[1,4813.855729000643,12.979532999917865],[1,4814.797906000167,13.9217099994421],[1,4815.81027100049,14.934074999764562],[1,4816.8074219999835,15.931225999258459],[1,4817.611353000626,16.735156999900937],[1,4818.719694000669,1.032498000189662],[1,4819.831184000708,2.143988000229001],[1,4820.800812000409,3.113615999929607],[1,4821.643951999955,3.9567559994757175],[1,4822.69298500102,5.005789000540972],[1,4823.842846000567,6.155650000087917],[1,4824.658770999871,6.971574999392033],[1,4825.675693000667,7.988497000187635],[1,4826.68084000051,8.993644000031054],[1,4827.824044000357,10.136847999878228],[1,4828.819950000383,11.132753999903798],[1,4829.675928000361,11.988731999881566],[1,4830.680085999891,12.992889999412],[1,4831.823623999953,14.136427999474108],[1,4832.714398000389,15.027201999910176],[1,4833.716165000573,16.02896900009364],[1,4834.65384399984,16.966647999361157],[1,4835.684709000401,0.45951300021260977],[1,4836.706929001026,1.4817330008372664],[1,4837.768359000795,2.5431630006060004],[1,4838.805948000401,3.5807520002126694],[1,4839.617757000029,4.392560999840498],[1,4840.772776999511,5.547580999322236],[1,4841.809234000742,6.584038000553846],[1,4842.813668999821,7.5884729996323586],[1,4843.72278700117,8.497591000981629],[1,4844.833211000077,9.608014999888837],[1,4845.791420999914,10.566224999725819],[1,4846.628835000098,11.403638999909163],[1,4847.641494000331,12.416298000141978],[1,4848.791751000099,13.566554999910295],[1,4849.611717000604,14.386521000415087],[1,4850.645182000473,15.419986000284553],[1,4851.722091999836,16.496895999647677],[1,4852.8211650000885,17.595968999899924],[1,4853.792206000537,18.56701000034809],[1,4854.61331700068,19.388121000491083],[1,4855.846068000421,0.6648719999939203],[1,4856.799578000791,1.6183820003643632],[1,4857.690739000216,2.5095429997891188],[1,4858.648240000941,3.4670440005138516],[1,4859.846718000248,4.665521999821067],[1,4860.737050000578,5.555854000151157],[1,4861.827147000469,6.64595100004226],[1,4862.608851999976,7.427655999548733],[1,4863.806248000823,8.625052000395954],[1,4864.815355000086,9.634158999659121],[1,4865.805214000866,10.62401800043881],[1,4866.813874000683,11.63267800025642],[1,4867.683496000245,12.502299999818206],[1,4868.837849999778,13.656653999350965],[1,4869.706015001051,14.52481900062412],[1,4870.841152000241,15.659955999813974],[1,4871.6082680001855,16.427071999758482],[1,4872.768895000219,17.587698999792337],[1,4873.725107000209,18.543910999782383],[1,4874.833060000092,19.651863999664783],[1,4875.611417000182,0.6992210000753403],[1,4876.615229000337,1.7030330002307892],[1,4877.729739001021,2.8175430009141564],[1,4878.829402000643,3.91720600053668],[1,4879.76938000042,4.857184000313282],[1,4880.821717000566,5.90952100045979],[1,4881.685186000541,6.77299000043422],[1,4882.838694000617,7.926498000510037],[1,4883.731108999811,8.81891299970448],[1,4884.614149000496,9.70195300038904],[1,4885.758734000847,10.84653800074011],[1,4886.616263000295,11.704067000187933],[1,4887.766843000427,12.854647000320256],[1,4888.812737000175,13.900541000068188],[1,4889.812928000465,14.900732000358403],[1,4890.810089000501,15.897893000394106],[1,4891.812288000248,16.90009200014174],[1,4892.649357000366,17.73716100025922],[1,4893.7307170005515,18.81852100044489],[1,4894.603329000063,19.691132999956608],[1,4895.753771000542,0.8075750004500151],[1,4896.704682000913,1.7584860008209944],[1,4897.718507000245,2.7723110001534224],[1,4898.831465000287,3.885269000194967],[1,4899.620025000535,4.67382900044322],[1,4900.853668000549,5.907472000457346],[1,4901.622755000368,6.676559000276029],[1,4902.762882000767,7.816686000674963],[1,4903.622532000765,8.676336000673473],[1,4904.859128000215,9.912932000122964],[1,4905.80015300028,10.85395700018853],[1,4906.610976000316,11.66478000022471],[1,4907.663998000324,12.71780200023204],[1,4908.793793000281,13.847597000189126],[1,4909.813408999704,14.867212999612093],[1,4910.805692000315,15.859496000222862],[1,4911.807928000577,16.861732000485063],[1,4912.621085000224,17.67488900013268],[1,4913.769913000986,18.82371700089425],[1,4914.822595000267,19.876399000175297],[1,4915.807707999833,0.8905119998380542],[1,4916.664015000686,1.7468190006911755],[1,4917.820381999947,2.9031859999522567],[1,4918.804674000479,3.887478000484407],[1,4919.808338999748,4.891142999753356],[1,4920.806697000749,5.889501000754535],[1,4921.614723000675,6.697527000680566],[1,4922.678415000439,7.761219000443816],[1,4923.8196060005575,8.902410000562668],[1,4924.704317000695,9.787121000699699],[1,4925.7205640003085,10.80336800031364],[1,4926.83872900065,11.921533000655472],[534,4927.696771000512,12.77957500051707],[1,4928.670512000099,13.75331600010395],[1,4929.846374999732,14.929178999736905],[1,4930.659588000737,15.742392000742257],[1,4931.808693001047,16.891497001051903],[1,4932.808012000285,0.9338159998878837],[1,4933.8124519996345,1.938255999237299],[1,4934.807449000888,2.9332530004903674],[1,4935.711091999896,3.8368959994986653],[1,4936.8236380005255,4.949442000128329],[1,4937.72279200051,5.848596000112593],[1,4938.834923000075,6.960726999677718],[1,4939.801670000888,7.927474000491202],[1,4940.679791000672,8.80559500027448],[1,4941.633953000419,9.759757000021636],[1,4942.842539999634,10.968343999236822],[1,4943.650089999661,11.775893999263644],[1,4944.797725000419,12.923529000021517],[1,4945.804461000487,13.930265000090003],[1,4946.813514000736,14.939318000338972],[1,4947.649700000882,15.775504000484943],[1,4948.792508000508,16.918312000110745],[1,4949.822709000669,17.948513000272214],[1,4950.608372000977,18.73417600058019],[1,4951.8606860004365,19.98649000003934],[1,4952.799934000708,0.8287380002439022],[1,4953.742020000704,1.7708240002393723],[1,4954.827657000162,2.856460999697447],[1,4955.630919000134,3.6597229996696115],[1,4956.683489000425,4.712292999960482],[1,4957.834731000476,5.863535000011325],[1,4958.673860000446,6.702663999982178],[1,4959.660357000306,7.689160999841988],[1,4960.8333570007235,8.86216100025922],[1,4961.789261000231,9.818064999766648],[1,4962.800055,10.828858999535441],[1,4963.796808999963,11.825612999498844],[1,4964.647214000113,12.676017999649048],[1,4965.66164700035,13.690450999885798],[1,4966.806443000212,14.835246999748051],[1,4967.799492000602,15.828296000137925],[539,4968.799627000466,16.82843100000173],[1,4969.799453999847,17.828257999382913],[1,4970.810616999865,18.839420999400318],[1,4971.761349000037,0.38115299958735704],[1,4972.713379000314,1.3331829998642206],[1,4973.63791600056,2.2577200001105666],[1,4974.619655000046,3.239458999596536],[1,4975.822331000119,4.442134999670088],[1,4976.803203000687,5.423007000237703],[1,4977.658899000846,6.27870300039649],[1,4978.6818110002205,7.301614999771118],[1,4979.756694000214,8.376497999764979],[1,4980.816763999872,9.43656799942255],[1,4981.800639000721,10.420443000271916],[539,4982.76975900121,11.389563000760972],[1,4983.780550000258,12.40035399980843],[1,4984.763146000914,13.382950000464916],[1,4985.807673000731,14.427477000281215],[1,4986.684336000122,15.30413999967277],[1,4987.71720000077,16.33700400032103],[1,4988.80736900121,17.427173000760376],[1,4989.8116750000045,18.43147899955511],[1,4990.810444000177,19.430247999727726],[1,4991.810457000509,0.7112610004842281],[1,4992.659813000821,1.5606170007959008],[1,4993.811137000099,2.711941000074148],[1,4994.795363000594,3.696167000569403],[1,4995.708260000683,4.609064000658691],[1,4996.836265000515,5.73706900049001],[1,4997.618432000279,6.51923600025475],[1,4998.773398000747,7.674202000722289],[1,4999.63222300075,8.53302700072527],[1,5000.711788000539,9.612592000514269],[1,5001.6359280003235,10.536732000298798],[1,5002.806885000318,11.707689000293612],[1,5003.729540999979,12.630344999954104],[1,5004.827778999694,13.728582999669015],[1,5005.793422000483,14.694226000458002],[1,5006.702668000944,15.603472000919282],[1,5007.830926001072,16.731730001047254],[1,5008.769256000407,17.670060000382364],[1,5009.818189000711,18.71899300068617],[2,5010.807810000144,0.00861399993300438],[1,5011.806142999791,1.006946999579668],[1,5012.807064000517,2.007868000306189],[1,5013.808279001154,3.0090830009430647],[1,5014.727002999745,3.9278069995343685],[1,5015.7280780002475,4.928882000036538],[1,5016.831925000995,6.032729000784457],[1,5017.6783929998055,6.879196999594569],[1,5018.744612000883,7.945416000671685],[1,5019.8232480008155,9.02405200060457],[1,5020.809203000739,10.010007000528276],[1,5021.743603000417,10.94440700020641],[1,5022.653010000475,11.85381400026381],[1,5023.619670000859,12.820474000647664],[1,5024.753209000453,13.954013000242412],[1,5025.8218310000375,15.02263499982655],[1,5026.616990000941,15.817794000729918],[1,5027.797507000156,16.998310999944806],[1,5028.812822000124,18.01362599991262],[1,5029.805363000371,19.00616700015962],[1,5030.7568960003555,0.42769999988377094],[1,5031.820871000178,1.4916749997064471],[1,5032.643227000721,2.314031000249088],[1,5033.679450999945,3.350254999473691],[1,5034.688078001142,4.358882000669837],[1,5035.819171000272,5.489974999800324],[1,5036.725937999785,6.396741999313235],[1,5037.833480999805,7.504284999333322],[1,5038.714101000689,8.384905000217259],[1,5039.8347830008715,9.505587000399828],[1,5040.613175000064,10.283978999592364],[1,5041.842124000192,11.512927999719977],[1,5042.609519000165,12.280322999693453],[1,5043.746849000454,13.417652999982238],[1,5044.701505000703,14.372309000231326],[1,5045.841617000289,15.51242099981755],[1,5046.805033000186,16.475836999714375],[1,5047.657276000828,17.32808000035584],[1,5048.711647000164,18.382450999692082],[1,5049.835835999809,19.506639999337494],[1,5050.632732001133,0.6825360003858805],[542,5051.638144000433,1.6879479996860027],[1,5052.851453999989,2.901257999241352],[1,5053.683070000261,3.7328739995136857],[1,5054.689256999642,4.739060998894274],[1,5055.757182000205,5.806985999457538],[1,5056.820085000247,6.869888999499381],[1,5057.801120000891,7.850924000144005],[1,5058.812984000891,8.862788000144064],[1,5059.765077000484,9.814880999736488],[1,5060.823991000652,10.87379499990493],[1,5061.805105000734,11.854908999986947],[1,5062.813639000058,12.863442999310791],[1,5063.8101220000535,13.859925999306142],[1,5064.766860000789,14.816664000041783],[1,5065.831849000417,15.881652999669313],[1,5066.806602000259,16.85640599951148],[1,5067.811196000315,17.860999999567866],[1,5068.736156000756,18.785960000008345],[1,5069.832468000241,0.2802719995379448],[1,5070.605507999659,1.0533119989559054],[1,5071.6689059995115,2.116709998808801],[1,5072.693216000684,3.1410199999809265],[1,5073.830242999829,4.278046999126673],[1,5074.725828000344,5.173631999641657],[1,5075.834749000147,6.282552999444306],[1,5076.635153000243,7.082956999540329],[1,5077.858831000514,8.30663499981165],[1,5078.800541000441,9.248344999738038],[1,5079.6855650004,10.133368999697268],[1,5080.832674000412,11.280477999709547],[1,5081.7936239996925,12.24142799898982],[1,5082.628509000875,13.076313000172377],[1,5083.751232000068,14.199035999365151],[1,5084.743792000227,15.191595999523997],[1,5085.671026000753,16.118830000050366],[1,5086.846071001142,17.293875000439584],[1,5087.604969999753,18.05277399905026],[1,5088.704792000353,19.152595999650657],[1,5089.851383000612,0.500187000259757],[1,5090.6766849998385,1.3254889994859695],[1,5091.845015000552,2.493819000199437],[1,5092.734716000035,3.3835199996829033],[1,5093.8311580000445,4.479961999692023],[1,5094.8077509999275,5.456554999575019],[1,5095.812404001132,6.461208000779152],[1,5096.677246999927,7.326050999574363],[1,5097.847497000359,8.496301000006497],[1,5098.645289000124,9.294092999771237],[1,5099.844549000263,10.493352999910712],[1,5100.669604000635,11.318408000282943],[1,5101.777391000651,12.426195000298321],[1,5102.626912000589,13.27571600023657],[1,5103.857805000618,14.506609000265598],[1,5104.800706000999,15.449510000646114],[1,5105.814271001145,16.46307500079274],[1,5106.6773750009015,17.32617900054902],[1,5107.844774000347,18.49357799999416],[1,5108.693754000589,19.34255800023675],[1,5109.621686000377,0.8564900001510978],[1,5110.728551000357,1.9633550001308322],[1,5111.747759000398,2.9825630001723766],[1,5112.828627999872,4.063431999646127],[1,5113.806685999967,5.041489999741316],[1,5114.845091000199,6.079894999973476],[1,5115.8033730005845,7.038177000358701],[1,5116.813557000831,8.048361000604928],[1,5117.642329000868,8.877133000642061],[1,5118.612136000767,9.846940000541508],[1,5119.851254999638,11.086058999411762],[1,5120.758808000945,11.993612000718713],[1,5121.701360000297,12.936164000071585],[1,5122.815426000394,14.050230000168085],[1,5123.825728000142,15.060531999915838],[1,5124.797321000136,16.032124999910593],[1,5125.77150300052,17.006307000294328],[550,5126.823991999961,18.058795999735594],[564,5127.804693000391,19.039497000165284],[572,5128.6370949996635,19.87189899943769],[577,5129.729058999568,20.963862999342382],[589,5130.660505000502,21.89530900027603],[592,5131.829939999618,23.064743999391794],[593,5132.741136000492,23.975940000265837],[613,5133.812886000611,25.047690000385046],[623,5134.61670999974,25.85151399951428],[628,5135.605264000595,26.840068000368774],[533,5136.860751000233,28.095555000007153],[638,5137.779627000913,29.014431000687182],[1,5138.79832999967,0.2961339997127652],[1,5139.811720999889,1.3095249999314547],[640,5140.7975690010935,2.2953730011358857],[643,5141.811296000145,3.3091000001877546],[646,5142.807315000333,4.305119000375271],[646,5143.645142000169,5.142946000210941],[646,5144.800602000207,6.298406000249088],[646,5145.805607999675,7.303411999717355],[646,5146.62037200015,8.118176000192761],[646,5147.856785001233,9.354589001275599],[1,5148.795351999812,10.293155999854207],[1,5149.632346000522,11.130150000564754],[1,5150.744353001006,12.242157001048326],[1,5151.702770000324,13.200574000366032],[2,5152.822165000252,14.319969000294805],[2,5153.625148000196,15.122952000238001],[2,5154.6253909999505,16.123194999992847],[2,5155.631757000461,17.1295610005036],[1,5156.847451000474,18.345255000516772],[2,5157.691279999912,19.189083999954164],[2,5158.648397999816,20.14620199985802],[2,5159.615807999857,0.8456119997426867],[2,5160.612297999673,1.8421019995585084],[2,5161.770324001089,3.000128000974655],[2,5162.654854000546,3.884658000431955],[2,5163.640641001053,4.870445000939071],[2,5164.737215000205,5.967019000090659],[2,5165.6927900006995,6.922594000585377],[2,5166.852632000111,8.08243599999696],[2,5167.799495000392,9.029299000278115],[655,5168.812999000773,10.04280300065875],[658,5169.807222999632,11.037026999518275],[658,5170.807955999859,12.037759999744594],[658,5171.807846000418,13.037650000303984],[658,5172.809712000191,14.039516000077128],[658,5173.804731000215,15.034535000100732],[658,5174.805665000342,16.03546900022775],[658,5175.795708999969,17.025512999854982],[658,5176.809838000685,18.039642000570893],[658,5177.794003000483,19.023807000368834],[658,5178.77709500026,20.006899000145495],[658,5179.811038999818,21.040842999704182],[658,5180.783356000669,22.013160000555217],[658,5181.826561000198,23.056365000084043],[658,5182.788906000555,24.01871000044048],[658,5183.810260000639,25.04006400052458],[658,5184.81471700035,26.044521000236273],[658,5185.795857001096,27.025661000981927],[658,5186.806822000071,28.036625999957323],[658,5187.805371999741,29.035175999626517],[658,5188.811781000346,30.041585000231862],[658,5189.805294000544,31.03509800042957],[658,5190.8086430002,32.03844700008631],[658,5191.8037540009245,33.033558000810444],[658,5192.799375999719,34.02917999960482],[658,5193.822372999974,35.05217699985951],[658,5194.799695000052,36.02949899993837],[658,5195.817859000526,37.047663000412285],[658,5196.794689000584,38.0244930004701],[658,5197.809390000999,39.03919400088489],[658,5198.807370000519,40.037174000404775],[658,5199.807251000777,41.037055000662804],[658,5200.704384000041,41.93418799992651],[658,5201.819057000801,43.048861000686884],[658,5202.790940000676,44.020744000561535],[658,5203.815293001011,45.04509700089693],[658,5204.807448000647,46.037252000533044],[658,5205.809132000431,47.038936000317335],[658,5206.796551999636,48.02635599952191],[658,5207.810628000647,49.040432000532746],[658,5208.794685000554,50.024489000439644],[658,5209.811595000327,51.04139900021255],[658,5210.738214000128,51.968018000014126],[658,5211.836152999662,53.06595699954778],[658,5212.8015570007265,54.03136100061238],[658,5213.808334999718,55.03813899960369],[658,5214.63318700064,55.86299100052565],[658,5215.861378000118,57.091182000003755],[658,5216.798541000113,58.02834499999881],[658,5217.811192000285,59.04099600017071],[658,5218.808215000667,60.038019000552595],[658,5219.80940800067,61.03921200055629],[658,5220.808391000144,62.0381950000301],[658,5221.797574000433,63.027378000319004],[658,5222.812606001273,64.04241000115871],[658,5223.815460000187,65.04526400007308],[658,5224.661044999957,65.890848999843],[658,5225.839781000279,67.0695850001648],[658,5226.690856999718,67.92066099960357],[658,5227.833737000823,69.06354100070894],[658,5228.655294000171,69.88509800005704],[658,5229.644712001085,70.8745160009712],[658,5230.848235000856,72.07803900074214],[660,5231.785089000128,73.01489300001413],[663,5232.803180000745,74.03298400063068],[661,5233.6587330000475,74.88853699993342],[664,5234.846284000203,76.07608800008893],[668,5235.661612000316,76.8914160002023],[669,5236.831509999931,78.06131399981678],[669,5237.801769000478,79.031573000364],[669,5238.700106999837,79.92991099972278],[670,5239.836626000702,81.0664300005883],[671,5240.7896440001205,82.01944800000638],[674,5241.706464000046,82.93626799993217],[682,5242.822871000506,84.0526750003919],[685,5243.804828000255,85.03463200014085],[688,5244.80111000035,86.0309140002355],[693,5245.810764000751,87.040568000637],[695,5246.806824999861,88.03662899974734],[698,5247.796086000279,89.02589000016451],[700,5248.786971000023,90.0167749999091],[704,5249.644059000537,90.87386300042272],[706,5250.6921300003305,91.92193400021642],[707,5251.617482000031,92.8472859999165],[711,5252.6866750000045,93.91647899989039],[712,5253.749299000017,94.97910299990326],[713,5254.8294440004975,96.05924800038338],[683,5255.8029220011085,97.03272600099444],[714,5256.797508000396,98.02731200028211],[716,5257.797039000317,99.02684300020337],[705,5258.794367000461,100.02417100034654],[712,5259.810291000642,101.0400950005278],[718,5260.805576000363,102.03538000024855],[719,5261.807522000745,103.03732600063086],[722,5262.660081000999,103.88988500088453],[722,5263.742167000659,104.97197100054473],[723,5264.820095000789,106.04989900067449],[724,5265.660166000016,106.88996999990195],[728,5266.616871000268,107.84667500015348],[728,5267.856393000111,109.0861969999969],[683,5268.792805000208,110.02260900009423],[723,5269.802382000722,111.03218600060791],[730,5270.807777000591,112.03758100047708],[731,5271.792682000436,113.0224860003218],[733,5272.795435000211,114.02523900009692],[734,5273.757301000878,114.98710500076413],[737,5274.761843000539,115.99164700042456],[739,5275.816021000966,117.04582500085235],[742,5276.803878000006,118.033681999892],[683,5277.8089669998735,119.03877099975944],[745,5278.815034000203,120.04483800008893],[747,5279.806552000344,121.03635600022972],[749,5280.806835000403,122.03663900028914],[751,5281.791551000439,123.02135500032455],[752,5282.797673000023,124.02747699990869],[756,5283.672748000361,124.90255200024694],[757,5284.828075000085,126.05787899997085],[758,5285.803172000684,127.03297600056976],[761,5286.607923001051,127.83772700093687],[762,5287.855885000899,129.08568900078535],[764,5288.788538000546,130.0183420004323],[756,5289.813832000829,131.0436360007152],[766,5290.796374000609,132.02617800049484],[766,5291.809644000605,133.03944800049067],[766,5292.805579001084,134.0353830009699],[766,5293.68816600088,134.91797000076622],[766,5294.8309890003875,136.0607930002734],[766,5295.7999660000205,137.02976999990642],[766,5296.8080130005255,138.03781700041145],[766,5297.804074000567,139.03387800045311],[766,5298.794859999791,140.0246639996767],[769,5299.799422999844,141.02922699972987],[770,5300.60532100033,141.83512500021607],[771,5301.846668999642,143.07647299952805],[756,5302.784127000719,144.01393100060523],[772,5303.604721000418,144.83452500030398],[774,5304.729359000921,145.95916300080717],[776,5305.824953000061,147.05475699994713],[778,5306.802618000656,148.03242200054228],[780,5307.797971000895,149.02777500078082],[782,5308.809589000419,150.0393930003047],[783,5309.800845000893,151.0306490007788],[780,5310.808105999604,152.03790999948978],[784,5311.799986000173,153.0297900000587],[786,5312.641213000752,153.87101700063795],[762,5313.797852001153,155.02765600103885],[789,5314.810225999914,156.04002999980003],[790,5315.8073000004515,157.03710400033742],[793,5316.806533000432,158.03633700031787],[797,5317.809736000374,159.03954000025988],[784,5318.876842000522,160.10664600040764],[771,5319.790671000257,161.02047500014305],[762,5320.800815000199,162.0306190000847],[798,5321.797797000967,163.02760100085288],[760,5322.807374000549,164.03717800043523],[800,5323.7953780004755,165.02518200036138],[798,5324.800887000747,166.03069100063294],[801,5325.80699500069,167.03679900057614],[771,5326.807737000287,168.0375410001725],[802,5327.807296000421,169.03710000030696],[764,5328.793168000877,170.02297200076282],[804,5329.713433000259,170.94323700014502],[805,5330.61641000025,171.84621400013566],[808,5331.770581999794,173.00038599967957],[780,5332.815415000543,174.04521900042892],[799,5333.799069999717,175.0288739996031],[799,5334.805496000685,176.03530000057071],[765,5335.8178430004045,177.04764700029045],[769,5336.802675000392,178.03247900027782],[756,5337.816241000779,179.0460450006649],[780,5338.662504000589,179.89230800047517],[809,5339.830450000241,181.06025400012732],[812,5340.800747999921,182.03055199980736],[813,5341.802423000336,183.0322270002216],[816,5342.804026000202,184.03383000008762],[762,5343.690903999843,184.92070799972862],[758,5344.837907999754,186.06771199963987],[812,5345.7884690007195,187.0182730006054],[817,5346.667837000452,187.8976410003379],[821,5347.7501880005,188.97999200038612],[758,5348.831156999804,190.06096099969],[824,5349.786705000326,191.01650900021195],[799,5350.802312000655,192.03211600054055],[784,5351.737820000388,192.96762400027364],[780,5352.8206120003015,194.0504160001874],[760,5353.789774000645,195.0195780005306],[792,5354.800445000641,196.03024900052696],[792,5355.90865300037,197.13845700025558],[805,5356.652895000763,197.88269900064915],[758,5357.676504001021,198.9063080009073],[763,5358.838275000453,200.0680790003389],[831,5359.799506001174,201.02931000106037],[843,5360.808107000776,202.03791100066155],[848,5361.791864000261,203.02166800014675],[834,5362.796119000763,204.02592300064862],[855,5363.626418000087,204.85622199997306],[863,5364.844708999619,206.0745129995048],[864,5365.71517000068,206.9449740005657],[864,5366.818289000541,208.0480930004269],[865,5367.791211000644,209.0210150005296],[867,5368.706100000069,209.93590399995446],[868,5369.816924000159,211.04672800004482],[868,5370.776797000319,212.00660100020468],[869,5371.80525000114,213.03505400102586],[872,5372.796602000482,214.0264060003683],[873,5373.80960300006,215.03940699994564],[874,5374.798516000621,216.02832000050694],[871,5375.7979150004685,217.0277190003544],[872,5376.793243000284,218.02304700016975],[876,5377.807407000102,219.03721099998802],[872,5378.671593000181,219.90139700006694],[878,5379.804339000955,221.03414300084114],[878,5380.64225500077,221.872059000656],[878,5381.817141000181,223.04694500006735],[878,5382.791493000463,224.02129700034857],[878,5383.66502100043,224.8948250003159],[878,5384.833610000089,226.06341399997473],[879,5385.789028000087,227.01883199997246],[881,5386.796819999814,228.02662399969995],[885,5387.796247000806,229.02605100069195],[887,5388.702328000218,229.9321320001036],[889,5389.6256390009075,230.85544300079346],[891,5390.799426999874,232.02923099976033],[893,5391.768375000916,232.99817900080234],[904,5392.818682000041,234.04848599992692],[914,5393.80556199979,235.0353659996763],[917,5394.805796000175,236.0356000000611],[922,5395.806007000618,237.0358110005036],[927,5396.702666000463,237.93247000034899],[934,5397.833417000249,239.06322100013494],[935,5398.800913000479,240.03071700036526],[944,5399.7834510002285,241.01325500011444],[967,5400.685416000895,241.91522000078112],[972,5401.813194000162,243.0429980000481],[987,5402.806132000871,244.03593600075692],[990,5403.79802700039,245.0278310002759],[1000,5404.616323000751,245.84612700063735],[1031,5405.706326999702,246.93613099958748],[1043,5406.829199000262,248.05900300014764],[1050,5407.784388000146,249.01419200003147],[1053,5408.808158,250.03796199988574],[1054,5409.7335970001295,250.96340100001544],[1061,5410.820940000005,252.05074399989098],[1062,5411.790460000746,253.02026400063187],[1063,5412.813165999949,254.0429699998349],[1065,5413.663892000914,254.89369600079954],[1067,5414.826884999871,256.05668899975717],[1069,5415.789002000354,257.01880600024015],[1067,5416.686404000968,257.91620800085366],[1070,5417.838453000411,259.0682570002973],[1064,5418.805718000978,260.03552200086415],[1064,5419.812768000178,261.04257200006396],[1071,5420.801959000528,262.0317630004138],[1071,5421.791168000549,263.020972000435],[1072,5422.625533000566,263.855337000452],[1074,5423.686583001167,264.9163870010525],[1064,5424.724166000262,265.9539700001478],[1080,5425.823528000154,267.0533320000395],[1091,5426.620668000542,267.85047200042754],[1072,5427.8526770006865,269.08248100057244],[1071,5428.786438000388,270.01624200027436],[1068,5429.605640000664,270.8354440005496],[1068,5430.617937000468,271.8477410003543],[1071,5431.754205000587,272.9840090004727],[1092,5432.639549000189,273.8693530000746],[1068,5433.645876000635,274.87568000052124],[1100,5434.715215000324,275.94501900020987],[1100,5435.684000000358,276.91380400024354],[1102,5436.709608000703,277.9394120005891],[1071,5437.764398000203,278.994202000089],[1071,5438.816100999713,280.04590499959886],[1068,5439.804031999782,281.03383599966764],[1107,5440.796848000027,282.02665199991316],[1066,5441.797334999777,283.0271389996633],[1109,5442.627013999969,283.8568179998547],[1116,5443.633748000488,284.8635520003736],[1118,5444.81046800036,286.04027200024575],[1124,5445.806623999961,287.03642799984664],[1127,5446.808008999564,288.03781299944967],[1127,5447.804670000449,289.03447400033474],[1131,5448.796327000484,290.0261310003698],[1139,5449.812899000943,291.0427030008286],[1197,5450.806135000661,292.03593900054693],[1295,5451.7909040004015,293.0207080002874],[1318,5452.802330001257,294.0321340011433],[1320,5453.646947000176,294.87675100006163],[1425,5454.698076999746,295.9278809996322],[1134,5455.811270999722,297.0410749996081],[1434,5456.807896000333,298.03770000021905],[1443,5457.725083000958,298.9548870008439],[1448,5458.813716000877,300.04352000076324],[1456,5459.636320000514,300.8661240004003],[1468,5460.848157000728,302.07796100061387],[1474,5461.796849000268,303.0266530001536],[1478,5462.6330540003255,303.8628580002114],[1501,5463.747012000531,304.9768160004169],[1507,5464.810773000121,306.04057700000703],[1518,5465.805620000698,307.0354240005836],[1526,5466.794642999768,308.0244469996542],[1528,5467.818734999746,309.048538999632],[1529,5468.8057199995965,310.0355239994824],[1536,5469.806654999964,311.03645899984986],[1537,5470.808121000417,312.0379250003025],[1544,5471.800888000056,313.03069199994206],[1537,5472.743838000111,313.9736419999972],[1546,5473.694578000344,314.92438200023025],[1519,5474.6640689997,315.89387299958616],[1548,5475.848870000802,317.0786740006879],[1551,5476.793546000496,318.02335000038147],[1555,5477.810118000023,319.039921999909],[849,5478.797715000808,320.02751900069416],[1567,5479.609913000837,320.8397170007229],[1579,5480.7773210005835,322.0071250004694],[1599,5481.813291999511,323.04309599939734],[1603,5482.805709000677,324.0355130005628],[1613,5483.6357070002705,324.8655110001564],[1623,5484.760922000743,325.99072600062937],[1642,5485.818355000578,327.0481590004638],[1643,5486.801765000448,328.03156900033355],[1654,5487.647621000186,328.8774250000715],[1659,5488.75307200104,329.9828760009259],[1664,5490.800080999732,332.02988499961793],[1664,5490.839285000227,332.0690890001133],[1669,5491.884472000413,333.11427600029856],[1670,5492.960041999817,334.1898459997028],[1670,5493.906319000758,335.13612300064415],[1670,5494.944256000221,336.1740600001067],[1670,5495.881888999604,337.1116929994896],[1670,5496.867770000361,338.0975740002468],[1670,5497.917254000902,339.1470580007881],[1670,5499.038208999671,340.26801299955696],[1670,5499.8920520003885,341.1218560002744],[1670,5501.03057499975,342.2603789996356],[1670,5502.001458999701,343.23126299958676],[1670,5503.076612000354,344.30641600023955],[1670,5503.919805000536,345.14960900042206],[1670,5504.883873000741,346.1136770006269],[1670,5505.911021000706,347.1408250005916],[1670,5506.874072000384,348.10387600027025],[1670,5508.0008160006255,349.2306200005114],[1670,5509.060414999723,350.29021899960935],[1670,5509.905267000198,351.1350710000843],[1670,5510.9541739998385,352.18397799972445],[1670,5511.890433000401,353.1202370002866],[1670,5513.0780739998445,354.3078779997304],[1670,5513.901432000101,355.13123599998653],[1670,5515.107303000055,356.33710699994117],[1670,5515.852024000138,357.08182800002396],[1670,5516.954031000845,358.18383500073105],[1670,5517.953847000375,359.1836510002613],[1670,5518.847547000274,360.07735100016],[1670,5520.007880000398,361.2376840002835],[1670,5520.850937999785,362.08074199967086],[1670,5521.8663150006905,363.09611900057644],[1670,5522.845172000118,364.0749760000035],[1670,5524.101424000226,365.3312280001119],[1670,5525.008937000297,366.2387410001829],[1670,5526.058881999925,367.2886859998107],[1670,5527.045509000309,368.2753130001947],[1670,5528.062728000805,369.2925320006907],[1670,5529.057940000668,370.2877440005541],[1670,5530.03337499965,371.26317899953574],[1670,5530.9985500006005,372.22835400048643],[1670,5532.0612240005285,373.29102800041437],[1670,5533.045659000054,374.2754629999399],[1670,5534.078696999699,375.3085009995848],[1670,5535.155787000433,376.3855910003185],[1670,5536.052332000807,377.28213600069284],[1670,5537.070518000051,378.3003219999373],[1670,5538.040562001057,379.2703660009429],[1670,5538.951529000886,380.1813330007717],[1670,5540.07310300041,381.3029070002958],[1670,5541.04127200041,382.2710760002956],[1670,5541.863745000213,383.0935490000993],[1670,5543.091602000408,384.3214060002938],[1670,5544.023658000864,385.25346200075],[1670,5545.059269000776,386.28907300066203],[1670,5546.046327000484,387.2761310003698],[1670,5547.049989000894,388.27979300078005],[1670,5548.048569000326,389.278373000212],[1670,5549.050079000182,390.27988300006837],[1670,5550.05140200071,391.2812060005963],[1670,5550.85483400058,392.08463800046593],[1670,5552.079976000823,393.309780000709],[1670,5553.098303000443,394.3281070003286],[1670,5554.024441000074,395.25424499996006],[1670,5555.053689000197,396.2834930000827],[1670,5556.0484650004655,397.27826900035143],[1670,5556.958862000145,398.18866600003093],[1670,5558.058328000829,399.28813200071454],[1670,5559.047132000327,400.276936000213],[1670,5559.8533490002155,401.08315300010145],[1670,5560.996163000353,402.2259670002386],[1670,5562.518231000751,403.7480350006372],[1670,5562.907057000324,404.13686100021005],[1670,5564.083992000669,405.31379600055516],[1670,5564.9929760005325,406.2227800004184],[1670,5567.810922999866,409.0407269997522],[1670,5567.863545000553,409.09334900043905],[1670,5571.371694000438,412.6014980003238],[1670,5571.410115000792,412.63991900067776],[1670,5572.479899999686,413.7097039995715],[1670,5573.641219000332,414.871023000218],[1670,5574.617309000343,415.847113000229],[1670,5575.617035000585,416.84683900047094],[1670,5576.611260000616,417.84106400050223],[1670,5577.6080990005285,418.83790300041437],[1670,5578.610164999962,419.83996899984777],[1670,5579.622677001171,420.85248100105673],[1670,5580.596049999818,421.8258539997041],[1670,5581.61119800061,422.8410020004958],[1670,5582.527439001016,423.75724300090224],[1670,5585.07339400053,426.30319800041616],[1670,5585.112639999948,426.34244399983436],[1670,5586.401209000498,427.631013000384],[1670,5587.289003000595,428.5188070004806],[1670,5588.263679000549,429.49348300043494],[1670,5589.272302000783,430.5021060006693],[1673,5590.321694000624,431.55149800051004],[1674,5591.376374999993,432.60617899987847],[1674,5592.299873000011,433.52967699989676],[1674,5593.221026999876,434.4508309997618],[1674,5594.2423710003495,435.47217500023544],[1674,5595.3721130006015,436.60191700048745],[1674,5596.307896000333,437.53770000021905],[1674,5597.326547000557,438.5563510004431],[1674,5598.31451900024,439.5443230001256],[1674,5599.85916900076,441.08897300064564],[1674,5600.221668000333,441.4514720002189],[1674,5601.471503000706,442.70130700059235],[1674,5602.415433000773,443.6452370006591],[1674,5604.641108000651,445.8709120005369],[1674,5605.860555999912,447.09035999979824],[1674,5606.840292000212,448.0700960000977],[1676,5608.597671000287,449.82747500017285],[1677,5608.64689199999,449.87669599987566],[1686,5609.720697000623,450.95050100050867],[1687,5610.75221600011,451.9820199999958],[1688,5611.892118000425,453.1219220003113],[1688,5616.061699000187,457.29150300007313],[1689,5617.314069001004,458.54387300089],[1689,5619.253328000195,460.48313200008124],[1689,5620.530746000819,461.7605500007048],[1689,5621.4621799997985,462.69198399968445],[1689,5622.64486400038,463.87466800026596],[1689,5623.3627509996295,464.5925549995154],[1689,5624.388449999504,465.6182539993897],[1689,5625.262788000517,466.4925920004025],[1689,5626.516212000512,467.7460160003975],[1689,5627.4670730009675,468.6968770008534],[1689,5628.452323000878,469.682127000764],[1689,5629.295471999794,470.52527599968016],[1689,5630.260243000463,471.49004700034857],[1689,5631.452984000556,472.6827880004421],[1689,5632.278177999891,473.50798199977726],[1689,5633.496433001012,474.7262370008975],[1689,5634.440600000322,475.6704040002078],[1689,5635.4560300009325,476.68583400081843],[1689,5636.4628810007125,477.69268500059843],[1689,5637.451272000559,478.6810760004446],[1689,5638.45166700054,479.6814710004255],[1689,5639.454704999924,480.6845089998096],[1689,5640.464351000264,481.6941550001502],[1689,5641.450020000339,482.67982400022447],[1689,5642.466961000115,483.6967650000006],[1689,5643.460509000346,484.690313000232],[1689,5644.452190000564,485.6819940004498],[1689,5645.465431000106,486.69523499999195],[1689,5646.462077000178,487.6918810000643],[1689,5647.460404000245,488.69020800013095],[1689,5648.34172500018,489.5715290000662],[1689,5649.482362999581,490.7121669994667],[1690,5650.330219000578,491.56002300046384],[1690,5651.441728999838,492.67153299972415],[1690,5653.628605999984,494.85840999986976],[1690,5654.8029420003295,496.0327460002154],[1690,5655.855571000837,497.0853750007227],[1690,5656.829627000727,498.0594310006127],[1690,5657.830122999847,499.05992699973285],[1690,5658.698456000537,499.9282600004226],[1690,5660.884515000507,502.11431900039315],[1695,5662.127332000993,503.3571360008791],[1706,5663.097917000763,504.32772100064903],[1717,5664.086563999765,505.31636799965054],[1726,5665.088808000088,506.31861199997365],[1729,5666.09277300071,507.32257700059563],[1738,5667.08911300078,508.31891700066626],[1743,5668.083573000506,509.3133770003915],[1764,5669.073729000054,510.3035329999402],[1765,5670.032319000922,511.26212300080806],[1778,5671.111086000688,512.3408900005743],[1788,5671.98611599952,513.2159199994057],[1791,5673.119839999825,514.3496439997107],[1803,5674.0860160002485,515.3158200001344],[1805,5674.986514000222,516.216318000108],[1810,5676.116412000731,517.3462160006166],[1828,5677.0796540006995,518.3094580005854],[1836,5678.069545000792,519.2993490006775],[1843,5679.097486000508,520.327290000394],[1855,5679.950330000371,521.1801340002567],[1858,5681.094553999603,522.3243579994887],[1864,5682.089489000849,523.3192930007353],[1865,5683.093670000322,524.3234740002081],[1873,5683.992693000473,525.222497000359],[1875,5685.117171000689,526.3469750005752],[1879,5686.082654999569,527.312458999455],[1880,5686.976495000534,528.2062990004197],[1881,5687.931498000398,529.1613020002842],[1885,5689.069175999612,530.2989799994975],[1888,5690.089565999806,531.3193699996918],[1888,5691.092431000434,532.3222350003198],[1888,5691.984444000758,533.2142480006441],[1888,5693.112026000395,534.3418300002813],[1888,5694.08872200083,535.3185260007158],[1888,5695.094018000178,536.323822000064],[1888,5696.087236999534,537.31704099942],[1888,5696.915393000469,538.1451970003545],[1888,5698.0699049998075,539.2997089996934],[1888,5699.094376000576,540.3241800004616],[1888,5700.07724800054,541.3070520004258],[1888,5701.102663001046,542.3324670009315],[1888,5701.9016669997945,543.1314709996805],[1888,5703.058962999843,544.288766999729],[1888,5703.90537600033,545.1351800002158],[1892,5705.13280000072,546.3626040006056],[1906,5706.082228000276,547.3120320001617],[1914,5707.096158000641,548.3259620005265],[1922,5708.081880999729,549.311684999615],[1926,5709.093981000595,550.3237850004807],[1935,5710.094531000592,551.3243350004777],[1941,5711.0924660004675,552.3222700003535],[1945,5712.088852000423,553.3186560003087],[1948,5713.094088000245,554.3238920001313],[1950,5714.019977000542,555.2497810004279],[1956,5715.10243100021,556.3322350000963],[1957,5716.088266000152,557.3180700000376],[1970,5716.927119000815,558.1569230007008],[1975,5718.0707750003785,559.3005790002644],[1975,5719.09828200005,560.3280859999359],[1975,5720.082165000029,561.3119689999148],[1975,5721.096629000269,562.3264330001548],[1975,5722.088789001107,563.3185930009931],[1975,5723.041943999939,564.2717479998246],[1975,5724.107121000066,565.3369249999523],[1975,5725.084703000262,566.3145070001483],[1975,5726.082830999978,567.3126349998638],[1975,5727.094962000847,568.3247660007328],[1975,5728.085712000728,569.3155160006136],[1975,5728.924003000371,570.1538070002571],[1975,5730.072959000245,571.3027630001307],[1975,5731.08574200049,572.3155460003763],[1975,5732.082376000471,573.3121800003573],[1975,5733.094383000396,574.3241870002821],[1975,5734.0940279997885,575.3238319996744],[1975,5735.083264000714,576.3130680005997],[1975,5736.087787000462,577.3175910003483],[1975,5737.094863999635,578.3246679995209],[1975,5738.092537000775,579.3223410006613],[1975,5739.09547900036,580.3252830002457],[1975,5740.1019120002165,581.3317160001025],[1975,5741.081396999769,582.3112009996548],[1975,5741.925812000409,583.1556160002947],[1975,5742.911545000039,584.141348999925],[1975,5744.139666000381,585.369470000267],[1975,5744.910465000197,586.1402690000832],[1975,5746.13647000026,587.3662740001455],[1975,5747.090686000884,588.3204900007695],[1975,5747.954504000023,589.1843079999089],[1975,5749.094467001036,590.3242710009217],[1975,5750.066017000936,591.2958210008219],[1975,5751.098798000254,592.3286020001397],[1975,5752.090261000209,593.3200650000945],[1975,5753.092880999669,594.3226849995553],[1975,5754.023671000265,595.2534750001505],[1975,5755.111801000312,596.3416050001979],[1975,5756.089156000875,597.3189600007609],[1975,5757.019540000707,598.2493440005928],[1975,5758.111628999934,599.3414329998195],[1975,5759.058614999987,600.2884189998731],[1975,5760.100674000569,601.3304780004546],[1975,5760.94202400092,602.1718280008063],[1975,5762.132475000806,603.3622790006921],[1975,5763.0457709999755,604.2755749998614],[1975,5764.095099001192,605.3249030010775],[1975,5765.093713000417,606.3235170003027],[1975,5766.09124100022,607.3210450001061],[1975,5767.096415000036,608.3262189999223],[1975,5768.0910870004445,609.3208910003304],[1975,5768.9951810007915,610.2249850006774],[1975,5770.117022000253,611.3468260001391],[1975,5771.087797000073,612.3176009999588],[1975,5776.603260000236,617.8330640001222],[1989,5777.87094900012,619.1007530000061],[1995,5778.797679999843,620.0274839997292],[2003,5779.699641999789,620.9294459996745],[2009,5780.8010600004345,622.0308640003204],[2011,5781.8133770003915,623.0431810002774],[2012,5782.807736000046,624.037539999932],[2016,5783.662755999714,624.8925599996],[2017,5784.936304999515,626.1661089994013],[2017,5785.768970000558,626.9987740004435],[2023,5786.780547999777,628.0103519996628],[2029,5787.805480000563,629.0352840004489],[2033,5788.803154000081,630.032957999967],[2010,5789.650522000156,630.8803260000423],[2035,5790.729481000453,631.9592850003392],[2043,5791.830984001048,633.0607880009338],[1688,5792.638172999956,633.8679769998416],[1688,5795.024323000573,636.2541270004585],[1690,5796.29233700037,637.5221410002559],[1690,5797.179957000539,638.4097610004246],[1690,5798.30535900034,639.535163000226],[1690,5799.522834000178,640.7526380000636],[1690,5800.318111000583,641.5479150004685],[1690,5801.564371000044,642.79417499993],[2044,5802.362261001021,643.5920650009066],[2045,5803.336891000159,644.566695000045],[2046,5804.550884000026,645.7806879999116],[2065,5805.493728000671,646.7235320005566],[2067,5806.319941001013,647.5497450008988],[1,5807.460277000442,0.5510809998959303],[2069,5808.525891000405,1.616694999858737],[2,5809.332722000778,2.4235260002315044],[1,5810.56240100041,3.6532049998641014],[1,5811.508063999936,4.598867999389768],[1,5812.520516000688,5.611320000141859],[1,5813.338794000447,6.4295979999005795],[1,5814.397743999958,7.488547999411821],[1,5815.530418000184,8.621221999637783],[1,5816.4044680008665,9.495272000320256],[1,5817.537388000637,10.628192000091076],[1,5818.51321899984,11.604022999294102],[1,5819.521900000982,12.61270400043577],[1,5820.516769000329,13.60757299978286],[1,5821.334049000405,14.424852999858558],[1,5822.564721000381,15.655524999834597],[1,5823.333340000361,16.424143999814987],[1,5824.484791000374,0.21359500009566545],[1,5825.340294000693,1.0690980004146695],[1,5826.4401460001245,2.168949999846518],[1,5827.528996000066,3.2577999997884035],[1,5828.5246540009975,4.253458000719547],[1,5829.512943000533,5.241747000254691],[1,5830.5146780004725,6.24348200019449],[1,5831.390886000358,7.119690000079572],[1,5832.362732000649,8.09153600037098],[1,5833.377302000299,9.1061060000211],[1,5834.522708999924,10.251512999646366],[1,5835.314100001007,11.042904000729322],[1,5836.410270000808,12.139074000529945],[1,5837.432175000198,13.16097899992019],[1,5838.542433001101,14.271237000823021],[1,5839.508576000109,15.237379999831319],[1,5840.515694000758,16.244498000480235],[1,5841.382024000399,0.49382799956947565],[1,5842.526042000391,1.6378459995612502],[1,5843.513145999983,2.624949999153614],[1,5844.5306900003925,3.6424939995631576],[1,5845.510302999988,4.622106999158859],[1,5846.455035000108,5.566838999278843],[1,5847.519085000269,6.630888999439776],[1,5848.5051359999925,7.616939999163151],[1,5849.506733999588,8.618537998758256],[1,5850.351982000284,9.463785999454558],[1,5851.543893001042,10.655697000212967],[1,5852.311193999834,11.42299799900502],[1,5853.377914000303,12.489717999473214],[1,5854.3181419996545,13.429945998825133],[1,5855.57049700059,14.682300999760628],[1,5856.320806000382,15.43260999955237],[1,5857.555378000252,16.66718199942261],[1,5858.5104179997,17.622221998870373],[1,5859.5119090005755,18.623712999746203],[1,5860.511084999889,19.622888999059796],[1,5861.319871000014,0.5456749992445111],[1,5862.466115999967,1.6919199991971254],[1,5863.532083000988,2.757887000218034],[1,5864.348036000505,3.5738399997353554],[1,5865.492225000635,4.718028999865055],[1,5866.451055999845,5.676859999075532],[1,5867.501139000058,6.72694299928844],[1,5868.409065000713,7.634868999943137],[1,5869.387195000425,8.612998999655247],[1,5870.425759000704,9.651562999933958],[1,5871.515420001,10.741224000230432],[1,5872.514503000304,11.740306999534369],[1,5873.342784000561,12.568587999790907],[1,5874.426442000084,13.652245999313891],[1,5875.3420959999785,14.567899999208748],[1,5876.4816620005295,15.707465999759734],[1,5877.528976000845,16.754780000075698],[1,5878.512256000191,17.73805999942124],[1,5879.513530001044,18.73933400027454],[1,5880.352265000343,19.57806899957359],[1,5881.548522000201,1.1113259997218847],[1,5882.513004999608,2.0758089991286397],[1,5883.327762000263,2.8905659997835755],[1,5884.468131000176,4.03093499969691],[1,5885.358482000418,4.921285999938846],[1,5886.372341999784,5.93514599930495],[1,5887.5299249999225,7.092728999443352],[1,5888.516898999922,8.079702999442816],[1,5889.346436000429,8.909239999949932],[1,5890.4680730002,10.030876999720931],[1,5891.518111000769,11.080915000289679],[1,5892.320841000415,11.883644999936223],[1,5893.469219000079,13.032022999599576],[1,5894.529165999964,14.091969999484718],[1,5895.3666610000655,14.929464999586344],[1,5896.508413000032,16.071216999553144],[1,5897.329440000467,16.89224399998784],[1,5898.562118000351,18.12492199987173],[1,5899.502175999805,0.06297999899834394],[1,5900.514610000886,1.0754140000790358],[1,5901.340433999896,1.9012379990890622],[1,5902.558800000697,3.119603999890387],[1,5903.416392999701,3.9771969988942146],[1,5904.554264999926,5.115068999119103],[1,5905.38213200029,5.94293599948287],[1,5906.553162001073,7.113966000266373],[1,5907.496968000196,8.057771999388933],[1,5908.324517000467,8.885320999659598],[1,5909.502635000274,10.063438999466598],[1,5910.517385000363,11.078188999556005],[1,5911.447283000685,12.008086999878287],[1,5912.53559499979,13.096398998983204],[1,5913.510267000645,14.071070999838412],[1,5914.515922999941,15.076726999133825],[1,5915.473234000616,16.03403799980879],[1,5916.534399000928,17.09520300012082],[1,5917.434819000773,17.995622999966145],[1,5918.366935000755,0.6357390005141497],[1,5919.517386000603,1.7861900003626943],[1,5920.51514200028,2.7839460000395775],[1,5921.508541000076,3.777344999834895],[1,5922.516552000307,4.7853560000658035],[1,5923.5183899998665,5.787193999625742],[1,5924.519380999729,6.788184999488294],[1,5925.322296000086,7.591099999845028],[1,5926.470893999562,8.739697999320924],[1,5927.429343000986,9.698147000744939],[1,5928.55477800034,10.823582000099123],[1,5929.3156290007755,11.584433000534773],[1,5930.557702000253,12.82650600001216],[1,5931.505171000026,13.773974999785423],[1,5932.326093999669,14.594897999428213],[1,5933.562038000673,15.830842000432312],[1,5934.317537999712,16.586341999471188],[1,5935.442970000207,17.71177399996668],[1,5936.53838000074,18.807184000499547],[1,5937.50983900018,0.8906429996713996],[1,5938.459657000378,1.8404609998688102],[1,5939.527862999588,2.908666999079287],[1,5940.5237980000675,3.9046019995585084],[1,5941.5133460005745,4.894150000065565],[1,5942.408188000321,5.788991999812424],[1,5943.43643200025,6.81723599974066],[1,5944.535509000532,7.916313000023365],[1,5945.389618000016,8.770421999506652],[1,5946.556575000286,9.937378999777138],[1,5947.433484000154,10.814287999644876],[1,5948.534138999879,11.914942999370396],[1,5949.511071000248,12.89187499973923],[1,5950.515070000663,13.895874000154436],[1,5951.440523000434,14.821326999925077],[1,5952.545822000131,15.926625999622047],[1,5953.341097000986,16.721901000477374],[1,5954.550954000093,17.93175799958408],[1,5955.506040000357,0.581844000145793],[1,5956.327016999945,1.4028209997341037],[1,5957.35126300063,2.4270670004189014],[1,5958.551194000058,3.6269979998469353],[1,5959.496187999845,4.57199199963361],[1,5960.525946000591,5.60175000037998],[1,5961.519886000082,6.595689999870956],[1,5962.51900000032,7.594804000109434],[1,5963.519406000152,8.59520999994129],[1,5964.334479000419,9.410283000208437],[1,5965.563661000691,10.639465000480413],[1,5966.317250000313,11.393054000101984],[1,5967.484958000481,12.560762000270188],[1,5968.526471000165,13.602274999953806],[1,5969.394394000061,14.470197999849916],[1,5970.552477000281,15.628281000070274],[1,5971.498647000641,16.57445100042969],[1,5972.317059000023,17.39286299981177],[1,5973.568123000674,18.64392700046301],[1,5974.507439000532,0.3332430003210902],[1,5975.51948000025,1.3452840000391006],[1,5976.5192630002275,2.34506700001657],[1,5977.327039000578,3.152843000367284],[1,5978.465520000085,4.291323999874294],[1,5979.39458000008,5.220383999869227],[1,5980.545656000264,6.371460000053048],[1,5981.5081620002165,7.333966000005603],[1,5982.511030999944,8.336834999732673],[1,5983.522210000083,9.34801399987191],[1,5984.523562000133,10.349365999922156],[1,5985.349361999892,11.175165999680758],[1,5986.460730999708,12.286534999497235],[1,5987.432316000573,13.258120000362396],[1,5988.539599000476,14.36540300026536],[1,5989.512284000404,15.338088000193238],[1,5990.518778000027,16.344581999816],[1,5991.520568001084,17.34637200087309],[1,5992.521290999837,18.34709499962628],[1,5993.506002000533,19.331806000322104],[1,5994.313486999832,0.3582909991964698],[1,5995.376460000873,1.421264000236988],[1,5996.510404000059,2.5552079994231462],[1,5997.513664000668,3.5584680000320077],[1,5998.511816000566,4.556619999930263],[1,5999.519982000813,5.564786000177264],[1,6000.352657999843,6.397461999207735],[1,6001.482865000144,7.527668999508023],[1,6002.39669400081,8.44149800017476],[1,6003.54889999982,9.593703999184072],[1,6004.32725500036,10.372058999724686],[1,6005.3894400009885,11.434244000352919],[2072,6006.521224000491,12.566027999855578],[2065,6007.338204000145,13.383007999509573],[1,6008.558617000468,14.603420999832451],[1,6009.508515999652,15.553319999016821],[1,6010.522150000557,16.56695399992168],[1,6011.517485000193,0.8852889994159341],[1,6012.518790000118,1.8865939993411303],[1,6013.532947000116,2.900750999338925],[1,6014.456241000444,3.824044999666512],[1,6015.50144200027,4.869245999492705],[1,6016.52333800029,5.891141999512911],[1,6017.517038000748,6.8848419999703765],[1,6018.518628000282,7.886431999504566],[1,6019.51851300057,8.886316999793053],[1,6020.518365000375,9.88616899959743],[1,6021.331700000912,10.699504000134766],[1,6022.357329000719,11.725132999941707],[1,6023.462409000844,12.830213000066578],[1,6024.527503000572,13.895306999795139],[1,6025.520912000909,14.888716000132263],[1,6026.343574999832,15.711378999054432],[1,6027.567071001045,16.93487500026822],[1,6028.359296999872,17.727100999094546],[1,6029.549026999623,18.9168309988454],[1,6030.446432000957,0.3522360008209944],[1,6031.535075999796,1.4408799996599555],[1,6032.501492001116,2.4072960009798408],[1,6033.468991000205,3.3747950000688434],[1,6034.474517000839,4.380321000702679],[1,6035.529737999663,5.435541999526322],[1,6036.51707400009,6.422877999953926],[1,6037.3896140009165,7.295418000780046],[1,6038.325620000251,8.231424000114202],[1,6039.561204000376,9.46700800023973],[1,6040.315886001103,10.221690000966191],[1,6041.551724000834,11.457528000697494],[1,6042.336593000218,12.242397000081837],[1,6043.547336000018,13.453139999881387],[1,6044.399801000021,14.305604999884963],[1,6045.537855999544,15.443659999407828],[1,6046.310495000333,16.21629900019616],[1,6047.571538000368,17.477342000231147],[1,6048.491289000958,0.6240930007770658],[1,6049.508923999965,1.6417279997840524],[1,6050.516968999989,2.6497729998081923],[1,6051.354378000833,3.4871820006519556],[1,6052.351846999489,4.4846509993076324],[1,6053.483110000379,5.615914000198245],[1,6054.52189000044,6.654694000259042],[1,6055.5132850008085,7.6460890006273985],[1,6056.514929000288,8.64773300010711],[1,6057.510356999934,9.643160999752581],[1,6058.521083000116,10.653886999934912],[1,6059.4877450000495,11.620548999868333],[1,6060.526545000263,12.65934900008142],[1,6061.357405000366,13.490209000185132],[1,6062.506820000708,14.639624000526965],[1,6063.517971000634,15.650775000452995],[1,6064.5148440003395,16.64764800015837],[1,6065.5212030000985,0.6310069998726249],[1,6066.403843000531,1.5136470003053546],[1,6067.557944000699,2.667748000472784],[1,6068.508586000651,3.618390000425279],[1,6069.445478999987,4.555282999761403],[1,6070.550735000521,5.660539000295103],[1,6071.335614000447,6.445418000221252],[1,6072.579056000337,7.688860000111163],[1,6073.503279000521,8.613083000294864],[1,6074.320559000596,9.430363000370562],[1,6075.560889000073,10.670692999847233],[1,6076.5089680003,11.618772000074387],[1,6077.521949999966,12.631753999739885],[1,6078.402261000127,13.512064999900758],[1,6079.576545000076,14.686348999850452],[1,6080.423386001028,15.533190000802279],[1,6081.543068000115,16.652871999889612],[1,6082.481127000414,0.7129309996962547],[1,6083.330020000227,1.5618239995092154],[1,6084.552315000445,2.7841189997270703],[1,6085.510214000009,3.74201799929142],[1,6086.471096999943,4.702900999225676],[1,6087.416785000823,5.648589000105858],[1,6088.376389000565,6.608192999847233],[1,6089.42283300031,7.654636999592185],[1,6090.427129000425,8.658932999707758],[1,6091.313630000688,9.545433999970555],[1,6092.569768000394,10.801571999676526],[1,6093.5067360000685,11.738539999350905],[1,6094.521235000342,12.75303899962455],[1,6095.336211000569,13.568014999851584],[1,6096.563429000787,14.795233000069857],[1,6097.507771000266,15.739574999548495],[1,6098.340024000034,16.571827999316156],[1,6099.370689000003,17.60249299928546],[1,6100.520855000243,1.0356590002775192],[1,6101.510453999974,2.025258000008762],[1,6102.514066000469,3.0288700005039573],[1,6103.530152999796,4.044956999830902],[1,6104.406375999562,4.921179999597371],[1,6105.546227000654,6.061031000688672],[1,6106.501474000514,7.016278000548482],[642,6107.482046999969,7.996851000003517],[1,6108.34278000053,8.857584000565112],[1,6109.522791000083,10.037595000118017],[1,6110.518424000591,11.033228000625968],[1,6111.518502000719,12.033306000754237],[1,6112.517823999748,13.032627999782562],[1,6113.51890300028,14.03370700031519],[1,6114.521476000547,15.036280000582337],[1,6115.517507000826,16.032311000861228],[1,6116.323267000727,16.838071000762284],[1,6117.559371000156,0.13717499934136868],[1,6118.501524000429,1.0793279996141791],[1,6119.521965000778,2.099768999963999],[1,6120.517301000655,3.0951049998402596],[1,6121.518094000407,4.095897999592125],[1,6122.52034200076,5.0981459999457],[1,6123.363188999705,5.940992998890579],[1,6124.400681000203,6.978484999388456],[1,6125.333063000813,7.910866999998689],[1,6126.379646000452,8.957449999637902],[1,6127.458280000836,10.03608400002122],[1,6128.544497000985,11.12230100017041],[1,6129.460957000032,12.03876099921763],[1,6130.531932001002,13.109736000187695],[1,6131.430563000031,14.008366999216378],[1,6132.547996000387,15.125799999572337],[1,6133.480531000532,16.058334999717772],[1,6134.319102999754,16.896906998939812],[1,6135.457435000688,18.0352389998734],[1,6136.534677000716,0.9934809999540448],[1,6137.346799000166,1.8056029994040728],[1,6138.5622630007565,3.0210669999942183],[1,6139.350985000841,3.8097890000790358],[1,6140.5728700002655,5.031673999503255],[1,6141.34712500032,5.805928999558091],[1,6142.323352000676,6.782155999913812],[1,6143.46218400076,7.920987999998033],[1,6144.531941000372,8.990744999609888],[1,6145.31963000074,9.778433999978006],[1,6146.554181000218,11.012984999455512],[1,6147.521821000613,11.980624999850988],[1,6148.514392000623,12.973195999860764],[1,6149.505154000595,13.963957999832928],[1,6150.520898000337,14.9797019995749],[1,6151.325264000334,15.784067999571562],[1,6152.363490000367,16.82229399960488],[1,6153.515662000515,1.0784660000354052],[1,6154.475013000891,2.037817000411451],[1,6155.530257999897,3.0930619994178414],[1,6156.515569000505,4.078373000025749],[1,6157.519148999825,5.081952999345958],[1,6158.494433000684,6.057237000204623],[1,6159.519755000249,7.08255899976939],[1,6160.512459000573,8.0752630000934],[1,6161.515054000542,9.077858000062406],[1,6162.425123999827,9.987927999347448],[1,6163.541402000003,11.104205999523401],[1,6164.512437000871,12.075241000391543],[1,6165.519335000776,13.082139000296593],[1,6166.5175440004095,14.080347999930382],[1,6167.518140000291,15.080943999812007],[1,6168.518299000338,16.081102999858558],[1,6169.448445000686,17.01124900020659],[1,6170.414606000297,17.97740999981761],[1,6171.332456000149,0.8342599999159575],[1,6172.328078000806,1.8298820005729795],[1,6173.373869000003,2.8756729997694492],[1,6174.518684000708,4.02048800047487],[1,6175.5184120005,5.020216000266373],[1,6176.362423000857,5.864227000623941],[1,6177.552996999584,7.054800999350846],[1,6178.522806000896,8.024610000662506],[1,6179.513892000541,9.015696000307798],[1,6180.322650000453,9.824454000219703],[1,6181.577191000804,11.078995000571012],[1,6182.500665999949,12.002469999715686],[1,6183.518180000596,13.019984000362456],[1,6184.513353000395,14.015157000161707],[1,6185.5149600002915,15.016764000058174],[1,6186.512701000087,16.01450499985367],[1,6187.515220000409,0.2580239996314049],[1,6188.515067000873,1.257871000096202],[1,6189.341149000451,2.083952999673784],[1,6190.509441000409,3.2522449996322393],[1,6191.510662000626,4.253465999849141],[1,6192.521089000627,5.2638929998502135],[1,6193.521123000421,6.263926999643445],[1,6194.504085000604,7.246888999827206],[1,6195.518500000238,8.261303999461234],[1,6196.504901000299,9.247704999521375],[1,6197.348365000449,10.091168999671936],[1,6198.323749000207,11.066552999429405],[1,6199.462973999791,12.205777999013662],[1,6200.536501999944,13.279305999167264],[1,6201.506695999764,14.249499998986721],[1,6202.3147980012,15.057602000422776],[1,6203.570131000131,16.312934999354184],[1,6204.501710000448,17.244513999670744],[1,6205.310900000855,18.05370400007814],[1,6206.567081000656,19.309884999878705],[1,6207.338470000774,0.6962740002200007],[2073,6208.397887000814,1.7556910002604127],[2,6209.352894000709,2.7106980001553893],[1,6210.426815000363,3.7846189998090267],[1,6211.540338000283,4.898141999728978],[1,6212.509085000493,5.866888999938965],[1,6213.376499000005,6.7343029994517565],[1,6214.445561000146,7.803364999592304],[1,6215.4189850008115,8.77678900025785],[1,6216.548559000716,9.906363000161946],[1,6217.439934000373,10.79773799981922],[1,6218.421842000447,11.779645999893546],[1,6219.400227000937,12.758031000383198],[1,6220.5436180001125,13.901421999558806],[1,6221.326930000447,14.68473399989307],[1,6222.563180000521,15.920983999967575],[1,6223.501889999956,0.2046939991414547],[1,6224.416137000546,1.1189409997314215],[1,6225.534246000461,2.2370499996468425],[1,6226.510471999645,3.2132759988307953],[1,6227.39311600104,4.095920000225306],[1,6228.316268000752,5.019071999937296],[1,6229.343775000423,6.046578999608755],[1,6230.475374000147,7.178177999332547],[1,6231.392958000302,8.095761999487877],[1,6232.529791000299,9.232594999484718],[1,6233.516993000172,10.21979699935764],[1,6234.458623000421,11.161426999606192],[1,6235.535207000561,12.23801099974662],[1,6236.515154000372,13.217957999557257],[1,6237.420580000617,14.123383999802172],[1,6238.359677000903,15.062481000088155],[1,6239.403846000321,16.10664999950677],[1,6240.543645001017,17.24644900020212],[1,6241.50945200026,0.8172559998929501],[1,6242.50905900076,1.8168630003929138],[1,6243.506241000257,2.8140449998900294],[1,6244.405976000242,3.7137799998745322],[1,6245.529647001065,4.837451000697911],[1,6246.502287000418,5.810091000050306],[1,6247.314367000014,6.622170999646187],[1,6248.373396000825,7.681200000457466],[1,6249.505297999829,8.81310199946165],[1,6250.319381999783,9.627185999415815],[1,6251.552707999945,10.860511999577284],[1,6252.412891000509,11.720695000141859],[1,6253.33747600019,12.645279999822378],[1,6254.359037000686,13.666841000318527],[1,6255.559356000274,14.867159999907017],[1,6256.313632000238,15.6214359998703],[1,6257.485349000432,16.793153000064194],[1,6258.525265000761,17.833069000393152],[1,6259.517408000305,18.825211999937892],[1,6260.53982100077,19.84762500040233],[2075,6261.516258000396,0.8680619997903705],[2075,6262.513358999975,1.865162999369204],[2075,6263.51900000032,2.8708039997145534],[2075,6264.508214999922,3.8600189993157983],[2075,6265.3557200003415,4.707523999735713],[1,6266.569297000766,5.921101000159979],[1,6267.567641001195,6.919445000588894],[1,6268.605297000147,7.957100999541581],[1,6269.560216000304,8.912019999697804],[1,6270.607437999919,9.959241999313235],[1,6271.506214999594,10.858018998987973],[1,6272.604080000892,11.95588400028646],[1,6273.561266000383,12.91306999977678],[1,6274.5078880004585,13.859691999852657],[1,6275.5193819999695,14.87118599936366],[1,6276.592837000266,15.944640999659896],[1,6277.480463000946,16.832267000339925],[1,6278.647879000753,17.999683000147343],[1,6279.588500999846,0.7753049992024899],[1,6280.58313999977,1.7699439991265535],[1,6281.467889999971,2.654693999327719],[1,6282.464841000736,3.6516450000926852],[1,6283.654858999886,4.841662999242544],[1,6284.323176000267,5.509979999624193],[1,6285.65142400004,6.838227999396622],[1,6286.552341000177,7.739144999533892],[1,6287.610080000013,8.796883999370039],[1,6288.535311000422,9.722114999778569],[1,6289.623002000153,10.80980599950999],[1,6290.56412900053,11.750932999886572],[1,6291.511609001085,12.698413000442088],[1,6292.523698000237,13.710501999594271],[1,6293.336518000811,14.523322000168264],[1,6294.571093000472,15.757896999828517],[1,6295.606273000129,16.793076999485493],[1,6296.565413000062,17.752216999419034],[1,6297.502659000456,18.68946299981326],[1,6298.36457200069,19.55137600004673],[1,6299.604592001066,1.1433960003778338],[1,6300.565074999817,2.1038789991289377],[1,6301.605919000693,3.1447230000048876],[1,6302.5982170002535,4.137020999565721],[1,6303.325692000799,4.864496000111103],[1,6304.592553000897,6.131357000209391],[1,6305.598966999911,7.137770999222994],[1,6306.567784999497,8.106588998809457],[1,6307.482711000368,9.021514999680221],[1,6308.530054000206,10.068857999518514],[1,6309.420192000456,10.958995999768376],[1,6310.667524999939,12.206328999251127],[1,6311.54995200038,13.088755999691784],[1,6312.593502000906,14.132306000217795],[1,6313.601611000486,15.14041499979794],[1,6314.439842999913,15.97864699922502],[1,6315.661423000507,17.20022699981928],[1,6316.570035000332,0.7908389996737242],[1,6317.5382679998875,1.7590719992294908],[1,6318.578901000321,2.7997049996629357],[1,6319.332212000154,3.553015999495983],[1,6320.580180000514,4.800983999855816],[1,6321.605471000075,5.826274999417365],[1,6322.57783200033,6.798635999672115],[1,6323.345516000874,7.566320000216365],[1,6324.559479000047,8.780282999388874],[1,6325.389421000145,9.6102249994874],[1,6326.659736000933,10.880540000274777],[1,6327.582067999989,11.802871999330819],[1,6328.571732000448,12.792535999789834],[1,6329.607962000184,13.828765999525785],[1,6330.441692000255,14.662495999597013],[1,6331.6686209999025,15.889424999244511],[1,6332.579207000323,16.800010999664664],[1,6333.518889000639,17.739692999981344],[1,6334.525435999967,0.20223999954760075],[1,6335.557463999838,1.2342679994180799],[1,6336.480375000276,2.1571789998561144],[1,6337.643508001231,3.3203120008111],[1,6338.48842400033,4.165227999910712],[1,6339.6410970008,5.317901000380516],[1,6340.492401000112,6.169204999692738],[1,6341.52218300011,7.198986999690533],[1,6342.423648000695,8.100452000275254],[1,6343.6814299998805,9.358233999460936],[1,6344.56963000074,10.246434000320733],[1,6345.576760999858,11.253564999438822],[1,6346.601936000399,12.278739999979734],[1,6347.461601000279,13.138404999859631],[1,6348.638420000672,14.315224000252783],[1,6349.494543000124,15.171346999704838],[1,6350.594938000664,16.271742000244558],[1,6351.587527999654,17.264331999234855],[1,6352.60300100036,18.279804999940097],[1,6353.547704000026,19.22450799960643],[1,6354.583027999848,0.5388319995254278],[1,6355.505007999949,1.4608119996264577],[1,6356.525488999672,2.4812929993495345],[1,6357.522036001086,3.4778400007635355],[1,6358.520239999518,4.476043999195099],[1,6359.514666000381,5.4704700000584126],[1,6360.357950000092,6.313753999769688],[1,6361.382988000289,7.338791999965906],[1,6362.573528000154,8.529331999830902],[1,6363.570733000524,9.526537000201643],[1,6364.571498000063,10.527301999740303],[1,6365.5145620005205,11.470366000197828],[1,6366.523367000744,12.479171000421047],[1,6367.5210290001705,13.47683299984783],[1,6368.515747000463,14.471551000140607],[1,6369.5871510012075,15.542955000884831],[1,6370.5733900005,16.529194000177085],[1,6371.573418000713,17.52922200039029],[2,6372.5088919997215,0.1326959989964962],[1,6373.517356000841,1.141160000115633],[1,6374.522393000312,2.1461969995871186],[1,6375.521176001057,3.144980000331998],[1,6376.618949000724,4.242752999998629],[1,6377.411629999988,5.03543399926275],[1,6378.618199001066,6.242003000341356],[1,6379.436701999977,7.0605059992522],[1,6380.561294999905,8.1850989991799],[1,6381.559383000247,9.18318699952215],[1,6382.6094670007005,10.233270999975502],[1,6383.564923999831,11.18872799910605],[1,6384.577372999862,12.201176999136806],[1,6385.394197000191,13.018000999465585],[1,6386.437098000199,14.060901999473572],[1,6387.530349000357,15.15415299963206],[1,6388.572331000119,16.196134999394417],[1,6389.524414000101,17.148217999376357],[1,6390.5213040011,18.14510800037533],[1,6391.520953000523,0.4097570003941655],[1,6392.523080000654,1.4118840005248785],[1,6393.436579000205,2.325383000075817],[1,6394.651901000179,3.540705000050366],[1,6395.584088000469,4.472892000339925],[1,6396.582855001092,5.471659000962973],[1,6397.496628000401,6.385432000271976],[1,6398.418707000092,7.3075109999626875],[1,6399.657611000352,8.546415000222623],[1,6400.336881000549,9.225685000419617],[1,6401.679338000715,10.568142000585794],[1,6402.561415000819,11.450219000689685],[1,6403.579704000615,12.468508000485599],[1,6404.528685000725,13.417489000596106],[1,6405.517978999764,14.406782999634743],[1,6406.380044001155,15.268848001025617],[1,6407.559825000353,16.448629000224173],[1,6408.513047000393,17.401851000264287],[1,6409.407933000475,18.296737000346184],[1,6410.653458000161,19.54226200003177],[2076,6411.448644000106,20.337447999976575],[2077,6412.533425000496,21.422229000367224],[2078,6413.484221000224,22.373025000095367],[1,6414.447994000278,0.2097979998216033],[1,6415.540653999895,1.3024579994380474],[1,6416.525607000105,2.287410999648273],[1,6417.406373000704,3.168177000246942],[1,6418.63542199973,4.39722599927336],[1,6419.590541000478,5.35234500002116],[1,6420.580597000197,6.342400999739766],[1,6421.574710000306,7.336513999849558],[1,6422.3950340002775,8.15683799982071],[1,6423.571440000087,9.333243999630213],[1,6424.5071140006185,10.268918000161648],[1,6425.530061000027,11.291864999569952],[1,6426.520883000456,12.282686999998987],[1,6427.520114000887,13.281918000429869],[1,6428.520979999565,14.282783999107778],[1,6429.521807000041,15.283610999584198],[1,6430.526394000277,16.288197999820113],[1,6431.531352000311,17.293155999854207],[1,6432.349059000611,18.110863000154495],[1,6433.562720000744,19.324524000287056],[1,6434.511322000995,0.5931260008364916],[1,6435.3620620006695,1.4438660005107522],[1,6436.408534000628,2.4903380004689097],[1,6437.329807999544,3.411611999385059],[1,6438.475872000679,4.557676000520587],[1,6439.5406250003725,5.622429000213742],[1,6440.582285000011,6.664088999852538],[1,6441.504439000972,7.5862430008128285],[1,6442.523323000409,8.605127000249922],[1,6443.51735400036,9.599158000200987],[1,6444.346863000654,10.428667000494897],[1,6445.403524000198,11.485328000038862],[1,6446.674328000285,12.756132000125945],[1,6447.365570000373,13.44737400021404],[1,6448.678151000291,14.759955000132322],[1,6449.490973000415,15.572777000255883],[1,6450.527841000818,16.60964500065893],[1,6451.350541999564,17.432345999404788],[1,6452.509468000382,18.591272000223398],[1,6453.583234000951,19.665038000792265],[1,6454.516696999781,0.783500999212265],[1,6455.618020000868,1.884824000298977],[1,6456.559902000241,2.826705999672413],[1,6457.35772800073,3.6245320001617074],[1,6458.436185000464,4.7029889998957515],[1,6459.551055001095,5.817859000526369],[1,6460.615606000647,6.88241000007838],[1,6461.562123000622,7.828927000053227],[1,6462.575759000145,8.84256299957633],[1,6463.570592000149,9.837395999580622],[1,6464.489004001021,10.755808000452816],[1,6465.646418000571,11.913222000002861],[1,6466.4908260004595,12.757629999890924],[1,6467.530311000533,13.797114999964833],[1,6468.51889300067,14.785697000101209],[1,6469.574764000252,15.84156799968332],[1,6470.338960001245,16.605764000676572],[1,6471.417153000832,17.683957000263035],[1,6472.6639369996265,1.1417409991845489],[1,6473.57908000052,2.0568840000778437],[1,6474.508373000659,2.9861770002171397],[1,6475.524084000848,4.001888000406325],[1,6476.521900000051,4.999703999608755],[1,6477.52169300057,5.999497000128031],[1,6478.614117000252,7.0919209998101],[1,6479.594195000827,8.071999000385404],[1,6480.497680000961,8.975484000518918],[1,6481.51465200074,9.992456000298262],[1,6482.531154001132,11.008958000689745],[1,6483.448783,11.926586999557912],[1,6484.412282999605,12.890086999163032],[1,6485.554008999839,14.031812999397516],[1,6486.5128739997745,14.990677999332547],[1,6487.531415000558,16.00921900011599],[1,6488.524125000462,17.001929000020027],[1,6489.517478000373,17.99528199993074],[1,6490.4541680002585,18.931971999816597],[1,6491.373394000344,19.85119799990207],[1,6492.54473700095,1.0485410010442138],[1,6493.559321000241,2.063125000335276],[1,6494.576519000344,3.0803230004385114],[1,6495.570085999556,4.073889999650419],[1,6496.585264001042,5.089068001136184],[1,6497.518587000668,6.022391000762582],[1,6498.511993000284,7.01579700037837],[1,6499.595348000526,8.099152000620961],[1,6500.567192000337,9.070996000431478],[1,6501.575467000715,10.079271000809968],[1,6502.586311000399,11.090115000493824],[1,6503.599937000312,12.103741000406444],[1,6504.443756000139,12.947560000233352],[1,6505.6340460004285,14.13785000052303],[1,6506.592815999873,15.096619999967515],[1,6507.504789000377,16.008593000471592],[1,6508.52546699997,17.02927100006491],[1,6509.3765290006995,17.880333000794053],[1,6510.4629330011085,18.966737001203],[1,6511.64177100081,1.0425750007852912],[1,6512.5873370002955,1.9881410002708435],[1,6513.579472000711,2.98027600068599],[1,6514.448548000306,3.8493520002812147],[1,6515.476021001115,4.876825001090765],[1,6516.36949400045,5.7702980004251],[1,6517.374519000761,6.775323000736535],[1,6518.6378570003435,8.038661000318825],[1,6519.560412000865,8.961216000840068],[1,6520.3687030002475,9.769507000222802],[1,6521.453103999607,10.853907999582589],[1,6522.638431000523,12.039235000498593],[1,6523.5714680003,12.972272000275552],[1,6524.341575000435,13.742379000410438],[1,6525.56567500066,14.966479000635445],[1,6526.510811001062,15.911615001037717],[1,6527.417698000558,16.818502000533044],[1,6528.344595001079,17.745399001054466],[1,6529.677287000231,19.07809100020677],[1,6530.54966300074,19.950467000715435],[1,6531.443909000605,0.7677130000665784],[1,6532.549355001189,1.8731590006500483],[1,6533.535352000035,2.859155999496579],[1,6534.6038430007175,3.9276470001786947],[1,6535.599589000456,4.923392999917269],[1,6536.5843639997765,5.908167999237776],[1,6537.58351300098,6.907317000441253],[1,6538.367734000087,7.691537999548018],[1,6539.643962000497,8.96776599995792],[1,6540.598784000613,9.922588000074029],[1,6541.503442000598,10.827246000058949],[1,6542.526593000628,11.850397000089288],[1,6543.520256000571,12.844060000032187],[1,6544.468221000396,13.792024999856949],[1,6545.650397000834,14.97420100029558],[1,6546.5875110002235,15.911314999684691],[1,6547.579204999842,16.903008999302983],[1,6548.583762001246,17.907566000707448],[1,6549.347947000526,18.671750999987125],[1,6550.617221999913,1.1530259996652603],[1,6551.464780000038,2.0005839997902513],[1,6552.616344001144,3.152148000895977],[2084,6553.499725000933,4.035529000684619],[2084,6554.508869000711,5.044673000462353],[2084,6555.458004999906,5.993808999657631],[2084,6556.522495999932,7.058299999684095],[2084,6557.520408000797,8.05621200054884],[2084,6558.515066000633,9.050870000384748],[2084,6559.514446000569,10.050250000320375],[2084,6560.515132999979,11.050936999730766],[2084,6561.515502999537,12.0513069992885],[2084,6562.506744000129,13.042547999881208],[2084,6563.509217999876,14.045021999627352],[2084,6564.465475000441,15.00127900019288],[2084,6565.528005000204,16.063808999955654],[2084,6566.512517999858,17.04832199960947],[2085,6567.505129000172,18.040932999923825],[2101,6568.520528000779,19.056332000531256],[2088,6569.513624000363,20.049428000114858],[2105,6570.51542600058,21.051230000331998],[2088,6571.5057760011405,22.04158000089228],[2088,6572.516518000513,23.05232200026512],[2106,6573.521279999986,24.057083999738097],[2088,6574.35010800045,24.885912000201643],[2088,6575.465781000443,26.00158500019461],[2088,6576.525661000051,27.06146499980241],[2107,6577.510451000184,28.046254999935627],[2107,6578.5178200006485,29.053624000400305],[2107,6579.5088889999315,30.04469299968332],[2108,6580.368881000206,30.90468499995768],[2109,6581.532491000369,32.068295000121],[2112,6582.510906000622,33.04671000037342],[2107,6583.516113000922,34.05191700067371],[2117,6584.506216000766,35.04202000051737],[2119,6585.512009000406,36.047813000157475],[2107,6586.515679000877,37.05148300062865],[2107,6587.513207999989,38.0490119997412],[2107,6588.505921999924,39.04172599967569],[2107,6589.419468000531,39.955272000283],[2109,6590.538500000723,41.07430400047451],[2107,6591.508731000125,42.044534999877214],[2107,6592.515838000923,43.0516420006752],[2109,6593.51503800042,44.05084200017154],[2109,6594.51321000047,45.04901400022209],[2107,6595.514926999807,46.050730999559164],[2109,6596.51514699962,47.05095099937171],[2122,6597.357612000778,47.893416000530124],[2107,6598.509035999887,49.0448399996385],[2123,6599.515266000293,50.051070000045],[2107,6600.510967000388,51.046771000139415],[2109,6601.50761600025,52.04342000000179],[2107,6602.510270000435,53.04607400018722],[2107,6603.340657999739,53.87646199949086],[2107,6604.544142000377,55.079946000128984],[2107,6605.498315000907,56.03411900065839],[2108,6606.521220000461,57.05702400021255],[2107,6607.509306000546,58.04511000029743],[2107,6608.5159550001845,59.05175899993628],[2108,6609.502924000844,60.038728000596166],[2124,6610.519477999769,61.05528199952096],[2088,6611.514024000615,62.04982800036669],[2125,6612.5142160011455,63.05002000089735],[2127,6613.504285000265,64.04008900001645],[2088,6614.516596999951,65.05240099970251],[2132,6615.507677000016,66.04348099976778],[2133,6616.513430001214,67.04923400096595],[2136,6617.521966001019,68.05777000077069],[2088,6618.510311000049,69.04611499980092],[2137,6619.507202000357,70.04300600010902],[2108,6620.515754000284,71.05155800003558],[2108,6621.505069999956,72.0408739997074],[2137,6622.517865000293,73.05366900004447],[2137,6623.515592000447,74.05139600019902],[2138,6624.5051800003275,75.04098400007933],[2139,6625.516955000348,76.0527590001002],[2138,6626.386552999727,76.92235699947923],[2137,6627.538796000183,78.07459999993443],[2138,6628.507869000547,79.04367300029844],[2142,6629.517967000604,80.05377100035548],[2149,6630.513292000629,81.04909600038081],[2138,6631.515779000707,82.05158300045878],[2152,6632.5155159998685,83.05131999962032],[2146,6633.51447299961,84.05027699936181],[2153,6634.507441000082,85.0432449998334],[2156,6635.5167899997905,86.0525939995423],[2108,6636.517253999598,87.05305799935013],[2138,6637.513962000608,88.04976600036025],[2108,6638.508174000308,89.04397800005972],[2138,6639.517475000583,90.05327900033444],[2157,6640.526957000606,91.06276100035757],[2152,6641.510856000707,92.04666000045836],[2138,6642.5156929995865,93.05149699933827],[2108,6643.51493900083,94.05074300058186],[2108,6644.50646399986,95.0422679996118],[2137,6645.5157340001315,96.0515379998833],[2138,6646.512099000625,97.04790300037712],[2108,6647.340964000672,97.87676800042391],[2108,6648.556581000797,99.09238500054926],[2160,6649.504960000515,100.04076400026679],[2108,6650.508442000486,101.04424600023776],[2163,6651.515705999918,102.05150999967009],[2137,6652.502133999951,103.03793799970299],[2167,6653.362641000189,103.8984449999407],[2138,6654.550561000593,105.08636500034481],[2172,6655.502575000748,106.03837900049984],[2088,6656.521836000495,107.05764000024647],[2178,6657.5192510010675,108.05505500081927],[2180,6658.501290000044,109.03709399979562],[2179,6659.523493000306,110.059297000058],[2181,6660.513857000507,111.04966100025922],[2200,6661.514538000338,112.05034200008959],[2201,6662.5083160009235,113.04412000067532],[2201,6663.5072830002755,114.0430870000273],[2201,6664.503051999956,115.03885599970818],[2201,6665.5188849996775,116.05468899942935],[2202,6666.512678001076,117.04848200082779],[2201,6667.506684999913,118.04248899966478],[2202,6668.515195000917,119.05099900066853],[2202,6669.505937000737,120.0417410004884],[2201,6670.517368000001,121.05317199975252],[2203,6671.513230999932,122.0490349996835],[2203,6672.500141999684,123.03594599943608],[2203,6673.41348000057,123.94928400032222],[2201,6674.538058999926,125.07386299967766],[2203,6675.506153000519,126.04195700027049],[2202,6676.516224000603,127.05202800035477],[2203,6677.5134650003165,128.0492690000683],[2200,6678.512498999946,129.04830299969763],[2201,6679.502315000631,130.03811900038272],[2201,6680.5207550004125,131.05655900016427],[2201,6681.511827999726,132.04763199947774],[2202,6682.428177000023,132.96398099977523],[2201,6683.532914000563,134.06871800031513],[2203,6684.509050000459,135.04485400021076],[2202,6685.51493200101,136.0507360007614],[2201,6686.530868000351,137.0666720001027],[2202,6687.412592000328,137.9483960000798],[2202,6688.532579001039,139.06838300079107],[2202,6689.326271000318,139.86207500007004],[2202,6690.5511180004105,141.0869220001623],[2201,6691.5043390011415,142.0401430008933],[2202,6692.5157280005515,143.05153200030327],[2201,6693.511944999918,144.04774899967015],[2201,6694.505154000595,145.04095800034702],[2202,6695.4326290003955,145.96843300014734],[2202,6696.533885000274,147.0696890000254],[2202,6697.3181660007685,147.85397000052035],[2202,6698.566238000058,149.10204199980944],[2202,6699.495727000758,150.03153100050986],[2202,6700.512875000946,151.04867900069803],[2202,6701.524201000109,152.06000499986112],[2206,6702.504067000933,153.0398710006848],[2206,6703.410974000581,153.94677800033242],[2206,6704.53385000024,155.06965399999171],[2206,6705.5079870009795,156.0437910007313],[2206,6706.507362000644,157.043166000396],[2206,6707.516902999952,158.05270699970424],[2206,6708.5131190009415,159.04892300069332],[2206,6709.519212000072,160.0550159998238],[2206,6710.3498750003055,160.88567900005728],[2206,6711.5030070012435,162.03881100099534],[2206,6712.516639000736,163.05244300048798],[2206,6713.5125750005245,164.04837900027633],[2206,6714.501758000813,165.03756200056523],[2206,6715.511305000633,166.0471090003848],[2206,6716.512853000313,167.04865700006485],[2206,6717.511334001087,168.04713800083846],[2206,6718.512734000571,169.04853800032288],[2206,6719.4155810000375,169.9513849997893],[2206,6720.530733999796,171.06653799954802],[2206,6721.380526000634,171.91633000038564],[2208,6722.321730000898,172.85753400065005],[1,6723.380719000474,0.23852299991995096],[2216,6724.539756000042,1.3975599994882941],[2216,6725.313296000473,2.1710999999195337],[2216,6726.565438000485,3.4232419999316335],[2217,6727.503454999998,4.361258999444544],[2224,6728.348011000082,5.205814999528229],[2226,6729.487604000606,6.345408000051975],[2227,6730.525536000729,7.38334000017494],[2244,6731.512818000279,8.3706219997257],[2255,6732.514105999842,9.371909999288619],[2266,6733.510863999836,10.36866799928248],[2272,6734.514436000958,11.372240000404418],[2276,6735.513608000241,12.371411999687552],[2279,6736.513504000381,13.371307999826968],[2287,6737.311831000261,14.169634999707341],[2302,6738.380451000296,15.238254999741912],[2307,6739.535956000909,16.39376000035554],[2316,6740.457794999704,17.315598999150097],[2326,6741.526194999926,18.383998999372125],[2332,6742.504652000032,19.362455999478698],[2334,6743.515689999796,20.373493999242783],[2335,6744.510034000501,21.36783799994737],[2336,6745.338395000435,22.196198999881744],[2332,6746.348176999949,23.20598099939525],[2339,6747.438629000448,24.296432999894023],[2340,6748.511669000611,25.36947300005704],[2342,6749.515556000173,26.373359999619424],[2,6750.432060000487,27.289863999933004],[2356,6751.53982700035,28.397630999796093],[2360,6752.508180000819,29.3659840002656],[2362,6753.540676999837,30.398480999283493],[2379,6754.509568000212,31.367371999658644],[2383,6755.516560999677,32.37436499912292],[2383,6756.841105000116,33.69890899956226],[2392,6758.108368000947,34.96617200039327],[2398,6758.90751099959,35.76531499903649],[2403,6759.85647800006,36.714281999506056],[2405,6761.023091000505,37.880894999951124],[2418,6762.040292000398,38.89809599984437],[2423,6763.048092000186,39.905895999632776],[2436,6764.060146000236,40.917949999682605],[2441,6765.050711000338,41.90851499978453],[2458,6766.052610000595,42.91041400004178],[2461,6767.038403000683,43.896207000128925],[2465,6768.051708000712,44.90951200015843],[2467,6768.971959000453,45.829762999899685],[2468,6770.070617000572,46.928421000018716],[2364,6771.04686000105,47.90466400049627],[2364,6772.985455000773,49.843259000219405],[2471,6774.26657800097,51.12438200041652],[2471,6775.165256000124,52.02305999957025],[2471,6776.2332070004195,53.09101099986583],[2471,6777.271925000474,54.12972899992019],[2471,6779.170382000506,56.02818599995226],[2483,6780.4250710001215,57.282874999567866],[2497,6781.369536000304,58.22733999975026],[2497,6782.383397000842,59.24120100028813],[2500,6783.377285000868,60.235089000314474],[2514,6784.378996000625,61.236800000071526],[2516,6785.1775550004095,62.035358999855816],[2517,6786.196436000057,63.0542399995029],[2527,6787.425897999667,64.28370199911296],[2542,6788.367309000343,65.22511299978942],[2542,6789.384338000789,66.24214200023562],[2542,6790.417063999921,67.27486799936742],[2555,6791.683853000402,68.54165699984878],[2563,6792.609713000245,69.46751699969172],[2568,6793.621985000558,70.47978900000453],[2570,6794.625811000355,71.48361499980092],[2570,6795.624549000524,72.48235299997032],[2570,6796.620378000662,73.47818200010806],[2570,6797.622446999885,74.48025099933147],[2570,6798.61544000078,75.47324400022626],[2570,6799.623979000375,76.48178299982101],[2570,6800.624726000242,77.48252999968827],[2570,6801.627153000794,78.48495700024068],[2570,6802.567472000606,79.42527600005269],[2570,6803.643515001051,80.50131900049746],[2570,6804.622702000663,81.48050600010902],[2570,6805.627948001027,82.48575200047344],[2570,6806.57532600034,83.43312999978662],[2570,6807.641689000651,84.49949300009757],[2570,6808.619072999805,85.47687699925154],[2570,6809.634312000126,86.49211599957198],[2570,6810.646931000054,87.50473499950022],[2570,6811.558755000122,88.41655899956822],[2571,6812.637523000129,89.4953269995749],[2475,6813.632578999735,90.49038299918175],[2475,6815.76504500024,92.62284899968654],[2574,6816.81819100026,93.67599499970675],[2574,6818.117231000215,94.97503499966115],[2574,6819.159846000373,96.0176499998197],[2574,6820.189055000432,97.04685899987817],[137,6821.231384000741,98.08918800018728],[1,6822.424873000011,1.0356769999489188],[1,6823.328223000281,1.9390270002186298],[2585,6824.333117000759,2.9439210006967187],[1,6825.197533000261,3.8083370001986623],[1,6826.174947000109,4.78575100004673],[1,6827.195106999949,5.805910999886692],[1,6828.319000000134,6.929804000072181],[1,6829.2400960009545,7.8509000008925796],[1,6830.369103999808,8.979907999746501],[1,6831.206861000508,9.81766500044614],[1,6832.163015000522,10.773819000460207],[1,6833.374379999936,11.985183999873698],[1,6834.32080299966,12.931606999598444],[1,6835.334109000862,13.944913000799716],[1,6836.351502000354,14.962306000292301],[1,6837.260154999793,15.870958999730647],[1,6838.369672000408,16.980476000346243],[1,6839.340175000019,0.8569789994508028],[1,6840.358781000599,1.8755850000306964],[1,6841.134030001238,2.6508340006694198],[1,6842.378601999953,3.8954059993848205],[1,6843.147785000503,4.6645889999344945],[1,6844.2892570002,5.806060999631882],[1,6845.394177000038,6.910980999469757],[1,6846.338049000129,7.854852999560535],[1,6847.286987000145,8.80379099957645],[1,6848.3953070007265,9.912111000157893],[1,6849.307458000258,10.824261999689043],[1,6850.319748000242,11.836551999673247],[1,6851.282417000271,12.799220999702811],[1,6852.420202000998,13.937006000429392],[1,6853.312308000401,14.829111999832094],[1,6854.434257000685,15.95106100011617],[1,6855.403014000505,16.91981799993664],[1,6856.171844000928,17.688648000359535],[1,6857.349118000828,18.86592200025916],[1,6858.324596000835,19.84140000026673],[1,6859.273081000894,0.7058850005269051],[1,6860.143838000484,1.5766420001164079],[1,6861.389312000014,2.822115999646485],[1,6862.228497000411,3.66130100004375],[1,6863.37374000065,4.806544000282884],[1,6864.238560999744,5.671364999376237],[1,6865.369269000366,6.802072999998927],[1,6866.147614999674,7.580418999306858],[1,6867.254040000029,8.686843999661505],[1,6868.363602999598,9.796406999230385],[1,6869.323145000264,10.755948999896646],[1,6870.3034230005,11.736227000132203],[1,6871.313864000142,12.746667999774218],[1,6872.282844999805,13.71564899943769],[1,6873.257142000832,14.68994600046426],[1,6874.220557999797,15.653361999429762],[1,6875.133138000965,16.565942000597715],[1,6876.219977000728,17.652781000360847],[1,6877.358141999692,18.79094599932432],[1,6878.34741399996,19.780217999592423],[1,6879.382310999557,0.835114998742938],[1,6880.338596000336,1.7913999995216727],[1,6881.247488999739,2.7002929989248514],[1,6882.228132001124,3.6809360003098845],[1,6883.1250510001555,4.577854999341071],[1,6884.228696000762,5.681499999947846],[1,6885.373693999834,6.826497999019921],[1,6886.225275000557,7.678078999742866],[1,6887.120041000657,8.572844999842346],[1,6888.18103300035,9.63383699953556],[1,6889.340065000579,10.792868999764323],[1,6890.3827100005,11.835513999685645],[1,6891.157219000161,12.610022999346256],[1,6892.374929999933,13.827733999118209],[1,6893.386928000487,14.83973199967295],[1,6894.415962999687,15.868766998872161],[1,6895.183093000203,16.635896999388933],[1,6896.395419000648,17.848222999833524],[1,6897.4133640006185,18.86616799980402],[1,6898.3254789998755,19.778282999061048],[1,6899.259766000323,0.8555699996650219],[1,6900.157247999683,1.7530519990250468],[1,6901.302333001047,2.898137000389397],[1,6902.338180000894,3.933984000235796],[1,6903.330079999752,4.925883999094367],[1,6904.40373700019,5.999540999531746],[1,6905.322358000092,6.918161999434233],[1,6906.160600000061,7.756403999403119],[1,6907.19896400068,8.794768000021577],[1,6908.341841000132,9.937644999474287],[1,6909.33255400043,10.928357999771833],[1,6910.410094000399,12.005897999741137],[1,6911.191285000183,12.787088999524713],[1,6912.364201000892,13.96000500023365],[1,6913.385811001062,14.981615000404418],[1,6914.165709000081,15.761512999422848],[1,6915.3774279998615,16.973231999203563],[1,6916.35116400104,17.946968000382185],[1,6917.306575000286,18.902378999628127],[1,6918.415590000339,20.011393999680877],[1,6919.3827250003815,0.8035289999097586],[1,6920.381493000314,1.8022969998419285],[1,6921.422818000428,2.8436219999566674],[1,6922.217052000575,3.6378560001030564],[1,6923.225475999527,4.646279999054968],[1,6924.36429200042,5.78509599994868],[2606,6925.325142000802,6.74594600033015],[2624,6926.319370999932,7.740174999460578],[1,6927.348480000161,8.769283999688923],[1,6928.382791000418,9.803594999946654],[1,6929.416208000854,10.837012000381947],[1,6930.301757000387,11.722560999915004],[1,6931.193963000551,12.614767000079155],[1,6932.435542000458,13.856345999985933],[1,6933.413602001034,14.834406000562012],[1,6934.276107000187,15.696910999715328],[1,6935.156732000411,0.6145360004156828],[1,6936.472857000306,1.9306610003113747],[1,6937.303946000524,2.7617500005289912],[1,6938.439166000113,3.896970000118017],[1,6939.3008970003575,4.758701000362635],[1,6940.406880000606,5.864684000611305],[1,6941.313017999753,6.770821999758482],[1,6942.334265000187,7.792069000191987],[1,6943.377724000253,8.83552800025791],[1,6944.1736949998885,9.631498999893665],[1,6945.412583000958,10.870387000963092],[1,6946.319941000082,11.777745000086725],[1,6947.329061000608,12.786865000613034],[1,6948.385552000254,13.843356000259519],[1,6949.32764500007,14.78544900007546],[1,6950.253579000942,15.711383000947535],[1,6951.434376000427,16.892180000431836],[1,6952.407317000441,17.86512100044638],[1,6953.379826000892,18.837630000896752],[1,6954.137608000077,0.04841199982911348],[1,6955.162623000331,1.0734270000830293],[1,6956.418149000034,2.3289529997855425],[1,6957.410583999939,3.321387999691069],[1,6958.314602999948,4.225406999699771],[1,6959.150720000267,5.061524000018835],[1,6960.440940001048,6.351744000799954],[1,6961.403727000579,7.314531000331044],[1,6962.318783000112,8.229586999863386],[1,6963.212774000131,9.1235779998824],[1,6964.471814000979,10.382618000730872],[1,6965.3985219998285,11.309325999580324],[1,6966.323912000284,12.234716000035405],[1,6967.432440000586,13.343244000338018],[1,6968.284292000346,14.195096000097692],[1,6969.218090000562,15.128894000314176],[1,6970.496473000385,16.407277000136673],[1,6971.276681000367,17.187485000118613],[1,6972.427804000676,18.338608000427485],[1,6973.426537000574,19.337341000325978],[1,6974.1445610011,20.055365000851452],[1,6975.258226000704,1.0240299999713898],[1,6976.357106000185,2.1229099994525313],[1,6977.449300999753,3.2151049990206957],[1,6978.354559999891,4.120363999158144],[1,6979.284030999988,5.049834999255836],[1,6980.3367230007425,6.102527000010014],[1,6981.161020000465,6.926823999732733],[1,6982.38406200055,8.149865999817848],[1,6983.258228999563,9.02403299883008],[1,6984.418042000383,10.183845999650657],[1,6985.408473000862,11.174277000129223],[1,6986.357325000688,12.123128999955952],[1,6987.205289999954,12.971093999221921],[1,6988.218504999764,13.984308999031782],[1,6989.40547400061,15.17127799987793],[1,6990.381163000129,16.146966999396682],[1,6991.324576000683,17.090379999950528],[1,6992.335902000777,18.101706000044942],[1,6993.16782599967,18.93362999893725],[1,6994.2615390000865,20.027342999354005],[1,6995.289334000088,0.9291380001232028],[1,6996.452186000533,2.0919900005683303],[1,6997.3179679997265,2.957771999761462],[1,6998.411232001148,4.051036001183093],[1,6999.208775000647,4.848579000681639],[1,7000.433478000574,6.073282000608742],[1,7001.199292000383,6.839096000418067],[1,7002.315803000703,7.955607000738382],[1,7003.252676000819,8.892480000853539],[1,7004.299980000593,9.939784000627697],[1,7005.439168000594,11.07897200062871],[1,7006.402200000361,12.042004000395536],[1,7007.229915000498,12.869719000533223],[1,7008.294254000299,13.934058000333607],[1,7009.342318000272,14.982122000306845],[1,7010.4316950002685,16.071499000303447],[1,7011.152038000524,0.3088420005515218],[1,7012.47722800076,1.6340320007875562],[1,7013.2170930001885,2.3738970002159476],[1,7014.440718000755,3.5975220007821918],[1,7015.405709000304,4.562513000331819],[1,7016.370879000053,5.5276830000802875],[1,7017.4084040001035,6.565208000130951],[1,7018.409710000269,7.566514000296593],[1,7019.237010000274,8.393814000301063],[1,7020.439819000661,9.59662300068885],[1,7021.405976000242,10.562780000269413],[1,7022.391832999885,11.54863699991256],[1,7023.416197000071,12.573001000098884],[1,7024.238861000165,13.395665000192821],[1,7025.356916000135,14.51372000016272],[1,7026.326701000333,15.48350500036031],[1,7027.219272000715,16.376076000742614],[1,7028.278087000363,17.434891000390053],[1,7029.391238000244,0.2970420001074672],[1,7030.232795000076,1.138598999939859],[1,7031.291887000203,2.1976910000666976],[1,7032.452592999674,3.358396999537945],[1,7033.396317000501,4.302121000364423],[1,7034.330203000456,5.23600700031966],[1,7035.151783000678,6.057587000541389],[1,7036.242245000787,7.148049000650644],[1,7037.213100000285,8.118904000148177],[1,7038.145385000855,9.051189000718296],[1,7039.16483000014,10.070634000003338],[1,7040.388635000214,11.294439000077546],[1,7041.263492000289,12.169296000152826],[1,7042.343992000446,13.249796000309289],[1,7043.157466000877,14.063270000740886],[1,7044.259083000943,15.16488700080663],[1,7045.414581000805,16.320385000668466],[1,7046.413886999711,0.9056909997016191],[1,7047.39485500101,1.8866590010002255],[1,7048.184640000574,2.6764440005645156],[1,7049.190348000266,3.6821520002558827],[1,7050.468617000617,4.960421000607312],[1,7051.146581000648,5.638385000638664],[1,7052.482268000953,6.974072000943124],[1,7053.361948000267,7.853752000257373],[1,7054.192960000597,8.684764000587165],[1,7055.234682999551,9.726486999541521],[1,7056.4261790001765,10.917983000166714],[1,7057.3862100001425,11.87801400013268],[1,7058.14535100013,12.637155000120401],[1,7059.16579600051,13.657600000500679],[1,7060.37683499977,14.868638999760151],[1,7061.258788000792,15.75059200078249],[1,7062.336006000638,16.827810000628233],[1,7063.4172830004245,17.90908700041473],[1,7064.410523000173,18.902327000163496],[1,7065.408782000653,0.6405859999358654],[1,7066.320642000064,1.5524459993466735],[1,7067.141885000281,2.3736889995634556],[1,7068.395886000246,3.6276899995282292],[1,7069.414518999867,4.646322999149561],[1,7070.390014000237,5.621817999519408],[1,7071.424935000017,6.656738999299705],[1,7072.407191000879,7.638995000161231],[1,7073.369343000464,8.601146999746561],[1,7074.326171000488,9.557974999770522],[1,7075.335250000469,10.567053999751806],[1,7076.334167000838,11.565971000120044],[1,7077.175288000144,12.407091999426484],[1,7078.3714089998975,13.60321299917996],[1,7079.14254800044,14.374351999722421],[1,7080.222957001068,15.454761000350118],[1,7081.157952999696,16.389756998978555],[1,7082.379279999994,17.61108399927616],[1,7083.318121000193,18.54992499947548],[1,7084.166981000453,19.398784999735653],[1,7085.190725000575,0.4255290003493428],[1,7086.383398000151,1.618201999925077],[1,7087.318923000246,2.5537270000204444],[1,7088.136588000692,3.371392000466585],[1,7089.367083000019,4.601886999793351],[1,7090.143451000564,5.378255000337958],[1,7091.184936000034,6.419739999808371],[1,7092.206455000676,7.441259000450373],[1,7093.1367680002,8.371571999974549],[1,7094.151654999703,9.386458999477327],[1,7095.146058999933,10.38086299970746],[1,7096.233681000769,11.468485000543296],[1,7097.243845000863,12.478649000637233],[1,7098.361534000374,13.596338000148535],[1,7099.143237000331,14.37804100010544],[1,7100.3734510000795,15.60825499985367],[1,7101.166636000387,16.40144000016153],[1,7102.365303999744,17.600107999518514],[1,7103.12133600004,18.35613999981433],[1,7104.370562999509,0.12736699916422367],[1,7105.2671189997345,1.0239229993894696],[1,7106.380738999695,2.1375429993495345],[1,7107.33910600096,3.095910000614822],[1,7108.332727001049,4.089531000703573],[1,7109.1505060000345,4.90730999968946],[1,7110.38078599982,6.137589999474585],[1,7111.332431000657,7.089235000312328],[1,7112.217002999969,7.9738069996237755],[1,7113.230997000821,8.987801000475883],[1,7114.433057000861,10.18986100051552],[1,7115.332971000113,11.089774999767542],[1,7116.33399300091,12.090797000564635],[1,7117.153663000092,12.910466999746859],[1,7118.378128999844,14.134932999499142],[1,7119.175520000979,14.932324000634253],[1,7120.360268000513,16.117072000168264],[1,7121.40556900017,17.162372999824584],[1,7122.408489000052,0.8722930001094937],[1,7123.379582000896,1.8433860009536147],[1,7124.398128000088,2.861932000145316],[1,7125.300021001138,3.763825001195073],[1,7126.235256999731,4.699060999788344],[1,7127.173522001132,5.637326001189649],[2641,7128.331749999896,6.795553999952972],[1,7129.169581000693,7.6333850007504225],[1,7130.458768000826,8.92257200088352],[1,7131.3496570000425,9.813461000099778],[1,7132.151362000033,10.61516600009054],[1,7133.168042000383,11.631846000440419],[1,7134.3764300001785,12.840234000235796],[1,7135.329297000542,13.793101000599563],[1,7136.369518999942,14.833322999998927],[1,7137.388518000022,15.852322000078857],[1,7138.417005999945,0.6288099996745586],[1,7139.379101000726,1.5909050004556775],[1,7140.199438000098,2.4112419998273253],[2642,7141.169825000688,3.381629000417888],[1,7142.367925000377,4.579729000106454],[1,7143.327173000202,5.538976999931037],[1,7144.43344300054,6.645247000269592],[1,7145.312262000516,7.5240660002455115],[1,7146.338676000945,8.550480000674725],[1,7147.125615000725,9.337419000454247],[1,7148.482023000717,10.693827000446618],[1,7149.184272999875,11.396076999604702],[1,7150.394559000619,12.60636300034821],[1,7151.368938000873,13.580742000602186],[1,7152.388751000166,14.600554999895394],[1,7153.383208000101,15.595011999830604],[1,7154.241682000458,16.453486000187695],[1,7155.303217999637,17.51502199936658],[1,7156.456737999804,18.668541999533772],[1,7157.264837000519,19.47664100024849],[1,7158.348419999704,0.9012239994481206],[1,7159.330016000196,1.8828199999406934],[1,7160.388933001086,2.9417370008304715],[1,7161.383271000348,3.936075000092387],[1,7162.184829999693,4.737633999437094],[1,7163.280419000424,5.8332230001688],[1,7164.439630000852,6.992434000596404],[1,7165.30747500062,7.860279000364244],[1,7166.4046980002895,8.957502000033855],[1,7167.385052000172,9.937855999916792],[1,7168.322974000126,10.875777999870479],[1,7169.306598000228,11.85940199997276],[1,7170.40779000055,12.960594000294805],[1,7171.41367200017,13.96647599991411],[1,7172.392488000914,14.94529200065881],[1,7173.180755999871,15.733559999614954],[1,7174.210606000386,16.763410000130534],[1,7175.358768000267,1.0075719999149442],[1,7176.326225999743,1.9750299993902445],[1,7177.4347290005535,3.083533000200987],[1,7178.320098999888,3.968902999535203],[1,7179.344744000584,4.993548000231385],[1,7180.167268000543,5.816072000190616],[1,7181.293233000673,6.942037000320852],[1,7182.424327000044,8.073130999691784],[1,7183.40981800016,9.058621999807656],[1,7184.2114580003545,9.860262000001967],[1,7185.462744000368,11.111548000015318],[1,7186.248141000979,11.896945000626147],[1,7187.411475000903,13.060279000550508],[1,7188.410467000678,14.05927100032568],[1,7189.322968000546,14.971772000193596],[1,7190.377623000182,16.02642699982971],[1,7191.323517999612,0.12332199886441231],[1,7192.225350000896,1.0251540001481771],[1,7193.365970999934,2.1657749991863966],[1,7194.426906000823,3.2267100000754],[1,7195.372430000454,4.172233999706805],[1,7196.402730000205,5.202533999457955],[1,7197.205164999701,6.0049689989537],[1,7198.129109000787,6.928913000039756],[1,7199.168421000242,7.968224999494851],[1,7200.328350001015,9.128154000267386],[1,7201.427729000337,10.22753299959004],[1,7202.408275000751,11.208079000003636],[1,7203.396530999802,12.19633499905467],[1,7204.413921000436,13.213724999688566],[1,7205.178011000156,13.97781499940902],[1,7206.407382000238,15.20718599949032],[1,7207.412147999741,16.211951998993754],[1,7208.31586200092,17.115666000172496],[1,7209.33796699997,18.137770999222994],[1,7210.188572000712,0.15637600049376488],[1,7211.239335000515,1.2071390002965927],[1,7212.467457000166,2.4352609999477863],[1,7213.191555000842,3.159359000623226],[1,7214.375376000069,4.34317999985069],[1,7215.3053710004315,5.273175000213087],[1,7216.333134001121,6.3009380009025335],[1,7217.170974999666,7.138778999447823],[1,7218.406615000218,8.374418999999762],[1,7219.411578000523,9.379382000304759],[1,7220.390979000367,10.358783000148833],[1,7221.21894299984,11.186746999621391],[1,7222.216567000374,12.184371000155807],[1,7223.269995000213,13.237798999994993],[1,7224.478644999675,14.446448999457061],[1,7225.295017000288,15.26282100006938],[1,7226.346241000108,16.31404499989003],[1,7227.331634000875,17.299438000656664],[1,7228.220528000966,18.188332000747323],[1,7229.192038000561,19.159842000342906],[1,7230.454747000709,1.0825510006397963],[1,7231.303927000612,1.9317310005426407],[1,7232.353191999719,2.980995999649167],[1,7233.406902000308,4.034706000238657],[1,7234.381539999507,5.009343999437988],[1,7235.168321000412,5.796125000342727],[1,7236.224301000126,6.852105000056326],[1,7237.225678999908,7.853482999838889],[1,7238.441669000313,9.069473000243306],[1,7239.415748000145,10.043552000075579],[1,7240.392760001123,11.020564001053572],[2,7241.177333000116,11.80513700004667],[1,7242.142047000118,12.76985100004822],[1,7243.287015000358,13.914819000288844],[1,7244.344096999615,14.971900999546051],[1,7245.1666660010815,15.794470001012087],[1,7246.37392700091,17.001731000840664],[1,7247.320181000978,17.947985000908375],[1,7248.373185000382,19.000989000312984],[1,7249.315069000237,19.94287300016731],[1,7250.154652000405,0.6274560000747442],[1,7251.1270290007815,1.5998330004513264],[1,7252.272440000437,2.74524400010705],[1,7253.128024999984,3.6008289996534586],[1,7254.401688000187,4.874491999857128],[1,7255.311626999639,5.7844309993088245],[1,7256.333595001139,6.806399000808597],[1,7257.147494000383,7.620298000052571],[1,7258.269659000449,8.742463000118732],[1,7259.248885000125,9.721688999794424],[1,7260.347082000226,10.819885999895632],[1,7261.2613760000095,11.734179999679327],[1,7262.3806770006195,12.853481000289321],[1,7263.35328900069,13.826093000359833],[1,7264.41194400005,14.884747999720275],[1,7265.264585000463,15.73738900013268],[1,7266.426350000314,16.899153999984264],[1,7267.3569499999285,17.829753999598324],[1,7268.392141000368,0.7449449999257922],[1,7269.275422000326,1.6282259998843074],[1,7270.463438999839,2.8162429993972182],[1,7271.157863000408,3.510666999965906],[1,7272.256754000671,4.609558000229299],[1,7273.462783999741,5.815587999299169],[1,7274.301384000108,6.654187999665737],[1,7275.341578001156,7.6943820007145405],[1,7276.3852530010045,8.738057000562549],[1,7277.200233000331,9.553036999888718],[1,7278.249982000329,10.602785999886692],[1,7279.44549100101,11.798295000568032],[1,7280.372615000233,12.725418999791145],[1,7281.231742000207,13.584545999765396],[1,7282.365798000246,14.718601999804378],[1,7283.426728000864,15.779532000422478],[1,7284.278939000331,16.631742999888957],[1,7285.22318000067,17.575984000228345],[1,7286.46334100049,18.81614500004798],[1,7287.393033000641,0.7608369998633862],[1,7288.164618000388,1.5324219996109605],[1,7289.374842000194,2.742645999416709],[1,7290.189633000642,3.5574369998648763],[1,7291.3557780003175,4.723581999540329],[1,7292.327421000227,5.695224999450147],[1,7293.140004999936,6.507808999158442],[1,7294.252164999954,7.6199689991772175],[1,7295.154091999866,8.521895999088883],[1,7296.276401001029,9.644205000251532],[1,7297.440357000567,10.808160999789834],[1,7298.4026500005275,11.770453999750316],[1,7299.2425509998575,12.6103549990803],[1,7300.37064700108,13.73845100030303],[1,7301.125587000512,14.493390999734402],[1,7302.262904999778,15.63070899900049],[1,7303.350787000731,16.71859099995345],[1,7304.317239999771,17.685043998993933],[1,7305.142087000422,18.509890999644995],[1,7306.131094000302,19.49889799952507],[1,7307.257019001059,1.0298230005428195],[1,7308.348989999853,2.12179399933666],[1,7309.193833000958,2.966637000441551],[1,7310.210183000192,3.9829869996756315],[1,7311.152914999984,4.92571899946779],[1,7312.358611000702,6.1314150001853704],[1,7313.143488000147,6.91629199963063],[1,7314.383063999936,8.15586799941957],[1,7315.319261999801,9.092065999284387],[1,7316.332795000635,10.105599000118673],[1,7317.124364000745,10.897168000228703],[1,7318.123137000948,11.895941000431776],[1,7319.198380000889,12.971184000372887],[1,7320.397609001026,14.170413000509143],[1,7321.32646800112,15.099272000603378],[1,7322.188896999694,15.961700999177992],[1,7323.400253000669,17.173057000152767],[1,7324.313753000461,18.08655699994415],[1,7325.168136999942,18.940940999425948],[1,7326.302167000249,1.0829710001125932],[1,7327.23580900114,2.0166130010038614],[1,7328.423406000249,3.204210000112653],[2646,7329.243412000127,4.024215999990702],[1,7330.194886000827,4.97569000069052],[1,7331.169164000079,5.949967999942601],[1,7332.372516000643,7.1533200005069375],[1,7333.316266000271,8.097070000134408],[1,7334.219115000218,8.999919000081718],[1,7335.151081000455,9.931885000318289],[1,7336.44453900028,11.225343000143766],[1,7337.3350879997015,12.115891999565065],[1,7338.3964960007,13.177300000563264],[1,7339.323255000636,14.104059000499547],[1,7340.397606000304,15.178410000167787],[2,7341.31886699982,16.09967099968344],[1,7342.177371000871,16.958175000734627],[1,7343.252027000301,18.03283100016415],[1,7344.217610999942,18.99841499980539],[1,7345.4812230002135,0.9690269995480776],[1,7346.391142000444,1.8789459997788072],[1,7347.3788500009105,2.8666540002450347],[1,7348.3228090005,3.8106129998341203],[1,7349.201545000076,4.689348999410868],[1,7350.266283000819,5.754087000153959],[1,7351.2918549999595,6.779658999294043],[1,7352.219597000629,7.7074009999632835],[1,7353.344277000055,8.83208099938929],[1,7354.3133190004155,9.801122999750078],[1,7355.347636000253,10.835439999587834],[1,7356.330064000562,11.817867999896407],[387,7357.179260999896,12.667064999230206],[1,7358.134897000156,13.622700999490917],[1,7359.222829001024,14.71063300035894],[1,7360.373263000511,15.861066999845207],[1,7361.307429000735,16.795233000069857],[1,7362.122240000404,17.61004399973899],[1,7363.2711450001225,18.75894899945706],[1,7364.215614000335,19.70341799966991],[1,7365.37151400093,0.7283180002123117],[1,7366.319637000561,1.6764409998431802],[1,7367.168100999668,2.5249049989506602],[1,7368.375020001084,3.731824000366032],[1,7369.137768000364,4.494571999646723],[1,7370.29908300098,5.655887000262737],[1,7371.433334000409,6.790137999691069],[1,7372.3723890008405,7.729193000122905],[1,7373.165421999991,8.52222599927336],[1,7374.12548699975,9.482290999032557],[1,7375.234978000633,10.591781999915838],[1,7376.125049000606,11.48185299988836],[1,7377.371837000363,12.728640999644995],[1,7378.152061000466,13.508864999748766],[1,7379.3533430006355,14.710146999917924],[1,7380.155782000162,15.512585999444127],[1,7381.249255000614,16.60605899989605],[1,7382.380063001066,17.736867000348866],[1,7383.305623999797,18.662427999079227],[1,7384.340318000875,0.7011220008134842],[1,7385.332096000202,1.692900000140071],[1,7386.4052010001615,2.7660050000995398],[1,7387.1770080002025,3.5378120001405478],[1,7388.245760000311,4.606564000248909],[1,7389.472317000851,5.833121000789106],[1,7390.29253700003,6.65334099996835],[1,7391.129503000528,7.490307000465691],[1,7392.385088000447,8.745892000384629],[1,7393.318273000419,9.67907700035721],[1,7394.2842380004,10.645042000338435],[1,7395.407178000547,11.767982000485063],[1,7396.409404000267,12.770208000205457],[1,7397.377337000333,13.738141000270844],[1,7398.197553999722,14.558357999660075],[1,7399.166572000831,15.527376000769436],[1,7400.299224000424,16.660028000362217],[1,7401.451160999946,1.030964999459684],[1,7402.397398000583,1.9772020000964403],[1,7403.3804420009255,2.9602460004389286],[1,7404.420269000344,4.000072999857366],[1,7405.270935000852,4.850739000365138],[1,7406.432938001119,6.012742000631988],[1,7407.1506110001355,6.730414999648929],[1,7408.446887000464,8.02669099997729],[1,7409.3799590002745,8.959762999787927],[1,7410.345794999972,9.925598999485373],[1,7411.408812999725,10.98861699923873],[1,7412.414584999904,11.994388999417424],[1,7413.135611000471,12.715414999984205],[1,7414.355777000077,13.935580999590456],[1,7415.220412000082,14.800215999595821],[1,7416.477024000138,16.056827999651432],[1,7417.35936400108,16.93916800059378],[1,7418.332621000707,17.912425000220537],[1,7419.209699000232,18.78950299974531],[1,7420.365898000076,19.9457019995898],[1,7421.204200000502,0.731003999710083],[1,7422.363730000332,1.8905339995399117],[1,7423.1598850004375,2.686688999645412],[1,7424.240911000408,3.767714999616146],[1,7425.4564810004085,4.983284999616444],[1,7426.367308000103,5.894111999310553],[1,7427.421535000205,6.948338999412954],[1,7428.213910000399,7.740713999606669],[1,7429.434323000722,8.961126999929547],[1,7430.41878500022,9.945588999427855],[1,7431.278338000178,10.805141999386251],[1,7432.445698000491,11.97250199969858],[1,7433.307173999958,12.833977999165654],[1,7434.340288000181,13.867091999389231],[1,7435.3370080003515,14.863811999559402],[1,7436.331571999937,15.85837599914521],[1,7437.333483000286,16.860286999493837],[1,7438.333494000137,0.894297999329865],[1,7439.335334000178,1.8961379993706942],[1,7440.395492000505,2.956295999698341],[2,7441.233598999679,3.7944029988721013],[1,7442.294804000296,4.855607999488711],[1,7443.417091000825,5.977895000018179],[1,7444.345387000591,6.9061909997835755],[1,7445.255891000852,7.8166950000450015],[1,7446.428669000976,8.9894730001688],[1,7447.175658999942,9.736462999135256],[1,7448.210299000144,10.771102999337018],[1,7449.405903000385,11.966706999577582],[1,7450.42524900008,12.986052999272943],[1,7451.375043000095,13.935846999287605],[1,7452.3884060001,14.949209999293089],[1,7453.420825000852,15.98162900004536],[1,7454.274676000699,16.835479999892414],[1,7455.389039999805,17.949843998998404],[1,7456.428354000673,18.98915799986571],[1,7457.381572000682,0.5083760004490614],[1,7458.4108220003545,1.5376260001212358],[1,7459.324203999713,2.4510079994797707],[1,7460.192780000158,3.3195839999243617],[1,7461.424159000628,4.550963000394404],[1,7462.37422799971,5.501031999476254],[1,7463.232798000798,6.359602000564337],[1,7464.437599000521,7.564403000287712],[1,7465.371864000335,8.498668000102043],[1,7466.417999999598,9.544803999364376],[1,7467.271117000841,10.397921000607312],[1,7468.3360740002245,11.462877999991179],[1,7469.331952000037,12.458755999803543],[1,7470.334381000139,13.461184999905527],[1,7471.303773000836,14.43057700060308],[1,7472.351085000671,15.477889000438154],[1,7473.4044100008905,16.5312140006572],[1,7474.275050000288,17.4018540000543],[1,7475.354429000989,18.48123300075531],[1,7476.425172001123,19.551976000890136],[1,7477.367852999829,0.7026569992303848],[1,7478.387818000279,1.722621999680996],[1,7479.197414000519,2.532217999920249],[1,7480.301576000638,3.636380000039935],[1,7481.406958000734,4.741762000136077],[1,7482.40874100104,5.743545000441372],[1,7483.317002000287,6.651805999688804],[1,7484.263442000374,7.598245999775827],[1,7485.355085000396,8.689888999797404],[1,7486.15527100116,9.490075000561774],[1,7487.2655680002645,10.600371999666095],[1,7488.40228000097,11.737084000371397],[1,7489.393566000275,12.728369999676943],[1,7490.383396000601,13.71820000000298],[1,7491.20688000042,14.541683999821544],[1,7492.358722000383,15.69352599978447],[1,7493.326449000277,0.14325299952179193],[1,7494.263406001031,1.0802100002765656],[1,7495.219783000648,2.0365869998931885],[1,7496.440120999701,3.256924998946488],[1,7497.405323999934,4.222127999179065],[1,7498.378399000503,5.19520299974829],[1,7499.329614000395,6.146417999640107],[1,7500.130722000264,6.947525999508798],[1,7501.280478000641,8.097281999886036],[1,7502.448289000429,9.26509299967438],[1,7503.24893600028,10.065739999525249],[1,7504.4197120005265,11.236515999771655],[1,7505.376370999962,12.193174999207258],[1,7506.418124999851,13.234928999096155],[1,7507.297186000273,14.113989999517798],[1,7508.340707000345,15.157510999590158],[1,7509.332282000221,16.14908599946648],[1,7510.35319600068,0.6699999999254942],[1,7511.172729999758,1.48953399900347],[1,7512.449322000146,2.766125999391079],[1,7513.276317999698,3.5931219989433885],[1,7514.3674670010805,4.68427100032568],[1,7515.391774999909,5.70857899915427],[1,7516.330467000604,6.647270999848843],[1,7517.140724000521,7.457527999766171],[1,7518.387331000529,8.704134999774396],[1,7519.140889000148,9.457692999392748],[1,7520.215936000459,10.532739999704063],[1,7521.3267910005525,11.643594999797642],[1,7522.18682499975,12.503628998994827],[1,7523.1790940007195,13.495897999964654],[1,7524.38261600025,14.699419999495149],[1,7525.318247000687,15.635050999931991],[1,7526.334507999942,16.651311999186873],[1,7527.316000000574,17.63280399981886],[1,7528.333488000557,18.650291999801993],[2,7529.308099000715,19.624902999959886],[1,7530.1290250001475,0.7388289999216795],[2,7531.375607999973,1.985411999747157],[1,7532.296233000234,2.9060370000079274],[1,7533.350224000402,3.960028000175953],[1,7534.202700000256,4.812504000030458],[1,7535.133865999989,5.74366999976337],[1,7536.138726999983,6.7485309997573495],[1,7537.350858000107,7.9606619998812675],[1,7538.311951000243,8.921755000017583],[1,7539.384673000313,9.9944770000875],[1,7540.343523000367,10.953327000141144],[1,7541.331126000732,11.940930000506341],[1,7542.334903000854,12.944707000628114],[1,7543.1469600005075,13.756764000281692],[1,7544.243990000337,14.85379400011152],[1,7545.356481000781,15.966285000555217],[1,7546.427631000057,17.03743499983102],[1,7547.374665000476,17.9844690002501],[1,7548.317620000802,18.92742400057614],[1,7549.339581999928,0.18738599959760904],[1,7550.209222000092,1.0570259997621179],[1,7551.279869999737,2.1276739994063973],[1,7552.468089000322,3.3158929999917746],[1,7553.328103000298,4.175906999967992],[1,7554.427315000445,5.2751190001145005],[1,7555.372212000191,6.220015999861062],[1,7556.184813000262,7.0326169999316335],[1,7557.448182000779,8.295986000448465],[1,7558.2956430008635,9.143447000533342],[1,7559.129681000486,9.977485000155866],[1,7560.157263000496,11.005067000165582],[1,7561.209731999785,12.057535999454558],[1,7562.46363200061,13.311436000280082],[1,7563.33728300035,14.185087000019848],[1,7564.428664000705,15.276468000374734],[1,7565.373879999854,16.22168399952352],[1,7566.3313970007,17.179201000370085],[1,7567.330170000903,0.2069740006700158],[1,7568.145771999843,1.022575999610126],[1,7569.201460001059,2.078264000825584],[1,7570.417632000521,3.294436000287533],[1,7571.374567000195,4.2513709999620914],[1,7572.387359000742,5.264163000509143],[1,7573.325854000635,6.2026580004021525],[1,7574.183758000843,7.060562000609934],[1,7575.314059999771,8.190863999538124],[1,7576.337213999592,9.214017999358475],[1,7577.151109000668,10.027913000434637],[1,7578.379872000776,11.256676000542939],[1,7579.421362000518,12.298166000284255],[1,7580.395976000465,13.27278000023216],[1,7581.176760001108,14.053564000874758],[1,7582.235553001054,15.112357000820339],[1,7583.311795000918,16.188599000684917],[1,7584.408383000642,17.28518700040877],[1,7585.174177000299,18.050981000065804],[1,7586.472704000771,19.349508000537753],[1,7587.31335500069,0.2651590006425977],[1,7588.151623000391,1.1034270003437996],[1,7589.421471000649,2.373275000602007],[1,7590.310969999991,3.2627739999443293],[1,7591.339039999992,4.290843999944627],[1,7592.333016000688,5.284820000641048],[1,7593.243715999648,6.195519999600947],[1,7594.459602001123,7.411406001076102],[1,7595.143252000213,8.095056000165641],[1,7596.367167000659,9.318971000611782],[1,7597.422890000045,10.374693999998271],[1,7598.376497999765,11.32830199971795],[1,7599.329799001105,12.281603001058102],[1,7600.334069000557,13.285873000510037],[1,7601.16165199969,14.11345599964261],[1,7602.313124001026,15.264928000979125],[1,7603.435154000297,16.38695800025016],[1,7604.372657000087,0.7554609999060631],[1,7605.3890700004995,1.7718740003183484],[1,7606.414993001148,2.797797000966966],[1,7607.161280000582,3.544084000401199],[1,7608.3256090004,4.70841300021857],[1,7609.148198000155,5.531001999974251],[1,7610.34047000017,6.723273999989033],[1,7611.436564000323,7.819368000142276],[1,7612.171222000383,8.554026000201702],[1,7613.178980000317,9.561784000135958],[1,7614.158796000294,10.541600000113249],[1,7615.227767000906,11.610571000725031],[1,7616.412570999935,12.79537499975413],[1,7617.159951000474,13.542755000293255],[1,7618.35551100038,14.738315000198781],[1,7619.260935000144,15.643738999962807],[1,7620.451319000684,16.834123000502586],[1,7621.17795300018,17.560756999999285],[1,7622.420965000987,18.803769000805914],[1,7623.384782000445,19.76758600026369],[1,7624.419172001071,0.654976001009345],[1,7625.153568000533,1.3893720004707575],[1,7626.3776370007545,2.6134410006925464],[1,7627.188865000382,3.4246690003201365],[1,7628.193164000288,4.428968000225723],[1,7629.2754580006,5.511262000538409],[1,7630.272555000149,6.508359000086784],[1,7631.271632000804,7.507436000742018],[1,7632.364605999552,8.600409999489784],[1,7633.2134450003505,9.449249000288546],[1,7634.426098000258,10.661902000196278],[1,7635.15131600108,11.387120001018047],[1,7636.408737000078,12.644541000016034],[1,7637.410019000061,13.645822999998927],[1,7638.351328000426,14.587132000364363],[1,7639.432239999995,15.668043999932706],[1,7640.138182000257,16.373986000195146],[1,7641.165044000372,17.40084800031036],[1,7642.330084000714,18.565888000652194],[1,7643.335010000505,19.570814000442624],[1,7644.396682000719,0.8324859999120235],[1,7645.381664999761,1.8174689989537],[1,7646.418996000662,2.8547999998554587],[1,7647.173522000201,3.609325999394059],[1,7648.208108000457,4.6439119996502995],[1,7649.2521230001,5.687926999293268],[1,7650.167421000078,6.603224999271333],[1,7651.380226000212,7.816029999405146],[1,7652.169629000127,8.605432999320328],[1,7653.179722000845,9.61552600003779],[1,7654.284644000232,10.720447999425232],[1,7655.218907999806,11.654711998999119],[1,7656.474882000126,12.910685999318957],[1,7657.213705000468,13.649508999660611],[1,7658.386732000858,14.822536000050604],[1,7659.319977999665,15.755781998857856],[1,7660.227505000308,16.66330899950117],[1,7661.284347000532,17.720150999724865],[1,7662.445074000396,18.880877999588847],[1,7663.250590000302,19.686393999494612],[1,7664.443882000633,0.5876860003918409],[1,7665.170799000189,1.3146029999479651],[1,7666.425975000486,2.5697790002450347],[1,7667.216390000656,3.360194000415504],[1,7668.396253000945,4.54005700070411],[1,7669.298565000296,5.442369000054896],[1,7670.411332000047,6.555135999806225],[1,7671.393989000469,7.537793000228703],[1,7672.3820010004565,8.525805000215769],[1,7673.178083000705,9.321887000463903],[1,7674.1907069999725,10.33451099973172],[1,7675.348348001018,11.492152000777423],[1,7676.33014100045,12.473945000208914],[1,7677.317879000679,13.461683000437915],[1,7678.371567000635,14.515371000394225],[1,7679.2567940000445,15.400597999803722],[1,7680.464801000431,16.608605000190437],[1,7681.196361999959,17.34016599971801],[1,7682.4453969998285,18.589200999587774],[1,7683.362541000359,19.506345000118017],[1,7684.361147000454,0.25895099993795156],[1,7685.251083000563,1.1488870000466704],[1,7686.194020000286,2.0918239997699857],[1,7687.380416000262,3.278219999745488],[1,7688.383066000417,4.28086999990046],[1,7689.180101000704,5.077905000187457],[1,7690.435987000354,6.33379099983722],[1,7691.220701999962,7.118505999445915],[1,7692.297608999535,8.195412999019027],[1,7693.3424630006775,9.240267000161111],[1,7694.168770000339,10.06657399982214],[1,7695.442165000364,11.33996899984777],[1,7696.382859000936,12.280663000419736],[1,7697.154040000401,13.051843999885023],[1,7698.426579000428,14.324382999911904],[1,7699.3646070007235,15.262411000207067],[1,7700.398849000223,16.296652999706566],[1,7701.380051000044,17.277854999527335],[1,7702.140066999942,0.050870999693870544],[1,7703.1455310005695,1.056335000321269],[1,7704.429015000351,2.3398190001025796],[1,7705.307707999833,3.2185119995847344],[1,7706.425602000207,4.336405999958515],[1,7707.377739000134,5.288542999885976],[1,7708.294716000557,6.205520000308752],[1,7709.343202000484,7.254006000235677],[1,7710.203759000637,8.114563000388443],[1,7711.465410000645,9.37621400039643],[1,7712.25867800042,10.169482000172138],[1,7713.307056000456,11.21786000020802],[1,7714.422736999579,12.33354099933058],[1,7715.242330000736,13.153134000487626],[1,7716.258143000305,14.168947000056505],[1,7717.453157001175,15.363961000926793],[1,7718.395132000558,16.305936000309885],[1,7719.387232000008,17.29803599976003],[1,7720.41598200053,18.326786000281572],[1,7721.205184999853,19.11598899960518],[1,7722.319873000495,0.8736770004034042],[1,7723.408452999778,1.9622569996863604],[1,7724.317060999572,2.8708649994805455],[1,7725.33767100051,3.8914750004187226],[1,7726.332703000866,4.886507000774145],[1,7727.137084000744,5.690888000652194],[1,7728.484023000114,7.0378270000219345],[1,7729.1891510002315,7.742955000139773],[1,7730.450966000557,9.004770000465214],[1,7731.384793000296,9.938597000204027],[2647,7732.322915000841,10.87671900074929],[1,7733.294088000432,11.847892000339925],[1,7734.139329000376,12.693133000284433],[1,7735.356646000408,13.910450000315905],[1,7736.326984000392,14.880788000300527],[1,7737.146807000041,15.700610999949276],[1,7738.271060000174,16.824864000082016],[1,7739.347360000014,0.4951639994978905],[1,7740.327879999764,1.475683999247849],[2,7741.146148000844,2.2939520003274083],[1,7742.177307000384,3.32511099986732],[1,7743.325550000183,4.47335399966687],[1,7744.183098999783,5.330902999266982],[1,7745.2704700008035,6.418274000287056],[1,7746.344061001204,7.49186500068754],[1,7747.327781999484,8.47558599896729],[1,7748.326008000411,9.473811999894679],[1,7749.327490000986,10.475294000469148],[1,7750.324623000808,11.472427000291646],[1,7751.3265150003135,12.474318999797106],[1,7752.2554590003565,13.40326299984008],[1,7753.137248001061,14.285052000544965],[1,7754.402617000975,15.5504210004583],[1,7755.349073000252,16.496876999735832],[1,7756.380286000669,17.528090000152588],[1,7757.316124999896,18.463928999379277],[1,7758.333025000058,19.4808289995417],[1,7759.351225000806,0.6550290007144213],[1,7760.144419999793,1.4482239997014403],[1,7761.25433200039,2.5581360002979636],[1,7762.3741640001535,3.67796800006181],[1,7763.350241000764,4.65404500067234],[1,7764.344462000765,5.648266000673175],[1,7765.346645000391,6.650449000298977],[1,7766.369946001098,7.673750001005828],[1,7767.32416400034,8.627968000248075],[1,7768.147261000238,9.451065000146627],[1,7769.133820000105,10.437624000012875],[1,7770.367884000763,11.671688000671566],[1,7771.37683300022,12.680637000128627],[1,7772.371912000701,13.6757160006091],[1,7773.387740000151,14.691544000059366],[1,7774.320254000835,15.62405800074339],[1,7775.2128810007125,16.516685000620782],[1,7776.234232000075,17.53803599998355],[1,7777.126550000161,18.4303540000692],[1,7778.22578200046,19.529586000368],[1,7779.360156000592,1.0269600003957748],[1,7780.323607000522,1.9904110003262758],[1,7781.333821000531,3.000625000335276],[1,7782.366926999763,4.033730999566615],[1,7783.3223330006,4.989137000404298],[1,7784.327473000623,5.994277000427246],[1,7785.2471300000325,6.913933999836445],[1,7786.391731000505,8.058535000309348],[1,7787.391647000797,9.058451000601053],[1,7788.383344000205,10.050148000009358],[1,7789.383147000335,11.049951000139117],[1,7790.333980000578,12.000784000381827],[1,7791.137316999957,12.804120999760926],[1,7792.224841000512,13.891645000316203],[1,7793.373242000118,15.040045999921858],[1,7794.326174000278,15.992978000082076],[1,7795.308770000935,16.97557400073856],[1,7796.41733300034,18.084137000143528],[1,7797.408462000079,19.075265999883413],[1,7798.181368000805,19.84817200060934],[1,7799.14313200023,0.8369359998032451],[1,7800.459807000123,2.1536109996959567],[1,7801.226826000959,2.9206300005316734],[1,7802.443833000027,4.137636999599636],[1,7803.327500000596,5.021304000169039],[1,7804.259219000116,5.953022999688983],[1,7805.355973000638,7.049777000211179],[1,7806.4203319996595,8.11413599923253],[1,7807.349403000437,9.043207000009716],[1,7808.331726000644,10.025530000217259],[1,7809.334267999977,11.028071999549866],[1,7810.150520000607,11.844324000179768],[1,7811.1925780000165,12.886381999589503],[1,7812.423586000688,14.117390000261366],[1,7813.379484000616,15.073288000188768],[1,7814.404293000698,16.098097000271082],[1,7815.4148480007425,17.108652000315487],[1,7816.318966000341,18.01276999991387],[1,7817.257490999997,18.951294999569654],[1,7818.438189000823,1.0679930001497269],[1,7819.144067000598,1.7738709999248385],[1,7820.360284000635,2.9900879999622703],[1,7821.430425999686,4.060229999013245],[1,7822.1652180003,4.795021999627352],[1,7823.267469001003,5.897273000329733],[1,7824.467283000238,7.097086999565363],[1,7825.29861299973,7.928416999056935],[1,7826.232772000134,8.862575999461114],[1,7827.163540000096,9.793343999423087],[1,7828.406938999891,11.036742999218404],[1,7829.263735000044,11.89353899937123],[1,7830.444759001024,13.07456300035119],[1,7831.209466000088,13.839269999414682],[1,7832.372666000389,15.002469999715686],[1,7833.360160999931,15.989964999258518],[1,7834.236412000842,16.866216000169516],[1,7835.174025000073,17.80382899940014],[1,7836.462730000727,19.092534000054002],[1,7837.30072300043,19.930526999756694],[1,7838.314375001006,0.8841790007427335],[1,7839.406105000526,1.975909000262618],[1,7840.306943999603,2.876747999340296],[1,7841.202809000388,3.772613000124693],[1,7842.346173000522,4.915977000258863],[1,7843.280345000327,5.8501490000635386],[1,7844.341454000212,6.911257999949157],[1,7845.386214000173,7.956017999909818],[1,7846.264302000403,8.83410600014031],[1,7847.1472830008715,9.717087000608444],[1,7848.3071840005,10.876988000236452],[1,7849.346660000272,11.916464000009],[1,7850.417573000304,12.987377000041306],[1,7851.18758400064,13.757388000376523],[1,7852.435593000613,15.005397000350058],[1,7853.37267600093,15.942480000667274],[1,7854.4214840000495,16.991287999786437],[1,7855.293573000468,17.86337700020522],[1,7856.453705000691,19.02350900042802],[1,7857.398599999957,0.7674039993435144],[1,7858.3200010005385,1.6888049999251962],[1,7859.176909000613,2.545712999999523],[1,7860.374515000731,3.7433190001174808],[1,7861.374698000029,4.743501999415457],[1,7862.402886000462,5.771689999848604],[1,7863.293202999979,6.662006999365985],[1,7864.207895000465,7.576698999851942],[1,7865.4322589999065,8.801062999293208],[1,7866.1725979996845,9.54140199907124],[1,7867.314082000405,10.682885999791324],[1,7868.395772000775,11.764576000161469],[1,7869.3873159997165,12.756119999103248],[1,7870.393914000131,13.762717999517918],[1,7871.214761000127,14.583564999513328],[1,7872.276151999831,15.644955999217927],[1,7873.452511000447,16.821314999833703],[1,7874.35763300024,17.726436999626458],[1,7875.165770000778,18.534574000164866],[1,7876.375118000433,0.7719219997525215],[1,7877.395286000334,1.792089999653399],[1,7878.396953999996,2.793757999315858],[1,7879.199667000212,3.596470999531448],[1,7880.288057000376,4.684860999695957],[1,7881.469481000677,5.866284999996424],[1,7882.39746800065,6.7942719999700785],[1,7883.3023250009865,7.6991290003061295],[1,7884.441459000111,8.838262999430299],[1,7885.253287999891,9.650091999210417],[1,7886.40942200087,10.806226000189781],[1,7887.411581000313,11.808384999632835],[1,7888.395214000717,12.792018000036478],[1,7889.398653000593,13.795456999912858],[1,7890.207830000669,14.604633999988437],[1,7891.180088999681,15.576892999000847],[1,7892.3724470008165,16.769251000136137],[1,7893.325081000105,0.826884999871254],[1,7894.43701400049,1.9388180002570152],[1,7895.336686000228,2.8384899999946356],[1,7896.197658000514,3.6994620002806187],[1,7897.298524000682,4.800328000448644],[1,7898.3484790008515,5.850283000618219],[1,7899.337405000813,6.839209000580013],[1,7900.415833001025,7.9176370007917285],[1,7901.377349000424,8.879153000190854],[1,7902.399614000693,9.901418000459671],[1,7903.351325000636,10.853129000402987],[1,7904.216284000315,11.71808800008148],[1,7905.456729999743,12.95853399951011],[1,7906.388328000903,13.890132000669837],[1,7907.307220000774,14.809024000540376],[1,7908.335659001023,15.837463000789285],[1,7909.333278000355,16.835082000121474],[1,7910.262450000271,17.76425400003791],[1,7911.4302110001445,1.030015000142157],[1,7912.40410900116,2.0039130011573434],[1,7913.390160000883,2.9899640008807182],[1,7914.318470000289,3.918274000287056],[1,7915.254067000002,4.853870999999344],[1,7916.1853459998965,5.785149999894202],[1,7917.337028000504,6.936832000501454],[1,7918.396171000786,7.995975000783801],[1,7919.227460999973,8.827264999970794],[1,7920.425096000545,10.024900000542402],[1,7921.160368000157,10.760172000154853],[1,7922.206001999788,11.805805999785662],[1,7923.270297000185,12.87010100018233],[1,7924.364411000162,13.964215000160038],[1,7925.325099000707,14.924903000704944],[1,7926.211464000866,15.811268000863492],[1,7927.463317000307,17.063121000304818],[1,7928.363687000237,17.96349100023508],[1,7929.2809750000015,18.880778999999166],[1,7930.477245000191,1.07404899969697],[1,7931.150816000998,1.7476200005039573],[1,7932.492167999968,3.08897199947387],[1,7933.364688999951,3.961492999456823],[2648,7934.328807000071,4.925610999576747],[2641,7935.174769001082,5.771573000587523],[1,7936.231293000281,6.828096999786794],[1,7937.478093000129,8.074896999634802],[1,7938.395615000278,8.992418999783695],[1,7939.282318000682,9.879122000187635],[1,7940.437896001153,11.034700000658631],[1,7941.205786000006,11.802589999511838],[1,7942.339329000562,12.936133000068367],[1,7943.137714000419,13.73451799992472],[1,7944.419791000895,15.01659500040114],[1,7945.421394000761,16.018198000267148],[1,7946.1405540006235,0.050358000211417675],[1,7947.179274000227,1.0890779998153448],[1,7948.171231000684,2.081035000272095],[1,7949.224442000501,3.1342460000887513],[1,7950.397299000062,4.307102999649942],[1,7951.385277000256,5.295080999843776],[1,7952.3229949995875,6.232798999175429],[1,7953.154854999855,7.064658999443054],[1,7954.2957159997895,8.20551999937743],[1,7955.157002000138,9.066805999726057],[1,7956.308725000359,10.218528999947011],[1,7957.218484001234,11.128288000822067],[1,7958.362193000503,12.271997000090778],[1,7959.323216000572,13.23302000015974],[1,7960.288367999718,14.198171999305487],[1,7961.218315000646,15.12811900023371],[1,7962.262880000286,16.172683999873698],[1,7963.130638000555,17.04044200014323],[1,7964.334697000682,18.244501000270247],[1,7965.190348000266,19.10015199985355],[1,7966.328033000231,0.7528369994834065],[1,7967.137926001102,1.5627300003543496],[1,7968.3261690009385,2.750973000191152],[1,7969.349619000219,3.774422999471426],[1,7970.348239000887,4.773043000139296],[1,7971.205520000309,5.630323999561369],[1,7972.256664000452,6.681467999704182],[1,7973.368952999823,7.793756999075413],[1,7974.345123000443,8.769926999695599],[1,7975.285369000398,9.71017299965024],[1,7976.345820999704,10.770624998956919],[1,7977.327898000367,11.752701999619603],[1,7978.333696001209,12.758500000461936],[1,7979.154196000658,13.578999999910593],[1,7980.300251000561,14.725054999813437],[1,7981.356785000302,15.781588999554515],[1,7982.36495300103,16.789757000282407],[1,7983.336330000311,17.761133999563754],[1,7984.332635000348,0.6234389999881387],[1,7985.33275400009,1.6235579997301102],[1,7986.430946000852,2.7217500004917383],[1,7987.172832000069,3.4636359997093678],[1,7988.295648000203,4.586451999843121],[1,7989.437396000139,5.728199999779463],[1,7990.403804000467,6.6946080001071095],[1,7991.236290000379,7.527094000019133],[1,7992.358885999769,8.64968999940902],[1,7993.32695800066,9.61776200029999],[1,7994.289490999654,10.580294999293983],[1,7995.2290090005845,11.51981300022453],[1,7996.493886000477,12.784690000116825],[1,7997.4021229995415,13.692926999181509],[1,7998.239792000502,14.530596000142395],[1,7999.356173000298,15.646976999938488],[1,8000.327584001236,16.61838800087571],[1,8001.136397999711,17.427201999351382],[1,8002.40798200015,18.698785999789834],[1,8003.180286000483,0.6270900005474687],[1,8004.487621000037,1.934425000101328],[1,8005.356542000547,2.803346000611782],[1,8006.393089000136,3.839893000200391],[1,8007.346670000814,4.793474000878632],[1,8008.3339160000905,5.78072000015527],[1,8009.323335000314,6.770139000378549],[1,8010.432096000761,7.878900000825524],[1,8011.207957000472,8.654761000536382],[1,8012.441088000312,9.887892000377178],[1,8013.199873000383,10.646677000448108],[1,8014.37065600045,11.817460000514984],[1,8015.162636000663,12.609440000727773],[1,8016.3081290004775,13.754933000542223],[1,8017.403356000781,14.85016000084579],[1,8018.4140830002725,15.860887000337243],[1,8019.378105000593,0.4739089999347925],[1,8020.419836000539,1.5156399998813868],[1,8021.223888000473,2.3196919998154044],[1,8022.484063000418,3.57986699976027],[1,8023.397928000428,4.493731999769807],[1,8024.397349000908,5.493153000250459],[1,8025.318760000169,6.4145639995113015],[1,8026.337285000831,7.433089000172913],[1,8027.182730000466,8.278533999808133],[1,8028.205067000352,9.30087099969387],[1,8029.517018000595,10.612821999937296],[1,8030.360553001054,11.456357000395656],[1,8031.355209000409,12.451012999750674],[1,8032.325533000752,13.421337000094354],[1,8033.177404999733,14.273208999074996],[1,8034.412843000144,15.50864699948579],[1,8035.390854000114,16.48665799945593],[1,8036.427888999693,17.52369299903512],[1,8037.157694000751,18.253498000092804],[1,8038.182711999863,19.27851599920541],[1,8039.3808519998565,1.0716559998691082],[1,8040.4035260006785,2.094330000691116],[1,8041.316190999933,3.0069949999451637],[1,8042.33825400006,4.029058000072837],[1,8043.166045000777,4.856849000789225],[1,8044.476629000157,6.167433000169694],[1,8045.169058000669,6.85986200068146],[1,8046.459433999844,8.150237999856472],[1,8047.39871300105,9.089517001062632],[1,8048.356351000257,10.047155000269413],[1,8049.332764000632,11.023568000644445],[1,8050.144709000364,11.835513000376523],[1,8051.388862000778,13.079666000790894],[1,8052.387032000348,14.077836000360548],[1,8053.283284001052,14.974088001064956],[1,8054.413254001178,16.104058001190424],[1,8055.162882000208,16.853686000220478],[1,8056.410142000765,18.100946000777185],[1,8057.413301999681,19.104105999693274],[1,8058.315213000402,0.5400170003995299],[1,8059.341008000076,1.5658120000734925],[1,8060.337418000214,2.5622220002114773],[1,8061.157355999574,3.3821599995717406],[1,8062.38878300041,4.6135870004072785],[1,8063.234988000244,5.459792000241578],[1,8064.450823999941,6.6756279999390244],[1,8065.366949000396,7.59175300039351],[1,8066.332883999683,8.557687999680638],[1,8067.318975000642,9.543779000639915],[1,8068.403508000076,10.628312000073493],[1,8069.3336160006,11.558420000597835],[1,8070.412935000844,12.637739000841975],[1,8071.410501000471,13.635305000469089],[1,8072.319086000323,14.543890000320971],[1,8073.415030000731,15.639834000729024],[1,8074.4140360001475,16.638840000145137],[1,8075.31220400054,17.537008000537753],[1,8076.3400340005755,0.5238380003720522],[1,8077.149441000074,1.333244999870658],[1,8078.178545000963,2.362349000759423],[1,8079.425282999873,3.609086999669671],[1,8080.420304000378,4.604108000174165],[1,8081.389983000234,5.573787000030279],[1,8082.400475000031,6.584278999827802],[1,8083.3410840006545,7.524888000451028],[1,8084.441423000768,8.625227000564337],[1,8085.156774000265,9.340578000061214],[1,8086.378363000229,10.56216700002551],[1,8087.390323000029,11.57412699982524],[1,8088.386164000258,12.56996800005436],[1,8089.381640000269,13.565444000065327],[1,8090.325431000441,14.509235000237823],[1,8091.189364000224,15.373168000020087],[1,8092.3531889999285,16.536992999725044],[1,8093.336040000431,17.51984400022775],[1,8094.331357999705,18.515161999501288],[1,8095.29262400046,19.47642800025642],[1,8096.339192000218,0.6169959995895624],[1,8097.428241000511,1.7060449998825788],[1,8098.235240999609,2.5130449989810586],[1,8099.198456000537,3.476259999908507],[1,8100.359122999944,4.6369269993156195],[1,8101.168238000013,5.446041999384761],[1,8102.182202000171,6.460005999542773],[1,8103.36428900063,7.642093000002205],[1,8104.425150999799,8.702954999171197],[1,8105.27748799976,9.555291999131441],[1,8106.4192260000855,10.6970299994573],[1,8107.322401000187,11.600204999558628],[1,8108.337924000807,12.615728000178933],[1,8109.176268001087,13.454072000458837],[1,8110.167094999924,14.444898999296129],[1,8111.245133000426,15.522936999797821],[1,8112.468620000407,16.746423999778926],[1,8113.397838000208,17.675641999579966],[1,8114.396093000658,18.673897000029683],[1,8115.32850300055,19.6063069999218],[1,8116.356860999949,0.9296649992465973],[1,8117.229416000657,1.8022199999541044],[1,8118.404063000344,2.976866999641061],[1,8119.413316000253,3.986119999550283],[1,8120.395434000529,4.96823799982667],[1,8121.397962000221,5.970765999518335],[1,8122.414768000133,6.987571999430656],[1,8123.258080000989,7.83088400028646],[1,8124.462492000312,9.035295999608934],[1,8125.154427000321,9.727230999618769],[1,8126.380032000132,10.952835999429226],[1,8127.277383999899,11.85018799919635],[1,8128.416098000482,12.988901999779046],[1,8129.288952000439,13.861755999736488],[1,8130.239811000414,14.812614999711514],[1,8131.443222000264,16.016025999560952],[1,8132.398763000034,16.971566999331117],[1,8133.288065000437,0.43086900003254414],[1,8134.446968000382,1.589771999977529],[1,8135.172214000486,2.3150180000811815],[1,8136.415996000171,3.5587999997660518],[2647,8137.312924000435,4.4557280000299215],[1,8138.318926000036,5.461729999631643],[1,8139.4362270003185,6.579030999913812],[1,8140.375582000241,7.518385999836028],[1,8141.171308999881,8.314112999476492],[1,8142.285892000422,9.428696000017226],[1,8143.3450050009415,10.4878090005368],[1,8144.429636000656,11.572440000250936],[1,8145.386885000393,12.529688999988139],[1,8146.3841480007395,13.526952000334859],[1,8147.165777999908,14.308581999503076],[1,8148.30680100061,15.449605000205338],[1,8149.272454000078,16.415257999673486],[1,8150.428322000429,17.57112600002438],[1,8151.376787000336,18.519590999931097],[1,8152.400766000152,0.8955699997022748],[1,8153.421550000086,1.9163539996370673],[1,8154.331178000197,2.825981999747455],[1,8155.431947999634,3.9267519991844893],[1,8156.3726359996945,4.867439999245107],[1,8157.323828999884,5.818632999435067],[1,8158.335183000192,6.829986999742687],[1,8159.137698000297,7.632501999847591],[1,8160.306276000105,8.801079999655485],[1,8161.453261000104,9.948064999654889],[1,8162.40017000027,10.89497399982065],[1,8163.383679000661,11.878483000211418],[1,8164.24478500057,12.739589000120759],[1,8165.1532669998705,13.64807099942118],[1,8166.327611000277,14.822414999827743],[1,8167.393932000734,15.888736000284553],[1,8168.395786999725,16.890590999275446],[1,8169.393542001024,17.88834600057453],[1,8170.416220000014,18.91102399956435],[1,8171.2935430007055,19.78834700025618],[1,8172.453536001034,1.0203400002792478],[1,8173.303897000849,1.8707010000944138],[1,8174.340350000188,2.9071539994329214],[1,8175.3310330007225,3.8978369999676943],[1,8176.33188400045,4.8986879996955395],[1,8177.1360390000045,5.702842999249697],[1,8178.2920789998025,6.858882999047637],[1,8179.340955000371,7.907758999615908],[1,8180.323223000392,8.890026999637485],[1,8181.147366000339,9.714169999584556],[1,8182.387520000339,10.954323999583721],[1,8183.318957000971,11.885761000216007],[1,8184.283414999954,12.85021899919957],[1,8185.338746000081,13.905549999326468],[1,8186.206342000514,14.773145999759436],[1,8187.367387000471,15.93419099971652],[1,8188.316149000078,16.882952999323606],[1,8189.3504830002785,17.91728699952364],[1,8190.342497000471,18.909300999715924],[1,8191.329308000393,0.5221119998022914],[1,8192.331470999867,1.5242749992758036],[1,8193.330513999797,2.5233179992064834],[1,8194.202758001164,3.3955620005726814],[1,8195.330525999889,4.523329999297857],[1,8196.43855500035,5.631358999758959],[1,8197.316411000676,6.509215000085533],[1,8198.342057000846,7.53486100025475],[1,8199.341410000809,8.534214000217617],[1,8200.15924500022,9.352048999629915],[1,8201.378729999997,10.571533999405801],[1,8202.306958000176,11.499761999584734],[1,8203.434910000302,12.627713999710977],[1,8204.403532999568,13.596336998976767],[1,8205.24950600043,14.442309999838471],[1,8206.419416000135,15.612219999544322],[1,8207.19194000028,16.384743999689817],[1,8208.347469001077,17.540273000486195],[1,8209.32628499996,18.51908899936825],[1,8210.407352000475,19.60015599988401],[1,8211.37798500061,0.4817890003323555],[1,8212.385069999844,1.4888739995658398],[1,8213.227109000087,2.3309129998087883],[1,8214.38617000077,3.489974000491202],[1,8215.319077000022,4.4228809997439384],[1,8216.349615000188,5.453418999910355],[1,8217.328729000874,6.432533000595868],[1,8218.33699000068,7.440794000402093],[1,8219.190254000947,8.294058000668883],[1,8220.421323999763,9.525127999484539],[1,8221.318242000416,10.422046000137925],[1,8222.403421000578,11.507225000299513],[1,8223.241670000367,12.34547400008887],[1,8224.157358000055,13.26116199977696],[1,8225.290856000036,14.394659999758005],[1,8226.346406000666,15.450210000388324],[1,8227.430753001012,16.534557000733912],[1,8228.153677000664,17.25748100038618],[1,8229.290421999991,18.394225999712944],[1,8230.424056001008,19.52786000072956],[1,8231.215696999803,0.6675009997561574],[1,8232.142562000081,1.594366000033915],[1,8233.39785700012,2.849661000072956],[1,8234.315190999769,3.7669949997216463],[1,8235.33873600047,4.790540000423789],[1,8236.33198300004,5.783786999993026],[1,8237.168712000363,6.620516000315547],[1,8238.129252000712,7.58105600066483],[1,8239.281583000906,8.733387000858784],[1,8240.36554799974,9.817351999692619],[1,8241.324815999717,10.776619999669492],[1,8242.335688000545,11.787492000497878],[1,8243.353645999916,12.80544999986887],[1,8244.345744000748,13.797548000700772],[1,8245.138349000365,14.590153000317514],[1,8246.214282000437,15.66608600039035],[1,8247.393507000059,16.84531100001186],[1,8248.233529999852,17.685333999805152],[1,8249.359066000208,18.81087000016123],[1,8250.327700999565,19.779504999518394],[1,8251.26493200101,0.5457360008731484],[1,8252.363748000935,1.644552000798285],[1,8253.285117000341,2.5659210002049804],[1,8254.344918000512,3.62572200037539],[1,8255.318455000408,4.599259000271559],[1,8256.177499000914,5.45830300077796],[1,8257.346233000048,6.62703699991107],[1,8258.18045600038,7.461260000243783],[1,8259.370450000279,8.651254000142217],[1,8260.38135700021,9.662161000072956],[1,8261.139433000237,10.420237000100315],[1,8262.497349000536,11.77815300039947],[1,8263.303407999687,12.584211999550462],[1,8264.35252300091,13.633327000774443],[1,8265.168375000358,14.449179000221193],[1,8266.37238000054,15.653184000402689],[1,8267.32050799951,16.601311999373138],[1,8268.227921000682,17.508725000545382],[1,8269.456986000761,18.737790000624955],[1,8270.184071999975,19.464875999838114],[1,8271.346090000123,1.026893999427557],[1,8272.426064000465,2.1068679997697473],[1,8273.370501000434,3.0513049997389317],[1,8274.23687300086,3.9176770001649857],[1,8275.354328000918,5.035132000222802],[1,8276.150799999945,5.831603999249637],[1,8277.427230000496,7.108033999800682],[1,8278.340412000194,8.021215999498963],[1,8279.138636000454,8.819439999759197],[1,8280.381895000115,10.062698999419808],[1,8281.30477400031,10.98557799961418],[1,8282.328348000534,12.00915199983865],[1,8283.26127600018,12.942079999484122],[1,8284.359493000433,14.04029699973762],[1,8285.337834000587,15.018637999892235],[1,8286.33063299954,16.011436998844147],[1,8287.169085000642,0.5158890001475811],[1,8288.357797000557,1.7046010000631213],[1,8289.311080999672,2.65788499917835],[1,8290.159281000495,3.506085000000894],[1,8291.17939100042,4.526194999925792],[1,8292.139063000679,5.485867000184953],[1,8293.211671000347,6.5584749998524785],[1,8294.124564000405,7.471367999911308],[1,8295.233149999753,8.579953999258578],[1,8296.138410001062,9.485214000567794],[1,8297.363282000646,10.710086000151932],[1,8298.309626000002,11.656429999507964],[1,8299.138261999935,12.485065999440849],[1,8300.366843000054,13.713646999560297],[1,8301.303805000149,14.65060899965465],[1,8302.324207000434,15.671010999940336],[1,8303.154525000602,16.501329000107944],[1,8304.224413000047,17.571216999553144],[1,8305.30053200107,18.647336000576615],[1,8306.326363000087,0.9151670001447201],[1,8307.316463000141,1.9052670001983643],[1,8308.328732999973,2.917537000030279],[1,8309.332678000443,3.9214820004999638],[1,8310.133066000417,4.721870000474155],[1,8311.156059000641,5.744863000698388],[1,8312.296001999639,6.884805999696255],[1,8313.41646800004,8.005272000096738],[1,8314.384526000358,8.973330000415444],[1,8315.182216000743,9.77102000080049],[1,8316.381772000343,10.970576000399888],[1,8317.14950000029,11.738304000347853],[1,8318.333331000991,12.922135001048446],[1,8319.321964000352,13.910768000409007],[1,8320.431667000987,15.020471001043916],[1,8321.372783000581,15.961587000638247],[1,8322.323714000173,0.5555179994553328],[1,8323.335535000078,1.5673389993607998],[1,8324.318179000169,2.5499829994514585],[1,8325.134598000906,3.3664020001888275],[1,8326.274569001049,4.506373000331223],[1,8327.137954000384,5.369757999666035],[1,8328.380086001009,6.611890000291169],[1,8329.328939000145,7.5607429994270205],[1,8330.332316000946,8.564120000228286],[1,8331.333700000308,9.565503999590874],[1,8332.331914000213,10.563717999495566],[1,8333.340241000988,11.572045000270009],[1,8334.228613000363,12.460416999645531],[1,8335.281578000635,13.513381999917328],[1,8336.33998700045,14.571790999732912],[1,8337.338412000798,15.570216000080109],[1,8338.331062000245,16.562865999527276],[1,8339.124073000625,17.355876999907196],[1,8340.387970000505,18.619773999787867],[1,8341.136895000003,19.368698999285698],[2649,8342.370625999756,20.602429999038577],[1,8343.136109001003,0.5429130010306835],[1,8344.398265000433,1.8050690004602075],[1,8345.330691999756,2.7374959997832775],[1,8346.334268000908,3.7410720009356737],[1,8347.333299000748,4.74010300077498],[1,8348.230572001077,5.6373760011047125],[1,8349.359745999798,6.766549999825656],[1,8350.244406000711,7.6512100007385015],[1,8351.137372000143,8.54417600017041],[1,8352.401011999696,9.807815999723971],[1,8353.323140000924,10.729944000951946],[1,8354.332994000055,11.739798000082374],[1,8355.332423999906,12.739227999933064],[1,8356.340429999866,13.74723399989307],[2,8357.315597000532,14.72240100055933],[1,8358.228054000065,15.634858000092208],[1,8359.135692999698,16.5424969997257],[1,8360.505951000378,17.912755000405014],[1,8361.388147000223,18.794951000250876],[1,8362.355888999999,19.762693000026047],[1,8363.388619000092,0.897423000074923],[1,8364.28076500073,1.7895690007135272],[1,8365.440119000152,2.9489230001345277],[1,8366.315468000248,3.824272000230849],[1,8367.278823000379,4.787627000361681],[1,8368.434474000707,5.943278000690043],[1,8369.299128999934,6.807932999916375],[1,8370.329922000878,7.838726000860333],[1,8371.204526999965,8.713330999948084],[1,8372.370036999695,9.878840999677777],[1,8373.209017000161,10.717821000143886],[1,8374.346875000745,11.855679000727832],[1,8375.16348300036,12.672287000343204],[1,8376.37634200044,13.885146000422537],[1,8377.387294000015,14.896097999997437],[1,8378.417351000011,15.926154999993742],[1,8379.320201000199,16.829005000181496],[1,8380.130037999712,0.20584199950098991],[1,8381.485257000662,1.5610610004514456],[1,8382.370830000378,2.4466340001672506],[1,8383.166294000112,3.2420979999005795],[1,8384.300407000817,4.376211000606418],[1,8385.419696000405,5.495500000193715],[1,8386.411498000845,6.487302000634372],[1,8387.391451999545,7.4672559993341565],[1,8388.187424000353,8.26322800014168],[1,8389.158681999892,9.234485999681056],[1,8390.425424000248,10.501228000037372],[1,8391.267712000757,11.343516000546515],[1,8392.350642000325,12.426446000114083],[1,8393.329785000533,13.405589000321925],[1,8394.33264400065,14.408448000438511],[1,8395.333299000748,15.409103000536561],[1,8396.208500000648,16.28430400043726],[1,8397.356025000103,17.431828999891877],[1,8398.330935000442,18.406739000231028],[1,8399.12924499996,0.6040489999577403],[1,8400.380851000547,1.8556550005450845],[1,8401.157801000401,2.632605000399053],[1,8402.284601000138,3.7594050001353025],[1,8403.177047000267,4.651851000264287],[1,8404.352174000815,5.8269780008122325],[1,8405.320241999812,6.7950459998101],[1,8406.270716000348,7.745520000346005],[1,8407.182853999548,8.657657999545336],[1,8408.368093000725,9.842897000722587],[1,8409.328917000443,10.803721000440419],[1,8410.330333000049,11.80513700004667],[1,8411.32947800029,12.804282000288367],[1,8412.160469001159,13.635273001156747],[1,8413.152045000345,14.62684900034219],[1,8414.28491600044,15.759720000438392],[1,8415.248230000958,16.723034000955522],[1,8416.127719000913,17.602523000910878],[1,8417.193702000193,18.668506000190973],[1,8418.363106000237,19.837910000234842],[1,8419.140585000627,0.697389000095427],[1,8420.371630000882,1.928434000350535],[1,8421.364948000759,2.9217520002275705],[1,8422.155791000463,3.7125949999317527],[1,8423.285462000407,4.842265999875963],[1,8424.329334000126,5.886137999594212],[1,8425.122068000957,6.678872000426054],[1,8426.146108999848,7.70291299931705],[1,8427.19241700042,8.749220999889076],[1,8428.200152999721,9.756956999190152],[1,8429.181967000477,10.7387709999457],[1,8430.165401999839,11.722205999307334],[1,8431.187286000699,12.744090000167489],[1,8432.261757999659,13.818561999127269],[1,8433.122607001103,14.679411000572145],[1,8434.124836999923,15.681640999391675],[1,8435.247410999611,16.804214999079704],[1,8436.202715000138,17.75951899960637],[1,8437.144533000886,18.701337000355124],[1,8438.165374000557,19.72217800002545],[1,8439.132015001029,0.8978190002962947],[1,8440.172489000484,1.9382929997518659],[1,8441.225072000176,2.990875999443233],[1,8442.12529799994,3.891101999208331],[1,8443.230890999548,4.996694998815656],[1,8444.172373999842,5.93817799910903],[1,8445.361119000241,7.126922999508679],[1,8446.19945900049,7.965262999758124],[1,8447.18179600034,8.94759999960661],[1,8448.37006700039,10.135870999656618],[1,8449.20301500056,10.968818999826908],[1,8450.199372000061,11.965175999328494],[1,8451.3559940001,13.121797999367118],[1,8452.34828400053,14.114087999798357],[1,8453.372129000723,15.13793299999088],[1,8454.386582000181,16.152385999448597],[1,8455.138992000371,16.904795999638736],[1,8456.239699000493,18.00550299976021],[1,8457.41550500039,19.18130899965763],[1,8458.305766000412,0.3095700005069375],[1,8459.34103400074,1.3448380008339882],[1,8460.199376001023,2.203180001117289],[1,8461.153080000542,3.156884000636637],[1,8462.188938999549,4.192742999643087],[1,8463.264401000924,5.268205001018941],[1,8464.335018000565,6.338822000660002],[1,8465.42872700002,7.432531000114977],[1,8466.404145000502,8.407949000597],[1,8467.322023999877,9.325827999971807],[1,8468.348836001009,10.352640001103282],[1,8469.329787001014,11.333591001108289],[1,8470.332702000625,12.336506000719965],[1,8471.298000000417,13.301804000511765],[1,8472.319086000323,14.322890000417829],[1,8473.418926999904,15.422730999998748],[1,8474.390874000266,16.394678000360727],[1,8475.31963100005,17.323435000143945],[1,8476.338074999861,0.5678789997473359],[1,8477.331635000184,1.561439000070095],[1,8478.432208000682,2.662012000568211],[1,8479.194497000426,3.4243010003119707],[1,8480.474446000531,4.7042500004172325],[1,8481.394976000302,5.624780000187457],[1,8482.382531000301,6.612335000187159],[1,8483.329399000853,7.559203000739217],[1,8484.33390500024,8.563709000125527],[1,8485.140504000708,9.370308000594378],[1,8486.310703000054,10.54050699993968],[1,8487.303737000562,11.533541000448167],[1,8488.465979000553,12.695783000439405],[1,8489.359209000133,13.589013000018895],[1,8490.337979000062,14.567782999947667],[1,8491.334035000764,15.56383900064975],[1,8492.163693000562,16.393497000448406],[1,8493.340677999891,17.570481999777257],[1,8494.359105999582,0.34590999875217676],[1,8495.172048000619,1.1588519997894764],[1,8496.43248800002,2.4192919991910458],[1,8497.372085000388,3.3588889995589852],[1,8498.156581000425,4.1433849995955825],[1,8499.360207000747,5.347010999917984],[1,8500.358868000098,6.345671999268234],[1,8501.42359700054,7.410400999709964],[1,8502.313141000457,8.299944999627769],[1,8503.403336999938,9.390140999108553],[1,8504.339677000418,10.326480999588966],[1,8505.156113000587,11.14291699975729],[1,8506.383914000355,12.370717999525368],[1,8507.41397000011,13.400773999281228],[1,8508.259824999608,14.24662899877876],[1,8509.411133999936,15.397937999106944],[1,8510.396969000809,16.383772999979556],[1,8511.41376300063,17.400566999800503],[1,8512.167833000422,18.154636999592185],[1,8513.244060000405,19.230863999575377],[1,8514.479695999995,1.0474999994039536],[1,8515.388732000254,1.9565359996631742],[1,8516.382270000875,2.9500740002840757],[1,8517.414672000334,3.9824759997427464],[1,8518.233235999942,4.801039999350905],[1,8519.220748000778,5.788552000187337],[1,8520.35955200065,6.927356000058353],[1,8521.141156000085,7.708959999494255],[1,8522.383948000148,8.951751999557018],[1,8523.319009000435,9.886812999844551],[1,8524.212896000594,10.78070000000298],[1,8525.189155000262,11.756958999671042],[1,8526.367161000147,12.934964999556541],[1,8527.172091000713,13.739895000122488],[1,8528.256784000434,14.824587999843061],[1,8529.37248300109,15.940287000499666],[1,8530.419812000357,16.987615999765694],[1,8531.37066200003,0.8144659996032715],[1,8532.385633000173,1.829436999745667],[1,8533.323473000899,2.7672770004719496],[1,8534.18411600031,3.627919999882579],[1,8535.337433001027,4.7812370005995035],[1,8536.403626000509,5.847430000081658],[1,8537.237716000527,6.681520000100136],[1,8538.417950999923,7.861754999496043],[1,8539.406853000633,8.85065700020641],[1,8540.238246000372,9.682049999944866],[1,8541.353071000427,10.796875],[1,8542.32975500077,11.773559000343084],[1,8543.372740999795,12.816544999368489],[2645,8544.32367100101,13.767475000582635],[1,8545.204425999895,14.64822999946773],[1,8546.147300000302,15.591103999875486],[1,8547.37219899986,16.816002999432385],[1,8548.164008000866,0.6748120002448559],[1,8549.43710400071,1.9479080000892282],[1,8550.371615001,2.882419000379741],[1,8551.186557000503,3.697360999882221],[1,8552.28624900058,4.797052999958396],[1,8553.24777000118,5.758574000559747],[1,8554.430281000212,6.941084999591112],[1,8555.41010500025,7.920908999629319],[1,8556.378251000308,8.889054999686778],[1,8557.429895999841,9.94069999922067],[1,8558.263975000009,10.774778999388218],[1,8559.352490000427,11.863293999806046],[1,8560.130557999946,12.641361999325454],[1,8561.44144400023,13.952247999608517],[1,8562.36901799962,14.879821998998523],[1,8563.258151000366,15.768954999744892],[1,8564.34732099995,16.858124999329448],[1,8565.430125000887,17.940929000265896],[1,8566.374356000684,18.88516000006348],[1,8567.328573999926,19.839377999305725],[1,8568.398064000532,0.955868000164628],[1,8569.218674000353,1.776477999985218],[1,8570.42342399992,2.9812279995530844],[1,8571.379925000481,3.9377290001139045],[1,8572.417613000609,4.975417000241578],[1,8573.375817000866,5.933621000498533],[1,8574.170191000216,6.727994999848306],[1,8575.249135000631,7.80693900026381],[1,8576.354950000532,8.912754000164568],[1,8577.177795000374,9.735599000006914],[1,8578.165040000342,10.72284399997443],[1,8579.482103000395,12.039907000027597],[1,8580.194208000787,12.7520120004192],[1,8581.403130000457,13.960934000089765],[1,8582.41272199992,14.970525999553502],[1,8583.373717000708,15.931521000340581],[1,8584.435898000374,16.993702000007033],[1,8585.17774800025,17.735551999881864],[1,8586.404277999885,1.1060819998383522],[1,8587.392276000232,2.0940800001844764],[1,8588.426267000847,3.1280710007995367],[1,8589.412254000083,4.114058000035584],[1,8590.1782440003,4.880048000253737],[1,8591.307926001027,6.009730000980198],[1,8592.331853000447,7.033657000400126],[1,8593.149961999618,7.851765999570489],[1,8594.514973999932,9.21677799988538],[1,8595.365610999987,10.067414999939501],[1,8596.423396000639,11.125200000591576],[1,8597.199950000271,11.901754000224173],[1,8598.438818000257,13.140622000209987],[1,8599.403103000484,14.104907000437379],[1,8600.37818500027,15.079989000223577],[1,8601.333383999765,16.03518799971789],[1,8602.15344000049,16.855244000442326],[1,8603.442311000079,1.142114999704063],[1,8604.365804000758,2.065608000382781],[1,8605.389660000801,3.089464000426233],[1,8606.216982000507,3.9167860001325607],[1,8607.183106000535,4.8829100001603365],[1,8608.342621999793,6.042425999417901],[1,8609.153003999963,6.852807999588549],[1,8610.382466000505,8.082270000129938],[1,8611.32098899968,9.020792999304831],[1,8612.349480000325,10.049283999949694],[1,8613.327745000832,11.02754900045693],[1,8614.320462000556,12.020266000181437],[1,8615.212038000114,12.911841999739408],[1,8616.181932000443,13.881736000068486],[1,8617.165064999834,14.86486899945885],[1,8618.306349000894,16.00615300051868],[1,8619.136742999777,16.836546999402344],[1,8620.371470000595,18.07127400022],[1,8621.319884000346,19.01968799997121],[1,8622.331775000319,0.13857899978756905],[1,8623.32666500099,1.1334690004587173],[1,8624.353090000339,2.1598939998075366],[1,8625.207972000353,3.0147759998217225],[1,8626.362409000285,4.169212999753654],[1,8627.322693999857,5.129497999325395],[1,8628.18517700024,5.991980999708176],[1,8629.407957000658,7.2147610001266],[1,8630.37182299979,8.178626999258995],[1,8631.430219000205,9.237022999674082],[1,8632.39967700094,10.20648100040853],[1,8633.316324000247,11.123127999715507],[1,8634.400701000355,12.207504999823868],[1,8635.220491000451,13.027294999919832],[1,8636.476722000167,14.283525999635458],[1,8637.394234000705,15.201038000173867],[1,8638.39419100061,16.200995000079274],[1,8639.322385000065,17.129188999533653],[1,8640.369312000461,18.176115999929607],[1,8641.146468000486,18.953271999955177],[1,8642.278023000807,0.7968270005658269],[1,8643.3461570004,1.8649610001593828],[1,8644.429119000211,2.947922999970615],[1,8645.377340001054,3.896144000813365],[1,8646.397197999991,4.916001999750733],[1,8647.323249001056,5.842053000815213],[1,8648.359876999632,6.878680999390781],[1,8649.34104400035,7.859848000109196],[1,8650.33140400052,8.850208000279963],[1,8651.33410300035,9.852907000109553],[1,8652.330858000554,10.849662000313401],[1,8653.430774000473,11.949578000232577],[1,8654.404045000672,12.922849000431597],[1,8655.309434999712,13.828238999471068],[1,8656.406098000705,14.924902000464499],[1,8657.233551000245,15.752355000004172],[1,8658.359186001122,16.877990000881255],[1,8659.326077000238,17.844880999997258],[1,8660.252432000823,0.15723600052297115],[1,8661.269326000474,1.1741300001740456],[1,8662.445617000572,2.3504210002720356],[1,8663.18952099979,3.09432499948889],[1,8664.308801000938,4.213605000637472],[1,8665.166206000373,5.07101000007242],[1,8666.383067000657,6.287871000356972],[1,8667.31220000051,7.217004000209272],[1,8668.43672200013,8.341525999829173],[1,8669.36707700044,9.27188100013882],[1,8670.387593000196,10.292396999895573],[1,8671.429266001098,11.33407000079751],[1,8672.253057000227,12.157860999926925],[1,8673.289816000499,13.194620000198483],[1,8674.461866999976,14.36667099967599],[1,8675.29956400115,15.204368000850081],[1,8676.341058000922,16.245862000621855],[1,8677.38251300063,17.287317000329494],[1,8678.385363000445,18.29016700014472],[1,8679.302546000108,19.207349999807775],[1,8680.449770000763,0.9925740007311106],[1,8681.208212000318,1.7510160002857447],[1,8682.462755999528,3.0055599994957447],[1,8683.306348000653,3.849152000620961],[1,8684.293763000518,4.836567000485957],[1,8685.460080000572,6.00288400053978],[1,8686.410150000826,6.952954000793397],[1,8687.304558000527,7.847362000495195],[1,8688.405420999974,8.948224999941885],[1,8689.175182000734,9.717986000701785],[1,8690.315212000161,10.858016000129282],[1,8691.33612300083,11.878927000798285],[1,8692.334851000458,12.877655000425875],[1,8693.429955000058,13.97275900002569],[1,8694.386828000657,14.929632000625134],[1,8695.16984800063,15.71265200059861],[1,8696.451680000871,16.994484000839293],[1,8697.309042000212,17.85184600017965],[1,8698.435304000974,18.978108000941575],[2,8699.146459000185,19.689263000153005],[1,8700.259026001208,1.0288300011307001],[1,8701.470406000502,2.240210000425577],[1,8702.376857000403,3.146661000326276],[1,8703.386595999822,4.15639999974519],[1,8704.418064000085,5.187868000008166],[1,8705.177986000665,5.947790000587702],[1,8706.442591000348,7.212395000271499],[1,8707.40113400016,8.17093800008297],[1,8708.31605800055,9.085862000472844],[1,8709.338608999737,10.108412999659777],[1,8710.345639000647,11.11544300056994],[1,8711.192964999937,11.96276899985969],[1,8712.309946000576,13.079750000499189],[1,8713.35232100077,14.122125000692904],[1,8714.395592000335,15.165396000258625],[1,8715.373749000952,16.143553000874817],[1,8716.356688001193,17.126492001116276],[1,8717.285802000202,18.055606000125408],[1,8718.404298000969,19.174102000892162],[1,8719.39612799976,0.8189319996163249],[1,8720.4005669998,1.8233709996566176],[1,8721.269082999788,2.691886999644339],[1,8722.214990001172,3.6377940010279417],[2663,8723.317561000586,4.74036500044167],[2663,8724.328656000085,5.751459999941289],[2664,8725.321671999991,6.7444759998470545],[2664,8726.31414300017,7.736947000026703],[2664,8727.295115999877,8.717919999733567],[2666,8728.33216700051,9.754971000365913],[2667,8729.331523001194,10.754327001050115],[2669,8730.33372300025,11.756527000106871],[2670,8731.315038999543,12.737842999398708],[2672,8732.262267000973,13.685071000829339],[2664,8733.355496000499,14.778300000354648],[2664,8734.317559000105,15.74036299996078],[2664,8735.329306000844,16.75211000069976],[2664,8736.3262730008,17.749077000655234],[2664,8737.17881000042,18.60161400027573],[2664,8738.357183000073,19.77998699992895],[2677,8739.31587200053,20.738676000386477],[2679,8740.187463999726,21.610267999581993],[2681,8741.229410000145,22.65221400000155],[2703,8742.34692599997,23.76972999982536],[2705,8743.316796001047,24.73960000090301],[2703,8744.319345001131,25.74214900098741],[2704,8745.323815000243,26.7466190000996],[2704,8746.325214999728,27.74801899958402],[2704,8747.136061999947,28.558865999802947],[2703,8748.37219300028,29.79499700013548],[2703,8749.182513000444,30.605317000299692],[2704,8750.335194000043,31.75799799989909],[2704,8751.32311700005,32.74592099990696],[2703,8752.317246000282,33.74005000013858],[2704,8753.327670000494,34.75047400034964],[2704,8754.316600999795,35.739404999651015],[2704,8755.16656600032,36.58937000017613],[2704,8756.356786000542,37.77959000039846],[2703,8757.298496999778,38.72130099963397],[2704,8758.32562499959,39.74842899944633],[2704,8759.329224999994,40.752028999850154],[2704,8760.32377300039,41.74657700024545],[2704,8761.32329100091,42.74609500076622],[2704,8762.32521800045,43.748022000305355],[2708,8763.324000000022,44.746803999878466],[2708,8764.324573000893,45.74737700074911],[2708,8765.145551000722,46.56835500057787],[2708,8766.369053000584,47.79185700044036],[2708,8767.303109000437,48.725913000293076],[2708,8768.33158200048,49.75438600033522],[2708,8769.32348800078,50.74629200063646],[2708,8770.327105999924,51.74990999978036],[2708,8771.166006000713,52.58881000056863],[2708,8772.361182000488,53.78398600034416],[2708,8773.30882300064,54.73162700049579],[2647,8774.145701999776,55.56850599963218],[1,8775.227684000507,0.4904880002140999],[1,8776.165028001182,1.427832000888884],[1,8777.368196000345,2.631000000052154],[1,8778.31433400046,3.5771380001679063],[1,8779.159494000487,4.422298000194132],[1,8780.271258999594,5.534062999300659],[1,8781.34037199989,6.603175999596715],[1,8782.449517999776,7.7123219994828105],[1,8783.274470000528,8.537274000234902],[1,8784.168355000205,9.43115899991244],[1,8785.314631001092,10.577435000799596],[1,8786.330310000107,11.593113999813795],[1,8787.329454000108,12.592257999815047],[1,8788.325308000669,13.588112000375986],[1,8789.32666100096,14.589465000666678],[1,8790.324372000061,15.587175999768078],[1,8791.320821000263,16.583624999970198],[1,8792.142806001008,0.666610000655055],[1,8793.349813000299,1.8736169999465346],[1,8794.324592000805,2.8483960004523396],[1,8795.331064000726,3.8548680003732443],[1,8796.331225000322,4.855028999969363],[1,8797.329882999882,5.8536869995296],[1,8798.329058000818,6.852862000465393],[1,8799.2038940005,7.727698000147939],[1,8800.349749000743,8.87355300039053],[1,8801.389306999743,9.913110999390483],[1,8802.412691000849,10.936495000496507],[1,8803.223393000662,11.747197000309825],[1,8804.268676999956,12.792480999603868],[1,8805.451081000268,13.974884999915957],[1,8806.322587000206,14.846390999853611],[1,8807.234110999852,15.757914999499917],[1,8808.359548000619,16.883352000266314],[1,8809.3288940005,17.85269800014794],[1,8810.357507000677,18.881311000324786],[1,8811.151936000213,19.675739999860525],[1,8812.391304001212,1.0961080007255077],[1,8813.380567000248,2.0853709997609258],[1,8814.383763000369,3.0885669998824596],[1,8815.247041000053,3.9518449995666742],[1,8816.360792000778,5.065596000291407],[1,8817.423066999763,6.127870999276638],[1,8818.422484000213,7.127287999726832],[1,8819.30265100114,8.007455000653863],[1,8820.42119400017,9.125997999683022],[1,8821.319428999908,10.024232999421656],[1,8822.402947000228,11.107750999741256],[1,8823.158444000408,11.863247999921441],[1,8824.353721000254,13.058524999767542],[1,8825.328931000084,14.033734999597073],[1,8826.33331800066,15.038122000172734],[1,8827.159271000884,15.864075000397861],[1,8828.15372700058,16.858531000092626],[1,8829.376768000424,18.081571999937296],[1,8830.125337000005,18.830140999518335],[1,8831.258067999966,19.96287199947983],[1,8832.353432999924,1.0112369991838932],[1,8833.332867000252,1.9906709995120764],[1,8834.194396000355,2.85219999961555],[1,8835.139620999806,3.797424999065697],[1,8836.178009999916,4.835813999176025],[1,8837.12375300005,5.781556999310851],[1,8838.311800000258,6.969603999517858],[1,8839.322919000871,7.9807230001315475],[1,8840.199421000667,8.857224999926984],[1,8841.344739000313,10.002542999573052],[1,8842.193402000703,10.851205999962986],[1,8843.134766000323,11.792569999583066],[1,8844.377455000766,13.03525900002569],[1,8845.35320600029,14.011009999550879],[1,8846.387134999968,15.04493899922818],[1,8847.19761200063,15.855415999889374],[1,8848.338119001128,16.995923000387847],[1,8849.42640300002,18.08420699927956],[1,8850.291102999821,18.948906999081373],[1,8851.281887000427,19.939690999686718],[1,8852.341370999813,0.9131749998778105],[1,8853.381808999926,1.9536129999905825],[1,8854.316414000466,2.8882180005311966],[1,8855.1440890003,3.7158930003643036],[1,8856.271905000322,4.843709000386298],[1,8857.41318800021,5.98499200027436],[1,8858.313966999762,6.885770999826491],[1,8859.163494000211,7.735298000276089],[1,8860.234706999734,8.806510999798775],[1,8861.47318300046,10.044987000524998],[1,8862.390734001063,10.962538001127541],[1,8863.382772999816,11.954576999880373],[1,8864.438010000624,13.009814000688493],[1,8865.249045000412,13.8208490004763],[1,8866.360163999721,14.931967999786139],[1,8867.168988000602,15.74079200066626],[1,8868.375751000829,16.94755500089377],[1,8869.323900000192,17.895704000256956],[1,8870.398195000365,18.969999000430107],[1,8871.38541700039,19.95722100045532],[1,8872.256361001171,0.752165000885725],[1,8873.230589999817,1.7263939995318651],[1,8874.514918000437,3.0107220001518726],[1,8875.269013999961,3.76481799967587],[1,8876.349804000929,4.845608000643551],[1,8877.32792700082,5.82373100053519],[1,8878.407248000614,6.903052000328898],[1,8879.186212000437,7.682016000151634],[1,8880.426092999987,8.921896999701858],[1,8881.372632999904,9.868436999619007],[1,8882.387694999576,10.883498999290168],[1,8883.17918700073,11.674991000443697],[1,8884.371151001193,12.866955000907183],[1,8885.32561799977,13.8214219994843],[1,8886.295866000466,14.791670000180602],[1,8887.455827000551,15.951631000265479],[1,8888.398962000385,16.89476600009948],[1,8889.31992100086,17.815725000575185],[1,8890.337201000191,18.833004999905825],[164,8891.139399000444,19.63520300015807],[1,8892.377441000193,1.0922449994832277],[1,8893.141254999675,1.856058998964727],[1,8894.39524000045,3.1100439997389913],[1,8895.412263000384,4.127066999673843],[1,8896.379263000563,5.094066999852657],[1,8897.417427999899,6.132231999188662],[1,8898.29494499974,7.009748999029398],[1,8899.207431999967,7.9222359992563725],[1,8900.4344159998,9.149219999089837],[1,8901.404492000118,10.119295999407768],[1,8902.380900000222,11.095703999511898],[1,8903.35116900038,12.065972999669611],[1,8904.176425999962,12.891229999251664],[1,8905.321540000848,14.036344000138342],[1,8906.245318000205,14.960121999494731],[1,8907.176324999891,15.891128999181092],[1,8908.284085000865,16.99888900015503],[1,8909.345910000615,18.060713999904692],[1,8910.32946800068,0.6372720003128052],[1,8911.409698000178,1.717501999810338],[1,8912.378254000098,2.68605799973011],[1,8913.141745001078,3.449549000710249],[1,8914.377050999552,4.6848549991846085],[1,8915.23138000071,5.539184000343084],[1,8916.428643999621,6.736447999253869],[1,8917.37491100002,7.682714999653399],[1,8918.33632300049,8.644127000123262],[1,8919.331921000965,9.639725000597537],[1,8920.352121000178,10.659924999810755],[1,8921.133583000861,11.441387000493705],[1,8922.410368001089,12.718172000721097],[1,8923.23910100013,13.546904999762774],[1,8924.359996000305,14.667799999937415],[1,8925.327801000327,15.635604999959469],[1,8926.33390300069,16.64170700032264],[1,8927.127800000831,17.43560400046408],[1,8928.152502000332,18.460305999964476],[1,8929.384407000616,1.1362110003829002],[1,8930.416703000665,2.1685070004314184],[1,8931.169058999978,2.9208629997447133],[1,8932.433182001114,4.184986000880599],[1,8933.309065001085,5.060869000852108],[1,8934.158352000639,5.91015600040555],[1,8935.305544000119,7.057347999885678],[1,8936.340953000821,8.09275700058788],[1,8937.428021000698,9.179825000464916],[1,8938.37153000012,10.123333999887109],[1,8939.343150000088,11.094953999854624],[1,8940.441293000244,12.193097000010312],[1,8941.273961001076,13.025765000842512],[1,8942.23851300031,13.990317000076175],[1,8943.366685000248,15.11848900001496],[1,8944.398477000184,16.150280999951065],[1,8945.37818800006,17.129991999827325],[1,8946.42033400014,18.172137999907136],[1,8947.198053999804,18.949857999570668],[1,8948.460896000266,1.1277000000700355],[1,8949.364439999685,2.0312439994886518],[1,8950.38917000033,3.055974000133574],[1,8951.35704900045,4.023853000253439],[1,8952.206559000537,4.87336300034076],[1,8953.334981000982,6.001785000786185],[1,8954.46497900039,7.131783000193536],[1,8955.287354000844,7.954158000648022],[1,8956.44415500015,9.110958999954164],[1,8957.399900000542,10.066704000346363],[1,8958.316474000923,10.983278000727296],[1,8959.186559000053,11.853362999856472],[1,8960.466028000228,13.132832000032067],[1,8961.409289999865,14.076093999668956],[1,8962.378428000025,15.045231999829412],[1,8963.3572390005,16.02404300030321],[1,8964.191329000518,16.858133000321686],[1,8965.44839700032,18.115201000124216],[1,8966.155263000168,18.822066999971867],[1,8967.373267000541,20.04007100034505],[1,8968.330187000334,0.8399909995496273],[1,8969.341812999919,1.8516169991344213],[1,8970.15797500033,2.66777899954468],[1,8971.322949000634,3.8327529998496175],[1,8972.331241999753,4.841045998968184],[1,8973.320197000168,5.830000999383628],[1,8974.336864000186,6.846667999401689],[2647,8975.329335999675,7.8391399988904595],[1,8976.323731000535,8.833534999750555],[1,8977.333444000222,9.843247999437153],[1,8978.164200999774,10.674004998989403],[1,8979.434733999893,11.944537999108434],[1,8980.288317000493,12.798120999708772],[1,8981.17786899954,13.68767299875617],[1,8982.443743000738,14.953546999953687],[1,8983.300809999928,15.810613999143243],[1,8984.233718000352,16.743521999567747],[1,8985.361552000046,17.87135599926114],[1,8986.351000000723,0.22980400081723928],[1,8987.40074300114,1.279547001235187],[1,8988.409562000073,2.2883660001680255],[1,8989.190917000175,3.0697210002690554],[1,8990.22982700076,4.108631000854075],[1,8991.369837000035,5.2486410001292825],[1,8992.319693000056,6.1984970001503825],[1,8993.18073500041,7.059539000503719],[1,8994.429655000567,8.30845900066197],[1,8995.346588999964,9.22539300005883],[1,8996.247572000138,10.126376000232995],[1,8997.267428000458,11.146232000552118],[1,8998.231000000611,12.10980400070548],[1,8999.311197999865,13.19000199995935],[1,9000.20823100023,14.08703500032425],[1,9001.268643000163,15.14744700025767],[1,9002.453208999708,16.332012999802828],[1,9003.33013800066,17.208942000754178],[1,9004.419863000512,18.298667000606656],[1,9005.314780000597,19.19358400069177],[1,9006.33969400078,0.0934980008751154],[1,9007.38685999997,1.1406640000641346],[1,9008.161903999746,1.9157079998403788],[1,9009.322255000472,3.0760590005666018],[1,9010.397617000155,4.151421000249684],[1,9011.403882000595,5.157686000689864],[1,9012.414404000156,6.168208000250161],[1,9013.188601000234,6.942405000329018],[1,9014.133601000533,7.887405000627041],[1,9015.323641000316,9.07744500041008],[1,9016.442077999935,10.195882000029087],[1,9017.358030000702,11.11183400079608],[1,9018.410741000436,12.16454500053078],[1,9019.396096999757,13.149900999851525],[1,9020.230933000334,13.98473700042814],[1,9021.329839000478,15.08364300057292],[1,9022.451397000812,16.205201000906527],[1,9023.366678000428,17.120482000522316],[1,9024.272683000192,18.02648700028658],[1,9025.347300000489,19.10110400058329],[1,9026.26465900056,0.1554629998281598],[1,9027.209909999743,1.1007139990106225],[1,9028.328611000441,2.2194149997085333],[1,9029.170588999987,3.061392999254167],[1,9030.476672000252,4.367475999519229],[1,9031.397532999516,5.288336998783052],[1,9032.380149000324,6.270952999591827],[1,9033.327316000126,7.218119999393821],[1,9034.330643000081,8.2214469993487],[1,9035.455933000892,9.34673700015992],[1,9036.371392000467,10.262195999734104],[1,9037.175953000784,11.066757000051439],[1,9038.471851000562,12.362654999829829],[1,9039.192437000573,13.0832409998402],[1,9040.451469000429,14.342272999696434],[1,9041.301724000834,15.192528000101447],[1,9042.34124400001,16.23204799927771],[1,9043.331129000522,0.4719329997897148],[1,9044.332666000351,1.4734699996188283],[1,9045.317419000901,2.4582230001688004],[1,9046.252617000602,3.3934209998697042],[1,9047.295346000232,4.436149999499321],[1,9048.13637100067,5.277174999937415],[1,9049.378724000417,6.519527999684215],[1,9050.318947000429,7.459750999696553],[1,9051.147347000428,8.288150999695063],[1,9052.206699000672,9.347502999939024],[1,9053.212825000286,10.35362899955362],[1,9054.354708000086,11.495511999353766],[1,9055.241268000565,12.382071999832988],[1,9056.390635999851,13.531439999118447],[1,9057.361795000732,14.502598999999464],[1,9058.324185000733,15.46498900000006],[1,9059.333944000304,16.474747999571264],[1,9060.329047000967,0.3618510002270341],[1,9061.317649000324,1.3504529995843768],[1,9062.231342000887,2.264146000146866],[1,9063.366130000912,3.398934000171721],[1,9064.321725999936,4.354529999196529],[1,9065.333394001238,5.366198000498116],[1,9066.330393999815,6.363197999075055],[1,9067.323896001093,7.3567000003531575],[1,9068.33235900011,8.365162999369204],[1,9069.132940000854,9.1657440001145],[1,9070.231418000534,10.264221999794245],[1,9071.33160000015,11.36440399941057],[1,9072.38754300028,12.420346999540925],[1,9073.33968600072,13.372489999979734],[1,9074.368281000294,14.40108499955386],[1,9075.324404000305,15.357207999564707],[1,9076.336175999604,16.368979998864233],[1,9077.149858999997,17.182662999257445],[1,9078.323509000242,18.356312999501824],[1,9079.366970000789,0.9407740002498031],[1,9080.373913999647,1.9477179991081357],[1,9081.267897000536,2.841700999997556],[1,9082.353543000296,3.927346999756992],[1,9083.327701999806,4.901505999267101],[1,9084.242680000141,5.816483999602497],[1,9085.138547000475,6.7123509999364614],[1,9086.392473000102,7.966276999562979],[1,9087.42641399987,9.000217999331653],[1,9088.3710380001,9.944841999560595],[1,9089.417767000385,10.991570999845862],[1,9090.318878000602,11.89268200006336],[1,9091.218813000247,12.792616999708116],[1,9092.364238000475,13.938041999936104],[1,9093.294111000374,14.867914999835193],[1,9094.357207000256,15.931010999716818],[1,9095.126808000728,16.70061200018972],[1,9096.392439000309,17.966242999769747],[1,9097.316623000428,18.890426999889314],[1,9098.341597000137,0.28740100003778934],[1,9099.16646000091,1.1122640008106828],[1,9100.309200000018,2.2550039999186993],[1,9101.323169000447,3.2689730003476143],[1,9102.334840000607,4.280644000507891],[1,9103.396740000695,5.342544000595808],[1,9104.380557000637,6.326361000537872],[1,9105.402518000454,7.348322000354528],[1,9106.20958200097,8.155386000871658],[1,9107.449051000178,9.394855000078678],[1,9108.30304200016,10.248846000060439],[1,9109.166453000158,11.11225700005889],[1,9110.149517000653,12.095321000553668],[1,9111.481584000401,13.427388000302017],[1,9112.29214600008,14.237949999980628],[1,9113.424155000597,15.369959000498056],[1,9114.391033000313,16.336837000213563],[1,9115.324031000026,17.26983499992639],[1,9116.344126000069,18.2899299999699],[137,9117.15838299971,19.104186999611557],[1,9118.276355000213,1.0531589994207025],[1,9119.170142000541,1.9469459997490048],[1,9120.453149000183,3.2299529993906617],[1,9121.371570999734,4.1483749989420176],[1,9122.41983900033,5.196642999537289],[1,9123.23610599991,6.012909999117255],[1,9124.466265000403,7.243068999610841],[1,9125.153429999948,7.930233999155462],[1,9126.378303000703,9.155106999911368],[1,9127.374768001027,10.15157200023532],[1,9128.389447000809,11.166251000016928],[1,9129.324763000011,12.101566999219358],[1,9130.436179000884,13.212983000092208],[1,9131.40576800052,14.18257199972868],[1,9132.319314000197,15.096117999404669],[1,9133.168467000127,15.945270999334753],[1,9134.194904999807,16.97170899901539],[1,9135.45099200029,18.227795999497175],[1,9136.400644999929,0.7834489997476339],[1,9137.382286000066,1.765089999884367],[1,9138.415072999895,2.7978769997134805],[1,9139.228026000783,3.610830000601709],[1,9140.28916199971,4.671965999528766],[1,9141.161186000332,5.543990000151098],[1,9142.376869000494,6.759673000313342],[1,9143.322444000281,7.705248000100255],[1,9144.405323000625,8.788127000443637],[1,9145.409721001051,9.792525000870228],[1,9146.162484000437,10.545288000255823],[1,9147.458192000166,11.840995999984443],[1,9148.324487000704,12.707291000522673],[1,9149.156240999699,13.5390449995175],[1,9150.275149000809,14.657953000627458],[1,9151.44627400022,15.829078000038862],[1,9152.181197999977,16.564001999795437],[1,9153.444368000142,17.827171999961138],[1,9154.39264000021,18.775444000028074],[1,9155.384366000071,0.8741699997335672],[1,9156.382148000412,1.8719520000740886],[387,9157.307592000812,2.7973960004746914],[1,9158.182589001022,3.6723930006846786],[1,9159.331213001162,4.821017000824213],[1,9160.371852000244,5.861655999906361],[1,9161.390957000665,6.880761000327766],[1,9162.392559000291,7.88236299995333],[1,9163.396671000868,8.886475000530481],[1,9164.260858999565,9.750662999227643],[1,9165.19095700048,10.680761000141501],[1,9166.192401999608,11.682205999270082],[1,9167.374254999682,12.864058999344707],[1,9168.424009000883,13.913813000544906],[1,9169.387477001175,14.877281000837684],[1,9170.171985000372,15.661789000034332],[1,9171.436975999735,16.926779999397695],[1,9172.358921000734,17.84872500039637],[1,9173.336557000875,18.826361000537872],[1,9174.35783100035,0.3066349998116493],[1,9175.328099000268,1.276902999728918],[1,9176.187179000117,2.1359829995781183],[2709,9177.372059999965,3.320863999426365],[1,9178.33825699985,4.287060999311507],[1,9179.331798000261,5.280601999722421],[1,9180.400783000514,6.349586999975145],[1,9181.3087260006,7.257530000060797],[1,9182.407127000391,8.355930999852717],[1,9183.198690000921,9.147494000382721],[1,9184.428972000256,10.377775999717414],[1,9185.332301000133,11.28110499959439],[1,9186.401541000232,12.350344999693334],[1,9187.409628001042,13.358432000502944],[1,9188.413548999466,14.362352998927236],[1,9189.176973000169,15.125776999630034],[1,9190.216419000179,16.16522299963981],[1,9191.139831000008,17.088634999468923],[1,9192.38299300056,18.331797000020742],[1,9193.32020800095,0.854012000374496],[1,9194.328533000313,1.8623369997367263],[1,9195.161920000799,2.695724000222981],[1,9196.375981999561,3.9097859989851713],[1,9197.310203000903,4.84400700032711],[1,9198.246343000792,5.780147000215948],[1,9199.361748000607,6.895552000030875],[1,9200.321239000186,7.855042999610305],[1,9201.29099300038,8.824796999804676],[1,9202.437867000699,9.971671000123024],[1,9203.367775000632,10.90157900005579],[1,9204.200095000677,11.733899000100791],[1,9205.2838450009,12.817649000324309],[1,9206.480733999982,14.014537999406457],[1,9207.362519999966,14.896323999390006],[1,9208.323018000461,15.856821999885142],[1,9209.336350999773,16.87015499919653],[1,9210.147030000575,17.680833999998868],[1,9211.24777300097,18.781577000394464],[1,9212.47173000034,1.112533999606967],[1,9213.397017000243,2.0378209995105863],[1,9214.382283000275,3.023086999543011],[1,9215.298476000316,3.9392799995839596],[1,9216.196162000299,4.836965999566019],[1,9217.144927000627,5.78573099989444],[1,9218.39766200073,7.038465999998152],[1,9219.38396999985,8.024773999117315],[1,9220.385735999793,9.026539999060333],[1,9221.38183800038,10.022641999647021],[1,9222.16878500022,10.80958899948746],[1,9223.24624000024,11.887043999508023],[1,9224.475097000599,13.115900999866426],[1,9225.298189000227,13.938992999494076],[1,9226.342415999621,14.983219998888671],[1,9227.132176000625,15.772979999892414],[1,9228.19057900086,16.83138300012797],[1,9229.276145000942,17.91694900020957],[1,9230.424019999802,0.9428239995613694],[1,9231.24323900044,1.7620430001989007],[1,9232.455471000634,2.9742750003933907],[1,9233.29571700003,3.814520999789238],[1,9234.267426000908,4.786230000667274],[1,9235.426947999746,5.945751999504864],[1,9236.375997000374,6.894801000133157],[1,9237.398555000313,7.917359000071883],[1,9238.397215000354,8.91601900011301],[1,9239.176781999879,9.695585999637842],[1,9240.32531500049,10.844119000248611],[1,9241.32233200036,11.84113600011915],[1,9242.323224999942,12.842028999701142],[1,9243.224880000576,13.743684000335634],[1,9244.425738000311,14.944542000070214],[1,9245.376699000597,15.895503000356257],[1,9246.281551999971,16.800355999730527],[1,9247.263170000166,17.781973999924958],[1,9248.48291900102,19.001723000779748],[1,9249.393235000782,0.7780389999970794],[1,9250.326740000397,1.7115439996123314],[1,9251.454288001172,2.839092000387609],[1,9252.287167999893,3.6719719991087914],[1,9253.28229500074,4.66709899995476],[1,9254.475522000343,5.860325999557972],[1,9255.170405000448,6.555208999663591],[1,9256.273442001082,7.658246000297368],[1,9257.362009000964,8.746813000179827],[1,9258.326933000237,9.711736999452114],[1,9259.252716999501,10.637520998716354],[1,9260.367980000563,11.75278399977833],[1,9261.321651999839,12.706455999054015],[1,9262.332951000892,13.71775500010699],[1,9263.222546000034,14.607349999248981],[1,9264.178373999894,15.56317799910903],[1,9265.37016700022,16.75497099943459],[1,9266.158348000608,17.54315199982375],[1,9267.229726999998,18.614530999213457],[1,9268.144984000362,19.52978799957782],[1,9269.16715100035,0.9229549998417497],[1,9270.335881000385,2.0916849998757243],[1,9271.152519000694,2.9083230001851916],[1,9272.478745000437,4.234548999927938],[1,9273.36071700044,5.116520999930799],[1,9274.40594600048,6.161749999970198],[1,9275.31124400068,7.067048000171781],[1,9276.336680999957,8.092484999448061],[1,9277.255843999796,9.011647999286652],[1,9278.471092000604,10.226896000094712],[1,9279.267219000496,11.023022999987006],[1,9280.446854000911,12.202658000402153],[1,9281.366348000243,13.122151999734342],[1,9282.389247000217,14.145050999708474],[1,9283.321312000044,15.077115999534726],[1,9284.304088000208,16.059891999699175],[1,9285.338620000519,17.094424000009894],[1,9286.405239000916,18.161043000407517],[1,9287.179766000248,18.935569999739528],[1,9288.457864000462,0.5406680004671216],[1,9289.362117000856,1.4449210008606315],[1,9290.309969000518,2.392773000523448],[1,9291.343180000782,3.425984000787139],[1,9292.219310000539,4.302114000543952],[1,9293.187762000598,5.270566000603139],[1,9294.440069000237,6.522873000241816],[1,9295.263925001025,7.346729001030326],[1,9296.204997000284,8.287801000289619],[1,9297.365875001065,9.448679001070559],[1,9298.169798000716,10.252602000720799],[1,9299.421709001064,11.504513001069427],[1,9300.30785800051,12.390662000514567],[1,9301.339625000954,13.4224290009588],[1,9302.32704400085,14.409848000854254],[1,9303.134363000281,15.217167000286281],[1,9304.270274000242,16.35307800024748],[1,9305.408288001083,17.491092001087964],[1,9306.389018000104,0.8258219994604588],[1,9307.378291999921,1.8150959992781281],[2,9308.266413000412,2.703216999769211],[1,9309.130952000618,3.5677559999749064],[1,9310.279585000128,4.716388999484479],[1,9311.251265999861,5.688069999217987],[1,9312.370970000513,6.8077739998698235],[1,9313.341556000523,7.778359999880195],[1,9314.360363000073,8.797166999429464],[1,9315.370248000138,9.807051999494433],[1,9316.307543000206,10.744346999563277],[1,9317.272638999857,11.709442999213934],[1,9318.469872999936,12.906676999293268],[1,9319.245914000086,13.682717999443412],[1,9320.458159000613,14.89496299996972],[1,9321.304628999904,15.741432999260724],[1,9322.440845999867,16.87764999922365],[1,9323.40846800059,17.845271999947727],[1,9324.304099000059,18.740902999415994],[1,9325.336215999909,0.8630199991166592],[1,9326.332205000333,1.8590089995414019],[1,9327.257690000348,2.784493999555707],[1,9328.418124000542,3.9449279997497797],[1,9329.20919799991,4.736001999117434],[1,9330.414756000042,5.9415599992498755],[1,9331.413976000622,6.940779999829829],[1,9332.419031000696,7.9458349999040365],[1,9333.32010900043,8.846912999637425],[1,9334.43383700028,9.960640999488533],[1,9335.199018000625,10.725821999832988],[1,9336.452802000567,11.97960599977523],[1,9337.40143499989,12.92823899909854],[1,9338.315549000166,13.84235299937427],[1,9339.437328000553,14.964131999760866],[1,9340.406901000068,15.933704999275506],[1,9341.331778000109,16.85858199931681],[1,9342.332806999795,0.8256109990179539],[1,9343.16725100018,1.6600549994036555],[1,9344.474929000251,2.96773299947381],[1,9345.375923000276,3.8687269994989038],[1,9346.161673000082,4.654476999305189],[1,9347.42341800034,5.916221999563277],[1,9348.405493999831,6.8982979990541935],[1,9349.204951999709,7.697755998931825],[1,9350.474520999938,8.967324999161065],[1,9351.311800000258,9.804603999480605],[1,9352.288984999992,10.781788999214768],[1,9353.400059999898,11.892863999120891],[1,9354.416406000033,12.909209999255836],[1,9355.31856500078,13.811369000002742],[1,9356.40605999995,14.898863999173045],[1,9357.42504600063,15.917849999852479],[1,9358.310357999988,16.803161999210715],[1,9359.146143000573,17.638946999795735],[1,9360.453850000165,18.946653999388218],[1,9361.359395000152,0.4001989997923374],[1,9362.407520000823,1.4483240004628897],[1,9363.395495000295,2.4362989999353886],[1,9364.242243000306,3.2830469999462366],[1,9365.478328000754,4.5191320003941655],[1,9366.307320999913,5.348124999552965],[1,9367.210914000869,6.251718000508845],[1,9368.441631999798,7.482435999438167],[1,9369.272018000484,8.31282200012356],[1,9370.46401800029,9.504821999929845],[1,9371.397416000254,10.4382199998945],[1,9372.316083000042,11.356886999681592],[1,9373.441707000136,12.482510999776423],[1,9374.404341000132,13.44514499977231],[1,9375.303870000876,14.344674000516534],[1,9376.222739000805,15.26354300044477],[1,9377.47085900046,16.51166300009936],[1,9378.151456000283,17.192259999923408],[1,9379.480152999982,18.520956999622285],[1,9380.376761999913,19.417565999552608],[2646,9381.197195000947,20.23799900058657],[1,9382.127428000793,0.20823200047016144],[1,9383.142520000227,1.2233239999040961],[1,9384.324629000388,2.4054330000653863],[1,9385.431065000594,3.5118690002709627],[1,9386.386229000054,4.4670329997316],[1,9387.420026999898,5.500830999575555],[1,9388.269319999963,6.350123999640346],[1,9389.153571000323,7.234375],[1,9390.510468999855,8.59127299953252],[1,9391.17987700086,9.26068100053817],[1,9392.372160000727,10.452964000403881],[1,9393.368743999861,11.449547999538481],[1,9394.421941000037,12.502744999714196],[1,9395.162714000791,13.243518000468612],[1,9396.367887999862,14.448691999539733],[1,9397.42283500079,15.503639000467956],[1,9398.375602000393,16.456406000070274],[1,9399.165825000964,17.246629000641406],[1,9400.137274000794,18.218078000470996],[1,9401.396243000403,19.477047000080347],[1,9402.39515800029,0.8169619999825954],[1,9403.39544000011,1.8172439998015761],[1,9404.395107001066,2.8169110007584095],[1,9405.200505999848,3.622309999540448],[1,9406.28114300035,4.702947000041604],[1,9407.209790000692,5.6315940003842115],[1,9408.348832000047,6.77063599973917],[1,9409.329138999805,7.750942999497056],[1,9410.385766000487,8.807570000179112],[1,9411.38724000007,9.809043999761343],[1,9412.14294799976,10.56475199945271],[1,9413.369741000235,11.791544999927282],[1,9414.43856200017,12.860365999862552],[1,9415.208952000365,13.630756000056863],[1,9416.461183000356,14.88298700004816],[1,9417.245088000782,15.666892000474036],[1,9418.234735000879,16.656539000570774],[1,9419.261047000065,17.682850999757648],[1,9420.463039000519,18.88484300021082],[1,9421.367198999971,19.789002999663353],[1,9422.325432000682,0.45723600033670664],[1,9423.191231000237,1.3230349998921156],[1,9424.198722000234,2.3305259998887777],[1,9425.299934000708,3.4317380003631115],[1,9426.341256000102,4.473059999756515],[1,9427.409869000316,5.541672999970615],[1,9428.214642000385,6.3464460000395775],[1,9429.46276100073,7.594565000385046],[1,9430.208208000287,8.340011999942362],[1,9431.367537000217,9.499340999871492],[1,9432.4231200004,10.554924000054598],[1,9433.332991999574,11.464795999228954],[1,9434.415574000217,12.54737799987197],[1,9435.318303001113,13.450107000768185],[1,9436.365690000355,14.497494000010192],[1,9437.174704999663,15.306508999317884],[1,9438.163343000226,16.29514699988067],[1,9439.16144700069,17.293251000344753],[1,9440.42688200064,18.558686000294983],[1,9441.372799000703,19.504603000357747],[1,9442.323440000415,0.851243999786675],[1,9443.209741001017,1.7375450003892183],[1,9444.354755000211,2.882558999583125],[1,9445.423743000254,3.9515469996258616],[1,9446.386659000069,4.91446299944073],[1,9447.328681000508,5.856484999880195],[1,9448.39814600069,6.925950000062585],[1,9449.321001000702,7.848805000074208],[1,9450.354277000763,8.882081000134349],[1,9451.399323000573,9.927126999944448],[1,9452.41357700061,10.941380999982357],[1,9453.39159400016,11.91939799953252],[1,9454.358924000524,12.886727999895811],[1,9455.209812000394,13.737615999765694],[1,9456.288154999726,14.815958999097347],[1,9457.1590370005,15.686840999871492],[1,9458.391598000191,16.91940199956298],[1,9459.319385999814,17.847189999185503],[1,9460.410242000595,18.938045999966562],[1,9461.382664000615,0.44846800062805414],[1,9462.417832000181,1.4836360001936555],[1,9463.33554800041,2.4013520004227757],[1,9464.438601999544,3.504405999556184],[1,9465.315061000176,4.380865000188351],[1,9466.434670000337,5.500474000349641],[1,9467.338608000427,6.404412000440061],[1,9468.159564999864,7.225368999876082],[1,9469.40865100082,8.474455000832677],[1,9470.415074001066,9.480878001078963],[1,9471.380989000201,10.446793000213802],[1,9472.421365000308,11.487169000320137],[1,9473.13829800114,12.204102001152933],[1,9474.297420000657,13.363224000670016],[1,9475.348437000066,14.414241000078619],[1,9476.325953000225,15.391757000237703],[1,9477.332534000278,16.398338000290096],[1,9478.33246100042,17.39826500043273],[1,9479.332303000614,0.4181070001795888],[1,9480.331431000493,1.4172350000590086],[1,9481.129509000108,2.2153129996731877],[1,9482.286478000693,3.372282000258565],[1,9483.340885000303,4.426688999868929],[1,9484.146906000562,5.232710000127554],[1,9485.37104100082,6.456845000386238],[1,9486.172887000255,7.258690999820828],[1,9487.363118000329,8.448921999894083],[1,9488.316043000668,9.401847000233829],[1,9489.32512300089,10.410927000455558],[1,9490.208003999665,11.293807999230921],[1,9491.304076000117,12.389879999682307],[1,9492.341493001208,13.427297000773251],[1,9493.32311999984,14.408923999406397],[1,9494.32946700044,15.415271000005305],[1,9495.327594000846,16.41339800041169],[1,9496.325283000246,17.411086999811232],[1,9497.227855000645,18.313659000210464],[1,9498.160931999795,19.24673599936068],[1,9499.365412999876,0.794216999784112],[1,9500.319478000514,1.7482820004224777],[1,9501.333752000704,2.762556000612676],[1,9502.330701000988,3.759505000896752],[1,9503.330922001041,4.75972600094974],[1,9504.330788000487,5.75959200039506],[1,9505.130750999786,6.559554999694228],[1,9506.23060600087,7.659410000778735],[1,9507.308969000354,8.737773000262678],[1,9508.33825299982,9.767056999728084],[1,9509.330686001107,10.759490001015365],[1,9510.394603000022,11.82340699993074],[1,9511.377360000275,12.806164000183344],[1,9512.356833999977,13.785637999884784],[1,9513.206666001119,14.635470001026988],[1,9514.330810000189,15.759614000096917],[1,9515.335082000121,16.763886000029743],[1,9516.339573000558,17.76837700046599],[1,9517.329113000073,18.757916999980807],[1,9518.33834700007,19.767150999978185],[1,9519.391247000545,0.9460510006174445],[1,9520.304610000923,1.8594140009954572],[1,9521.208439000882,2.7632430009543896],[1,9522.49112999998,4.045934000052512],[1,9523.385678000748,4.940482000820339],[1,9524.428467000835,5.983271000906825],[1,9525.218098999932,6.77290300000459],[1,9526.363376000896,7.9181800009682775],[1,9527.147301000543,8.70210500061512],[1,9528.203560000286,9.758364000357687],[1,9529.365234000608,10.920038000680506],[1,9530.424909999594,11.979713999666274],[1,9531.38792100083,12.94272500090301],[1,9532.164188000374,13.718992000445724],[1,9533.386585000902,14.941389000974596],[1,9534.16136400029,15.716168000362813],[1,9535.314244001172,16.869048001244664],[1,9536.334537000395,0.9043410001322627],[1,9537.293287999928,1.8630919996649027],[1,9538.166616000235,2.736419999971986],[1,9539.37615500018,3.945958999916911],[1,9540.3395830011,4.909387000836432],[1,9541.309800000861,5.879604000598192],[1,9542.330044999719,6.899848999455571],[1,9543.347853000276,7.917657000012696],[1,9544.433456000872,9.003260000608861],[1,9545.185531000607,9.75533500034362],[1,9546.43480399996,11.004607999697328],[1,9547.370120001025,11.939924000762403],[1,9548.3282170007,12.898021000437438],[1,9549.370340000838,13.940144000574946],[1,9550.36948400084,14.939288000576198],[1,9551.157483000308,15.72728700004518],[1,9552.3789619999,16.948765999637544],[1,9553.131702999584,17.701506999321282],[1,9554.366375999525,18.936179999262094],[1,9555.184836000204,0.7196399997919798],[1,9556.177837000228,1.712640999816358],[1,9557.211230000481,2.746034000068903],[1,9558.275474000722,3.8102780003100634],[1,9559.345792000182,4.8805959997698665],[1,9560.388639001176,5.923443000763655],[1,9561.17911399994,6.7139179995283484],[1,9562.465778999962,8.000582999549806],[1,9563.258899000473,8.793703000061214],[1,9564.418329000473,9.953133000060916],[1,9565.40440800041,10.939211999997497],[1,9566.210081000812,11.744885000400245],[1,9567.217796999961,12.752600999549031],[1,9568.365595000796,13.900399000383914],[1,9569.18401800096,14.718822000548244],[1,9570.183020999655,15.717824999243021],[1,9571.354789000005,16.889592999592423],[1,9572.380166999996,17.914970999583602],[1,9573.38184900023,18.916652999818325],[2,9574.309088000096,19.843891999684274],[1,9575.33227200061,0.9940760005265474],[1,9576.185143999755,1.8469479996711016],[1,9577.238016000949,2.8998200008645654],[1,9578.41887100041,4.080675000324845],[1,9579.405602000654,5.067406000569463],[1,9580.247949000448,5.9097530003637075],[1,9581.410343000665,7.072147000581026],[1,9582.371258000843,8.033062000758946],[1,9583.328972000629,8.990776000544429],[1,9584.360949000344,10.0227530002594],[2647,9585.130604000762,10.792408000677824],[1,9586.23851100076,11.900315000675619],[1,9587.443983000703,13.105787000618875],[1,9588.381250999868,14.043054999783635],[1,9589.278884000145,14.940688000060618],[1,9590.446038000286,16.107842000201344],[1,9591.168342000805,16.83014600072056],[1,9592.274033000693,0.996837000362575],[1,9593.344823000953,2.0676270006224513],[1,9594.426424000412,3.1492280000820756],[1,9595.368212000467,4.091016000136733],[1,9596.383069000207,5.105872999876738],[1,9597.393184000626,6.115988000296056],[1,9598.274437000044,6.99724099971354],[1,9599.140580000356,7.86338400002569],[1,9600.474467000924,9.1972710005939],[1,9601.169674000703,9.892478000372648],[1,9602.46255700104,11.185361000709236],[1,9603.243805999868,11.966609999537468],[1,9604.453538999893,13.176342999562621],[1,9605.398843000643,14.121647000312805],[1,9606.1814240003,14.904227999970317],[1,9607.16145899985,15.884262999519706],[1,9608.369742000476,17.092546000145376],[1,9609.162484000437,17.88528800010681],[1,9610.258805001155,1.026609000749886],[1,9611.47298800014,2.240791999734938],[1,9612.392796999775,3.1606009993702173],[1,9613.380717000924,4.148521000519395],[1,9614.213168000802,4.980972000397742],[1,9615.177219000645,5.945023000240326],[1,9616.255309000611,7.023113000206649],[1,9617.225998000242,7.99380199983716],[1,9618.447370000184,9.215173999778926],[1,9619.369161000475,10.136965000070632],[1,9620.388492999598,11.156296999193728],[1,9621.397317999974,12.165121999569237],[1,9622.13695299998,12.904756999574602],[1,9623.26880200021,14.036605999805033],[1,9624.350267000496,15.118071000091732],[1,9625.232509001158,16.000313000753522],[1,9626.356359000318,17.124162999913096],[1,9627.32956800051,18.09737200010568],[1,9628.331235000864,19.099039000459015],[1,9629.168697000481,0.148501000367105],[1,9630.370893999934,1.3506979998201132],[1,9631.3404740002,2.320278000086546],[1,9632.391812999733,3.371616999618709],[1,9633.257942999713,4.2377469995990396],[1,9634.424914000556,5.40471800044179],[1,9635.311390999705,6.291194999590516],[1,9636.37375000026,7.353554000146687],[1,9637.421497000381,8.401301000267267],[1,9638.374136000872,9.353940000757575],[1,9639.385362000205,10.36516600009054],[1,9640.151457999833,11.131261999718845],[1,9641.233540000394,12.213344000279903],[1,9642.313615000807,13.293419000692666],[1,9643.189461000264,14.169265000149608],[1,9644.478054000065,15.457857999950647],[1,9645.360881000757,16.340685000643134],[1,9646.422532000579,17.402336000464857],[1,9647.16280900035,18.14261300023645],[1,9648.3905290002,19.370333000086248],[1,9649.276870000176,0.27367400005459785],[1,9650.40942000039,1.4062240002676845],[1,9651.28703500051,2.28383900038898],[1,9652.444946000353,3.441750000230968],[1,9653.249106000178,4.245910000056028],[1,9654.43797100056,5.434775000438094],[1,9655.26725100074,6.2640550006181],[1,9656.20611600019,7.202920000068843],[1,9657.152555000968,8.149359000846744],[1,9658.370663001202,9.367467001080513],[1,9659.157828000374,10.154632000252604],[1,9660.181498000398,11.178302000276744],[1,9661.171633000486,12.168437000364065],[1,9662.224285000935,13.221089000813663],[1,9663.382876999676,14.379680999554694],[1,9664.348900000565,15.34570400044322],[1,9665.144213000312,16.141017000190914],[1,9666.388952000067,17.385755999945104],[1,9667.312091000378,0.4208949999883771],[1,9668.151689000428,1.2604930000379682],[1,9669.374607999809,2.4834119994193316],[1,9670.213171000592,3.321975000202656],[1,9671.315494000912,4.424298000521958],[1,9672.249286000617,5.358090000227094],[1,9673.20708299987,6.315886999480426],[1,9674.259949999861,7.368753999471664],[1,9675.345854000188,8.454657999798656],[1,9676.326604000293,9.435407999902964],[1,9677.367519000545,10.47632300015539],[1,9678.336374999955,11.445178999565542],[1,9679.351503000595,12.46030700020492],[1,9680.220718001015,13.32952200062573],[1,9681.196506000124,14.305309999734163],[1,9682.388128000312,15.496931999921799],[1,9683.317367000505,16.426171000115573],[1,9684.333787000738,17.44259100034833],[1,9685.395508999936,18.504312999546528],[1,9686.236641000025,0.15844499971717596],[1,9687.21546300035,1.137267000041902],[1,9688.446924000047,2.368727999739349],[1,9689.372346000746,3.294150000438094],[1,9690.42032300029,4.342126999981701],[1,9691.312036000192,5.233839999884367],[1,9692.338414000347,6.260218000039458],[1,9693.242548000999,7.164352000690997],[1,9694.373167000711,8.294971000403166],[1,9695.133540000767,9.055344000458717],[1,9696.382495000958,10.304299000650644],[1,9697.319378999993,11.241182999685407],[1,9698.14053000044,12.062334000132978],[1,9699.15508600045,13.076890000142157],[1,9700.375099000521,14.296903000213206],[1,9701.187092000619,15.108896000310779],[1,9702.349302000366,16.271106000058353],[1,9703.327566999942,0.8273709993809462],[1,9704.335506999865,1.8353109993040562],[1,9705.329218001105,2.829022000543773],[1,9706.32909100037,3.828894999809563],[1,9707.31741499994,4.817218999378383],[1,9708.16598699987,5.6657909993082285],[1,9709.308187000453,6.807990999892354],[1,9710.333317000419,7.833120999857783],[1,9711.329235999845,8.82903999928385],[1,9712.381881999783,9.8816859992221],[1,9713.339165000245,10.838968999683857],[1,9714.1891250005,11.68892899993807],[1,9715.158975000493,12.65877899993211],[1,9716.371392000467,13.871195999905467],[1,9717.368262999691,14.868066999129951],[1,9718.397500000894,15.897304000332952],[1,9719.171983000822,16.671787000261247],[1,9720.472276000306,17.972079999744892],[1,9721.33274500072,18.832549000158906],[1,9722.28943700064,19.78924100007862],[1,9723.335525000468,0.9473289996385574],[1,9724.432058000006,2.0438619991764426],[1,9725.150377000682,2.762180999852717],[1,9726.375750999898,3.9875549990683794],[1,9727.209371999837,4.821175999008119],[1,9728.152069000527,5.763872999697924],[1,9729.237518999726,6.849322998896241],[1,9730.438028000295,8.049831999465823],[1,9731.17756399978,8.789367998950183],[1,9732.379302999936,9.991106999106705],[1,9733.322083000094,10.93388699926436],[1,9734.335508000106,11.94731199927628],[1,9735.332605999894,12.944409999065101],[1,9736.386950999498,13.998754998669028],[1,9737.206131001003,14.817935000173748],[1,9738.501581000164,16.113384999334812],[1,9739.197053000331,16.808856999501586],[1,9740.429414999671,18.04121899884194],[1,9741.311618999578,0.19842299912124872],[1,9742.140545000322,1.027348999865353],[1,9743.29118300043,2.1779869999736547],[1,9744.264438999817,3.1512429993599653],[1,9745.457138000056,4.343941999599338],[1,9746.400892000645,5.287696000188589],[1,9747.25287800096,6.139682000502944],[1,9748.21055200044,7.097355999983847],[1,9749.368382000364,8.255185999907553],[1,9750.13666700013,9.023470999673009],[1,9751.372139999643,10.258943999186158],[1,9752.397243999876,11.284047999419272],[1,9753.41561200004,12.3024159995839],[1,9754.390933999792,13.277737999334931],[1,9755.32386100106,14.210665000602603],[1,9756.335257999599,15.22206199914217],[1,9757.432218000293,16.319021999835968],[1,9758.307504000142,17.194307999685407],[1,9759.34074600041,18.227549999952316],[1,9760.376285000704,0.42508900072425604],[1,9761.424453999847,1.4732579998672009],[1,9762.34751000069,2.396314000710845],[1,9763.343705000356,3.392509000375867],[1,9764.40566600021,4.454470000229776],[1,9765.343236000277,5.392040000297129],[1,9766.343330000527,6.39213400054723],[1,9767.171027000993,7.219831001013517],[1,9768.21238599997,8.261189999990165],[1,9769.362984000705,9.41178800072521],[1,9770.427427000366,10.476231000386178],[1,9771.26513800025,11.31394200026989],[1,9772.25953900069,12.30834300071001],[1,9773.436027000658,13.484831000678241],[1,9774.147048999555,14.195852999575436],[1,9775.379686000757,15.428490000776947],[1,9776.295629000291,16.344433000311255],[1,9777.417888000607,17.466692000627518],[1,9778.411038001068,18.459842001087964],[1,9779.16203000024,0.2988339997828007],[1,9780.474943000823,1.6117470003664494],[1,9781.228893999942,2.365697999484837],[1,9782.479561000131,3.6163649996742606],[1,9783.30825900007,4.445062999613583],[1,9784.421339999884,5.558143999427557],[1,9785.387891000137,6.524694999679923],[1,9786.190185000189,7.326988999731839],[1,9787.339677000418,8.476480999961495],[2647,9788.334536000155,9.471339999698102],[1,9789.314764999785,10.45156899932772],[1,9790.41782400012,11.554627999663353],[1,9791.2944640005,12.431268000043929],[1,9792.344697000459,13.481501000002027],[1,9793.330310001038,14.467114000581205],[1,9794.196521000005,15.333324999548495],[1,9795.296701000072,16.433504999615252],[1,9796.246473000385,0.8512770002707839],[1,9797.456928000785,2.061732000671327],[1,9798.39987600036,3.004680000245571],[1,9799.396449000575,4.001253000460565],[1,9800.323476999998,4.928280999884009],[1,9801.384885000065,5.989688999950886],[1,9802.330755000003,6.935558999888599],[1,9803.252299000509,7.857103000395],[1,9804.428988000378,9.03379200026393],[1,9805.406477000564,10.011281000450253],[1,9806.297040000558,10.901844000443816],[1,9807.440018000081,12.044821999967098],[1,9808.303053000942,12.90785700082779],[1,9809.339829000644,13.944633000530303],[1,9810.38270800002,14.98751199990511],[1,9811.164078000933,15.768882000818849],[1,9812.321973000653,16.926777000539005],[1,9813.343098999932,17.947902999818325],[1,9814.398490000516,19.003294000402093],[1,9815.31683799997,0.1516419993713498],[1,9816.267403000034,1.1022069994360209],[1,9817.288819000125,2.1236229995265603],[1,9818.43971700035,3.274520999751985],[1,9819.287089000456,4.121892999857664],[1,9820.443808000535,5.278611999936402],[1,9821.388450000435,6.223253999836743],[1,9822.414503999986,7.2493079993873835],[1,9823.280594000593,8.115397999994457],[1,9824.405652000569,9.240455999970436],[1,9825.314954000525,10.149757999926805],[1,9826.337811000645,11.17261500004679],[1,9827.194508999586,12.029312998987734],[1,9828.24130900018,13.0761129995808],[1,9829.211069000885,14.04587300028652],[1,9830.359145000577,15.193948999978602],[1,9831.433423000388,16.268226999789476],[1,9832.318053000607,17.152857000008225],[1,9833.43219400011,0.6859980002045631],[1,9834.377253000624,1.6310570007190108],[1,9835.195824000053,2.4496280001476407],[1,9836.319817000069,3.573621000163257],[1,9837.366710000671,4.620514000765979],[1,9838.403614000417,5.657418000511825],[1,9839.248287000693,6.502091000787914],[1,9840.45148100052,7.705285000614822],[1,9841.320276000537,8.574080000631511],[1,9842.332580000162,9.586384000256658],[1,9843.282768000849,10.536572000943124],[1,9844.473334000446,11.727138000540435],[1,9845.231414000504,12.485218000598252],[1,9846.168143000454,13.421947000548244],[1,9847.32859400101,14.582398001104593],[1,9848.36486500036,15.618669000454247],[1,9849.422677000985,16.676481001079082],[1,9850.376993000507,0.6957970000803471],[1,9851.326728000306,1.6455319998785853],[1,9852.415152999572,2.733956999145448],[1,9853.236034999602,3.5548389991745353],[1,9854.478560000658,4.797364000231028],[1,9855.391755999997,5.7105599995702505],[1,9856.397680999711,6.716484999284148],[1,9857.416441000067,7.73524499963969],[1,9858.254191000015,8.572994999587536],[1,9859.279591999948,9.598395999521017],[1,9860.347250999883,10.66605499945581],[1,9861.441103000194,11.759906999766827],[1,9862.37007000018,12.688873999752104],[1,9863.136433000676,13.455237000249326],[1,9864.17148000095,14.490284000523388],[1,9865.17429200001,15.493095999583602],[1,9866.439783000387,16.758586999960244],[1,9867.206575999968,0.6663799993693829],[1,9868.467222000472,1.9270259998738766],[1,9869.365334000438,2.8251379998400807],[1,9870.423649000004,3.883452999405563],[1,9871.246001000516,4.705804999917746],[1,9872.471788000315,5.931591999717057],[1,9873.2660050001,6.725808999501169],[1,9874.15701500047,7.616818999871612],[1,9875.14476600103,8.604570000432432],[1,9876.377056000754,9.836860000155866],[1,9877.312925000675,10.772729000076652],[1,9878.331137999892,11.790941999293864],[1,9879.245156000368,12.704959999769926],[1,9880.353269000538,13.813072999939322],[1,9881.33092200011,14.790725999511778],[1,9882.146841000766,15.606645000167191],[1,9883.155171000399,16.614974999800324],[1,9884.388269999996,17.848073999397457],[1,9885.250246000476,0.14305000007152557],[1,9886.159297999926,1.0521019995212555],[1,9887.31731500011,2.2101189997047186],[1,9888.394428000785,3.2872320003807545],[1,9889.333349000663,4.226153000257909],[1,9890.351733000018,5.244536999613047],[1,9891.13377400022,6.026577999815345],[1,9892.370833000168,7.263636999763548],[1,9893.157453999855,8.050257999449968],[1,9894.412053000182,9.304856999777257],[1,9895.321503999643,10.214307999238372],[1,9896.43171699997,11.32452099956572],[1,9897.385656000115,12.278459999710321],[1,9898.245699000545,13.13850300014019],[1,9899.255919000134,14.148722999729216],[1,9900.248537000269,15.141340999864042],[1,9901.355872999877,16.24867699947208],[1,9902.32628500089,0.8560890005901456],[1,9903.434583000839,1.9643870005384088],[1,9904.249003000557,2.778807000257075],[1,9905.451519000344,3.9813230000436306],[1,9906.280814999714,4.810618999414146],[1,9907.166696000844,5.696500000543892],[1,9908.378380000591,6.90818400029093],[1,9909.318634000607,7.848438000306487],[1,9910.334730000235,8.864533999934793],[1,9911.331996999681,9.861800999380648],[1,9912.332240000367,10.862044000066817],[1,9913.330103000626,11.85990700032562],[1,9914.149058000185,12.678861999884248],[1,9915.190455000848,13.72025900054723],[1,9916.345904000103,14.875707999803126],[1,9917.196879999712,15.726683999411762],[1,9918.366462000646,16.89626600034535],[1,9919.131908000447,17.661712000146508],[1,9920.379069000483,18.90887300018221],[1,9921.328103000298,19.857906999997795],[1,9922.32590700034,0.9017110001295805],[1,9923.326398000121,1.9022019999101758],[1,9924.22829300072,2.8040970005095005],[1,9925.124846000224,3.700650000013411],[1,9926.386489001103,4.962293000891805],[1,9927.31664700061,5.892451000399888],[1,9928.38744900003,6.963252999819815],[1,9929.337619001046,7.913423000834882],[1,9930.395093999803,8.970897999592125],[1,9931.182812999934,9.758616999723017],[1,9932.43440000061,11.010204000398517],[1,9933.127822000533,11.703626000322402],[1,9934.385965000838,12.9617690006271],[1,9935.314672000706,13.890476000495255],[1,9936.339039000683,14.914843000471592],[1,9937.373094000854,15.948898000642657],[1,9938.304906000383,16.880710000172257],[1,9939.415060000494,17.99086400028318],[1,9940.385267000645,18.96107100043446],[1,9941.262647000141,19.8384509999305],[1,9942.348532000557,0.965336000546813],[1,9943.23803200014,1.8548360001295805],[1,9944.419193000533,3.0359970005229115],[1,9945.279440000653,3.8962440006434917],[1,9946.407867000438,5.024671000428498],[1,9947.407897000201,6.024701000191271],[1,9948.408622000366,7.025426000356674],[1,9949.140732000582,7.757536000572145],[1,9950.374247000553,8.991051000542939],[1,9951.22733299993,9.84413699992001],[1,9952.359886000864,10.976690000854433],[1,9953.32551000081,11.942314000800252],[1,9954.382059999742,12.998863999731839],[1,9955.394410001114,14.011214001104236],[1,9956.412230000831,15.029034000821412],[1,9957.234340000898,15.85114400088787],[1,9958.369486000389,16.986290000379086],[1,9959.323313000612,17.940117000602186],[1,9960.432300000452,19.04910400044173],[1,9961.371461999603,0.45526599884033203],[1,9962.41704700049,1.5008509997278452],[1,9963.304945000447,2.388748999685049],[1,9964.437331000343,3.5211349995806813],[1,9965.158675000072,4.242478999309242],[1,9966.443160000257,5.52696399949491],[1,9967.307265000418,6.391068999655545],[1,9968.339290000498,7.423093999736011],[1,9969.245004000142,8.328807999379933],[1,9970.461405999959,9.545209999196231],[1,9971.397497000173,10.48130099941045],[1,9972.379499999806,11.463303999044001],[1,9973.283319000155,12.36712299939245],[1,9974.217636000365,13.301439999602735],[1,9975.365676000714,14.449479999952018],[1,9976.245096000843,15.328900000080466],[1,9977.458687000908,16.542491000145674],[1,9978.366530000232,17.450333999469876],[1,9979.388961000368,18.472764999605715],[1,9980.420440000482,19.50424399971962],[1,9981.18662600033,0.6424300000071526],[1,9982.44897200074,1.904776000417769],[1,9983.31019200012,2.7659959997981787],[1,9984.339151000604,3.794955000281334],[1,9985.408772000112,4.86457599978894],[1,9986.409035000019,5.864838999696076],[1,9987.27594500035,6.731749000027776],[1,9988.199280000292,7.655083999969065],[1,9989.320035000332,8.775839000009],[1,9990.418830000795,9.874634000472724],[2647,9991.326987000182,10.782790999859571],[1,9992.328278000467,11.784082000143826],[1,9993.334338000976,12.79014200065285],[1,9994.251214000396,13.707018000073731],[1,9995.442623999901,14.898427999578416],[1,9996.40758800041,15.863392000086606],[1,9997.23166900035,16.68747300002724],[1,9998.455743000843,0.5545470006763935],[1,9999.40769300051,1.5064970003440976],[1,10000.211458000354,2.3102620001882315],[1,10001.385201999918,3.484005999751389],[1,10002.421125000343,4.519929000176489],[1,10003.386784000322,5.485588000155985],[1,10004.385753000155,6.484556999988854],[1,10005.31672500074,7.41552900057286],[1,10006.301008000039,8.399811999872327],[1,10007.370713999495,9.469517999328673],[1,10008.322887000628,10.421691000461578],[1,10009.355932000093,11.454735999926925],[1,10010.178541000932,12.277345000766218],[1,10011.365982000716,13.464786000549793],[1,10012.300328000449,14.399132000282407],[1,10013.249197999947,15.348001999780536],[1,10014.43673700001,16.53554099984467],[1,10015.403272000141,17.502075999975204],[1,10016.322664001025,18.421468000859022],[2,10017.282194999978,0.0069989999756217],[1,10018.348364000209,1.0731680002063513],[1,10019.400726000778,2.1255300007760525],[1,10020.414674000815,3.1394780008122325],[1,10021.218911999837,3.9437159998342395],[1,10022.438892000355,5.163696000352502],[1,10023.305308000185,6.030112000182271],[1,10024.26184800081,6.986652000807226],[1,10025.35021600034,8.075020000338554],[1,10026.328718000092,9.053522000089288],[1,10027.43556200061,10.16036600060761],[1,10028.232513000257,10.957317000254989],[1,10029.170955000445,11.895759000442922],[1,10030.304386000149,13.029190000146627],[1,10031.368228000589,14.09303200058639],[1,10032.392622999847,15.11742699984461],[1,10033.414658000693,16.1394620006904],[1,10034.262574999593,16.987378999590874],[1,10035.177997000515,17.902801000513136],[1,10036.12847500015,0.043278999626636505],[1,10037.170930000953,1.085734000429511],[1,10038.334900000133,2.249703999608755],[1,10039.329162000678,3.2439660001546144],[1,10040.412101999857,4.326905999332666],[1,10041.323883000761,5.238687000237405],[1,10042.33324099984,6.248044999316335],[1,10043.334757000208,7.249560999684036],[1,10044.405784999952,8.320588999427855],[1,10045.203166000545,9.11797000002116],[1,10046.28481699992,10.199620999395847],[1,10047.442325000651,11.357129000127316],[1,10048.396050000563,12.310854000039399],[1,10049.379404000007,13.294207999482751],[1,10050.329049999826,14.243853999301791],[1,10051.27160600014,15.186409999616444],[1,10052.476397000253,16.391200999729335],[2747,10053.16346900072,17.078273000195622],[1,10054.366735000163,0.8545389994978905],[1,10055.214190000668,1.7019940000027418],[1,10056.459263000637,2.9470669999718666],[1,10057.333641001023,3.821445000357926],[1,10058.332891000435,4.82069499976933],[1,10059.3332270002,5.821030999533832],[1,10060.335413999856,6.823217999190092],[1,10061.184434000403,7.672237999737263],[1,10062.46730600018,8.955109999515116],[1,10063.271204000339,9.759007999673486],[1,10064.445999001153,10.933803000487387],[1,10065.315666000359,11.803469999693334],[1,10066.375246000476,12.863049999810755],[1,10067.417386000976,13.90519000031054],[1,10068.186701999977,14.674505999311805],[1,10069.237226000056,15.725029999390244],[1,10070.470893000253,16.95869699958712],[1,10071.40529599972,17.893099999055266],[1,10072.380264000036,18.868067999370396],[1,10073.435340000317,19.923143999651074],[1,10074.261639000848,0.7064430005848408],[1,10075.350581000559,1.795385000295937],[1,10076.329789999872,2.774593999609351],[1,10077.429318000562,3.874122000299394],[1,10078.371389999986,4.8161939997226],[1,10079.154423000291,5.599227000027895],[1,10080.456062001176,6.9008660009130836],[1,10081.239419000223,7.684222999960184],[1,10082.438911000267,8.883715000003576],[1,10083.303119000047,9.74792299978435],[1,10084.34046300035,10.785267000086606],[1,10085.331654000096,11.776457999832928],[1,10086.382015001029,12.826819000765681],[1,10087.30998700019,13.754790999926627],[1,10088.30852900073,14.753333000466228],[1,10089.408230000176,15.85303399991244],[1,10090.284495000727,16.72929900046438],[1,10091.1778510008,17.622655000537634],[1,10092.37258100044,18.817385000176728],[1,10093.14014600031,0.4599500000476837],[1,10094.479202000424,1.799006000161171],[1,10095.391209000722,2.711013000458479],[1,10096.314008000307,3.63381200004369],[1,10097.33842800092,4.658232000656426],[1,10098.333940000273,5.653744000010192],[1,10099.331451999955,6.651255999691784],[1,10100.335129000247,7.65493299998343],[1,10101.31683400087,8.63663800060749],[1,10102.33485700097,9.654661000706255],[1,10103.394886000082,10.714689999818802],[1,10104.272539000958,11.59234300069511],[1,10105.394597999752,12.714401999488473],[1,10106.379031999968,13.698835999704897],[1,10107.381067999639,14.700871999375522],[2,10108.318936999887,15.638740999624133],[1,10109.330169000663,16.64997300039977],[137,10110.182719000615,17.502523000352085],[1,10111.392327999696,1.119131999090314],[1,10112.379972000606,2.1067760000005364],[1,10113.414680999704,3.1414849990978837],[1,10114.374759000726,4.101563000120223],[1,10115.31605800055,5.042861999943852],[1,10116.335335000418,6.062138999812305],[1,10117.333064000122,7.0598679995164275],[1,10118.333730001003,8.060534000396729],[1,10119.3850120008,9.111816000193357],[1,10120.4168520011,10.143656000494957],[1,10121.137424000539,10.864227999933064],[1,10122.350058000535,12.076861999928951],[1,10123.43112900015,13.157932999543846],[1,10124.372849999927,14.099653999321163],[1,10125.326743000187,15.053546999581158],[1,10126.333652000874,16.06045600026846],[1,10127.138725000434,16.865528999827802],[1,10128.222926000133,17.949729999527335],[1,10129.352167000063,1.0219709994271398],[1,10130.3274609996,1.9972649989649653],[1,10131.333113000728,3.002917000092566],[1,10132.245000001043,3.9148040004074574],[1,10133.356032000855,5.0258360002189875],[1,10134.147462000139,5.817265999503434],[1,10135.143189000897,6.812993000261486],[1,10136.249278000556,7.919081999920309],[1,10137.277596000582,8.947399999946356],[1,10138.172283000313,9.842086999677122],[1,10139.150380999781,10.820184999145567],[1,10140.37662300095,12.046427000313997],[1,10141.137002000585,12.806805999949574],[1,10142.37952200044,14.049325999803841],[1,10143.31240000017,14.98220399953425],[1,10144.25250000041,15.922303999774158],[1,10145.351375000551,17.02117899991572],[1,10146.397402999923,0.9652069993317127],[1,10147.15693200007,1.7247359994798899],[1,10148.132181000896,2.6999850003048778],[1,10149.396652000025,3.9644559994339943],[1,10150.230439000763,4.798243000172079],[1,10151.356785000302,5.924588999710977],[1,10152.345791000873,6.91359500028193],[1,10153.253232000396,7.821035999804735],[1,10154.38396500051,8.951768999919295],[1,10155.134623000398,9.702426999807358],[1,10156.396451000124,10.964254999533296],[1,10157.14302800037,11.710831999778748],[1,10158.331946000457,12.89974999986589],[1,10159.331837000325,13.899640999734402],[1,10160.276016000658,14.843820000067353],[1,10161.382307000458,15.95011099986732],[1,10162.331326999702,16.89913099911064],[1,10163.13868400082,17.706488000229],[1,10164.395925999619,18.963729999028146],[1,10165.325564000756,19.893368000164628],[1,10166.317933999933,0.9117379998788238],[1,10167.279869000427,1.8736730003729463],[1,10168.351249000989,2.945053000934422],[1,10169.325597000308,3.919401000253856],[1,10170.40913600102,5.002940000966191],[1,10171.358297999948,5.9521019998937845],[1,10172.360789000988,6.954593000933528],[1,10173.192871000618,7.786675000563264],[1,10174.463566999882,9.057370999827981],[1,10175.151578000747,9.745382000692189],[1,10176.378488000482,10.972292000427842],[1,10177.4193590004,12.01316300034523],[1,10178.373635999858,12.9674399998039],[1,10179.1540310001,13.747835000045598],[1,10180.430414999835,15.024218999780715],[1,10181.40479200054,15.998596000485122],[1,10182.382010000758,16.975814000703394],[1,10183.326631999575,17.920435999520123],[1,10184.454503000714,19.048307000659406],[1,10185.189880000427,19.783684000372887],[1,10186.44463600032,0.9194400003179908],[1,10187.231687000021,1.7064910000190139],[1,10188.42582200095,2.9006260009482503],[1,10189.37624700088,3.851051000878215],[1,10190.206865999848,4.681669999845326],[1,10191.48514300026,5.959947000257671],[1,10192.291998000816,6.766802000813186],[1,10193.342794000171,7.8175980001688],[2748,10194.330804000609,8.805608000606298],[2641,10195.138050999492,9.612854999490082],[1,10196.12529100012,10.600095000118017],[1,10197.201988000423,11.676792000420392],[1,10198.398513000458,12.873317000456154],[1,10199.379762000404,13.854566000401974],[1,10200.38019800093,14.855002000927925],[1,10201.401108000427,15.87591200042516],[1,10202.320441000164,0.1112449998036027],[1,10203.224716999568,1.0155209992080927],[1,10204.473153000697,2.263957000337541],[1,10205.394776000641,3.185580000281334],[1,10206.394346999936,4.185150999575853],[1,10207.415006999858,5.205810999497771],[1,10208.23812800087,6.028932000510395],[1,10209.355466000736,7.146270000375807],[1,10210.327311000787,8.11811500042677],[1,10211.215214001015,9.006018000654876],[1,10212.462837000377,10.253641000017524],[1,10213.369451000355,11.160254999995232],[1,10214.278862000443,12.069666000083089],[1,10215.453626999632,13.244430999271572],[1,10216.404876000248,14.195679999887943],[1,10217.328111000359,15.118914999999106],[1,10218.434201000258,16.225004999898374],[1,10219.313340000808,17.104144000448287],[1,10220.298353000544,18.08915700018406],[1,10221.33862100076,19.12942500039935],[1,10222.388216000982,0.9220200004056096],[1,10223.274540999904,1.8083449993282557],[1,10224.41793099977,2.9517349991947412],[1,10225.319646000862,3.8534500002861023],[1,10226.195550000295,4.729353999719024],[1,10227.130482999608,5.664286999031901],[1,10228.19319100026,6.726994999684393],[1,10229.380157000385,7.9139609998092055],[1,10230.320923000574,8.854726999998093],[1,10231.33787999954,9.871683998964727],[2757,10232.317587999627,10.851391999050975],[2769,10233.146623000503,11.680426999926567]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[[422,5435512.577525,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435512.587134,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435512.626321,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435512.647886001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435522.503573,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435522.515487,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435522.57028,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435522.574331,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435538.917654,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435538.928352,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435538.979232,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435538.9829440005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435555.89683,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435555.915018,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435555.983986,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435555.987279,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435572.342234,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435572.35008,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435572.396279,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435572.399517,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435589.186999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435589.1980449995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435589.252606,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435589.256658,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435605.85778,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435605.867771,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435605.933752,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435605.937492,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435622.780798,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435622.792981001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435623.010311,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435623.015145,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435639.244976,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435639.254842,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435639.304969,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435639.3085859995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435655.718006,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435655.729452,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435655.792691,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435655.798979,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435672.314695,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435672.326362,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435672.510088,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435672.514985,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435689.2177760005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435689.230071,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435689.276512,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435689.280874,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435705.745622,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435705.755338999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435705.791138,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435705.794887,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435722.635125999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435722.645578,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435722.688778,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435722.69297,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435739.07242,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435739.083733001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435739.127351,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435739.131501,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435756.1840119995,{"type":"tracing","category":"Paint","interval":"start"}],[424,5435756.286465,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[1692,5435750.177587]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5435756.319101,{"type":"tracing","category":"Paint","interval":"end"}],[424,5435756.319553,{"type":"tracing","category":"Paint","interval":"start"}],[424,5435756.319937,{"type":"tracing","category":"Paint","interval":"end"}],[425,5435756.320194,{"type":"tracing","category":"Paint","interval":"start"}],[425,5435756.320892,{"type":"tracing","category":"Paint","interval":"end"}],[426,5435756.340183,{"type":"DOMEvent","startTime":5435756.340183,"endTime":5435756.3452820005,"timeStamp":5435740.005829001,"eventType":"mousemove","phase":3}],[423,5435756.352502,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435756.385394,{"type":"tracing","category":"Paint","interval":"end"}],[427,5435756.3897939995,{"type":"tracing","category":"Paint","interval":"start"}],[427,5435756.433073,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435756.436338,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435772.779913,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435772.790805999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435772.834884,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435772.83843,{"type":"tracing","category":"Paint","interval":"end"}],[426,5435777.427828,{"type":"DOMEvent","startTime":5435777.427828,"endTime":5435777.435579,"timeStamp":5435777.421363999,"eventType":"mouseout","phase":3}],[424,5435777.454321,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2771,5435777.442577001]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5435777.478080999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5435777.478468,{"type":"tracing","category":"Paint","interval":"start"}],[424,5435777.479235,{"type":"tracing","category":"Paint","interval":"end"}],[425,5435777.479442,{"type":"tracing","category":"Paint","interval":"start"}],[425,5435777.480001,{"type":"tracing","category":"Paint","interval":"end"}],[426,5435777.485373,{"type":"DOMEvent","startTime":5435777.485373,"endTime":5435777.489847,"timeStamp":5435756.715556,"eventType":"mousemove","phase":3}],[422,5435789.484389,{"type":"tracing","category":"Paint","interval":"start"}],[426,5435789.619843,{"type":"DOMEvent","startTime":5435789.619843,"endTime":5435789.626693999,"timeStamp":5435789.610776,"eventType":"mouseout","phase":3}],[424,5435789.6534130005,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[165,5435789.634397]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5435789.671431,{"type":"tracing","category":"Paint","interval":"end"}],[424,5435789.672504,{"type":"tracing","category":"Paint","interval":"start"}],[424,5435789.672865001,{"type":"tracing","category":"Paint","interval":"end"}],[425,5435789.673111,{"type":"tracing","category":"Paint","interval":"start"}],[425,5435789.673683,{"type":"tracing","category":"Paint","interval":"end"}],[426,5435789.680362,{"type":"DOMEvent","startTime":5435789.680362,"endTime":5435789.684892,"timeStamp":5435773.724944,"eventType":"mousemove","phase":3}],[423,5435789.692241999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435789.722597,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435789.72549,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435805.979886,{"type":"tracing","category":"Paint","interval":"start"}],[426,5435806.158814,{"type":"DOMEvent","startTime":5435806.158814,"endTime":5435806.171636,"timeStamp":5435790.5169089995,"eventType":"mousemove","phase":3}],[423,5435806.182317999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435806.219498,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435806.222532,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435822.681503001,{"type":"tracing","category":"Paint","interval":"start"}],[426,5435822.848262,{"type":"DOMEvent","startTime":5435822.848262,"endTime":5435822.861644,"timeStamp":5435807.621475,"eventType":"mousemove","phase":3}],[423,5435822.870883999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435822.907645,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435822.9107369995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435839.270356,{"type":"tracing","category":"Paint","interval":"start"}],[426,5435839.427623,{"type":"DOMEvent","startTime":5435839.427623,"endTime":5435839.441692,"timeStamp":5435824.738082999,"eventType":"mousemove","phase":3}],[423,5435839.450903,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435839.490278,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435839.494807,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435855.634527,{"type":"tracing","category":"Paint","interval":"start"}],[426,5435855.797387,{"type":"DOMEvent","startTime":5435855.797387,"endTime":5435855.8114910005,"timeStamp":5435842.483015,"eventType":"mousemove","phase":3}],[423,5435855.821688999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435855.859083,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435855.862253,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435872.217696,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435872.229816,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435872.275762,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435872.280662,{"type":"tracing","category":"Paint","interval":"end"}],[426,5435884.767902999,{"type":"DOMEvent","startTime":5435884.767902999,"endTime":5435884.77606,"timeStamp":5435884.759595,"eventType":"mouseout","phase":3}],[422,5435888.8511109995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435888.8608679995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435888.898624,{"type":"tracing","category":"Paint","interval":"end"}],[424,5435888.901865,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[1692,5435884.748087]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5435888.942728,{"type":"tracing","category":"Paint","interval":"end"}],[424,5435888.943097,{"type":"tracing","category":"Paint","interval":"start"}],[424,5435888.943999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5435888.953138,{"type":"tracing","category":"Paint","interval":"start"}],[424,5435888.953396999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5435888.953556,{"type":"tracing","category":"Paint","interval":"start"}],[424,5435888.953779,{"type":"tracing","category":"Paint","interval":"end"}],[425,5435888.954306001,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2772,5435886.832131]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5435888.955001,{"type":"tracing","category":"Paint","interval":"end"}],[430,5435888.997758,{"type":"tracing","category":"Paint","interval":"start"}],[430,5435889.098916,{"type":"tracing","category":"Paint","interval":"end"}],[431,5435889.102183,{"type":"tracing","category":"Paint","interval":"start"}],[431,5435889.220218,{"type":"tracing","category":"Paint","interval":"end"}],[432,5435889.221346,{"type":"tracing","category":"Paint","interval":"start"}],[432,5435889.247374,{"type":"tracing","category":"Paint","interval":"end"}],[433,5435889.247625,{"type":"tracing","category":"Paint","interval":"start"}],[433,5435889.286677999,{"type":"tracing","category":"Paint","interval":"end"}],[434,5435889.296206,{"type":"tracing","category":"Paint","interval":"start"}],[434,5435889.303758,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435889.32143,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435905.617062,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435905.628878,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435905.672514,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435905.676674,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435922.795963,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435922.809693,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435922.848725,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435922.852697999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435939.099217,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435939.107788,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435939.144650999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435939.14835,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435956.168295,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435956.210959,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435956.254136,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435956.258826,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435972.757515,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435972.768649,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435972.807276,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435972.81164,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435989.168412,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435989.17748,{"type":"tracing","category":"Paint","interval":"start"}],[423,5435989.215017,{"type":"tracing","category":"Paint","interval":"end"}],[422,5435989.2185039995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436005.682261,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436005.693708,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436005.740542,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436005.745023,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436022.706859,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436022.716987001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436022.752944,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436022.756797,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436039.365954,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436039.375709,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436039.414908,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436039.418905,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436055.85596,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436055.8665970005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436055.907116,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436055.911075,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436072.888568999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436072.899883,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436072.939515,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436072.943361,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436089.309766999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436089.322135,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436089.368466,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436089.372929,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436106.263867999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436106.276288999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436106.358717,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436106.366383,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436122.073867,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436122.08563,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436122.129303,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436122.133858,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436139.582691,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436139.593858,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436139.632423,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436139.636361999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436155.694852,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436155.7056640005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436155.745844999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436155.7495059995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436172.816164,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436172.832549,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436172.8901309995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436172.8954529995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436189.565967,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436189.575142,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436189.6132000005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436189.61723,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436205.530042,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436205.540978,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436205.584741999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436205.589375,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436223.036822,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436223.049515,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436223.10032,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436223.107128,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436238.940235,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436238.9517210005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436238.997362,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436239.002301999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436255.605669,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436255.617222,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436255.661180999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436255.665945,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436272.219042,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436272.230716,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436272.275581,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436272.280448,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436289.273229,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436289.284641,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436289.328585,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436289.3367220005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436306.27227,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436306.283896,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436306.328056,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436306.332525,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436322.790348999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436322.803576,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436322.848259999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436322.852624,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436338.980956,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436338.994015999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436339.045918,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436339.050503001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436355.66194,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436355.674854,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436355.719327,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436355.724189,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436372.67598,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436372.6892679995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436372.732795,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436372.737544999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436389.504399,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436389.519917,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436389.563875999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436389.568708001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436405.418925,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436405.429486,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436405.467192001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436405.47124,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436422.614678999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436422.628947,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436422.682535,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436422.689476,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436439.044148,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436439.057058,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436439.102841999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436439.1071999995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436455.605017001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436455.617673,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436455.662223999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436455.666847001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436472.596314,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436472.609491,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436472.654014,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436472.658555,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436489.178328,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436489.191103,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436489.236190001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436489.24067,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436505.717343,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436505.728081,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436505.770366,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436505.782436,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436522.133213,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436522.1441359995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436522.181437,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436522.185439,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436538.721015,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436538.734251,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436538.779357,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436538.783863001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436556.019325,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436556.032663,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436556.078093,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436556.083018,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436573.125557,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436573.138657,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436573.183348,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436573.187856,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436589.248455,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436589.261355001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436589.307595,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436589.3132,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436606.2112030005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436606.2247170005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436606.316767,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436606.32209,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436622.539001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436622.548235999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436622.583792999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436622.587816,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436639.217035,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436639.229855,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436639.276115,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436639.280675,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436656.156458,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436656.168992,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436656.215067,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436656.220308,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436672.381527,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436672.393941999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436672.439128,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436672.444138,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436689.185546,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436689.197835,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436689.237955,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436689.242057,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436705.856121,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436705.866758,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436705.903669,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436705.90744,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436723.16098,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436723.170018,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436723.191954,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436723.195889,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436739.56378,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436739.5748890005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436739.615408,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436739.6197,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436755.394467,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436755.4062749995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436755.4515,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436755.456048001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436772.665057001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436772.67744,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436772.722459,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436772.72703,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436789.446793,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436789.457327,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436789.497701,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436789.501774999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436805.5475860005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436805.560343999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436805.60602,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436805.610618,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436822.836232,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436822.849586001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436822.892534,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436822.897248,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436839.572866,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436839.583926,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436839.621514999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436839.625354,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436855.679071,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436855.690377001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436855.728637,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436855.732536,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436872.901156,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436872.912702,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436872.958398,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436872.963206001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436889.201466,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436889.213752,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436889.257948,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436889.262439,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436905.443339,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436905.454419999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436905.494691,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436905.498415,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436922.216527,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436922.227766,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436922.266925001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436922.270644,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436939.584424,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436939.596494,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436939.643312,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436939.647361,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436955.963518,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436955.976958999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436956.02222,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436956.027253,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436972.454635,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436972.467405001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436972.512917,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436972.517669,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436989.438986,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436989.4499780005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5436989.49369,{"type":"tracing","category":"Paint","interval":"end"}],[422,5436989.4980959995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437005.978731,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437005.991548,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437006.0360280005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437006.040515,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437022.592468,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437022.603718,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437022.645295,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437022.649423,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437038.746055,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437038.759372,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437038.802246001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437038.806517,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437055.831151,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437055.843243,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437055.885867001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437055.894218,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437072.714516,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437072.724276001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437072.76319,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437072.767152,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437089.479784,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437089.489825,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437089.530581,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437089.535147,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437105.666100999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437105.677118001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437105.722278,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437105.7276800005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437122.3785769995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437122.389037,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437122.431882,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437122.436702,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437138.794937,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437138.808275,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437138.854628,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437138.859196001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437156.230888,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437156.242124,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437156.312000999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437156.318992,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437172.915698,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437172.925318,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437172.961886,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437172.96553,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437188.763653,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437188.773838,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437188.811949001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437188.816002,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437206.02728,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437206.03841,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437206.08212,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437206.086823,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437222.246371,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437222.258277,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437222.301918999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437222.305899001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437239.559030999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437239.572399001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437239.619637,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437239.6247229995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437256.386508,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437256.397729,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437256.436508,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437256.44064,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437272.832662,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437272.844205,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437272.883524,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437272.888218,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437288.795247,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437288.80887,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437288.855058,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437288.860212999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437306.117583,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437306.129425,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437306.169727,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437306.17438,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437322.486969001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437322.498317,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437322.535742,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437322.539834,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437339.68259,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437339.695165,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437339.741103999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437339.746693,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437356.451768,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437356.464803,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437356.509801,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437356.514285999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437372.378923,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437372.392686999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437372.438436001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437372.445336999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437389.7501179995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437389.761387001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437389.801845,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437389.805842,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437406.311523,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437406.324368,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437406.370152,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437406.374592001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437422.814159,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437422.824842,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437422.87388,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437422.877648001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437439.617957001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437439.6285109995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437439.667468,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437439.671240999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437455.541896,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437455.552794999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437455.596181001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437455.601716001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437473.103313,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437473.115106,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437473.1567319995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437473.161266,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437489.507212,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437489.517721,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437489.553569,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437489.557727,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437506.600402,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437506.608696,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437506.632611,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437506.636633,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437522.100641999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437522.111636,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437522.151187001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437522.154956,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437539.382998,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437539.391852001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437539.418078001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437539.422909,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437555.635183,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437555.64745,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437555.693239,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437555.697826999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437572.961324,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437572.972883,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437573.017395,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437573.02254,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437589.8088650005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437589.821382999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437589.866391,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437589.871139,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437606.652368,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437606.665629,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437606.71231,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437606.717489,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437622.532241999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437622.543314,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437622.582381,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437622.586612,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437639.529659,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437639.54183,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437639.586986,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437639.591259,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437655.5202170005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437655.529411,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437655.566262,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437655.569868,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437672.287048,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437672.301901,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437672.348045,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437672.352802999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437689.709377999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437689.722446,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437689.768170999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437689.772595,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437705.525882999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437705.536646,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437705.575421,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437705.580893,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437722.801217,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437722.812148999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437722.851751001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437722.855903,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437739.905618,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437739.917935001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437739.962572,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437739.967356999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437756.407389,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437756.420939,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437756.47452,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437756.4800700005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437773.271148,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437773.284903,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437773.332166,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437773.336686,{"type":"tracing","category":"Paint","interval":"end"}],[435,5437773.388313,{"type":"GCMinor","startTime":5437773.388313,"endTime":5437773.763766,"nursery":{"status":"complete","reason":"CC_WAITING","bytes_tenured":66552,"bytes_used":212600,"cur_capacity":15728280,"new_capacity":14679728,"lazy_capacity":8388416,"phase_times":{"Total":371,"CancelIonCompilations":0,"TraceValues":3,"TraceCells":24,"TraceSlots":99,"TraceWholeCells":1,"TraceGenericEntries":16,"CheckHashTables":0,"MarkRuntime":24,"MarkDebugger":10,"ClearNewObjectCache":1,"CollectToFP":112,"ObjectsTenuredCallback":0,"Sweep":68,"UpdateJitActivations":0,"FreeMallocedBuffers":0,"ClearStoreBuffer":5,"ClearNursery":0,"Pretenure":0}}}],[436,5437773.372083999,{"type":"GCSlice","startTime":5437773.372083999,"endTime":5437783.546366001,"timings":{"slice":0,"pause":10.174,"reason":"CC_WAITING","initial_state":"NotActive","final_state":"Mark","budget":"10ms","major_gc_number":8,"start_timestamp":5437.773,"times":{"evict_nursery_for_major_gc":0.423,"evict_nursery_for_major_gc.mark_roots":0.034,"evict_nursery_for_major_gc.mark_roots.mark_stack":0.001,"wait_background_thread":0,"prepare":0.563,"prepare.mark_discard_code":0.435,"prepare.purge":0.041,"prepare.join_parallel_tasks":0.074,"mark":8.997,"mark.mark_roots":0.133,"mark.mark_roots.mark_ccws":0.002,"mark.mark_roots.mark_stack":0,"mark.mark_roots.mark_embedding":0.022,"mark.mark_roots.mark_compartments":0.078}}}],[422,5437789.267538,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437789.276122,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437789.329882,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437789.333855,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437806.233197001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437806.24173,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437806.29971,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437806.303851,{"type":"tracing","category":"Paint","interval":"end"}],[435,5437806.352565001,{"type":"GCMinor","startTime":5437806.352565001,"endTime":5437806.355141,"nursery":{"status":"nursery empty"}}],[436,5437806.321823,{"type":"GCSlice","startTime":5437806.321823,"endTime":5437809.851383,"timings":{"slice":1,"pause":3.529,"reason":"INTER_SLICE_GC","initial_state":"Mark","final_state":"Mark","budget":"11ms","major_gc_number":8,"start_timestamp":5437.806,"times":{"evict_nursery_for_major_gc":0.092,"wait_background_thread":0,"mark":3.418}}}],[422,5437822.54502,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437822.5540849995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437822.608457,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437822.613259,{"type":"tracing","category":"Paint","interval":"end"}],[435,5437827.485486,{"type":"GCMinor","startTime":5437827.485486,"endTime":5437827.487505,"nursery":{"status":"nursery empty"}}],[436,5437827.4542580005,{"type":"GCSlice","startTime":5437827.4542580005,"endTime":5437839.138497,"timings":{"slice":2,"pause":11.684,"reason":"INTER_SLICE_GC","initial_state":"Mark","final_state":"Sweep","budget":"9ms","major_gc_number":8,"start_timestamp":5437.827,"times":{"evict_nursery_for_major_gc":0.022,"wait_background_thread":0,"mark":0,"sweep":11.64,"sweep.sweep_mark":1.259,"sweep.sweep_mark.sweep_mark_incoming_black":0.001,"sweep.sweep_mark.sweep_mark_weak":0.147,"sweep.sweep_mark.sweep_mark_incoming_gray":0,"sweep.sweep_mark.sweep_mark_gray":1.079,"sweep.sweep_mark.sweep_mark_gray_weak":0.028,"sweep.finalize_start":0.124,"sweep.finalize_start.weak_zones_callback":0.09,"sweep.finalize_start.weak_compartment_callback":0.032,"sweep.sweep_compartments":4.749,"sweep.sweep_compartments.sweep_discard_code":0.184,"sweep.sweep_compartments.sweep_breakpoint":0.109,"sweep.sweep_compartments.sweep_jit_data":1.229,"sweep.sweep_compartments.sweep_misc":0,"sweep.sweep_compartments.sweep_types":1.377,"sweep.sweep_compartments.sweep_types.sweep_types_begin":0.002,"sweep.sweep_compartments.sweep_types.sweep_types_end":0,"sweep.sweep_compartments.join_parallel_tasks":1.138,"sweep.sweep_object":0.001,"sweep.sweep_string":0,"sweep.sweep_script":0.001,"sweep.sweep_scope":0,"sweep.sweep_regexp_shared":0,"sweep.sweep_shape":0.247,"sweep.finalize_end":0.003}}}],[422,5437839.32142,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437839.328679,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437839.380096001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437839.383966,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437856.105524,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437856.11625,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437856.180201,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437856.184791,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437872.946208,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437872.956627999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437873.017670999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437873.022771,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437889.562816,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437889.5729249995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437889.632118,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437889.637911,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437906.104996,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437906.114039,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437906.169711,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437906.174076,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437922.509381,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437922.51854,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437922.571844,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437922.576576,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437941.921905,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437941.9309559995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437941.9812630005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437941.985767,{"type":"tracing","category":"Paint","interval":"end"}],[435,5437942.017555,{"type":"GCMinor","startTime":5437942.017555,"endTime":5437942.094453,"nursery":{"status":"complete","reason":"INTER_SLICE_GC","bytes_tenured":1664,"bytes_used":16592,"cur_capacity":12582624,"new_capacity":11534072,"lazy_capacity":8388416,"phase_times":{"Total":74,"CancelIonCompilations":0,"TraceValues":0,"TraceCells":2,"TraceSlots":14,"TraceWholeCells":0,"TraceGenericEntries":0,"CheckHashTables":0,"MarkRuntime":19,"MarkDebugger":10,"ClearNewObjectCache":1,"CollectToFP":4,"ObjectsTenuredCallback":0,"Sweep":12,"UpdateJitActivations":0,"FreeMallocedBuffers":0,"ClearStoreBuffer":4,"ClearNursery":0,"Pretenure":0}}}],[436,5437942.002060999,{"type":"GCSlice","startTime":5437942.002060999,"endTime":5437947.753292999,"timings":{"slice":3,"pause":5.751,"reason":"INTER_SLICE_GC","initial_state":"Sweep","final_state":"Finalize","budget":"10ms","major_gc_number":8,"start_timestamp":5437.942,"times":{"evict_nursery_for_major_gc":0.096,"evict_nursery_for_major_gc.mark_roots":0.029,"evict_nursery_for_major_gc.mark_roots.mark_stack":0,"wait_background_thread":0,"sweep":5.638,"sweep.sweep_mark":0,"sweep.sweep_compartments":2.676,"sweep.sweep_compartments.sweep_types":2.676,"sweep.sweep_compartments.sweep_types.sweep_types_end":0.002,"sweep.sweep_shape":0.559,"sweep.finalize_end":0.072,"sweep.destroy":0.129}}}],[422,5437955.7941000005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437955.871616,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437955.925856,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437955.930044,{"type":"tracing","category":"Paint","interval":"end"}],[435,5437963.981215,{"type":"GCMinor","startTime":5437963.981215,"endTime":5437963.985886,"nursery":{"status":"nursery empty"}}],[436,5437963.941859,{"type":"GCSlice","startTime":5437963.941859,"endTime":5437963.994684,"timings":{"slice":4,"pause":0.052,"reason":"INTER_SLICE_GC","initial_state":"Finalize","final_state":"Finalize","budget":"7ms","major_gc_number":8,"start_timestamp":5437.963,"times":{"evict_nursery_for_major_gc":0.033,"wait_background_thread":0}}}],[422,5437972.794125,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437972.805213001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437972.868351,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437972.873609999,{"type":"tracing","category":"Paint","interval":"end"}],[435,5437980.69693,{"type":"GCMinor","startTime":5437980.69693,"endTime":5437980.699757,"nursery":{"status":"nursery empty"}}],[436,5437980.66574,{"type":"GCSlice","startTime":5437980.66574,"endTime":5437980.837797999,"timings":{"slice":5,"pause":0.172,"reason":"INTER_SLICE_GC","initial_state":"Finalize","final_state":"Decommit","budget":"7ms","major_gc_number":8,"start_timestamp":5437.98,"times":{"evict_nursery_for_major_gc":0.025,"wait_background_thread":0,"sweep":0.115,"sweep.destroy":0.114}}}],[422,5437989.096332001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437989.106955,{"type":"tracing","category":"Paint","interval":"start"}],[423,5437989.16997,{"type":"tracing","category":"Paint","interval":"end"}],[422,5437989.216216001,{"type":"tracing","category":"Paint","interval":"end"}],[435,5437999.073148,{"type":"GCMinor","startTime":5437999.073148,"endTime":5437999.077558,"nursery":{"status":"nursery empty"}}],[436,5437999.043354,{"type":"GCSlice","startTime":5437999.043354,"endTime":5437999.299826001,"timings":{"slice":6,"pause":0.256,"reason":"INTER_SLICE_GC","initial_state":"Decommit","final_state":"NotActive","budget":"5ms","major_gc_number":8,"start_timestamp":5437.999,"times":{"evict_nursery_for_major_gc":0.027,"wait_background_thread":0}}}],[437,5437773.372083999,{"type":"GCMajor","startTime":5437773.372083999,"endTime":5437999.299826001,"timings":{"status":"completed","timestamp":0,"max_pause":11.684,"total_time":31.62,"reason":"CC_WAITING","zones_collected":3,"total_zones":5,"total_compartments":16,"minor_gcs":7,"slices":7,"mmu_20ms":41,"mmu_50ms":69,"scc_sweep_total":2.939,"scc_sweep_max_pause":2.217,"allocated_bytes":17801216,"removed_chunks":1,"major_gc_number":8,"minor_gc_number":44,"slice_number":75,"totals":{"evict_nursery_for_major_gc":0.72,"evict_nursery_for_major_gc.mark_roots":0.063,"evict_nursery_for_major_gc.mark_roots.mark_stack":0.002,"wait_background_thread":0.003,"prepare":0.563,"prepare.mark_discard_code":0.435,"prepare.purge":0.041,"prepare.join_parallel_tasks":0.074,"mark":12.416,"mark.mark_roots":0.133,"mark.mark_roots.mark_ccws":0.002,"mark.mark_roots.mark_stack":0,"mark.mark_roots.mark_embedding":0.022,"mark.mark_roots.mark_compartments":0.078,"sweep":17.393,"sweep.sweep_mark":1.26,"sweep.sweep_mark.sweep_mark_incoming_black":0.001,"sweep.sweep_mark.sweep_mark_weak":0.147,"sweep.sweep_mark.sweep_mark_incoming_gray":0,"sweep.sweep_mark.sweep_mark_gray":1.079,"sweep.sweep_mark.sweep_mark_gray_weak":0.028,"sweep.finalize_start":0.124,"sweep.finalize_start.weak_zones_callback":0.09,"sweep.finalize_start.weak_compartment_callback":0.032,"sweep.sweep_compartments":7.426,"sweep.sweep_compartments.sweep_discard_code":0.184,"sweep.sweep_compartments.sweep_breakpoint":0.109,"sweep.sweep_compartments.sweep_jit_data":1.229,"sweep.sweep_compartments.sweep_misc":0,"sweep.sweep_compartments.sweep_types":4.053,"sweep.sweep_compartments.sweep_types.sweep_types_begin":0.002,"sweep.sweep_compartments.sweep_types.sweep_types_end":0.002,"sweep.sweep_compartments.join_parallel_tasks":1.138,"sweep.sweep_object":0.001,"sweep.sweep_string":0,"sweep.sweep_script":0.001,"sweep.sweep_scope":0,"sweep.sweep_regexp_shared":0,"sweep.sweep_shape":0.807,"sweep.finalize_end":0.075,"sweep.destroy":0.244,"barrier":10.682,"barrier.unmark_gray":10.64}}}],[422,5438006.339259,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438006.353228999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438006.575506001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438006.58146,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438022.99292,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438023.004087,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438023.08473,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438023.092951,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438039.659642,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438039.669946,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438039.71443,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438039.718657,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438055.765164,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438055.7769019995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438055.822545,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438055.826707999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438072.57487,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438072.585062,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438072.631662,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438072.637608,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438089.413021,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438089.423022999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438089.466175,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438089.470306001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438106.450125,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438106.461016,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438106.504815999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438106.509288,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438123.220049,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438123.229031,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438123.268391,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438123.271937,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438138.957319,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438138.968118,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438139.010078,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438139.015433,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438155.974602,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438155.984043,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438156.018458,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438156.022447,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438172.214053,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438172.224543,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438172.300764,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438172.306639001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438189.019431,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438189.030645,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438189.069393,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438189.073349,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438205.695638,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438205.70996,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438205.755183,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438205.760083,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438222.375928,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438222.3881520005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438222.434022,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438222.438896,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438239.401186,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438239.413508001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438239.4586350005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438239.463459999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438255.723661999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438255.734016,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438255.776285999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438255.780532001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438272.363109,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438272.375693,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438272.418587,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438272.423010999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438289.026223999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438289.038089001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438289.078759001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438289.083055001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438305.942567,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438305.956138,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438305.999516,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438306.004234999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438322.738768,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438322.75108,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438322.795952,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438322.8003940005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438339.121519,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438339.134497,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438339.179404,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438339.183942,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438355.945056,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438355.956437,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438355.991165,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438355.994898,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438372.400885001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438372.412191,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438372.451761,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438372.455717,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438389.474953,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438389.485282999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438389.524746,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438389.528881,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438406.697931999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438406.711084,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438406.754912,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438406.759317,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438422.451986,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438422.464562,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438422.509185,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438422.513788001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438439.483967001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438439.496856,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438439.542359,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438439.546602,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438456.184583,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438456.197263,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438456.241614,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438456.246153001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438472.435616001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438472.447622,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438472.491324,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438472.495918999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438489.679634,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438489.691496,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438489.737097,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438489.741702001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438506.387039,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438506.397979001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438506.442021,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438506.446861,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438522.961778,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438522.972894,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438523.012936,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438523.020775,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438539.396555,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438539.409654001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438539.458508001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438539.462979,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438556.657385999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438556.670057,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438556.713221,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438556.7178609995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438573.187278,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438573.197226,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438573.234705,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438573.240224,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438589.96119,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438589.973908,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438590.018087001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438590.022607,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438606.126828999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438606.137805,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438606.177906,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438606.181481,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438622.930393,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438622.942372,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438622.987287,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438622.991521,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438639.760866,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438639.771338,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438639.809365,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438639.812946,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438656.183725,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438656.197017,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438656.2420419995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438656.2464230005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438673.234552001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438673.247645,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438673.292216,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438673.296934,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438689.589097,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438689.599891,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438689.641774,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438689.647029,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438706.537428,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438706.548108,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438706.59163,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438706.59589,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438722.752394999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438722.765690001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438722.809262,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438722.813604,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438739.821353,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438739.832731999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438739.875952,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438739.880992,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438756.434429,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438756.444151999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438756.474537,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438756.478647,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438773.339198,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438773.350035,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438773.387842,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438773.391651,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438790.002382,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438790.012786,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438790.049313,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438790.052853,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438806.459612,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438806.470726,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438806.509573,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438806.513267,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438822.375925001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438822.386197999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438822.423954001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438822.427453,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438839.947542001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438839.955007,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438839.990513,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438839.993512,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438856.644781,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438856.655514,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438856.696320999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438856.700239999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438873.406304,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438873.417985,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438873.46308,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438873.4682519995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438889.549804,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438889.563576,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438889.608485,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438889.6133119995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438906.246233,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438906.258467999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438906.303194,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438906.307693,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438923.2559279995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438923.268282,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438923.313472,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438923.318061,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438939.6691149995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438939.680435,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438939.725377,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438939.729437999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438958.485741,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438958.494957,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438958.516108001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438958.519709,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438973.459505,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438973.470396,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438973.508056001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438973.51192,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438989.601991001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438989.614076001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5438989.653354,{"type":"tracing","category":"Paint","interval":"end"}],[422,5438989.657555999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439006.69569,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439006.706053,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439006.742422,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439006.746416,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439022.817744,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439022.828972,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439022.872608,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439022.877207001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439039.382493,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439039.395347,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439039.439904,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439039.444549,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439056.459368,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439056.472219001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439056.517746001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439056.522573,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439072.930388,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439072.943213999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439072.9869409995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439072.9913530005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439089.411534,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439089.424165,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439089.467472,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439089.472519,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439106.000449,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439106.011656,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439106.05064,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439106.054335,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439123.289376,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439123.302414999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439123.346926,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439123.3513050005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439139.265443,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439139.278517,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439139.329872,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439139.334337999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439156.4173799995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439156.426727,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439156.464404,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439156.469118999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439172.462081,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439172.474949,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439172.519642,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439172.524017,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439189.402383,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439189.414857,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439189.461138001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439189.466092,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439206.470021,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439206.483146001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439206.529161,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439206.5334910005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439223.445552,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439223.454910001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439223.490534999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439223.494224,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439240.114105,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439240.122973001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439240.160409,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439240.163818,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439255.760897,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439255.772784,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439255.810051,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439255.81417,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439272.521457,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439272.53405,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439272.578931,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439272.583097001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439289.530919,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439289.543335,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439289.586956,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439289.591379,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439306.578148,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439306.587559,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439306.640764,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439306.6468549995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439322.543684,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439322.554010999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439322.592925999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439322.596736,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439340.2591430005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439340.270419001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439340.31135,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439340.315568,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439355.946936,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439355.960604,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439356.006313,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439356.010844,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439372.724374,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439372.737768,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439372.783563,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439372.788193,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439389.9591810005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439389.970544,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439390.009853,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439390.014075,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439406.4556100005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439406.467901,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439406.5123230005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439406.5167270005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439423.379443999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439423.392097,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439423.438693999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439423.443316,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439439.413865,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439439.425798,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439439.470857,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439439.476202999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439456.703743,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439456.713866,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439456.76122,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439456.766547,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439473.568652,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439473.579795,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439473.617916,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439473.622463,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439489.654799,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439489.664588,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439489.702761,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439489.706569,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439506.050887,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439506.061802,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439506.101174,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439506.107051,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439522.566817,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439522.577733,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439522.617922,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439522.622416,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439539.986148,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439539.998815999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439540.04308,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439540.047333,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439556.756525001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439556.769519,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439556.8132420005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439556.817853,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439572.544036,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439572.557043,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439572.601785,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439572.606015,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439589.223774,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439589.236951999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439589.281673,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439589.286252,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439606.536076,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439606.545314,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439606.5828990005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439606.586521001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439622.944255,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439622.9546570005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439622.997992,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439623.001933,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439640.104436,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439640.118194999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439640.160243,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439640.164388,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439655.9263700005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439655.937020999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439655.97523,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439655.97904,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439672.700309,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439672.7124540005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439672.752503,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439672.757538,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439689.179962,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439689.189215,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439689.224469,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439689.229521999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439706.661444,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439706.673341,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439706.714807999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439706.7189380005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439722.47097,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439722.480132,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439722.516706,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439722.520366999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439739.990516,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439740.001599,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439740.050094999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439740.054184,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439756.429959,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439756.441176,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439756.4792,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439756.483154001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439773.193809,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439773.203656999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439773.232538001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439773.236513,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439790.0999880005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439790.111471,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439790.1572,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439790.161526,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439806.754241,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439806.765988,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439806.806036,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439806.811714999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439822.588568,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439822.598618,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439822.638688,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439822.643003,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439839.452886,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439839.463121001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439839.503072999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439839.506968,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439856.381384,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439856.3914870005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439856.433641,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439856.437964,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439873.272640999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439873.285952,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439873.325902,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439873.3314580005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439889.870902,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439889.881252999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439889.916574,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439889.920741,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439906.112818999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439906.122329,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439906.157637,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439906.160894999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439923.268433,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439923.280931,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439923.323681,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439923.327644,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439940.0444290005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439940.053682,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439940.090698,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439940.095471,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439956.07974,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439956.089845,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439956.128515,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439956.134052,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439973.15378,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439973.164699,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439973.228942,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439973.234233,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439990.107657,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439990.117583999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5439990.152073,{"type":"tracing","category":"Paint","interval":"end"}],[422,5439990.1563719995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440006.7167650005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440006.725579,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440006.753897,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440006.757801,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440023.223929,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440023.233698,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440023.2699919995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440023.273964,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440039.537576,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440039.547712999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440039.586793,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440039.59116,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440055.857837999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440055.866392,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440055.902867001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440055.907352,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440073.378313,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440073.387945,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440073.428181,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440073.432888,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440090.110843,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440090.12135,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440090.1645060005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440090.1689450005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440106.802317,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440106.814135,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440106.849898,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440106.85327,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440123.538517999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440123.548947999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440123.58748,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440123.592508,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440139.90553,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440139.915331,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440139.959318001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440139.964289,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440156.535118,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440156.544767999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440156.582059001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440156.586957,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440174.660157001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440174.667829,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440174.690373,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440174.693915,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440189.998166,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440190.008261,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440190.046344,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440190.050333,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440206.5231759995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440206.533771999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440206.568688,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440206.572932,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440223.357473,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440223.368339,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440223.40606,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440223.4099280005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440240.328954,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440240.339253,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440240.376381,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440240.380544,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440256.710152,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440256.720385999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440256.757409,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440256.761627,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440273.138107,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440273.148462,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440273.186761,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440273.191239,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440289.644111,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440289.654181,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440289.690525,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440289.6947139995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440306.4641849995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440306.473689,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440306.509448,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440306.5132100005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440323.553553,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440323.564647,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440323.599295001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440323.603027,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440339.983968,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440339.994820001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440340.038022,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440340.043057,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440356.681775,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440356.694492,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440356.741982999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440356.747529,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440373.5921950005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440373.606672,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440373.657291,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440373.663514,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440390.06511,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440390.0804779995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440390.129265,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440390.134428,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440406.60981,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440406.620498,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440406.655292001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440406.660195,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440418.452378,{"type":"DOMEvent","startTime":5440418.452378,"endTime":5440418.707914,"timeStamp":5440415.770708,"eventType":"dragover","phase":3}],[426,5440418.713966,{"type":"DOMEvent","startTime":5440418.713966,"endTime":5440418.715136,"timeStamp":5440415.770708,"eventType":"dragover","phase":3}],[426,5440418.825984,{"type":"DOMEvent","startTime":5440418.825984,"endTime":5440418.8518199995,"timeStamp":5440417.95076,"eventType":"dragover","phase":3}],[426,5440418.855867,{"type":"DOMEvent","startTime":5440418.855867,"endTime":5440418.856413,"timeStamp":5440417.95076,"eventType":"dragover","phase":3}],[422,5440423.297386,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440423.30621,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440423.3415830005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440423.345911999,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440432.119604999,{"type":"DOMEvent","startTime":5440432.119604999,"endTime":5440432.157006,"timeStamp":5440431.461837,"eventType":"dragover","phase":3}],[426,5440432.160956,{"type":"DOMEvent","startTime":5440432.160956,"endTime":5440432.161826,"timeStamp":5440431.461837,"eventType":"dragover","phase":3}],[426,5440432.427176,{"type":"DOMEvent","startTime":5440432.427176,"endTime":5440432.460082,"timeStamp":5440431.960791,"eventType":"dragover","phase":3}],[426,5440432.463593,{"type":"DOMEvent","startTime":5440432.463593,"endTime":5440432.464164,"timeStamp":5440431.960791,"eventType":"dragover","phase":3}],[422,5440440.1564070005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440440.168059,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440440.212835,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440440.218464,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440450.815115,{"type":"DOMEvent","startTime":5440450.815115,"endTime":5440450.847153,"timeStamp":5440450.234878,"eventType":"dragover","phase":3}],[426,5440450.850378,{"type":"DOMEvent","startTime":5440450.850378,"endTime":5440450.8511419995,"timeStamp":5440450.234878,"eventType":"dragover","phase":3}],[426,5440451.097248,{"type":"DOMEvent","startTime":5440451.097248,"endTime":5440451.1177280005,"timeStamp":5440450.639853001,"eventType":"dragover","phase":3}],[426,5440451.120819,{"type":"DOMEvent","startTime":5440451.120819,"endTime":5440451.121307,"timeStamp":5440450.639853001,"eventType":"dragover","phase":3}],[422,5440456.685633,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440456.695261001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440456.730177,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440456.734221,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440467.946839,{"type":"DOMEvent","startTime":5440467.946839,"endTime":5440467.997222,"timeStamp":5440467.403802,"eventType":"dragover","phase":3}],[426,5440468.001069,{"type":"DOMEvent","startTime":5440468.001069,"endTime":5440468.001869,"timeStamp":5440467.403802,"eventType":"dragover","phase":3}],[426,5440468.133603,{"type":"DOMEvent","startTime":5440468.133603,"endTime":5440468.182116999,"timeStamp":5440467.783795999,"eventType":"dragover","phase":3}],[426,5440468.18882,{"type":"DOMEvent","startTime":5440468.18882,"endTime":5440468.189664001,"timeStamp":5440467.783795999,"eventType":"dragover","phase":3}],[422,5440473.322567,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440473.332393001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440473.367853,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440473.371881001,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440483.645701,{"type":"DOMEvent","startTime":5440483.645701,"endTime":5440483.679658,"timeStamp":5440483.101681001,"eventType":"dragover","phase":3}],[426,5440483.683293,{"type":"DOMEvent","startTime":5440483.683293,"endTime":5440483.684025,"timeStamp":5440483.101681001,"eventType":"dragover","phase":3}],[426,5440483.82254,{"type":"DOMEvent","startTime":5440483.82254,"endTime":5440483.844839,"timeStamp":5440483.480803,"eventType":"dragover","phase":3}],[426,5440483.847442,{"type":"DOMEvent","startTime":5440483.847442,"endTime":5440483.847984999,"timeStamp":5440483.480803,"eventType":"dragover","phase":3}],[422,5440490.036909999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440490.047284,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440490.084142,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440490.08831,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440501.107307,{"type":"DOMEvent","startTime":5440501.107307,"endTime":5440501.417463,"timeStamp":5440500.48968,"eventType":"dragover","phase":3}],[426,5440501.425759,{"type":"DOMEvent","startTime":5440501.425759,"endTime":5440501.426885,"timeStamp":5440500.48968,"eventType":"dragover","phase":3}],[426,5440501.568081,{"type":"DOMEvent","startTime":5440501.568081,"endTime":5440501.584472,"timeStamp":5440500.966507999,"eventType":"dragover","phase":3}],[426,5440501.587218001,{"type":"DOMEvent","startTime":5440501.587218001,"endTime":5440501.587816,"timeStamp":5440500.966507999,"eventType":"dragover","phase":3}],[438,5440501.791596],[439,5440501.947268],[440,5440501.958264],[422,5440506.555112,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440506.565245001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440506.600351,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440506.604286,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440517.912999,{"type":"DOMEvent","startTime":5440517.912999,"endTime":5440517.937673001,"timeStamp":5440517.331332999,"eventType":"dragover","phase":3}],[426,5440517.942280999,{"type":"DOMEvent","startTime":5440517.942280999,"endTime":5440517.942995001,"timeStamp":5440517.331332999,"eventType":"dragover","phase":3}],[426,5440518.176047,{"type":"DOMEvent","startTime":5440518.176047,"endTime":5440518.193244999,"timeStamp":5440517.728591001,"eventType":"dragover","phase":3}],[426,5440518.19595,{"type":"DOMEvent","startTime":5440518.19595,"endTime":5440518.196547,"timeStamp":5440517.728591001,"eventType":"dragover","phase":3}],[422,5440523.514036,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440523.522083,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440523.557526001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440523.562094,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440536.7629120005,{"type":"DOMEvent","startTime":5440536.7629120005,"endTime":5440536.784985,"timeStamp":5440536.228666999,"eventType":"dragover","phase":3}],[426,5440536.788211,{"type":"DOMEvent","startTime":5440536.788211,"endTime":5440536.788974,"timeStamp":5440536.228666999,"eventType":"dragover","phase":3}],[426,5440536.953374,{"type":"DOMEvent","startTime":5440536.953374,"endTime":5440536.966747001,"timeStamp":5440536.585367,"eventType":"dragover","phase":3}],[426,5440536.970636,{"type":"DOMEvent","startTime":5440536.970636,"endTime":5440536.971120999,"timeStamp":5440536.585367,"eventType":"dragover","phase":3}],[422,5440540.093796,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440540.101347,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440540.133425999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440540.1369900005,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440552.52899,{"type":"DOMEvent","startTime":5440552.52899,"endTime":5440552.553654,"timeStamp":5440551.916481,"eventType":"dragover","phase":3}],[426,5440552.557053,{"type":"DOMEvent","startTime":5440552.557053,"endTime":5440552.5578540005,"timeStamp":5440551.916481,"eventType":"dragover","phase":3}],[426,5440552.848045,{"type":"DOMEvent","startTime":5440552.848045,"endTime":5440552.869414,"timeStamp":5440552.319449,"eventType":"dragover","phase":3}],[426,5440552.872586001,{"type":"DOMEvent","startTime":5440552.872586001,"endTime":5440552.8731430005,"timeStamp":5440552.319449,"eventType":"dragover","phase":3}],[422,5440556.350498,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440556.359694,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440556.392202999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440556.395761,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440573.536619,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440573.549364001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440573.591985,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440573.5963200005,{"type":"tracing","category":"Paint","interval":"end"}],[426,5440575.933217,{"type":"DOMEvent","startTime":5440575.933217,"endTime":5440576.873938999,"timeStamp":5440571.567806,"eventType":"drop","phase":3}],[426,5440576.883442,{"type":"DOMEvent","startTime":5440576.883442,"endTime":5440576.884783001,"timeStamp":5440571.567806,"eventType":"drop","phase":3}],[422,5440590.072803999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440590.0796759995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440590.281253001,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440590.284111,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2778,5440584.260105]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5440591.079926999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440591.080631,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[639,5440590.870449]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5440591.081411,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440591.083149,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440591.083419,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440591.084032,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440591.084338,{"type":"tracing","category":"Paint","interval":"end"}],[425,5440591.084634,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2782,5440583.93524]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5440591.210116,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440591.2307279995,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440591.231368,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440591.231644,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440591.231914,{"type":"tracing","category":"Paint","interval":"end"}],[425,5440591.232051,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2783,5440591.087948]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5440591.232363,{"type":"tracing","category":"Paint","interval":"end"}],[430,5440591.261275,{"type":"tracing","category":"Paint","interval":"start"}],[430,5440591.321411,{"type":"tracing","category":"Paint","interval":"end"}],[431,5440591.324122,{"type":"tracing","category":"Paint","interval":"start"}],[431,5440591.434662,{"type":"tracing","category":"Paint","interval":"end"}],[432,5440591.437393,{"type":"tracing","category":"Paint","interval":"start"}],[432,5440597.899123,{"type":"tracing","category":"Paint","interval":"end"}],[433,5440597.899995999,{"type":"tracing","category":"Paint","interval":"start"}],[433,5440597.94757,{"type":"tracing","category":"Paint","interval":"end"}],[434,5440597.982411,{"type":"tracing","category":"Paint","interval":"start"}],[434,5440597.993776,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440598.006221,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440606.488519,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440606.549486,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440606.586692,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440606.589194,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[164,5440606.515024]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5440606.820437999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440606.821234,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440606.821667,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440606.8321630005,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440606.83246,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440606.832629,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440606.832889,{"type":"tracing","category":"Paint","interval":"end"}],[425,5440606.833059,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2784,5440606.807236]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5440606.833691,{"type":"tracing","category":"Paint","interval":"end"}],[430,5440606.871273,{"type":"tracing","category":"Paint","interval":"start"}],[430,5440606.985536,{"type":"tracing","category":"Paint","interval":"end"}],[431,5440606.990064,{"type":"tracing","category":"Paint","interval":"start"}],[431,5440607.141938,{"type":"tracing","category":"Paint","interval":"end"}],[432,5440607.143181,{"type":"tracing","category":"Paint","interval":"start"}],[432,5440607.165668,{"type":"tracing","category":"Paint","interval":"end"}],[433,5440607.165998,{"type":"tracing","category":"Paint","interval":"start"}],[433,5440607.20948,{"type":"tracing","category":"Paint","interval":"end"}],[434,5440607.222081,{"type":"tracing","category":"Paint","interval":"start"}],[434,5440607.231288,{"type":"tracing","category":"Paint","interval":"end"}],[422,5440607.2380409995,{"type":"tracing","category":"Paint","interval":"end"}],[445,5440684.548301999],[446,5440685.525315],[447,5440691.408831],[448,5440708.603858],[449,5440708.608957],[450,5440712.62629],[451,5440714.020074],[452,5440714.04543],[435,5440739.619848999,{"type":"GCMinor","startTime":5440739.619848999,"endTime":5440748.414322,"nursery":{"status":"complete","reason":"FULL_CELL_PTR_BUFFER","bytes_tenured":4372048,"bytes_used":8362440,"cur_capacity":8388416,"new_capacity":16776832,"phase_times":{"Total":8787,"CancelIonCompilations":7,"TraceValues":88,"TraceCells":1102,"TraceSlots":78,"TraceWholeCells":77,"TraceGenericEntries":26,"CheckHashTables":0,"MarkRuntime":139,"MarkDebugger":39,"ClearNewObjectCache":1,"CollectToFP":5928,"ObjectsTenuredCallback":9,"Sweep":1216,"UpdateJitActivations":4,"FreeMallocedBuffers":0,"ClearStoreBuffer":62,"ClearNursery":0,"Pretenure":0}}}],[453,5440808.392006],[451,5440808.396513],[426,5440618.042189,{"type":"DOMEvent","startTime":5440618.042189,"endTime":5440809.844925,"timeStamp":5440618.035454,"eventType":"loadend","phase":2}],[454,5440812.879055],[447,5440812.994332],[455,5440813.016364],[456,5440813.380662],[435,5440828.792164001,{"type":"GCMinor","startTime":5440828.792164001,"endTime":5440835.260037,"nursery":{"status":"complete","reason":"FULL_CELL_PTR_BUFFER","bytes_tenured":1941472,"bytes_used":8557712,"cur_capacity":16776832,"lazy_capacity":9436968,"chunk_alloc_us":5,"phase_times":{"Total":6459,"CancelIonCompilations":0,"TraceValues":73,"TraceCells":1046,"TraceSlots":12,"TraceWholeCells":241,"TraceGenericEntries":104,"CheckHashTables":0,"MarkRuntime":284,"MarkDebugger":69,"ClearNewObjectCache":2,"CollectToFP":3815,"ObjectsTenuredCallback":0,"Sweep":773,"UpdateJitActivations":3,"FreeMallocedBuffers":4,"ClearStoreBuffer":24,"ClearNursery":0,"Pretenure":0}}}],[457,5440836.457803],[458,5440875.153386001],[459,5440875.196373],[460,5440878.487877],[461,5440880.731953],[462,5440887.6002589995],[463,5440899.675814999],[464,5440899.863530001],[465,5440905.410747],[466,5440915.7325140005],[422,5440938.847213,{"type":"tracing","category":"Paint","interval":"start"}],[423,5440938.858396,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440940.909394001,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2799,5440932.801867001]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5440942.166015,{"type":"tracing","category":"Paint","interval":"end"}],[424,5440942.167041999,{"type":"tracing","category":"Paint","interval":"start"}],[424,5440942.167571999,{"type":"tracing","category":"Paint","interval":"end"}],[425,5440942.16789,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2802,5440932.880178]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441039.116427001,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441040.225142,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2804,5441039.176514001]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5441040.266733,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441040.267643,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441040.268076,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441059.714962,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441059.717262,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441059.7178110005,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441059.718103,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441059.71839,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[1669,5440942.173978]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441059.889538,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441060.551597999,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441060.553366,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441060.554003,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441060.554445,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441060.554794,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2808,5441059.722583]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441060.555475,{"type":"tracing","category":"Paint","interval":"end"}],[423,5441065.674752,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441065.692566,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2811,5441060.5907]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5441065.740143,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441065.741020001,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441065.741313,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441065.743624,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441065.7437930005,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441065.743985,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441065.744153,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441065.74435,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2784,5441065.721428]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441065.940779,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441065.953636,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441065.954315,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441065.9545950005,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441065.954792,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441065.954939,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2812,5441065.747979]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441065.955209,{"type":"tracing","category":"Paint","interval":"end"}],[430,5441066.00143,{"type":"tracing","category":"Paint","interval":"start"}],[430,5441066.133923,{"type":"tracing","category":"Paint","interval":"end"}],[431,5441066.138412001,{"type":"tracing","category":"Paint","interval":"start"}],[431,5441099.516064,{"type":"tracing","category":"Paint","interval":"end"}],[432,5441099.525069,{"type":"tracing","category":"Paint","interval":"start"}],[432,5441110.477989,{"type":"tracing","category":"Paint","interval":"end"}],[433,5441110.478637,{"type":"tracing","category":"Paint","interval":"start"}],[433,5441110.525778,{"type":"tracing","category":"Paint","interval":"end"}],[434,5441110.585446999,{"type":"tracing","category":"Paint","interval":"start"}],[434,5441110.601031001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441110.614405,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441111.823237,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441111.836651,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441121.01393,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[1692,5441111.794129]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5441121.059238,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441121.059677,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441121.06007,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441121.060277,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2820,5441111.985191]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441121.060995,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441165.224285,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441165.22685,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441165.227379,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441165.227656,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441165.227827,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2821,5441165.201885]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441165.228813,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441166.108741,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441166.110621001,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441166.11113,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441166.111419,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441166.111609,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2821,5441165.505262]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441166.112253,{"type":"tracing","category":"Paint","interval":"end"}],[471,5441231.772593],[423,5441244.627388,{"type":"tracing","category":"Paint","interval":"end"}],[427,5441244.636421,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441244.764845,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441244.766906001,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441244.767224,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441244.767487,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441244.767694999,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2822,5441229.697586]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441244.768368,{"type":"tracing","category":"Paint","interval":"end"}],[427,5441244.771493,{"type":"tracing","category":"Paint","interval":"end"}],[430,5441244.81365,{"type":"tracing","category":"Paint","interval":"start"}],[430,5441244.890981,{"type":"tracing","category":"Paint","interval":"end"}],[431,5441244.893383999,{"type":"tracing","category":"Paint","interval":"start"}],[431,5441245.736129,{"type":"tracing","category":"Paint","interval":"end"}],[432,5441245.739739,{"type":"tracing","category":"Paint","interval":"start"}],[432,5441251.707086001,{"type":"tracing","category":"Paint","interval":"end"}],[433,5441251.707916,{"type":"tracing","category":"Paint","interval":"start"}],[433,5441251.766588,{"type":"tracing","category":"Paint","interval":"end"}],[434,5441251.791283,{"type":"tracing","category":"Paint","interval":"start"}],[434,5441251.8059829995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441251.814064001,{"type":"tracing","category":"Paint","interval":"end"}],[426,5441255.497417,{"type":"DOMEvent","startTime":5441255.497417,"endTime":5441255.605624,"timeStamp":5441255.48703,"eventType":"DOMTitleChanged","phase":3}],[426,5441255.60813,{"type":"DOMEvent","startTime":5441255.60813,"endTime":5441255.770776,"timeStamp":5441255.48703,"eventType":"DOMTitleChanged","phase":3}],[422,5441255.981365,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441255.986176999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441256.145599,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441256.1547449995,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441256.156265,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441256.156608,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441256.156865,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441256.1570540005,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2772,5441255.816812]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441256.157632001,{"type":"tracing","category":"Paint","interval":"end"}],[430,5441256.192707,{"type":"tracing","category":"Paint","interval":"start"}],[430,5441256.277947,{"type":"tracing","category":"Paint","interval":"end"}],[431,5441256.280317,{"type":"tracing","category":"Paint","interval":"start"}],[431,5441256.381699,{"type":"tracing","category":"Paint","interval":"end"}],[432,5441256.382501001,{"type":"tracing","category":"Paint","interval":"start"}],[432,5441256.391198,{"type":"tracing","category":"Paint","interval":"end"}],[433,5441256.39143,{"type":"tracing","category":"Paint","interval":"start"}],[433,5441256.426011,{"type":"tracing","category":"Paint","interval":"end"}],[434,5441256.43555,{"type":"tracing","category":"Paint","interval":"start"}],[434,5441256.44593,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441256.452907,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441257.112096,{"type":"tracing","category":"Paint","interval":"start"}],[422,5441257.113564,{"type":"tracing","category":"Paint","interval":"end"}],[472,5441257.401531,{"type":"tracing","category":"CC","interval":"start"}],[472,5441257.840123001,{"type":"tracing","category":"CC","interval":"end"}],[472,5441258.041858,{"type":"tracing","category":"CC","interval":"start"}],[472,5441258.208901,{"type":"tracing","category":"CC","interval":"end"}],[472,5441258.25717,{"type":"tracing","category":"CC","interval":"start"}],[472,5441258.353352,{"type":"tracing","category":"CC","interval":"end"}],[472,5441258.3822,{"type":"tracing","category":"CC","interval":"start"}],[472,5441258.535666,{"type":"tracing","category":"CC","interval":"end"}],[472,5441258.564339,{"type":"tracing","category":"CC","interval":"start"}],[472,5441258.708299001,{"type":"tracing","category":"CC","interval":"end"}],[422,5441258.728797,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441258.73347,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441258.8395299995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441258.84399,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441273.104514,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441273.11535,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441273.16141,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441273.16749,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441290.461720999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441290.473231,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441290.512186999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441290.517083,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441307.17857,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441307.188147,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441307.22716,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441307.232036,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441323.841623,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441323.852255,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441323.891715,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441323.89695,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441340.191699,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441340.202274,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441340.251309001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441340.255894,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441356.914379,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441356.923792999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441356.96287,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441356.968288,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441372.830436001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441372.839756,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441372.878069,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441372.883812,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441390.212507,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441390.2209520005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441390.258237001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441390.263743999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441406.814447001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441406.82314,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441406.860153,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441406.864329999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441423.755566999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441423.766279,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441423.809942,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441423.815915,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441439.612128,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441439.622633,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441439.660993,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441439.665565,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441457.390509999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441457.40083,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441457.424864,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441457.42916,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441473.858356999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441473.866475,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441473.898584001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441473.904029,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441489.992351,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441490.003322,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441490.0570600005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441490.065391,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441506.58599,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441506.597332,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441506.642081,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441506.648589999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441523.479356,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441523.490619,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441523.528886001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441523.533722,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441539.869423,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441539.881111,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441539.923195,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441539.930345001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441556.922290999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441556.9323700005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441556.968896001,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441556.983283,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441556.985819,{"type":"tracing","category":"Paint","interval":"end"}],[424,5441556.986595999,{"type":"tracing","category":"Paint","interval":"start"}],[424,5441556.986926,{"type":"tracing","category":"Paint","interval":"end"}],[425,5441556.987143,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[137,5441555.67009]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5441556.987969,{"type":"tracing","category":"Paint","interval":"end"}],[430,5441557.094617,{"type":"tracing","category":"Paint","interval":"start"}],[430,5441557.227875,{"type":"tracing","category":"Paint","interval":"end"}],[431,5441557.23163,{"type":"tracing","category":"Paint","interval":"start"}],[431,5441557.3659459995,{"type":"tracing","category":"Paint","interval":"end"}],[432,5441557.367105,{"type":"tracing","category":"Paint","interval":"start"}],[432,5441557.378096,{"type":"tracing","category":"Paint","interval":"end"}],[433,5441557.378305,{"type":"tracing","category":"Paint","interval":"start"}],[433,5441557.420092,{"type":"tracing","category":"Paint","interval":"end"}],[434,5441557.431898,{"type":"tracing","category":"Paint","interval":"start"}],[434,5441557.448228,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441557.4704,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441573.864061,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441573.87404,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441573.9125230005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441573.91677,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441590.269383,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441590.277966999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441590.315563001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441590.336797001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441606.383663001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441606.393565,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441606.438271,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441606.44312,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441623.4237480005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441623.433746999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441623.471531,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441623.4759019995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441640.18104,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441640.189813,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441640.226351,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441640.231656,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441657.015784,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441657.024364,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441657.060442001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441657.065059001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441672.86768,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441672.87617,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441672.90957,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441672.914028,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441690.260027,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441690.271145,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441690.304699999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441690.308934,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441707.258247,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441707.269265,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441707.307045,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441707.311125,{"type":"tracing","category":"Paint","interval":"end"}],[472,5441710.217056001,{"type":"tracing","category":"CC","interval":"start"}],[472,5441710.567853,{"type":"tracing","category":"CC","interval":"end"}],[473,5441710.589774,{"type":"tracing","category":"CC","interval":"start"}],[473,5441715.460841,{"type":"tracing","category":"CC","interval":"end"}],[422,5441723.641822,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441723.651921,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441723.692189,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441723.6980759995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441740.770125001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441740.782021999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441740.826727,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441740.8340570005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441757.221214,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441757.233924,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441757.279616999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441757.285483,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441773.01999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441773.031772,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441773.076425,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441773.082233001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441789.886285,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441789.899417999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441789.943757,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441789.949267,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441806.6902290005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441806.712497001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441806.756484,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441806.761419,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441823.293772001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441823.306611,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441823.350425,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441823.3556510005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441839.681031,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441839.6943850005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441839.739903,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441839.745666,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441856.466008999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441856.478928,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441856.523809,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441856.5296289995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441873.410877001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441873.425133,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441873.4730899995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441873.483051,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441890.591049001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441890.603028,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441890.644552,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441890.649827,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441907.107529,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441907.119279,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441907.165771,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441907.171797,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441923.689226,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441923.702432999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441923.746677,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441923.75229,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441940.174265,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441940.186947,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441940.231095,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441940.236527,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441956.7027,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441956.715724,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441956.760924,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441956.76654,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441973.685679,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441973.698587,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441973.744292,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441973.749731,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441990.646661,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441990.658291,{"type":"tracing","category":"Paint","interval":"start"}],[423,5441990.702881,{"type":"tracing","category":"Paint","interval":"end"}],[422,5441990.708876,{"type":"tracing","category":"Paint","interval":"end"}],[474,5442059.552519999],[475,5442104.992225001],[446,5442106.495336],[422,5442171.639833,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442171.645614999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442171.670573,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442171.673911,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442173.454132999,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442176.724873,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2827,5442176.70483]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5442177.255214,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442177.255991,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442177.256392,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442177.256577,{"type":"tracing","category":"Paint","interval":"start"}],[425,5442177.257221,{"type":"tracing","category":"Paint","interval":"end"}],[426,5442173.574406,{"type":"DOMEvent","startTime":5442173.574406,"endTime":5442180.265748,"timeStamp":5442157.350984,"eventType":"mousemove","phase":3}],[426,5442180.276129999,{"type":"DOMEvent","startTime":5442180.276129999,"endTime":5442180.2855859995,"timeStamp":5442157.350984,"eventType":"mousemove","phase":3}],[423,5442180.301225999,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442180.554381,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442180.55566,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442180.555939,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442180.55658,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442180.556789,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2837,5442180.454379001]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442180.557286,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442187.069203,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442187.070969,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442187.071362,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442187.071659001,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442187.071862,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2842,5442187.052398]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442187.072445,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442187.669083,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442187.670364999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442187.670704,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442187.6709509995,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442187.67112,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2842,5442187.333582]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442187.671529,{"type":"tracing","category":"Paint","interval":"end"}],[476,5442191.791223],[423,5442198.1397979995,{"type":"tracing","category":"Paint","interval":"end"}],[427,5442198.150143,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442198.258799,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442198.261394,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442198.261748,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442198.262068,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442198.262305,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2847,5442191.654776]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442198.263067,{"type":"tracing","category":"Paint","interval":"end"}],[427,5442198.266686,{"type":"tracing","category":"Paint","interval":"end"}],[432,5442198.305128001,{"type":"tracing","category":"Paint","interval":"start"}],[432,5442199.891571,{"type":"tracing","category":"Paint","interval":"end"}],[433,5442199.892259,{"type":"tracing","category":"Paint","interval":"start"}],[433,5442199.938441,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442199.984685,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442200.734805999,{"type":"tracing","category":"Paint","interval":"start"}],[426,5442200.831339,{"type":"DOMEvent","startTime":5442200.831339,"endTime":5442203.619005,"timeStamp":5442191.167432,"eventType":"mousemove","phase":3}],[426,5442203.626122,{"type":"DOMEvent","startTime":5442203.626122,"endTime":5442203.639873,"timeStamp":5442191.167432,"eventType":"mousemove","phase":3}],[423,5442203.6530949995,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442203.885177,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442203.886619,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442203.886864999,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442203.887116999,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442203.887301,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2857,5442203.817777]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442203.887826,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442212.467056,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442212.469606999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442212.470335,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442212.47065,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442212.470853999,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2860,5442212.4453879995]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442212.471627999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442213.139276001,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442213.1408049995,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442213.141098,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442213.141398,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442213.1415760005,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2860,5442212.778489]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442213.142173,{"type":"tracing","category":"Paint","interval":"end"}],[423,5442222.586492,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442222.606075,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442222.608690999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442222.609342,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442222.610258,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442222.610451999,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2863,5442216.492192]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442222.6112130005,{"type":"tracing","category":"Paint","interval":"end"}],[432,5442222.656911,{"type":"tracing","category":"Paint","interval":"start"}],[432,5442228.770478999,{"type":"tracing","category":"Paint","interval":"end"}],[433,5442228.771748001,{"type":"tracing","category":"Paint","interval":"start"}],[433,5442228.820722,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442228.855809,{"type":"tracing","category":"Paint","interval":"end"}],[426,5442229.400673,{"type":"DOMEvent","startTime":5442229.400673,"endTime":5442229.408495,"timeStamp":5442229.390249,"eventType":"mouseout","phase":3}],[426,5442229.419492,{"type":"DOMEvent","startTime":5442229.419492,"endTime":5442229.564824,"timeStamp":5442229.415666999,"eventType":"mouseleave","phase":2}],[422,5442229.72916,{"type":"tracing","category":"Paint","interval":"start"}],[422,5442229.730267,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442229.753296999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442229.757582,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442230.14046,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[1692,5442229.381311]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[424,5442230.191686,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442230.192068,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442230.192365,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442230.192546,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2873,5442230.080498]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442230.193139,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442237.161692,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442237.163455,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442237.16383,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442237.164143,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442237.164311999,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2877,5442237.144255]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442237.164901,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442237.534287,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442237.535445,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442237.535737,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442237.535978,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442237.536165,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2877,5442237.307867]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442237.536515,{"type":"tracing","category":"Paint","interval":"end"}],[435,5442243.770184,{"type":"GCMinor","startTime":5442243.770184,"endTime":5442261.727903999,"nursery":{"status":"complete","reason":"FULL_CELL_PTR_BUFFER","bytes_tenured":2468344,"bytes_used":14659160,"cur_capacity":16776832,"lazy_capacity":14679728,"chunk_alloc_us":26,"phase_times":{"Total":17952,"CancelIonCompilations":0,"TraceValues":777,"TraceCells":1762,"TraceSlots":218,"TraceWholeCells":186,"TraceGenericEntries":15,"CheckHashTables":0,"MarkRuntime":541,"MarkDebugger":24,"ClearNewObjectCache":3,"CollectToFP":5463,"ObjectsTenuredCallback":12,"Sweep":8892,"UpdateJitActivations":2,"FreeMallocedBuffers":4,"ClearStoreBuffer":42,"ClearNursery":0,"Pretenure":0}}}],[423,5442265.356284,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442265.372535001,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442265.374734,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442265.375217,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442265.3755,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442265.375682,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[2880,5442241.796459001]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442265.37641,{"type":"tracing","category":"Paint","interval":"end"}],[432,5442265.409808001,{"type":"tracing","category":"Paint","interval":"start"}],[432,5442270.334408999,{"type":"tracing","category":"Paint","interval":"end"}],[433,5442270.335338,{"type":"tracing","category":"Paint","interval":"start"}],[433,5442270.372599,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442270.395174,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442270.549606,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442270.585741,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442270.771081,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442270.775661,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442273.320304,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442273.324984,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442273.353814,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442273.356525,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442290.562159,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442290.572642,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442290.628409,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442290.6349369995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442307.138934,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442307.150662,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442307.195689,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442307.200837,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442323.929802,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442323.94292,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442323.981900999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442323.98618,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442340.198035,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442340.20612,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442340.245332001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442340.249914,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442356.935724,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442356.945106001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442356.984138001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442356.98807,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442373.06962,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442373.079332,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442373.120000999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442373.124271,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442390.508947,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442390.522704001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442390.560475,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442390.564852,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442407.322699999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442407.336457,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442407.389696,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442407.396583,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442423.937548,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442423.947085,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442423.990416001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442423.995091,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442440.429421,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442440.441865999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442440.487287,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442440.492623,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442456.89169,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442456.9033079995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442456.947464,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442456.952877,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442473.966702,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442473.97877,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442474.023984,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442474.029516,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442490.639675001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442490.651288,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442490.69569,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442490.701097,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442507.493017,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442507.504834,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442507.549191,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442507.55434,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442523.4480489995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442523.4606759995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442523.505184,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442523.510246,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442539.749906,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442539.760199,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442539.808423,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442539.815140001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442557.321278,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442557.329434,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442557.363914,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442557.368585001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442574.154281,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442574.165801,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442574.210897,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442574.216271,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442589.857577,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442589.869289,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442589.912870999,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442589.929623,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442589.932388,{"type":"tracing","category":"Paint","interval":"end"}],[424,5442589.933087,{"type":"tracing","category":"Paint","interval":"start"}],[424,5442589.93347,{"type":"tracing","category":"Paint","interval":"end"}],[425,5442589.933758,{"type":"tracing","stack":{"processType":"tab","name":"SyncProfile","tid":9069566,"pid":59666,"registerTime":null,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[137,5442587.299226999]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[]}},"category":"Paint","interval":"start"}],[425,5442589.934701,{"type":"tracing","category":"Paint","interval":"end"}],[430,5442589.998446,{"type":"tracing","category":"Paint","interval":"start"}],[430,5442590.14867,{"type":"tracing","category":"Paint","interval":"end"}],[431,5442590.152528,{"type":"tracing","category":"Paint","interval":"start"}],[431,5442590.307789,{"type":"tracing","category":"Paint","interval":"end"}],[432,5442590.309079,{"type":"tracing","category":"Paint","interval":"start"}],[432,5442590.322984,{"type":"tracing","category":"Paint","interval":"end"}],[433,5442590.323296,{"type":"tracing","category":"Paint","interval":"start"}],[433,5442590.375019,{"type":"tracing","category":"Paint","interval":"end"}],[434,5442590.389002,{"type":"tracing","category":"Paint","interval":"start"}],[434,5442590.402876,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442590.416549,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442607.027723,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442607.040851001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442607.085614,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442607.096195,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442623.928254999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442623.94019,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442623.9821500005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442623.987285,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442640.9711959995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442640.982451,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442641.029917,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442641.035201,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442657.416168,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442657.428294,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442657.472720001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442657.477995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442674.309035,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442674.3211240005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442674.365969,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442674.3713879995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442690.787845001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442690.799702,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442690.845016,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442690.8504180005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442706.613542999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442706.622847,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442706.658803,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442706.663216,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442723.221254,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442723.233309,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442723.2774060005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442723.282724,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442739.954562999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442739.967141001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442740.012289001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442740.017829,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442756.951073,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442756.962692,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442757.009646,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442757.015507,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442773.713063001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442773.720148,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442773.745445,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442773.748656,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442790.806465,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442790.818801,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442790.87169,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442790.877028,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442806.702609,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442806.714088,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442806.800399,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442806.805947,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442823.334703,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442823.347496,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442823.3976259995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442823.4026339995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442840.435783001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442840.447525,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442840.492229,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442840.497277,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442856.83118,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442856.844681,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442856.910806,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442856.917541999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442873.945728,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442873.956196,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442873.995060001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442873.99946,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442890.83312,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442890.844761999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442890.889202,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442890.893613,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442906.8387670005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442906.850435,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442906.899875,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442906.905046999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442924.011777,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442924.024997,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442924.075730001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442924.080992,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442940.644950001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442940.657935,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442940.702957001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442940.711286,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442957.091451,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442957.104855,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442957.149361,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442957.155129,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442974.107926,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442974.1191610005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442974.156102,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442974.1608730005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442990.614042,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442990.626126001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5442990.666912,{"type":"tracing","category":"Paint","interval":"end"}],[422,5442990.672567,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443007.21294,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443007.224592,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443007.270229,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443007.275830001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443023.911927,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443023.924021,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443023.969354,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443023.975591,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443040.368347,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443040.381067,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443040.42593,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443040.43181,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443057.554012,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443057.566873,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443057.61211,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443057.617438001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443074.180155001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443074.192338,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443074.236462,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443074.241824,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443090.465741999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443090.478617,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443090.524170999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443090.53277,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443107.509430001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443107.521177,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443107.565748,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443107.571318,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443124.296681,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443124.311596,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443124.356715,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443124.363364,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443140.883878,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443140.895894,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443140.941001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443140.94655,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443157.637565,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443157.649587001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443157.693252999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443157.698635,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443173.71255,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443173.722146,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443173.766339,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443173.770698001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443190.7360229995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443190.744831,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443190.782057,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443190.786846001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443206.53414,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443206.545879,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443206.587228,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443206.5925819995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443223.520073,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443223.532164999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443223.578178,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443223.583883001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443240.875162,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443240.886609,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443240.931880999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443240.940588,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443257.572496,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443257.584282,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443257.629454,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443257.634743,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443274.234772,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443274.247229001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443274.292101,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443274.297458,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443290.953599,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443290.965941,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443291.008916,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443291.014383,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443307.524369,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443307.536831,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443307.580436,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443307.586042,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443324.105551,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443324.117307,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443324.16144,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443324.166828,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443339.975888,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443339.987501,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443340.0313140005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443340.036904,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443356.687346,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443356.699619,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443356.745105,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443356.750762,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443373.264716,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443373.276397,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443373.321327,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443373.3269340005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443390.198113,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443390.210131,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443390.254025,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443390.262082,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443407.491653,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443407.502402,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443407.542315,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443407.547052,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443424.258853,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443424.269461,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443424.311239,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443424.316414,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443440.553319,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443440.56462,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443440.619125,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443440.626103,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443457.088339,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443457.09919,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443457.143636,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443457.148719,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443474.154936,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443474.164475,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443474.209044,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443474.214892,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443490.178869001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443490.190522,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443490.235329,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443490.240991,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443507.479266,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443507.488628,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443507.532012001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443507.537122999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443524.3336849995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443524.346493,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443524.389664001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443524.397271001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443540.118897,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443540.130648,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443540.175201001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443540.180199,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443557.525479,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443557.537386999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443557.583015,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443557.588439999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443574.252853,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443574.264259,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443574.309249001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443574.314812,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443590.942195999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443590.952568,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443590.997722,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443591.002866,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443606.599781999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443606.611958999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443606.66021,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443606.665948,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443623.387644,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443623.400052,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443623.442770001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443623.448454,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443640.378161,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443640.387708,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443640.423301,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443640.428097,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443656.979426,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443656.991323,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443657.037902,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443657.04412,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443673.92969,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443673.9414679995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443673.985354001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443673.991486,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443690.196937,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443690.208622,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443690.251789,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443690.257686,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443707.555589,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443707.565929,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443707.606629999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443707.61154,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443723.611439,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443723.621879,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443723.661766999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443723.666437999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443740.557764,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443740.567183999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443740.6091680005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443740.614511,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443757.227842,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443757.237109,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443757.277843,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443757.283034,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443773.6963289995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443773.706406,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443773.750665,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443773.755999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443790.773782,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443790.784431,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443790.827227,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443790.832241001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443806.781878999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443806.792399,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443806.834295999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443806.839122999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443823.681085001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443823.693348,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443823.744137,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443823.750626001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443840.194186999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443840.206711999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443840.252768,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443840.258365001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443857.157252001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443857.166736,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443857.205041001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443857.209331,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443873.328738,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443873.336549,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443873.390492,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443873.3945619995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443889.899017,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443889.905855,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443889.939828999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443889.943839,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443907.702659001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443907.712119,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443907.757766999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443907.762759,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443924.1631579995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443924.174903,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443924.220756999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443924.2259720005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443940.761832,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443940.774699,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443940.824161,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443940.829627001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443957.678416,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443957.691434,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443957.741599,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443957.746687,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443973.926925001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443973.93741,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443973.977756,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443973.983227,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443989.959625,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443989.96995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5443990.013863999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5443990.01823,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444007.187624,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444007.198569,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444007.243469,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444007.248362,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444023.854602,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444023.864885,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444023.908686999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444023.913496,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444040.304904,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444040.315614,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444040.361252001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444040.366412001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444056.958858,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444056.983626001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444057.031246,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444057.036817,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444074.135678,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444074.143627999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444074.1805300005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444074.1848679995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444090.948743,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444090.961693999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444091.0119199995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444091.017057,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444107.449526,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444107.46053,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444107.505641,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444107.510582999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444124.248310001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444124.258824999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444124.302948,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444124.307750001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444140.083493,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444140.095101,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444140.139757,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444140.144637999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444157.352260999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444157.363931,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444157.411251,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444157.416375999,{"type":"tracing","category":"Paint","interval":"end"}],[477,5444189.144416],[422,5444223.253802,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444223.261456,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444223.286925,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444223.290539,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444224.304745,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444224.309009,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444224.32407,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444224.327072,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444240.979948,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444240.989447,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444241.024603,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444241.029046999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444257.322452,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444257.333647001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444257.379842,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444257.384981,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444274.108708001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444274.121593,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444274.163354,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444274.168315,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444291.057075,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444291.066933,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444291.102096,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444291.106058,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444307.749006,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444307.760461,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444307.808901,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444307.814056,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444324.277047,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444324.288275,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444324.333977,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444324.339067001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444340.679437,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444340.741352,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444340.808192,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444340.814383999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444357.263634001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444357.275628,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444357.320847,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444357.326018999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444374.323996,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444374.336846,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444374.395758,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444374.400329,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444390.987265999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444390.998998,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444391.044561,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444391.049881,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444407.641989,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444407.654302999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444407.705581,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444407.7105,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444424.242036,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444424.251982,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444424.292896001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444424.296844,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444440.472733,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444440.4837960005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444440.529221,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444440.533725999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444457.119377,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444457.129432,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444457.170360001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444457.174554,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444473.941671,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444473.953713,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444473.997961001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444474.00325,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444490.242075,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444490.25354,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444490.29847,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444490.30332,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444507.304668,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444507.314338,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444507.3519170005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444507.358321,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444524.084778,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444524.095772,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444524.140567,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444524.145563,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444541.011658,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444541.023277,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444541.071018999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444541.076057,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444557.187805,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444557.198691,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444557.2434249995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444557.248299,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444574.277155001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444574.288830999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444574.3345139995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444574.339384,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444590.49517,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444590.506980999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444590.5512190005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444590.556492001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444606.81452,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444606.828419,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444606.931214,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444606.940915001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444624.413047001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444624.424505,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444624.469273,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444624.474037,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444640.823155001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444640.834766,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444640.880817,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444640.885747,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444657.52951,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444657.539114,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444657.578178001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444657.582072,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444674.243255,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444674.255057,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444674.298889999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444674.303828,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444690.127184,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444690.139072,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444690.183308,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444690.188032,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444707.090526,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444707.103584,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444707.146552,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444707.151601,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444724.141798001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444724.152323,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444724.193819,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444724.1982309995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444740.962934,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444740.973238,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444741.011167,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444741.015299,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444757.739995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444757.75064,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444757.791484,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444757.795678,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444774.050475,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444774.059873,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444774.102481,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444774.107745,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444791.084085,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444791.094804,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444791.136471,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444791.1415,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444807.217305001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444807.228855,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444807.279748,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444807.284728,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444824.158124,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444824.1698,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444824.21626,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444824.22127,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444840.272066,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444840.283049,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444840.329574,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444840.334532,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444857.370708001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444857.382750001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444857.427652,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444857.432949,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444873.966115001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444873.97738,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444874.022646001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444874.027834,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444891.050319,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444891.060307,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444891.103130001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444891.108044,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444907.1124869995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444907.124163,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444907.166236,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444907.171838,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444924.030289,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444924.042681,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444924.086289,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444924.090992,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444941.035749,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444941.045009,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444941.084482,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444941.088747,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444957.031867,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444957.039699,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444957.073205,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444957.076808,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444974.183155,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444974.194147,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444974.240503,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444974.245699,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444990.770897,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444990.781893,{"type":"tracing","category":"Paint","interval":"start"}],[423,5444990.823273,{"type":"tracing","category":"Paint","interval":"end"}],[422,5444990.827838,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445006.994798999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445007.006553,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445007.048968,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445007.0548479995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445023.910207,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445023.919686,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445023.955700001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445023.960059,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445040.856203,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445040.867111,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445040.910058,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445040.914735001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445057.714234,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445057.7255649995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445057.770103,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445057.7754420005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445074.413581,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445074.424116,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445074.4645960005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445074.468642999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445090.887205,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445090.89738,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445090.95396,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445090.959606,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445107.549392,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445107.560049,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445107.604154,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445107.608918,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445124.141647,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445124.153081,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445124.195196,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445124.199605,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445141.0601739995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445141.086009,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445141.131868,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445141.137281,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445157.897969999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445157.907659,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445157.944626,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445157.9490209995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445174.764067,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445174.773953999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445174.8164099995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445174.821659001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445190.691404999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445190.700659,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445190.744371,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445190.749433,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445207.294122,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445207.304886,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445207.349413,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445207.354423,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445223.8425940005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445223.856227,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445223.900619,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445223.905831,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445241.047829,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445241.058832,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445241.104676,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445241.109691,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445257.271421,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445257.28269,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445257.327319999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445257.332288,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445274.2385060005,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445274.249685,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445274.294810001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445274.2998089995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445291.086833,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445291.097538,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445291.14176,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445291.146578,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445307.996871,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445308.007966001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445308.052972999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445308.057859,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445324.516181,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445324.528998,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445324.594982999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445324.600162,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445340.561764999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445340.572102,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445340.615104,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445340.61993,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445357.093047,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445357.105281999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445357.153713,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445357.158722,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445373.956456,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445373.967728,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445374.004581,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445374.008842,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445391.137687,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445391.1462739995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445391.186407,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445391.190284,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445407.091944,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445407.103975,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445407.1490670005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445407.154066,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445424.014403,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445424.024879,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445424.069706,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445424.0751,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445441.587412001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445441.5959,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445441.618228001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445441.63686,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445457.240402,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445457.251991,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445457.295842,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445457.300768,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445474.012273,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445474.022861,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445474.0667200005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445474.071661999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445491.0828599995,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445491.09802,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445491.143393001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445491.148873,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445507.099559001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445507.109087,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445507.157064,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445507.164237,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445524.00084,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445524.010453001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445524.056108,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445524.062769,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445540.475556,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445540.486864,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445540.532052,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445540.540578,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445557.819274001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445557.827558,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445557.868756,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445557.8734800005,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445574.464198,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445574.474404001,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445574.519572999,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445574.526242,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445590.850363,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445590.859871999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445590.898554,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445590.903527,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445608.011278,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445608.017628999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445608.050050001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445608.056646,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445624.221554,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445624.231681,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445624.278539,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445624.285104,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445641.263191,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445641.272744999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445641.316814,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445641.323448,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445658.044183999,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445658.055023,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445658.10159,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445658.106910001,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445674.719943,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445674.730994,{"type":"tracing","category":"Paint","interval":"start"}],[423,5445674.7761039995,{"type":"tracing","category":"Paint","interval":"end"}],[422,5445674.781101,{"type":"tracing","category":"Paint","interval":"end"}],[439,5445682.42009],[440,5445682.425465]]},"stackTable":{"schema":{"prefix":0,"frame":1},"data":[[null,0],[0,1],[1,2],[2,3],[3,4],[4,4],[5,4],[6,4],[7,4],[8,4],[9,4],[10,5],[11,4],[12,6],[13,4],[14,7],[8,8],[16,9],[17,10],[18,4],[19,11],[20,4],[21,12],[20,13],[23,4],[24,14],[20,15],[26,4],[27,16],[28,4],[29,17],[30,4],[31,18],[32,4],[33,19],[34,20],[35,4],[36,21],[8,22],[38,4],[39,23],[40,24],[41,4],[42,25],[2,4],[44,26],[45,4],[46,27],[47,4],[48,27],[49,4],[50,28],[51,4],[52,29],[53,4],[54,30],[55,31],[56,4],[57,32],[58,4],[59,33],[60,4],[61,34],[54,35],[63,10],[64,4],[65,11],[66,4],[67,36],[68,4],[69,37],[70,4],[71,38],[72,39],[73,40],[74,41],[66,8],[76,9],[77,10],[78,4],[79,11],[63,42],[81,43],[82,4],[83,44],[84,45],[85,46],[74,47],[87,4],[88,48],[89,4],[90,37],[91,4],[92,38],[93,39],[94,40],[95,49],[96,4],[97,50],[98,4],[99,51],[100,4],[101,52],[102,4],[103,53],[104,4],[105,54],[88,55],[107,4],[108,36],[109,4],[110,51],[111,52],[112,4],[113,56],[114,4],[115,40],[116,57],[117,4],[118,58],[67,16],[120,4],[121,59],[122,4],[123,60],[124,4],[125,61],[126,62],[127,4],[128,16],[129,4],[130,60],[54,63],[132,4],[133,64],[134,65],[2,66],[2,67],[137,4],[138,68],[139,4],[140,69],[141,15],[142,4],[143,70],[144,4],[145,71],[146,4],[147,72],[148,4],[149,73],[150,4],[151,74],[152,4],[153,70],[154,71],[155,72],[156,4],[157,75],[158,4],[159,62],[160,4],[161,70],[162,76],[136,77],[164,78],[165,79],[166,80],[167,81],[141,82],[169,4],[170,70],[171,71],[172,72],[173,4],[174,73],[175,4],[176,74],[177,4],[178,70],[179,71],[180,72],[181,4],[182,75],[183,4],[184,83],[185,4],[186,70],[187,84],[188,4],[189,85],[190,4],[191,86],[192,87],[193,4],[194,88],[195,4],[164,4],[141,89],[198,70],[199,71],[200,72],[201,4],[202,73],[203,4],[204,74],[205,4],[206,70],[207,71],[208,72],[209,4],[210,75],[211,83],[212,70],[213,90],[213,84],[215,4],[216,85],[217,4],[218,86],[219,91],[220,92],[197,93],[222,94],[141,95],[224,4],[225,96],[226,4],[227,97],[213,72],[229,4],[230,85],[231,4],[232,98],[233,4],[234,87],[235,4],[236,99],[237,4],[238,100],[239,4],[240,101],[241,4],[242,102],[243,4],[141,103],[245,4],[246,104],[247,105],[248,106],[138,107],[250,4],[251,108],[252,4],[253,11],[254,4],[255,11],[256,4],[257,109],[258,4],[259,110],[260,22],[261,4],[262,111],[263,4],[264,112],[265,4],[266,113],[267,4],[268,114],[138,115],[270,4],[271,116],[272,4],[273,117],[274,118],[275,119],[273,89],[277,4],[2,120],[279,121],[2,122],[281,121],[141,123],[283,4],[284,16],[285,4],[286,59],[287,4],[288,124],[288,60],[290,4],[291,19],[292,74],[293,4],[294,125],[295,4],[296,126],[296,127],[298,4],[299,128],[300,4],[143,125],[302,127],[303,129],[304,4],[305,19],[306,74],[307,4],[308,125],[309,127],[310,129],[311,4],[312,130],[313,4],[314,62],[315,4],[316,125],[317,129],[318,4],[319,85],[320,4],[321,86],[322,91],[323,92],[324,4],[325,131],[326,4],[327,132],[328,4],[329,133],[330,4],[331,134],[332,4],[333,135],[334,4],[335,136],[137,122],[337,121],[44,137],[339,4],[340,137],[341,4],[342,138],[343,139],[344,4],[345,110],[346,4],[347,125],[348,140],[342,141],[350,4],[351,125],[352,129],[353,4],[354,142],[355,4],[356,143],[357,4],[358,144],[141,145],[360,4],[361,125],[362,127],[363,129],[364,4],[365,146],[366,4],[367,74],[368,4],[369,125],[370,127],[371,129],[372,4],[373,130],[374,147],[375,125],[376,129],[377,4],[378,85],[379,4],[380,86],[381,91],[382,92],[383,4],[384,131],[197,137],[386,148],[361,104],[388,105],[389,149],[360,125],[391,127],[392,129],[393,4],[394,146],[395,4],[396,74],[397,4],[398,125],[399,127],[400,129],[401,4],[402,130],[403,147],[404,125],[405,128],[406,4],[407,85],[408,4],[409,86],[410,87],[411,4],[412,64],[413,65],[405,129],[415,4],[416,85],[417,4],[418,86],[419,91],[420,92],[421,4],[141,150],[423,4],[424,96],[425,4],[426,151],[396,152],[428,4],[429,125],[430,127],[431,129],[432,4],[433,130],[434,147],[435,125],[436,129],[437,4],[438,153],[439,4],[440,154],[441,4],[442,155],[443,4],[444,156],[445,4],[446,157],[447,158],[448,159],[449,160],[450,4],[451,161],[452,4],[442,162],[454,4],[455,163],[456,4],[457,164],[395,152],[459,125],[460,127],[461,129],[462,4],[463,130],[464,147],[465,125],[466,129],[467,4],[468,153],[469,154],[470,155],[471,165],[470,162],[473,163],[474,166],[388,167],[138,168],[477,4],[478,169],[479,4],[480,145],[481,125],[482,127],[483,129],[484,4],[485,146],[486,152],[487,125],[488,127],[489,129],[490,4],[491,130],[492,147],[493,125],[494,129],[495,4],[496,153],[497,154],[498,155],[499,165],[197,142],[257,139],[502,4],[503,110],[504,4],[505,125],[506,127],[507,170],[508,4],[509,171],[510,172],[479,145],[512,125],[513,127],[514,129],[515,4],[516,146],[517,152],[518,125],[519,127],[520,129],[521,4],[522,130],[523,147],[524,125],[525,129],[526,4],[527,153],[528,154],[529,155],[530,165],[530,156],[532,4],[533,173],[2,174],[535,78],[536,79],[537,80],[538,81],[536,175],[540,176],[541,4],[540,177],[543,4],[544,178],[545,4],[546,179],[547,4],[548,180],[549,181],[44,182],[551,183],[552,4],[553,184],[554,4],[555,185],[556,186],[557,187],[558,188],[559,189],[560,190],[561,191],[562,4],[563,192],[559,193],[565,194],[566,195],[567,196],[568,4],[569,134],[570,197],[571,198],[571,199],[573,4],[574,200],[575,201],[576,193],[577,202],[578,4],[579,203],[580,204],[581,4],[582,205],[583,4],[584,206],[585,4],[586,207],[587,4],[588,208],[565,209],[590,4],[591,203],[554,210],[551,211],[594,212],[595,213],[596,214],[597,215],[598,216],[599,217],[600,211],[601,212],[602,213],[603,218],[604,4],[605,213],[606,218],[607,4],[608,213],[609,218],[610,4],[611,213],[612,219],[596,218],[614,220],[615,4],[616,221],[617,4],[618,222],[619,223],[620,224],[621,223],[622,225],[479,226],[624,4],[625,227],[626,4],[627,228],[479,229],[629,4],[630,125],[631,127],[632,129],[633,4],[634,146],[635,230],[636,151],[637,231],[164,232],[639,233],[164,234],[641,235],[642,236],[643,237],[644,238],[645,239],[2,175],[647,240],[648,4],[649,241],[650,4],[651,242],[652,243],[653,4],[654,244],[655,4],[656,11],[657,245],[657,246],[659,247],[659,248],[661,249],[662,250],[659,251],[659,252],[665,4],[666,253],[667,254],[666,255],[666,256],[666,257],[670,4],[672,258],[673,4],[666,259],[675,4],[676,260],[677,4],[678,261],[679,4],[680,262],[681,4],[666,263],[683,264],[684,4],[666,265],[686,4],[687,266],[686,267],[689,268],[690,4],[691,269],[692,4],[675,270],[694,271],[675,272],[696,273],[697,274],[686,275],[699,276],[686,277],[701,278],[702,279],[703,280],[675,281],[705,282],[699,283],[666,284],[708,285],[709,286],[710,287],[701,276],[666,288],[707,289],[701,290],[715,291],[666,292],[717,293],[666,294],[666,295],[720,267],[721,296],[689,296],[675,297],[675,298],[725,299],[726,300],[727,280],[725,301],[729,280],[694,296],[686,302],[732,303],[666,304],[686,305],[735,299],[736,300],[666,306],[738,307],[666,308],[740,309],[741,310],[686,311],[743,312],[744,313],[675,314],[746,315],[686,316],[748,280],[686,317],[750,318],[666,319],[666,320],[753,321],[754,299],[755,300],[666,322],[756,280],[666,323],[759,324],[760,280],[753,325],[666,326],[763,327],[763,316],[765,328],[763,329],[767,330],[768,331],[763,332],[666,333],[762,280],[763,305],[773,301],[666,334],[775,335],[773,336],[777,337],[773,299],[779,300],[773,338],[781,339],[753,340],[780,280],[763,341],[785,342],[753,343],[787,344],[788,345],[768,340],[666,346],[791,307],[792,280],[763,347],[794,348],[795,345],[796,349],[776,280],[768,279],[799,280],[765,280],[773,350],[753,314],[803,315],[754,301],[763,351],[806,352],[807,353],[769,280],[666,354],[810,355],[811,356],[769,357],[666,358],[814,359],[815,360],[805,280],[763,361],[818,362],[819,279],[820,280],[666,363],[822,364],[823,365],[657,4],[825,366],[826,367],[827,4],[828,368],[829,4],[830,11],[44,369],[832,4],[833,11],[834,4],[835,370],[836,4],[837,371],[838,4],[839,372],[840,4],[841,373],[842,374],[837,375],[844,376],[845,377],[846,378],[847,379],[834,380],[849,4],[850,381],[851,4],[852,61],[853,4],[854,382],[834,383],[856,4],[857,381],[858,4],[859,61],[860,4],[861,384],[862,385],[861,386],[864,264],[861,387],[866,388],[861,389],[861,390],[861,391],[870,392],[871,280],[861,393],[861,394],[874,395],[875,396],[874,397],[877,328],[874,264],[861,398],[880,399],[850,400],[882,401],[883,402],[884,403],[884,404],[886,405],[882,406],[888,407],[889,408],[890,409],[882,410],[892,411],[834,412],[894,4],[895,400],[896,410],[897,411],[898,413],[899,414],[900,415],[901,4],[902,416],[903,4],[898,417],[905,418],[906,419],[907,4],[908,420],[909,4],[910,421],[911,422],[912,423],[913,424],[910,425],[915,426],[916,4],[909,427],[918,428],[919,429],[920,430],[921,431],[909,432],[923,428],[924,433],[925,430],[926,431],[898,434],[928,435],[929,419],[930,4],[931,420],[932,436],[933,4],[932,437],[928,438],[936,439],[937,4],[938,420],[939,4],[940,440],[941,4],[942,441],[943,4],[898,442],[945,443],[946,4],[947,420],[948,4],[949,444],[950,445],[951,446],[952,447],[953,448],[954,449],[955,4],[956,450],[957,446],[958,447],[959,448],[960,449],[961,4],[962,451],[963,452],[964,453],[965,454],[966,455],[945,456],[968,4],[969,457],[970,458],[971,459],[945,460],[973,4],[974,142],[975,4],[976,461],[977,462],[978,463],[979,4],[980,36],[981,4],[982,37],[983,4],[984,38],[985,464],[986,465],[985,39],[988,40],[989,466],[990,4],[991,467],[992,4],[993,37],[994,4],[995,38],[996,39],[997,40],[998,468],[999,4],[974,137],[1001,4],[1002,461],[1003,462],[1004,463],[1005,4],[1006,36],[1007,4],[1008,37],[1009,4],[1010,38],[1011,39],[1012,40],[1013,466],[1014,4],[1015,467],[1016,4],[1017,37],[1018,4],[1019,38],[1020,39],[1021,40],[1022,468],[1023,4],[1024,469],[1025,470],[1026,471],[1027,4],[1028,472],[1029,4],[1030,473],[1015,474],[1032,4],[1033,475],[1034,476],[1035,477],[1036,4],[1037,40],[1038,478],[1039,4],[1040,479],[1041,480],[1042,481],[1035,482],[1044,4],[1045,40],[1046,478],[1047,4],[1048,483],[1049,484],[1050,4],[1051,485],[1052,486],[991,487],[978,488],[1055,489],[1056,490],[1057,4],[1058,491],[1059,492],[1060,280],[850,493],[895,494],[895,495],[1064,496],[895,497],[1066,498],[895,499],[1068,280],[1064,500],[895,501],[895,502],[895,503],[1073,4],[895,504],[1075,505],[1076,4],[1077,506],[1078,4],[1079,507],[1075,508],[1081,4],[1082,509],[1083,4],[1084,510],[1085,511],[1086,512],[1087,4],[1088,513],[1089,514],[1090,515],[895,516],[1082,517],[1093,4],[1094,518],[1095,511],[1096,512],[1097,513],[1098,514],[1099,515],[1082,519],[1101,4],[1081,520],[1103,521],[1104,511],[1105,512],[1106,513],[1107,514],[1108,515],[1081,522],[1110,523],[1111,511],[1112,512],[1113,513],[1114,514],[1115,515],[895,524],[1117,525],[1081,526],[1119,527],[1120,511],[1121,512],[1122,528],[1123,529],[1122,513],[1125,514],[1126,515],[895,530],[1128,4],[1129,531],[1130,4],[834,532],[1132,4],[1133,533],[1134,4],[1135,61],[1136,4],[1137,534],[1138,535],[1133,536],[1140,4],[1141,61],[1142,4],[1143,534],[1144,537],[1145,4],[1146,420],[1147,4],[1148,538],[1149,539],[1150,4],[1151,420],[1152,4],[1153,538],[1154,539],[1155,420],[1156,4],[1157,538],[1158,539],[1159,420],[1160,540],[1161,539],[1162,420],[1163,540],[1164,539],[1165,420],[1166,540],[1167,539],[1168,420],[1169,540],[1170,539],[1171,420],[1172,540],[1173,539],[1174,420],[1175,540],[1176,539],[1177,420],[1178,540],[1179,539],[1180,420],[1181,540],[1182,539],[1183,420],[1184,540],[1185,539],[1186,420],[1187,540],[1188,539],[1189,420],[1190,540],[1191,539],[1192,420],[1193,540],[1194,541],[1195,542],[1196,280],[1156,540],[1198,539],[1199,420],[1200,540],[1201,539],[1202,420],[1203,540],[1204,539],[1205,420],[1206,540],[1207,539],[1208,420],[1209,540],[1210,539],[1211,420],[1212,540],[1213,539],[1214,420],[1215,540],[1216,539],[1217,420],[1218,540],[1219,539],[1220,420],[1221,540],[1222,539],[1223,420],[1224,540],[1225,539],[1226,420],[1227,540],[1228,539],[1229,420],[1230,540],[1231,539],[1232,420],[1233,540],[1234,539],[1235,420],[1236,540],[1237,539],[1238,420],[1239,540],[1240,539],[1241,420],[1242,540],[1243,539],[1244,420],[1245,540],[1246,539],[1247,420],[1248,540],[1249,539],[1250,420],[1251,540],[1252,539],[1253,420],[1254,540],[1255,539],[1256,420],[1257,540],[1258,539],[1259,420],[1260,540],[1261,539],[1262,420],[1263,540],[1264,539],[1265,420],[1266,540],[1267,539],[1268,420],[1269,540],[1270,539],[1271,420],[1272,540],[1273,539],[1274,420],[1275,540],[1276,539],[1277,420],[1278,540],[1279,539],[1280,420],[1281,540],[1282,539],[1283,420],[1284,540],[1285,539],[1286,420],[1287,540],[1288,539],[1289,420],[1290,540],[1291,539],[1292,420],[1293,540],[1294,543],[1152,540],[1296,539],[1297,420],[1298,540],[1299,539],[1300,420],[1301,540],[1302,539],[1303,420],[1304,540],[1305,539],[1306,420],[1307,540],[1308,539],[1309,420],[1310,540],[1311,539],[1312,420],[1313,540],[1314,539],[1315,420],[1316,540],[1317,544],[1311,543],[1319,280],[1306,545],[1321,540],[1322,539],[1323,545],[1324,540],[1325,539],[1326,545],[1327,540],[1328,539],[1329,545],[1330,540],[1331,539],[1332,545],[1333,540],[1334,539],[1335,545],[1336,540],[1337,539],[1338,545],[1339,540],[1340,539],[1341,545],[1342,540],[1343,539],[1344,545],[1345,540],[1346,539],[1347,545],[1348,540],[1349,539],[1350,545],[1351,540],[1352,539],[1353,545],[1354,540],[1355,539],[1356,545],[1357,540],[1358,539],[1359,545],[1360,540],[1361,539],[1362,545],[1363,540],[1364,539],[1365,545],[1366,540],[1367,539],[1368,545],[1369,540],[1370,539],[1371,545],[1372,540],[1373,539],[1374,545],[1375,540],[1376,539],[1377,545],[1378,540],[1379,539],[1380,545],[1381,540],[1382,539],[1383,545],[1384,540],[1385,539],[1386,545],[1387,540],[1388,539],[1389,545],[1390,540],[1391,539],[1392,545],[1393,540],[1394,539],[1395,545],[1396,540],[1397,539],[1398,545],[1399,540],[1400,539],[1401,545],[1402,540],[1403,539],[1404,545],[1405,540],[1406,539],[1407,545],[1408,540],[1409,539],[1410,545],[1411,540],[1412,539],[1413,545],[1414,540],[1415,539],[1416,545],[1417,540],[1418,539],[1419,545],[1420,540],[1421,539],[1422,545],[1423,540],[1424,541],[834,546],[1426,4],[1427,547],[1428,4],[1429,406],[1430,548],[1431,4],[1432,408],[1433,549],[1429,410],[1435,411],[1436,550],[1437,551],[1438,4],[1439,545],[1440,552],[1441,553],[1442,280],[1436,417],[1444,554],[1445,555],[1446,556],[1447,280],[1444,418],[1449,419],[1450,4],[1451,545],[1452,557],[1453,558],[1454,559],[1455,560],[1436,561],[1457,562],[1458,4],[1459,545],[1460,4],[1461,563],[1462,4],[1463,545],[1464,564],[1465,565],[1466,566],[1467,553],[1436,434],[1469,435],[1470,419],[1471,4],[1472,545],[1473,432],[1473,567],[1475,559],[1476,560],[1477,340],[1436,442],[1479,443],[1480,4],[1481,545],[1482,4],[1483,444],[1484,445],[1485,452],[1486,453],[1487,448],[1488,449],[1489,4],[1490,451],[1491,452],[1492,453],[1493,448],[1494,449],[1495,4],[1496,451],[1497,452],[1498,453],[1499,568],[1500,449],[1427,494],[1502,4],[1503,410],[1504,411],[1505,442],[1506,460],[1479,460],[1508,4],[1509,142],[1510,4],[1511,461],[1512,462],[1513,488],[1514,569],[1515,570],[1516,4],[1517,571],[1427,504],[1519,508],[1520,520],[1521,521],[1522,511],[1523,512],[1524,513],[1525,572],[1427,495],[1527,500],[1427,573],[1520,522],[1530,523],[1531,511],[1532,512],[1533,513],[1534,514],[1535,515],[1523,574],[1520,526],[1538,527],[1539,511],[1540,512],[1541,513],[1542,514],[1543,515],[1525,514],[1545,515],[1533,528],[1547,529],[1427,524],[1549,575],[1550,542],[1427,530],[1552,531],[1553,4],[1554,576],[54,577],[1556,4],[1557,578],[1558,579],[1559,4],[1560,578],[1561,4],[1562,580],[1563,581],[1564,4],[1565,582],[1566,4],[595,220],[1568,218],[1569,583],[1570,4],[1571,216],[1572,217],[1573,584],[1574,4],[1575,585],[1576,586],[1577,4],[1578,587],[1575,588],[1580,586],[1581,589],[1582,590],[1583,4],[1584,591],[1585,4],[1586,592],[1587,593],[1588,594],[1589,595],[1590,596],[1591,4],[1592,597],[1593,598],[1594,4],[1595,599],[1596,600],[1597,601],[1598,4],[1582,602],[1600,4],[1601,603],[1602,604],[1573,605],[1604,4],[1605,212],[1606,220],[1607,218],[1608,220],[1609,218],[1610,220],[1611,218],[1612,606],[1571,607],[1614,217],[1615,584],[1616,4],[1617,608],[1618,586],[1619,589],[1620,590],[1621,598],[1622,202],[1615,605],[1624,4],[1625,212],[1626,220],[1627,218],[1628,583],[1629,4],[1630,609],[1631,4],[1632,217],[1633,584],[1634,4],[1635,610],[1636,586],[1637,589],[1638,590],[1639,591],[1640,592],[1641,611],[1633,612],[1629,609],[1644,4],[1645,217],[1646,584],[1647,4],[1648,613],[1649,586],[1650,589],[1651,590],[1652,598],[1653,202],[44,614],[1655,615],[1656,4],[1657,616],[1658,617],[197,618],[1660,4],[1661,619],[1662,4],[1663,620],[1664,4],[1665,621],[1666,4],[1667,622],[1668,623],[1669,624],[1665,625],[1671,4],[1672,626],[1665,627],[1665,628],[1675,629],[1665,630],[1665,631],[1678,4],[1679,632],[1680,4],[1681,633],[1682,4],[1683,634],[1684,4],[1685,635],[1663,636],[197,637],[643,638],[644,639],[2,640],[1691,78],[1692,79],[1693,80],[1694,81],[1663,641],[1696,4],[1697,642],[1698,4],[1699,643],[1700,644],[1701,548],[1702,4],[1703,645],[1704,4],[1705,646],[1700,647],[1707,411],[1708,413],[1709,414],[1710,415],[1711,4],[1712,545],[1713,648],[1714,649],[1715,650],[1716,651],[1708,417],[1718,418],[1719,419],[1720,4],[1721,545],[1722,432],[1723,652],[1724,433],[1725,424],[1723,428],[1727,429],[1728,424],[1708,434],[1730,435],[1731,419],[1732,4],[1733,545],[1734,432],[1735,652],[1736,429],[1737,424],[1734,436],[1739,652],[1740,433],[1741,430],[1742,431],[1708,442],[1744,443],[1745,4],[1746,545],[1747,4],[1748,444],[1749,445],[1750,452],[1751,453],[1752,568],[1753,449],[1754,4],[1755,451],[1756,452],[1757,453],[1758,568],[1759,449],[1760,4],[1761,653],[1762,452],[1763,654],[1744,460],[1765,4],[1766,142],[1767,4],[1768,461],[1769,462],[1770,488],[1771,569],[1772,570],[1773,4],[1774,44],[1775,45],[1776,655],[1777,4],[1697,656],[1779,4],[1780,657],[1781,658],[1782,4],[1783,659],[1784,4],[1785,660],[1786,4],[1787,661],[1787,662],[1789,663],[1790,664],[1789,4],[1792,665],[1793,666],[1794,4],[1795,667],[1796,4],[1797,668],[1798,4],[1799,669],[1800,4],[1801,670],[1802,671],[1803,4],[1804,672],[1804,673],[1806,4],[1807,674],[1808,4],[1809,675],[1787,676],[1811,4],[1812,665],[1813,666],[1814,4],[1815,667],[1816,4],[1817,677],[1818,4],[1819,678],[1820,4],[1821,679],[1822,4],[1823,680],[1824,4],[1825,681],[1826,4],[1827,682],[1817,668],[1829,4],[1830,683],[1831,4],[1832,684],[1833,4],[1834,685],[1835,4],[1834,686],[1837,4],[1838,687],[1839,4],[1840,688],[1841,4],[1842,689],[1821,690],[1844,4],[1845,680],[1846,4],[1847,691],[1848,4],[1849,683],[1850,684],[1851,686],[1852,692],[1853,693],[1854,529],[1817,694],[1856,4],[1857,695],[1817,696],[1859,683],[1860,684],[1861,686],[1862,697],[1863,698],[1817,699],[1856,700],[1866,690],[1867,701],[1868,702],[1869,683],[1870,684],[1871,686],[1872,703],[1872,704],[1874,705],[1867,706],[1876,707],[1877,708],[1878,664],[1862,692],[1872,709],[1862,687],[1882,688],[1883,710],[1884,711],[1792,712],[1886,713],[1887,714],[1787,715],[1889,4],[1890,716],[1891,717],[1787,718],[1893,4],[1894,719],[1895,720],[1896,4],[1897,721],[1898,4],[1899,722],[1900,4],[1901,723],[1902,4],[1903,724],[1904,4],[1905,725],[1901,726],[1907,4],[1908,727],[1909,4],[1910,728],[1911,685],[1912,4],[1913,729],[1911,686],[1915,4],[1916,730],[1917,4],[1918,731],[1919,4],[1920,710],[1921,711],[1899,732],[1923,4],[1924,733],[1925,280],[1924,734],[1927,4],[1928,735],[1929,4],[1930,736],[1931,4],[1932,686],[1933,4],[1934,737],[1923,734],[1936,735],[1937,736],[1938,686],[1939,738],[1940,739],[1939,740],[1942,741],[1943,742],[1944,743],[1940,744],[1946,745],[1947,746],[1942,747],[1949,280],[1785,748],[1951,4],[1952,749],[1953,4],[1954,750],[1955,685],[1665,751],[1663,752],[1958,4],[1959,753],[1960,4],[1961,657],[1962,720],[1963,4],[1964,659],[1965,4],[1966,754],[1967,4],[1968,755],[1969,756],[1968,757],[1971,4],[1972,712],[1973,713],[1974,714],[1968,718],[1976,4],[1977,719],[1978,720],[1979,4],[1980,721],[1981,4],[1982,732],[1983,734],[1984,735],[1985,736],[1986,686],[1987,758],[1988,759],[1987,740],[1990,760],[1991,761],[1992,762],[1993,763],[1994,764],[1968,765],[1996,4],[1997,766],[1998,4],[1999,767],[2000,685],[2001,4],[2002,768],[1687,4],[2004,769],[2005,4],[2006,770],[2007,771],[2008,772],[2006,773],[2010,774],[2010,775],[2010,776],[2013,4],[2014,777],[2015,778],[2010,779],[2010,780],[2018,4],[2019,777],[2020,781],[2021,4],[2022,782],[2010,773],[2024,773],[2025,780],[2026,4],[2027,771],[2028,772],[2025,773],[2030,773],[2031,783],[2032,784],[2006,785],[2034,249],[2004,786],[2036,4],[2037,787],[2038,4],[2039,788],[2040,789],[2041,790],[2042,791],[1558,792],[479,793],[514,794],[629,125],[2047,127],[2048,129],[2049,4],[2050,146],[2051,152],[2052,125],[2053,127],[2054,129],[2055,4],[2056,130],[2057,147],[2058,125],[2059,129],[2060,4],[2061,153],[2062,154],[2063,155],[2064,165],[2,795],[2066,796],[2,797],[2068,798],[479,150],[2070,799],[2071,800],[2071,151],[2,801],[2074,802],[2071,803],[525,140],[533,804],[257,142],[2079,4],[2080,110],[2081,22],[2082,4],[2083,805],[2083,806],[504,22],[2086,4],[2087,807],[2088,808],[2089,809],[2090,809],[2091,809],[2092,809],[2093,809],[2094,809],[2095,809],[2096,809],[2097,809],[2098,809],[2099,809],[2100,810],[2087,811],[2102,4],[2103,812],[2104,813],[2104,814],[2087,815],[2087,816],[2087,817],[2087,818],[2110,819],[2111,820],[2087,821],[2113,822],[2114,823],[2115,824],[2116,228],[2107,4],[2118,825],[2087,826],[2120,827],[2121,828],[2087,829],[2088,830],[2103,825],[2088,831],[2126,832],[2088,833],[2128,834],[2129,835],[2130,836],[2131,810],[2088,837],[2088,838],[2134,839],[2135,840],[2087,841],[2087,842],[2138,4],[2087,843],[2140,844],[2141,845],[2087,846],[2143,847],[2144,848],[2145,849],[2146,850],[2147,851],[2148,852],[2087,853],[2150,854],[2151,855],[2108,280],[2148,850],[2154,851],[2155,228],[2148,228],[2087,856],[2158,857],[2159,858],[2087,859],[2161,860],[2162,861],[2087,862],[2164,863],[2165,864],[2166,865],[2088,866],[2168,867],[2169,867],[2170,867],[2171,228],[2087,868],[2173,4],[2174,869],[2175,870],[2176,871],[2177,872],[2174,873],[2179,874],[2174,875],[506,876],[2182,877],[2183,4],[2184,578],[2185,152],[2186,125],[2187,876],[2188,877],[2189,4],[2190,130],[2191,147],[2192,125],[2193,877],[2194,4],[2195,153],[2196,154],[2197,155],[2198,156],[2199,4],[2200,804],[2198,165],[2202,4],[2197,162],[2204,163],[2205,166],[513,876],[2207,877],[165,175],[2209,878],[2210,4],[2211,178],[2212,4],[2213,879],[2214,4],[2215,880],[2214,623],[2211,881],[2218,4],[2219,882],[2220,4],[2221,883],[2222,884],[2223,280],[2221,885],[2225,886],[2213,887],[197,888],[2228,4],[2229,619],[2230,4],[2231,641],[2232,4],[2233,656],[2234,4],[2235,657],[2236,720],[2237,4],[2238,659],[2239,4],[2240,660],[2241,4],[2242,755],[2243,756],[2242,718],[2245,4],[2246,719],[2247,720],[2248,4],[2249,721],[2250,4],[2251,889],[2252,890],[2253,891],[2254,280],[2251,732],[2256,734],[2257,735],[2258,736],[2259,686],[2260,738],[2261,892],[2262,761],[2263,762],[2264,893],[2265,280],[2260,740],[2267,760],[2268,710],[2269,894],[2270,895],[2271,280],[2262,689],[2273,896],[2274,894],[2275,895],[2261,897],[2277,898],[2278,899],[2242,765],[2280,4],[2281,766],[2282,4],[2283,767],[2284,685],[2285,4],[2286,900],[2229,901],[2288,4],[2289,752],[2290,4],[2291,753],[2292,4],[2293,657],[2294,720],[2295,4],[2296,659],[2297,4],[2298,754],[2299,4],[2300,755],[2301,902],[2300,715],[2303,4],[2304,903],[2305,4],[2306,717],[2300,718],[2308,4],[2309,719],[2310,720],[2311,4],[2312,721],[2313,4],[2314,889],[2315,898],[2314,732],[2317,734],[2318,735],[2319,736],[2320,686],[2321,738],[2322,892],[2323,689],[2324,904],[2325,905],[2289,636],[2327,4],[2328,769],[2329,4],[2330,773],[2331,779],[2331,773],[2333,906],[2331,774],[2331,907],[2328,908],[2337,4],[2338,909],[197,910],[641,237],[2341,639],[2,77],[2343,78],[2344,175],[2345,878],[2346,4],[2347,881],[2348,4],[2349,911],[2350,4],[2351,912],[2352,4],[2353,913],[2354,4],[2355,914],[2349,882],[2357,4],[2358,885],[2359,886],[2358,883],[2361,884],[2343,4],[2363,888],[2364,901],[2365,4],[2366,641],[2367,4],[2368,656],[2369,4],[2370,657],[2371,720],[2372,4],[2373,659],[2374,4],[2375,660],[2376,4],[2377,755],[2378,756],[2377,715],[2380,915],[2381,916],[2382,917],[2377,718],[2384,4],[2385,719],[2386,720],[2387,4],[2388,721],[2389,4],[2390,918],[2391,902],[2390,732],[2393,734],[2394,735],[2395,736],[2396,686],[2397,919],[2397,738],[2399,920],[2400,921],[2401,922],[2402,280],[2391,756],[2404,280],[2377,765],[2406,4],[2407,766],[2408,4],[2409,767],[2410,686],[2411,4],[2412,923],[2413,4],[2414,924],[2415,4],[2416,742],[2417,743],[2366,620],[2419,4],[2420,925],[2421,4],[2422,926],[2366,752],[2424,4],[2425,753],[2426,4],[2427,657],[2428,720],[2429,4],[2430,659],[2431,4],[2432,754],[2433,4],[2434,927],[2435,928],[2434,715],[2437,915],[2438,916],[2439,917],[2440,4],[2434,718],[2442,4],[2443,719],[2444,720],[2445,4],[2446,721],[2447,4],[2448,732],[2449,734],[2450,735],[2451,736],[2452,686],[2453,738],[2454,892],[2455,929],[2456,930],[2457,931],[2366,636],[2459,4],[2460,932],[2460,933],[2462,4],[2463,934],[2464,935],[2464,934],[2466,936],[2460,937],[2343,234],[2469,237],[2470,639],[2,938],[2472,77],[2473,4],[2474,888],[2475,939],[2476,940],[2477,4],[2478,941],[2479,4],[2480,942],[2481,943],[2482,4],[2475,901],[2484,4],[2485,641],[2486,4],[2487,656],[2488,4],[2489,657],[2490,720],[2491,4],[2492,659],[2493,4],[2494,660],[2495,4],[2496,662],[2496,927],[2498,944],[2499,280],[2496,718],[2501,4],[2502,719],[2503,720],[2504,4],[2505,721],[2506,4],[2507,732],[2508,734],[2509,735],[2510,736],[2511,686],[2512,740],[2513,945],[2507,918],[2515,946],[2512,919],[2494,748],[2518,4],[2519,749],[2520,4],[2521,750],[2522,685],[2523,4],[2524,947],[2525,4],[2526,948],[2485,752],[2528,4],[2529,753],[2530,4],[2531,657],[2532,720],[2533,4],[2534,659],[2535,4],[2536,754],[2537,4],[2538,715],[2539,915],[2540,916],[2541,949],[2538,718],[2543,4],[2544,719],[2545,720],[2546,4],[2547,721],[2548,4],[2549,732],[2550,734],[2551,735],[2552,736],[2553,686],[2554,758],[2485,636],[2556,4],[2557,933],[2558,4],[2559,934],[2560,950],[2561,951],[2562,772],[2560,934],[2564,934],[2565,934],[2566,934],[2567,936],[2560,952],[2569,328],[2560,936],[2473,234],[2572,237],[2573,639],[44,953],[2575,4],[2576,954],[2577,4],[2578,955],[2579,4],[2580,956],[2581,4],[2582,957],[2583,4],[2584,958],[479,959],[2586,125],[2587,876],[2588,877],[2589,4],[2590,146],[2591,152],[2592,125],[2593,876],[2594,877],[2595,4],[2596,130],[2597,147],[2598,125],[2599,877],[2600,4],[2601,153],[2602,154],[2603,162],[2604,163],[2605,166],[2047,876],[2607,877],[2608,4],[2609,146],[2610,152],[2611,125],[2612,876],[2613,877],[2614,4],[2615,130],[2616,147],[2617,125],[2618,877],[2619,4],[2620,153],[2621,154],[2622,155],[2623,165],[2208,4],[2625,146],[2626,152],[2627,125],[2628,876],[2629,877],[2630,4],[2631,130],[2632,147],[2633,125],[2634,877],[2635,4],[2636,153],[2637,154],[2638,162],[2639,163],[2640,166],[2,960],[2638,155],[2643,156],[2644,4],[2645,804],[2643,165],[2207,961],[479,962],[253,963],[2650,4],[2651,964],[2652,4],[2653,963],[2654,4],[2655,964],[2656,4],[2657,139],[2658,4],[2659,110],[2660,22],[2661,4],[2662,816],[2662,807],[2664,866],[2665,965],[2664,830],[2664,808],[2668,966],[2665,967],[2664,968],[2671,969],[2664,970],[2673,971],[2674,972],[2675,973],[2676,228],[2662,868],[2678,873],[2678,875],[2680,874],[2660,4],[2682,125],[2683,876],[2684,877],[2685,4],[2686,578],[2687,152],[2688,125],[2689,876],[2690,877],[2691,4],[2692,130],[2693,147],[2694,125],[2695,877],[2696,4],[2697,153],[2698,154],[2699,155],[2700,156],[2701,4],[2702,804],[2700,165],[2704,4],[2699,162],[2706,163],[2707,166],[2641,974],[138,975],[2710,4],[2711,108],[2712,4],[2713,963],[2714,4],[2715,964],[2716,4],[2717,963],[2718,4],[2719,964],[2720,4],[2721,139],[2722,4],[2723,976],[2724,977],[2725,4],[2726,125],[2727,876],[2728,877],[2729,4],[2730,578],[2731,4],[2732,978],[2733,4],[2734,125],[2735,876],[2736,877],[2737,4],[2738,578],[2739,147],[2740,125],[2741,877],[2742,4],[2743,153],[2744,979],[2745,155],[2746,165],[2647,4],[3,980],[2749,4],[2750,981],[2751,4],[2752,982],[2753,142],[2754,4],[2755,983],[2756,984],[2755,985],[2758,4],[2759,986],[2760,4],[2761,8],[2762,9],[2763,10],[2764,4],[2765,11],[2766,4],[2767,987],[2768,988],[2,989],[2770,78],[2,990],[596,991],[2773,992],[2774,4],[2775,993],[2776,4],[2777,994],[2775,991],[2779,4],[2780,995],[2781,996],[164,623],[639,997],[595,992],[2785,991],[2786,992],[2787,4],[2788,216],[2789,217],[2790,998],[2791,4],[2792,212],[2793,992],[2794,991],[2795,992],[2796,991],[2797,992],[2798,991],[2799,999],[2800,4],[2801,996],[1667,1000],[2803,232],[1959,1001],[2805,4],[2806,1002],[2807,623],[2004,1003],[2809,4],[2810,1004],[164,1005],[1661,1006],[2813,666],[2814,4],[2815,941],[2816,4],[2817,942],[2818,1007],[2819,1008],[1665,1009],[2004,1010],[2211,1011],[2823,4],[2824,879],[2825,4],[2826,880],[197,1012],[2828,4],[2829,1006],[2830,1013],[2831,4],[2832,941],[2833,4],[2834,942],[2835,1007],[2836,1008],[2829,619],[2838,4],[2839,620],[2840,4],[2841,1009],[2829,1014],[2843,4],[2844,636],[2845,4],[2846,1010],[2363,1012],[2848,1014],[2849,4],[2850,1013],[2851,4],[2852,941],[2853,4],[2854,942],[2855,1007],[2856,1008],[2850,620],[2858,4],[2859,1009],[2850,636],[2861,4],[2862,1015],[2474,1012],[2864,1014],[2865,1013],[2866,4],[2867,941],[2868,4],[2869,942],[2870,1016],[2871,4],[2872,1017],[2865,4],[2874,620],[2875,4],[2876,1009],[2874,636],[2878,4],[2879,1015]]},"frameTable":{"schema":{"location":0,"implementation":1,"optimizations":2,"line":3,"category":4},"data":[[0],[1,null,null,399,16],[2,null,null,403,4096],[3,null,null,2547,16],[4,null,null,null,64],[5,null,null,292,16],[6,null,null,109,64],[7,null,null,573,64],[8,null,null,246,64],[9,null,null,272,64],[10,null,null,310,64],[11,null,null,1218,64],[12,13],[14,null,null,35,64],[15,null,null,232,64],[16,null,null,158,64],[17,null,null,255,64],[18,13],[18,13],[19,null,null,995,64],[20,null,null,271,64],[21,null,null,311,64],[22,null,null,493,64],[23,null,null,207,64],[24,null,null,422,64],[25,null,null,375,64],[26,null,null,742,64],[19,null,null,989,64],[27,null,null,806,64],[28,null,null,922,64],[29,null,null,574,64],[30,null,null,567,64],[31,null,null,1092,64],[32,null,null,707,64],[33,13],[34,null,null,1035,64],[35,null,null,158,64],[36,null,null,439,64],[37,null,null,71,64],[38,null,null,485,64],[39,null,null,233,64],[40,null,null,643,16],[10,null,null,318,64],[41,null,null,386,64],[42,null,null,440,64],[43,null,null,883,64],[44,13],[45,null,null,643,16],[46,null,null,8,64],[47,null,null,643,16],[48,null,null,6,64],[36,13],[37,13],[38,13],[49,13],[46,null,null,12,64],[38,13],[50,null,null,643,16],[51,null,null,12,64],[18,null,null,196,64],[18,null,null,178,64],[19,null,null,993,64],[52,null,null,99,64],[53,null,null,1132,64],[54,null,null,1510,64],[55,null,null,767,64],[56,null,null,139,16],[57,null,null,675,16],[58,null,null,44,64],[59,null,null,175,64],[17,13],[18,13],[18,13],[19,13],[20,null,null,274,64],[19,13],[18,13],[60,null,null,1760,1024],[61,null,null,755,4096],[62,null,null,3256,1024],[63,null,null,3270,1024],[64,null,null,60,1024],[16,13],[52,13],[18,13],[65,null,null,914,64],[34,null,null,1039,64],[66,null,null,945,64],[54,null,null,1509,64],[16,13],[18,13],[66,null,null,939,64],[67,null,null,656,64],[19,13],[68,13],[16,13],[69,null,null,74,64],[21,13],[34,13],[54,13],[55,13],[19,13],[70,13],[16,13],[71,null,null,60,64],[72,null,null,36,64],[73,13],[19,null,null,991,64],[74,null,null,278,64],[19,13],[75,null,null,415,64],[76,null,null,311,64],[77,null,null,591,64],[78,null,null,543,64],[79,null,null,536,64],[58,13],[59,13],[16,13],[80,13],[25,13],[81,null,null,1199,128],[82,null,null,0,128],[83,null,null,1199,128],[16,null,null,153,64],[84,13],[17,13],[18,13],[18,13],[18,13],[18,13],[19,13],[85,13],[86,null,null,478,64],[87,null,null,206,64],[88,null,null,295,64],[89,null,null,206,64],[90,null,null,313,64],[19,13],[91,null,null,404,64],[19,13],[18,13],[91,null,null,398,64],[19,13],[92,null,null,345,64],[88,null,null,284,64],[16,13],[19,13],[52,13],[68,13],[73,null,null,116,64],[16,13],[21,13],[20,13],[65,13],[34,13],[66,13],[67,13],[85,13],[86,13],[87,13],[88,13],[89,13],[66,13],[54,13],[55,13],[67,13],[55,13],[72,null,null,52,64],[58,13],[59,13],[18,13],[93,13],[94,13],[85,95],[96,null,null,4048,16],[97,null,null,625,4096],[98,null,null,1270,4096],[99,null,null,1270,4096],[100,13],[101,null,null,16358,64],[102,null,null,16481,64],[103,null,null,1031,64],[104,null,null,248,64],[105,null,null,813,64],[106,null,null,16534,64],[107,null,null,16528,64],[108,null,null,3234,64],[109,null,null,3025,64],[110,null,null,2919,64],[111,null,null,2520,64],[112,null,null,2125,64],[113,null,null,2523,64],[114,null,null,222,64],[111,null,null,2546,64],[115,null,null,2643,64],[116,null,null,2582,64],[117,null,null,2830,64],[118,null,null,2831,64],[117,null,null,2829,64],[117,null,null,2854,64],[119,null,null,271,64],[120,null,null,2855,64],[115,13],[121,null,null,2596,64],[122,null,null,2230,64],[123,null,null,5197,64],[124,null,null,4449,64],[125,13],[126,null,null,5188,64],[115,13],[127,13],[105,null,null,854,64],[128,null,null,433,64],[129,null,null,524,64],[130,null,null,601,64],[129,null,null,482,64],[131,null,null,927,64],[132,null,null,761,64],[130,13],[130,13],[129,13],[130,13],[133,null,null,647,64],[134,13],[133,13],[133,13],[16,13],[135,null,null,54,64],[136,13],[16,13],[20,13],[137,13],[138,null,null,4123,1024],[139,null,null,113,32],[140,null,null,6334,1024],[141,null,null,3624,1024],[142,null,null,2412,1024],[143,null,null,328,1024],[144,null,null,834,1024],[145,null,null,1105,1024],[146,null,null,1270,4096],[147,null,null,16485,64],[148,null,null,16422,64],[149,null,null,16189,64],[150,null,null,16209,64],[151,null,null,16250,64],[151,null,null,16256,64],[152,null,null,3779,64],[152,13],[12,13],[84,13],[152,95],[152,13],[153,13],[12,95],[153,13],[153,13],[153,13],[154,null,null,4046,64],[153,13],[155,null,null,3684,64],[156,null,null,3669,64],[157,13],[153,13],[158,13],[153,13],[159,13],[159,13],[160,13],[161,13],[155,13],[160,13],[155,13],[156,13],[157,13],[159,13],[162,13],[159,13],[162,13],[163,13],[164,null,null,0,64],[155,13],[165,null,null,0,64],[162,13],[153,13],[77,13],[78,13],[79,13],[153,13],[157,95],[162,13],[166,13],[153,95],[167,95],[153,95],[153,95],[160,95],[155,13],[155,13],[168,95],[169,95],[168,95],[159,13],[168,95],[153,13],[159,95],[153,13],[12,95],[153,13],[170,95],[160,95],[159,95],[162,95],[167,95],[155,95],[160,95],[159,95],[159,95],[162,95],[153,95],[153,95],[155,95],[153,95],[153,95],[170,95],[155,95],[153,95],[159,95],[171,null,null,0,128],[159,95],[162,95],[163,13],[159,95],[153,95],[153,95],[170,95],[168,95],[169,95],[168,95],[169,95],[172,null,null,0,64],[159,95],[160,95],[155,95],[156,95],[157,95],[153,95],[159,95],[162,95],[12,95],[168,95],[159,95],[162,95],[167,95],[153,95],[170,95],[160,95],[173,13],[153,95],[170,95],[160,95],[159,95],[162,95],[153,95],[170,95],[160,95],[174,null,null,3698,64],[175,null,null,3388,64],[176,null,null,3408,64],[177,null,null,16192,64],[178,null,null,259,64],[179,13],[180,null,null,5923,64],[181,null,null,256,64],[182,null,null,16442,64],[179,13],[180,13],[181,13],[182,13],[183,13],[184,13],[185,null,null,14984,64],[186,null,null,3563,64],[184,13],[186,13],[12,13],[186,13],[186,13],[187,13],[186,13],[186,95],[186,95],[187,95],[186,95],[186,95],[158,95],[188,95],[158,95],[186,95],[187,95],[189,null,null,4478,64],[190,null,null,4334,64],[191,null,null,8039,64],[192,null,null,7911,64],[192,null,null,7925,64],[193,null,null,5191,64],[190,null,null,4340,64],[194,null,null,9238,64],[195,null,null,9206,64],[196,null,null,8900,64],[190,null,null,4342,64],[197,null,null,13872,64],[184,13],[198,null,null,13279,64],[199,null,null,11945,64],[200,null,null,11126,64],[119,13],[198,null,null,13281,64],[201,null,null,12898,64],[202,null,null,12056,64],[119,13],[203,null,null,12079,64],[204,null,null,9958,64],[205,null,null,9929,64],[206,13],[203,null,null,12066,64],[207,13],[203,13],[204,13],[205,13],[206,13],[208,13],[203,13],[205,13],[198,null,null,13283,64],[209,null,null,13057,64],[203,13],[203,13],[209,null,null,13058,64],[210,null,null,12105,64],[211,null,null,12129,64],[88,13],[198,null,null,13285,64],[212,null,null,10023,64],[213,null,null,10024,64],[214,null,null,10010,64],[215,null,null,9950,64],[216,null,null,9921,64],[217,13],[218,null,null,0,64],[219,null,null,9979,64],[219,13],[215,13],[216,13],[217,13],[220,13],[212,null,null,10027,64],[123,13],[124,13],[221,13],[212,null,null,10031,64],[222,null,null,1916,64],[223,null,null,1964,64],[224,null,null,293,64],[38,null,null,446,64],[49,null,null,521,64],[225,null,null,643,16],[226,null,null,11,64],[227,null,null,643,16],[228,null,null,39,64],[229,null,null,1193,64],[230,null,null,14,64],[231,null,null,4057,64],[232,13],[226,null,null,19,64],[36,13],[37,13],[38,13],[233,null,null,643,16],[234,null,null,32,64],[235,null,null,495,64],[236,null,null,468,64],[38,13],[234,null,null,8,64],[237,13],[238,null,null,275,64],[239,null,null,147,64],[226,null,null,23,64],[224,null,null,359,64],[240,null,null,159,64],[241,null,null,1190,64],[242,null,null,157,64],[243,null,null,247,64],[189,null,null,4508,64],[189,13],[189,13],[244,13],[189,13],[245,13],[189,13],[244,13],[189,13],[189,13],[189,13],[189,13],[246,13],[247,null,null,14179,64],[248,null,null,14170,64],[246,13],[247,null,null,14180,64],[249,null,null,14174,64],[250,13],[251,13],[252,13],[253,13],[254,13],[189,13],[247,null,null,14178,64],[255,null,null,14166,64],[247,13],[247,13],[249,13],[247,13],[248,13],[189,13],[256,13],[247,13],[255,13],[252,13],[257,13],[189,13],[194,13],[184,13],[185,13],[258,null,null,3539,64],[259,null,null,3529,64],[185,13],[259,null,null,3531,64],[260,null,null,3532,64],[259,13],[260,13],[259,13],[12,95],[259,13],[259,13],[119,95],[184,13],[189,13],[194,13],[196,13],[198,null,null,13266,64],[261,null,null,10502,64],[262,13],[263,13],[201,null,null,12896,64],[264,null,null,12024,64],[265,13],[203,13],[266,13],[265,13],[267,13],[198,null,null,13282,64],[268,null,null,13127,64],[269,null,null,13131,64],[270,13],[271,13],[272,13],[203,13],[217,95],[240,null,null,190,64],[273,null,null,209,64],[42,null,null,441,64],[253,13],[189,13],[251,13],[256,13],[195,null,null,9136,64],[274,null,null,211,64],[19,13],[70,13],[275,null,null,1939,64],[276,null,null,232,64],[277,13],[129,13],[105,13],[278,null,null,16291,64],[108,13],[109,13],[278,null,null,16295,64],[109,13],[110,13],[111,13],[112,13],[113,13],[114,13],[279,13],[280,13],[281,null,null,2525,64],[111,13],[115,13],[282,13],[283,13],[110,13],[284,null,null,2904,64],[285,13],[105,13],[129,13],[131,null,null,941,64],[286,null,null,16088,64],[131,13],[287,null,null,15477,64],[113,13],[105,13],[288,null,null,15947,64],[289,null,null,1759,64],[290,null,null,1980,64],[291,null,null,2956,64],[292,null,null,2751,64],[293,null,null,13707,64],[294,null,null,14840,64],[295,null,null,15185,64],[296,null,null,15383,64],[297,null,null,15438,64],[298,null,null,4123,1024],[299,null,null,8884,1024],[296,null,null,15392,64],[300,null,null,4030,64],[296,null,null,15408,64],[296,null,null,15414,64],[301,null,null,3344,64],[296,null,null,15415,64],[296,null,null,15413,64],[302,null,null,15000,64],[19,13],[303,null,null,3506,64],[304,null,null,3476,64],[305,null,null,15572,64],[293,null,null,13712,64],[306,null,null,3951,1024],[307,null,null,23,1024],[308,null,null,3420,16],[295,null,null,15184,64],[309,null,null,15342,64],[310,null,null,14927,64],[311,null,null,14510,64],[195,13],[312,13],[311,null,null,14511,64],[313,13],[314,13],[123,13],[315,13],[204,13],[219,13],[216,13],[44,null,null,390,64],[309,null,null,15358,64],[316,null,null,14935,64],[317,null,null,13907,64],[318,null,null,395,64],[319,null,null,15367,64],[320,null,null,4542,64],[320,13],[321,13],[322,13],[323,null,null,4371,64],[317,null,null,13894,64],[324,null,null,391,64],[325,null,null,4381,64],[326,null,null,14915,64],[327,null,null,14301,64],[317,null,null,13918,64],[328,null,null,449,64],[328,null,null,599,64],[329,null,null,14283,64],[330,null,null,3958,64],[320,13],[325,null,null,4386,64],[331,null,null,4569,64],[332,13],[333,null,null,4431,64],[334,null,null,4575,64],[335,null,null,4426,64],[326,13],[327,13],[317,13],[317,13],[328,13],[329,13],[336,13],[332,13],[334,null,null,4570,64],[328,13],[337,13],[325,13],[331,13],[325,13],[328,13],[337,13],[325,13],[331,13],[333,13],[334,13],[328,13],[328,13],[338,13],[333,13],[321,13],[339,13],[328,13],[336,13],[340,13],[341,null,null,9224,64],[342,null,null,8819,64],[343,null,null,8012,64],[320,13],[341,null,null,9233,64],[196,13],[320,13],[344,null,null,9249,64],[317,13],[345,null,null,397,64],[346,null,null,4587,64],[347,null,null,4391,64],[348,13],[349,null,null,4226,64],[347,null,null,4398,64],[350,null,null,14918,64],[351,null,null,14491,64],[352,null,null,72,64],[352,null,null,369,64],[353,null,null,14481,64],[346,13],[347,13],[347,13],[350,13],[351,13],[352,13],[352,13],[353,13],[352,13],[354,13],[355,13],[356,13],[353,13],[336,13],[357,13],[354,13],[319,null,null,15372,64],[358,null,null,14930,64],[359,null,null,14414,64],[296,13],[305,null,null,15571,64],[360,null,null,15889,64],[361,null,null,15890,64],[320,13],[362,13],[320,13],[352,13],[363,null,null,511,1024],[354,13],[336,13],[364,13],[330,13],[365,13],[320,13],[366,null,null,14921,64],[367,null,null,14808,64],[352,null,null,347,64],[368,null,null,15790,64],[369,null,null,15782,64],[370,null,null,15511,64],[301,13],[369,13],[369,13],[369,13],[369,13],[370,null,null,15512,64],[371,null,null,15499,64],[369,13],[369,13],[371,13],[372,null,null,15513,64],[369,13],[373,13],[369,13],[368,null,null,15834,64],[374,null,null,15863,64],[302,13],[19,13],[303,13],[304,13],[375,13],[16,13],[18,13],[376,null,null,98,16],[377,null,null,259,1024],[378,null,null,4265,256],[379,null,null,292,16],[69,13],[21,13],[380,null,null,1519,256],[381,null,null,4328,256],[21,95],[85,95],[76,null,null,305,64],[76,null,null,327,64],[76,13],[135,13],[382,13],[382,13],[76,13],[12,13],[84,13],[84,13],[76,95],[76,13],[76,95],[76,95],[135,95],[382,95],[76,95],[135,95],[136,95],[136,95],[12,95],[76,95],[135,95],[136,95],[76,95],[135,13],[135,95],[382,95],[135,95],[382,95],[382,95],[382,95],[135,95],[135,95],[382,95],[382,95],[76,95],[76,95],[76,95],[135,95],[136,95],[76,95],[135,95],[136,95],[136,95],[136,95],[136,95],[136,95],[76,95],[135,95],[382,95],[76,95],[135,95],[382,95],[76,95],[135,95],[136,95],[76,95],[135,95],[382,95],[382,95],[135,13],[136,13],[76,13],[383,13],[77,13],[78,13],[79,13],[383,13],[12,95],[383,13],[18,95],[18,95],[384,null,null,1270,4096],[385,null,null,15616,64],[386,null,null,15915,64],[100,13],[385,null,null,15643,64],[387,13],[387,13],[387,13],[12,95],[385,null,null,15642,64],[293,13],[346,13],[355,13],[388,13],[353,13],[330,13],[340,95],[389,95],[390,13],[353,13],[355,13],[391,13],[352,null,null,377,64],[294,13],[362,13],[341,13],[390,13],[392,95],[369,13],[369,13],[368,13],[374,13],[293,13],[385,null,null,15625,64],[393,null,null,4044,64],[300,13],[394,13],[341,13],[342,13],[343,13],[346,13],[352,13],[353,13],[330,95],[365,95],[352,null,null,362,64],[395,null,null,14788,64],[296,13],[396,13],[320,13],[397,13],[336,95],[390,95],[392,95],[368,13],[368,13],[369,95],[369,95],[369,95],[368,13],[398,null,null,1395,16],[294,13],[317,13],[399,null,null,349,64],[400,null,null,14835,64],[401,13],[397,13],[354,13],[362,13],[328,null,null,324,64],[402,null,null,14403,64],[343,13],[369,95],[370,13],[369,95],[403,null,null,866,64],[404,null,null,903,64],[405,null,null,389,64],[406,null,null,34,64],[407,null,null,95,64],[408,null,null,238,64],[16,13],[409,null,null,1577,16],[18,95],[16,13],[11,13],[410,null,null,1270,64],[136,13],[382,95],[136,95],[135,95],[382,95],[135,95],[136,95],[136,95],[136,95],[3,null,null,160,16],[19,13],[411,null,null,408,64],[412,null,null,363,64],[413,null,null,154,64],[34,13],[414,null,null,2308,4096],[415,null,null,761,64],[416,null,null,1788,64],[417,null,null,1100,64],[418,null,null,681,64],[417,null,null,1106,64],[419,null,null,521,64],[420,null,null,450,64],[421,null,null,192,64],[428,null,null,3224,16],[429,null,null,3051,16],[130],[129],[441],[442,null,null,333,64],[133,null,null,644,64],[443,null,null,320,64],[444,null,null,1310,32],[105],[133],[297,null,null,15447,64],[360,null,null,15887,64],[467,null,null,15872,64],[368,null,null,15739,64],[468,null,null,15727,64],[469,null,null,4123,1024],[294,null,null,14834,64],[401,null,null,13969,64],[470,null,null,13950,64],[296],[368,null,null,15745,64],[100],[293],[317],[294],[368],[401],[470]]},"stringTable":["(root)","XRE_InitChildProcess","nsAppShell::ProcessGeckoEvents","PBrowser::Msg_AsyncMessage","js::RunScript","nsObserverService::NotifyObservers profiler-started","exports.makeInfallible/< (resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:107)","sanitizeHandler/< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:573)","asyncFunction (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:222)","TaskImpl (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:265)","_run (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:304)","next (self-hosted:1217)","next (self-hosted:545)","baseline","Memory (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/memory.js:34)","decorate (resource://devtools/shared/base-loader.js -> resource://devtools/shared/event-emitter.js:232)","_pullTimelineData (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/timeline.js:108)","emit (resource://devtools/shared/base-loader.js -> resource://devtools/shared/event-emitter.js:254)","emit (resource://devtools/shared/base-loader.js -> resource://devtools/shared/event-emitter.js:150)","bound (self-hosted:962)","_onTimelineData (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/recorder.js:243)","filter (self-hosted:309)","expectState/< (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/common.js:485)","Memory.prototype.startRecordingAllocations< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/memory.js:180)","_getCurrentTime (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/memory.js:422)","get originalDocShell (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/tab.js:370)","scheduleWalkerLoop/< (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:741)","walkerLoop (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:787)","process (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:911)","resolver (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:574)","checkForCompletion (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:564)","bound (self-hosted:1066)","completePromise (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:688)","schedulePromise (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:761)","bound (self-hosted:1009)","get (resource://devtools/shared/base-loader.js -> resource://devtools/shared/builtin-modules.js:151)","require (resource://devtools/shared/base-loader.js:431)","requireHook (resource://devtools/shared/Loader.jsm:67)","_require (resource://devtools/shared/base-loader.js:445)","load (resource://devtools/shared/base-loader.js:164)","mozJSSubScriptLoader::DoLoadSubScriptWithOptions resource://devtools/shared/system.js","_handleResultValue (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:374)","Promise.prototype.then (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:439)","Handler (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:879)","Promise (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:342)","mozJSSubScriptLoader::DoLoadSubScriptWithOptions resource://devtools/server/actors/performance-recording.js","resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/performance-recording.js:1","mozJSSubScriptLoader::DoLoadSubScriptWithOptions resource://devtools/shared/specs/performance-recording.js","resource://devtools/shared/base-loader.js -> resource://devtools/shared/specs/performance-recording.js:1","getRequirements (resource://devtools/shared/base-loader.js:501)","mozJSSubScriptLoader::DoLoadSubScriptWithOptions resource://devtools/shared/performance/recording-common.js","resource://devtools/shared/base-loader.js -> resource://devtools/shared/performance/recording-common.js:1","_onRecorderEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/performance.js:88)","sendReturn (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:1108)","send (resource://devtools/shared/base-loader.js -> resource://devtools/server/main.js:1509)","send (resource://devtools/shared/base-loader.js -> resource://devtools/shared/transport/transport.js:764)","PVsync::Msg_Notify","nsTimerImpl::Fire","notify (resource://gre/modules/Timer.jsm:40)","_pullTimelineData/this._dataPullTimeout< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/timeline.js:174)","nsRefreshDriver::Tick","nsViewManager::DispatchEvent","nsLayoutUtils::GetFrameForPoint","nsLayoutUtils::GetFramesForArea","ViewportFrame::BuildDisplayList","Actor/< (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:913)","_sendEvent (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:931)","write (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:655)","_onRefreshDriverTick (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/framerate.js:80)","getPendingTicks (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/framerate.js:70)","emit (resource://devtools/shared/base-loader.js -> resource://devtools/shared/old-event-emitter.js:117)","setTimeout (resource://gre/modules/Timer.jsm:59)","_setTimeoutOrIsInterval (resource://gre/modules/Timer.jsm:26)","XPCU_generateQI (resource://gre/modules/XPCOMUtils.jsm:108)","_timerCallback (resource://gre/modules/DeferredTask.jsm:266)","_emitAllocations (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/memory.js:414)","Memory.prototype.getAllocations< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/memory.js:295)","values (self-hosted:590)","CreateArrayIterator (self-hosted:542)","CreateArrayIteratorAt (self-hosted:534)","get docShells (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/timeline.js:77)","nsJSContext::GarbageCollectNow CC_WAITING","js::GCRuntime::collect","nsJSContext::GarbageCollectNow INTER_SLICE_GC","ToLength (self-hosted:23)","write/str< (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:656)","write (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:477)","write (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:206)","map (self-hosted:284)","write/< (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:206)","write (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:310)","_onGarbageCollection (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/memory.js:397)","_onGarbageCollection (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/timeline.js:335)","SetConstructorInit (self-hosted:5708)","next (self-hosted:5744)","ion","PBrowser::Msg_RealDragEvent","EventDispatcher::Dispatch","EventListenerManager::HandleEventInternal dragover","EventListenerManager::HandleEventInternal drop","eventProxy (http://localhost:1234/speedscope.3579db57.js:392)","Application/this.onDrop (http://localhost:1234/speedscope.3579db57.js:16355)","loadFromFile (http://localhost:1234/speedscope.3579db57.js:16480)","setState (http://localhost:1234/speedscope.3579db57.js:1031)","rerender (http://localhost:1234/speedscope.3579db57.js:243)","renderComponent (http://localhost:1234/speedscope.3579db57.js:776)","render (http://localhost:1234/speedscope.3579db57.js:16530)","renderLoadingBar (http://localhost:1234/speedscope.3579db57.js:16527)","css (http://localhost:1234/speedscope.3579db57.js:3229)","injectAndGetClassName (http://localhost:1234/speedscope.3579db57.js:3002)","injectStyleOnce (http://localhost:1234/speedscope.3579db57.js:2908)","generateCSS (http://localhost:1234/speedscope.3579db57.js:2504)","forEach (http://localhost:1234/speedscope.3579db57.js:2122)","generateCSS/< (http://localhost:1234/speedscope.3579db57.js:2520)","some (self-hosted:212)","generateCSSRuleset (http://localhost:1234/speedscope.3579db57.js:2636)","runStringHandlers (http://localhost:1234/speedscope.3579db57.js:2561)","animationName (http://localhost:1234/speedscope.3579db57.js:2828)","animationName/< (http://localhost:1234/speedscope.3579db57.js:2830)","forEach (self-hosted:261)","animationName/< (http://localhost:1234/speedscope.3579db57.js:2854)","transformRule (http://localhost:1234/speedscope.3579db57.js:2592)","kebabifyStyleName (http://localhost:1234/speedscope.3579db57.js:2229)","replace (self-hosted:5190)","[Symbol.replace] (self-hosted:4424)","RegExpGlobalReplaceOptFunc (self-hosted:4641)","Substring (self-hosted:5184)","h (http://localhost:1234/speedscope.3579db57.js:149)","diff (http://localhost:1234/speedscope.3579db57.js:423)","idiff (http://localhost:1234/speedscope.3579db57.js:449)","innerDiffNode (http://localhost:1234/speedscope.3579db57.js:543)","buildComponentFromVNode (http://localhost:1234/speedscope.3579db57.js:915)","setComponentProps (http://localhost:1234/speedscope.3579db57.js:736)","recollectNodeTree (http://localhost:1234/speedscope.3579db57.js:633)","removeChildren (http://localhost:1234/speedscope.3579db57.js:655)","addFrame (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/stack.js:52)","_createFrameForms (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/stack.js:159)","_onTimelineData/activeRecordings< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/recorder.js:271)","PresShell::DoFlushPendingNotifications Style","nsStyleContext::CalcStyleDifference","PresShell::Paint http://localhost:1234/","nsLayoutUtils::PaintFrame","nsDisplayList::PaintRoot","ClientLayerManager::EndTransactionInternal","ClientMultiTiledLayerBuffer::PaintThebes","ClientMultiTiledLayerBuffer::ValidateTile","EventListenerManager::HandleEventInternal loadend","loadFromFile/ resource://devtools/server/actors/script.js:1915)","_addSource (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/script.js:1951)","createNonSourceMappedActor (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/TabSources.js:293)","mozJSSubScriptLoader::DoLoadSubScriptWithOptions resource://devtools/server/actors/source.js","resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/source.js:1","mozJSSubScriptLoader::DoLoadSubScriptWithOptions resource://devtools/server/actors/breakpoint.js","resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/breakpoint.js:1","ActorClassWithSpec (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:1182)","exports.extend (resource://devtools/shared/base-loader.js -> resource://devtools/shared/extend.js:13)","getOwnPropertyDescriptors (self-hosted:4051)","getOwnPropertyDescriptor (self-hosted:4121)","mozJSSubScriptLoader::DoLoadSubScriptWithOptions resource://devtools/shared/specs/source.js","resource://devtools/shared/base-loader.js -> resource://devtools/shared/specs/source.js:1","exports.Arg (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:494)","Arg (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:468)","generateActorSpec (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:1008)","types.addActorType (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:267)","types.addType (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:146)","source (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/TabSources.js:111)","cls (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:1188)","initialize (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/source.js:143)","_mapSourceToAddon (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/source.js:247)","addRect (http://localhost:1234/speedscope.3579db57.js:14182)","getColorBucketForFrame (http://localhost:1234/speedscope.3579db57.js:14993)","RangeTreeLeafNode (http://localhost:1234/speedscope.3579db57.js:4407)","uploadToGPU (http://localhost:1234/speedscope.3579db57.js:14177)","getConfigSpaceSizeBuffer (http://localhost:1234/speedscope.3579db57.js:14169)","getColorBuffer (http://localhost:1234/speedscope.3579db57.js:14173)","buffer (http://localhost:1234/speedscope.3579db57.js:14086)","createBuffer (http://localhost:1234/speedscope.3579db57.js:6174)","reglBuffer (http://localhost:1234/speedscope.3579db57.js:6180)","initBufferFromData (http://localhost:1234/speedscope.3579db57.js:6066)","initBufferFromTypedArray (http://localhost:1234/speedscope.3579db57.js:6061)","getConfigSpaceOffsetBuffer (http://localhost:1234/speedscope.3579db57.js:14165)","RangeTreeInteriorNode (http://localhost:1234/speedscope.3579db57.js:4435)","isTypedArray (http://localhost:1234/speedscope.3579db57.js:4629)","forEachCallGrouped (http://localhost:1234/speedscope.3579db57.js:3523)","visit (http://localhost:1234/speedscope.3579db57.js:3524)","visit/< (http://localhost:1234/speedscope.3579db57.js:3531)","createREGLEnvironment (http://localhost:1234/speedscope.3579db57.js:10489)","createREGLEnvironment/< (http://localhost:1234/speedscope.3579db57.js:10502)","def (http://localhost:1234/speedscope.3579db57.js:9903)","emitPollFramebuffer (http://localhost:1234/speedscope.3579db57.js:11999)","scope/< (http://localhost:1234/speedscope.3579db57.js:9938)","then (http://localhost:1234/speedscope.3579db57.js:9964)","push (http://localhost:1234/speedscope.3579db57.js:9898)","emitScopeProc (http://localhost:1234/speedscope.3579db57.js:13114)","emitScopeProc/< (http://localhost:1234/speedscope.3579db57.js:13127)","emitScopeProc/ resource://devtools/server/actors/utils/TabSources.js:194)","_emitNewSource/< (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/TabSources.js:209)","onSourceEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/script.js:1926)","form (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/source.js:216)","get sources (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/script.js:503)","render (http://localhost:1234/speedscope.3579db57.js:16290)","generateCSS/ Function:362)","renderRects/< (http://localhost:1234/speedscope.3579db57.js:15358)","render (http://localhost:1234/speedscope.3579db57.js:4529)","hasIntersectionWith (http://localhost:1234/speedscope.3579db57.js:4125)","top (http://localhost:1234/speedscope.3579db57.js:4092)","writeToAtlasIfNeeded (http://localhost:1234/speedscope.3579db57.js:4370)","scope (http://localhost:1234/speedscope.3579db57.js line 10031 > Function:353)","writeToAtlasIfNeeded/< (http://localhost:1234/speedscope.3579db57.js:4371)","drawRectangleBatch (http://localhost:1234/speedscope.3579db57.js:14914)","render (http://localhost:1234/speedscope.3579db57.js:14300)","draw (http://localhost:1234/speedscope.3579db57.js line 10031 > Function:70)","configSpaceToNDC (http://localhost:1234/speedscope.3579db57.js:14280)","withScale (http://localhost:1234/speedscope.3579db57.js:3957)","render/< (http://localhost:1234/speedscope.3579db57.js:4567)","forEachLeafNodeWithinBounds (http://localhost:1234/speedscope.3579db57.js:4464)","forEachLeafNodeWithinBounds (http://localhost:1234/speedscope.3579db57.js:4429)","render/ Function:356)","render/< (http://localhost:1234/speedscope.3579db57.js:4580)","renderViaAtlas (http://localhost:1234/speedscope.3579db57.js:4390)","get (http://localhost:1234/speedscope.3579db57.js:4252)","remove (http://localhost:1234/speedscope.3579db57.js:4226)","drawTexture (http://localhost:1234/speedscope.3579db57.js:14917)","render (http://localhost:1234/speedscope.3579db57.js:14490)","draw (http://localhost:1234/speedscope.3579db57.js line 10031 > Function:72)","positionTransform (http://localhost:1234/speedscope.3579db57.js:14478)","uvTransform (http://localhost:1234/speedscope.3579db57.js:14472)","transformRect (http://localhost:1234/speedscope.3579db57.js:4048)","withY (http://localhost:1234/speedscope.3579db57.js:3896)","times (http://localhost:1234/speedscope.3579db57.js:3905)","drawViewportRectangle (http://localhost:1234/speedscope.3579db57.js:14929)","render (http://localhost:1234/speedscope.3579db57.js:14413)","renderRects (http://localhost:1234/speedscope.3579db57.js:15885)","renderRects/< (http://localhost:1234/speedscope.3579db57.js:15889)","configSpaceBoundsForKey (http://localhost:1234/speedscope.3579db57.js:4523)","WebGLContext::DrawArraysInstanced","scaledBy (http://localhost:1234/speedscope.3579db57.js:3960)","withScale (http://localhost:1234/speedscope.3579db57.js:3951)","drawFlamechartColorPass (http://localhost:1234/speedscope.3579db57.js:14920)","render (http://localhost:1234/speedscope.3579db57.js:14807)","renderOverlays (http://localhost:1234/speedscope.3579db57.js:15736)","renderFrameLabelAndChildren (http://localhost:1234/speedscope.3579db57.js:15766)","trimTextMid (http://localhost:1234/speedscope.3579db57.js:15510)","binarySearch (http://localhost:1234/speedscope.3579db57.js:15494)","http://localhost:1234/speedscope.3579db57.js:15512","withSize (http://localhost:1234/speedscope.3579db57.js:4113)","renderTimeIndicators (http://localhost:1234/speedscope.3579db57.js:15836)","logEvent (resource://devtools/shared/base-loader.js -> resource://devtools/shared/old-event-emitter.js:148)","PTexture::Msg___delete__","TextureChild::ActorDestroy","nsCycleCollector_forgetSkippable","nsObserverService::NotifyObservers cycle-collector-forget-skippable","nsJSContext::RunCycleCollectorSlice","nsCycleCollector_collectSlice","_assignFrameIndices (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/stack.js:139)","updateFramePacket (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/stack.js:69)","EventListenerManager::HandleEventInternal mousemove","FlamechartPanZoomView/this.onMouseMove (http://localhost:1234/speedscope.3579db57.js:15615)","updateCursor (http://localhost:1234/speedscope.3579db57.js:15915)","setHoveredLabel (http://localhost:1234/speedscope.3579db57.js:15627)","transformVector (http://localhost:1234/speedscope.3579db57.js:4032)","withTranslation (http://localhost:1234/speedscope.3579db57.js:3966)","translatedBy (http://localhost:1234/speedscope.3579db57.js:3978)","transformPosition (http://localhost:1234/speedscope.3579db57.js:4040)","times (http://localhost:1234/speedscope.3579db57.js:3984)","inverseTransformPosition (http://localhost:1234/speedscope.3579db57.js:4043)","timesScalar (http://localhost:1234/speedscope.3579db57.js:3996)","uvTransform (http://localhost:1234/speedscope.3579db57.js:14785)","configSpaceToPhysicalViewSpace (http://localhost:1234/speedscope.3579db57.js:15325)","getOrInsertKey (http://localhost:1234/speedscope.3579db57.js:4519)","PCompositorBridge::Msg_DidComposite","scope (http://localhost:1234/speedscope.3579db57.js line 10031 > Function:339)","CanvasContext/this.onBeforeFrame/< (http://localhost:1234/speedscope.3579db57.js:14834)","clear (http://localhost:1234/speedscope.3579db57.js:13953)","physicalOrigin (http://localhost:1234/speedscope.3579db57.js:14402)","sendWhenIdle (chrome://browser/content/content-sessionStore.js:858)","send (chrome://browser/content/content-sessionStore.js:884)","collectFrom/< (chrome://browser/content/content-sessionStore.js:384)","collect (resource://gre/modules/sessionstore/SessionHistory.jsm:33)","collect (resource://gre/modules/sessionstore/SessionHistory.jsm:76)","serializeEntry (resource://gre/modules/sessionstore/SessionHistory.jsm:137)","PCompositorBridge::Msg_ParentAsyncMessages","InterpretGeneratorResume (self-hosted:1269)","_emitProfilerStatus (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:407)","emitEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:357)","_onProfilerEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/recorder.js:144)","TabChild::RecvAsyncMessage debug:server1.conn1.child1:packet","receiveMessage (resource://devtools/shared/base-loader.js -> resource://devtools/shared/transport/transport.js:759)","onPacket (resource://devtools/shared/base-loader.js -> resource://devtools/server/main.js:1753)","handler (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:1096)","read (resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:675)","actorBridgeWithSpec/< (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/common.js:520)","getProfile (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:449)","getProfile (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:191)","RefreshDriverTick","Scripts","Styles","Reflow","DOMEvent","DispatchSynthMouseMove","PBrowser::Msg_RealMouseMoveEvent","PBrowser::Msg_ParentActivated","DisplayList","LayerBuilding","Rasterize","ForwardTransaction","DisplayListResources","GCMinor","GCSlice","GCMajor","Bailout_ArgumentCheck at arguments on line 309 of self-hosted:309","Bailout_ShapeGuard at jumptarget on line 657 of resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:656","Invalidate resource://devtools/shared/base-loader.js -> resource://devtools/shared/protocol.js:656","diffAttributes (http://localhost:1234/speedscope.3579db57.js:669)","setAccessor (http://localhost:1234/speedscope.3579db57.js:332)","removeNode (http://localhost:1234/speedscope.3579db57.js:318)","RestyleManager::ProcessRestyledFrames","Bailout_FirstExecution at jumptarget on line 3780 of http://localhost:1234/speedscope.3579db57.js:3776","Bailout_FirstExecution at jumptarget on line 568 of self-hosted:545","Bailout_TypeBarrierO at jumptarget on line 586 of self-hosted:545","Bailout_BoundsCheck at jumptarget on line 435 of self-hosted:428","Invalidate self-hosted:428","Invalidate self-hosted:704","Invalidate http://localhost:1234/speedscope.3579db57.js:3804","Bailout_DuringVMCall at jumptarget on line 3849 of http://localhost:1234/speedscope.3579db57.js:3804","Bailout_BoundsCheck after add on line 3841 of http://localhost:1234/speedscope.3579db57.js:3804","Bailout_ArgumentCheck at functionthis on line 590 of self-hosted:590","Bailout_ArgumentCheck at arguments on line 128 of self-hosted:128","Bailout_ArgumentCheck at arguments on line 704 of self-hosted:704","Bailout_TypeBarrierV after length on line 3569 of http://localhost:1234/speedscope.3579db57.js:3541","Bailout_DuringVMCall after strict-setprop on line 3890 of http://localhost:1234/speedscope.3579db57.js:3889","Bailout_ArgumentCheck at functionthis on line 4073 of http://localhost:1234/speedscope.3579db57.js:4073","Bailout_ArgumentCheck at functionthis on line 3889 of http://localhost:1234/speedscope.3579db57.js:3889","Bailout_NonInt32Input after strict-setelem on line 14198 of http://localhost:1234/speedscope.3579db57.js:14182","Bailout_TypeBarrierO after mul on line 14197 of http://localhost:1234/speedscope.3579db57.js:14182","Bailout_ArgumentCheck at getarg on line 249 of self-hosted:248","Bailout_NonInt32Input after call-ignores-rv on line 14980 of http://localhost:1234/speedscope.3579db57.js:14973","Bailout_ArgumentCheck at getarg on line 17 of self-hosted:16","Bailout_ArgumentCheck at checkaliasedlexical on line 16450 of http://localhost:1234/speedscope.3579db57.js:16449","updateConfigSpaceViewport (http://localhost:1234/speedscope.3579db57.js:15870)","resizeOverlayCanvasIfNeeded (http://localhost:1234/speedscope.3579db57.js:15716)","PresShell::DoFlushPendingNotifications InterruptibleLayout","clearImpl (http://localhost:1234/speedscope.3579db57.js:13931)","Bailout_TypeBarrierV after getelem on line 575 of self-hosted:545","IdleForgetSkippable","IdleCCSlice","Bailout_NonObjectInput after getprop on line 311 of resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/memory.js:295","Bailout_NonStringInput after getprop on line 170 of resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/stack.js:159","Bailout_ArgumentCheck at uninitialized on line 15766 of http://localhost:1234/speedscope.3579db57.js:15766","Bailout_TypeBarrierV after getprop on line 73 of resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/utils/stack.js:69"]}],"pausedRanges":[],"processes":[]},"configuration":{"withMarkers":true,"withTicks":true,"withMemory":false,"withAllocations":true,"allocationsSampleProbability":0.05,"allocationsMaxLogLength":125000,"bufferSize":10000000,"sampleFrequency":1},"systemHost":{"appid":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","apptype":"firefox","vendor":"Mozilla","name":"Firefox","version":"59.0.1","appbuildid":"20180315233128","platformbuildid":"20180315233128","geckobuildid":"20180315233128","platformversion":"59.0.1","geckoversion":"59.0.1","locale":"en-US","endianness":"LE","hostname":"","os":"Darwin","platform":"Darwin","hardware":"unknown","arch":"x86_64","processor":"x86_64","compiler":"gcc3","profile":"","channel":"release","brandName":"Mozilla Firefox"},"systemClient":{"appid":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","apptype":"firefox","vendor":"Mozilla","name":"Firefox","version":"59.0.1","appbuildid":"20180315233128","platformbuildid":"20180315233128","geckobuildid":"20180315233128","platformversion":"59.0.1","geckoversion":"59.0.1","locale":"en-US","endianness":"LE","hostname":"Jamess-MacBook-Pro","os":"Darwin","platform":"Darwin","hardware":"unknown","arch":"x86_64","processor":"x86_64","compiler":"gcc3","profile":"default","channel":"release","dpi":221,"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:59.0) Gecko/20100101 Firefox/59.0","width":1440,"height":900,"physicalWidth":2880,"physicalHeight":1800,"brandName":"Mozilla Firefox"},"fileType":"Recorded Performance Data","version":2} \ No newline at end of file diff --git a/sample/simple-firefox.html b/sample/simple-firefox.html new file mode 100644 index 0000000..26077bb --- /dev/null +++ b/sample/simple-firefox.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sample/simple-firefox.js b/sample/simple-firefox.js new file mode 100644 index 0000000..aa047ec --- /dev/null +++ b/sample/simple-firefox.js @@ -0,0 +1,32 @@ +function a() { + for (let i = 0; i < 1000; i++) { + b() + c() + } +} + +function b() { + for (let i = 0; i < 10; i++) { + d() + } +} + +function c() { + for (let i = 0; i < 10; i++) { + d() + } +} + +function d() { + let prod = 1 + for (let i = 1; i < 1000; i++) { + prod *= i + } + return prod +} + +console.profile('a') +a() +setTimeout(() => { + console.profileEnd('a') +}, 0) diff --git a/sample/simple-firefox.json b/sample/simple-firefox.json new file mode 100644 index 0000000..d1caf79 --- /dev/null +++ b/sample/simple-firefox.json @@ -0,0 +1 @@ +{"label":"a","duration":74.11410099998466,"markers":[],"frames":[],"memory":[],"ticks":[],"allocations":{"sites":[],"timestamps":[],"frames":[],"sizes":[]},"profile":{"libs":[{"start":4410314752,"end":4410318848,"offset":0,"name":"plugin-container","path":"/Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/plugin-container","debugName":"plugin-container","debugPath":"/Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/plugin-container","breakpadId":"B5A80C40794A3C129E5E90BE32676F300","arch":"x86_64"},{"start":4410359808,"end":4410363904,"offset":0,"name":"libplugin_child_interpose.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libplugin_child_interpose.dylib","debugName":"libplugin_child_interpose.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libplugin_child_interpose.dylib","breakpadId":"61AF87DC3B743C5088E057C011B6255F0","arch":"x86_64"},{"start":4410396672,"end":4412801024,"offset":0,"name":"libnss3.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libnss3.dylib","debugName":"libnss3.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libnss3.dylib","breakpadId":"0B2B0701F18F3BD9910BCEFB36EBF4880","arch":"x86_64"},{"start":4413046784,"end":4493787136,"offset":0,"name":"XUL","path":"/Applications/Firefox.app/Contents/MacOS/XUL","debugName":"XUL","debugPath":"/Applications/Firefox.app/Contents/MacOS/XUL","breakpadId":"EB86C47B0FFD336CA73023EDAAC39A780","arch":"x86_64"},{"start":4500041728,"end":4500176896,"offset":0,"name":"libmozglue.dylib","path":"/Applications/Firefox.app/Contents/MacOS/libmozglue.dylib","debugName":"libmozglue.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/libmozglue.dylib","breakpadId":"3A1D0C0ADA93388FA22051EAF09B44970","arch":"x86_64"},{"start":4500226048,"end":4500275200,"offset":0,"name":"liblgpllibs.dylib","path":"/Applications/Firefox.app/Contents/MacOS/liblgpllibs.dylib","debugName":"liblgpllibs.dylib","debugPath":"/Applications/Firefox.app/Contents/MacOS/liblgpllibs.dylib","breakpadId":"254E373F8EE63F6698D260FDECFD5F7E0","arch":"x86_64"},{"start":140735370268672,"end":140735377215488,"offset":0,"name":"JavaScriptCore","path":"/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore","debugName":"JavaScriptCore","debugPath":"/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore","breakpadId":"E12A9CB4C807360283576037579F6A130","arch":"x86_64"},{"start":140735377215488,"end":140735380766720,"offset":0,"name":"libobjc.A.dylib","path":"/usr/lib/libobjc.A.dylib","debugName":"libobjc.A.dylib","debugPath":"/usr/lib/libobjc.A.dylib","breakpadId":"7489D2D61EFD3414B18D2AECCCC902860","arch":"x86_64h"},{"start":140735381159936,"end":140735383891968,"offset":0,"name":"Security","path":"/System/Library/Frameworks/Security.framework/Versions/A/Security","debugName":"Security","debugPath":"/System/Library/Frameworks/Security.framework/Versions/A/Security","breakpadId":"7C5B8DEF3D0234109BD32B1251F84D4B0","arch":"x86_64"},{"start":140735383957504,"end":140735386112000,"offset":0,"name":"libicucore.A.dylib","path":"/usr/lib/libicucore.A.dylib","debugName":"libicucore.A.dylib","debugPath":"/usr/lib/libicucore.A.dylib","breakpadId":"35315A29E21C3CC58BD6E07A3AE8FC0D0","arch":"x86_64"},{"start":140735403868160,"end":140735403880448,"offset":0,"name":"libsystem_coreservices.dylib","path":"/usr/lib/system/libsystem_coreservices.dylib","debugName":"libsystem_coreservices.dylib","debugPath":"/usr/lib/system/libsystem_coreservices.dylib","breakpadId":"1B3F5AFCFFCD3ECB8B9A5538366FB20D0","arch":"x86_64"},{"start":140735403880448,"end":140735404290048,"offset":0,"name":"libAVFAudio.dylib","path":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib","debugName":"libAVFAudio.dylib","debugPath":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib","breakpadId":"1A98DBF3490B37FB928AAB1E36E6E5DD0","arch":"x86_64"},{"start":140735404322816,"end":140735404359680,"offset":0,"name":"libsystem_platform.dylib","path":"/usr/lib/system/libsystem_platform.dylib","debugName":"libsystem_platform.dylib","debugPath":"/usr/lib/system/libsystem_platform.dylib","breakpadId":"29A905EF67773C3382B06C3A88C4BA150","arch":"x86_64"},{"start":140735404359680,"end":140735404396544,"offset":0,"name":"libGFXShared.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","debugName":"libGFXShared.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","breakpadId":"1CDE5AEF3E443547879EBB490EE7702C0","arch":"x86_64"},{"start":140735404396544,"end":140735405363200,"offset":0,"name":"QuickLookUI","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI","debugName":"QuickLookUI","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI","breakpadId":"5A4AAFECD38C3DA09361CBF1D4C6B3760","arch":"x86_64"},{"start":140735405363200,"end":140735405506560,"offset":0,"name":"IconServices","path":"/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices","debugName":"IconServices","debugPath":"/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices","breakpadId":"CDEEDBE6F53B3BA182D423BCA3DD89490","arch":"x86_64"},{"start":140735406780416,"end":140735406792704,"offset":0,"name":"SecurityHI","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI","debugName":"SecurityHI","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI","breakpadId":"A4CEFD45C51C381CA57BFF75D90C680F0","arch":"x86_64"},{"start":140735406813184,"end":140735406829568,"offset":0,"name":"libsystem_sandbox.dylib","path":"/usr/lib/system/libsystem_sandbox.dylib","debugName":"libsystem_sandbox.dylib","debugPath":"/usr/lib/system/libsystem_sandbox.dylib","breakpadId":"30671DCC265F325AB33D11CD336B3DA30","arch":"x86_64"},{"start":140735408156672,"end":140735408218112,"offset":0,"name":"libbz2.1.0.dylib","path":"/usr/lib/libbz2.1.0.dylib","debugName":"libbz2.1.0.dylib","debugPath":"/usr/lib/libbz2.1.0.dylib","breakpadId":"28E54258C0FE38D4AB761734CACCB3440","arch":"x86_64"},{"start":140735408218112,"end":140735408332800,"offset":0,"name":"ApplePushService","path":"/System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService","debugName":"ApplePushService","debugPath":"/System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService","breakpadId":"CAD47B6EA5813B35885B67B206F41D5E0","arch":"x86_64"},{"start":140735409152000,"end":140735409426432,"offset":0,"name":"Metal","path":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","debugName":"Metal","debugPath":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","breakpadId":"7DCBE573B7133C50A16E2F33A84C3CFB0","arch":"x86_64"},{"start":140735410532352,"end":140735410843648,"offset":0,"name":"CoreMediaIO","path":"/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO","debugName":"CoreMediaIO","debugPath":"/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO","breakpadId":"B974A22561C634DDAC2A495BD6A393B30","arch":"x86_64"},{"start":140735411191808,"end":140735411240960,"offset":0,"name":"libChineseTokenizer.dylib","path":"/usr/lib/libChineseTokenizer.dylib","debugName":"libChineseTokenizer.dylib","debugPath":"/usr/lib/libChineseTokenizer.dylib","breakpadId":"79B8C67A30613C7892CD4650719E68D40","arch":"x86_64"},{"start":140735411240960,"end":140735411593216,"offset":0,"name":"AE","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","debugName":"AE","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","breakpadId":"AD492742F884386BA450FAC281B9FFA40","arch":"x86_64"},{"start":140735411593216,"end":140735412154368,"offset":0,"name":"CoreSymbolication","path":"/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication","debugName":"CoreSymbolication","debugPath":"/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication","breakpadId":"4730422E417834F98550BB92F2A4F44B0","arch":"x86_64"},{"start":140735412531200,"end":140735412928512,"offset":0,"name":"QuickLook","path":"/System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook","debugName":"QuickLook","debugPath":"/System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook","breakpadId":"ECD331695EB13783AF9E1AB9240F83580","arch":"x86_64"},{"start":140735438888960,"end":140735439925248,"offset":0,"name":"libFontParser.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","debugName":"libFontParser.dylib","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","breakpadId":"62796E9936B736B68D335349F88014C30","arch":"x86_64"},{"start":140735440220160,"end":140735440420864,"offset":0,"name":"CoreAVCHD","path":"/System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD","debugName":"CoreAVCHD","debugPath":"/System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD","breakpadId":"4AAFB1C4370830F9ACFA90564347204C0","arch":"x86_64"},{"start":140735440465920,"end":140735440576512,"offset":0,"name":"liblzma.5.dylib","path":"/usr/lib/liblzma.5.dylib","debugName":"liblzma.5.dylib","debugPath":"/usr/lib/liblzma.5.dylib","breakpadId":"CC03591BFA573CA5AC810D76033AC0CE0","arch":"x86_64"},{"start":140735440687104,"end":140735441022976,"offset":0,"name":"libcups.2.dylib","path":"/usr/lib/libcups.2.dylib","debugName":"libcups.2.dylib","debugPath":"/usr/lib/libcups.2.dylib","breakpadId":"4198A94DA46C39AA92B683D0BA507D6C0","arch":"x86_64"},{"start":140735441022976,"end":140735445204992,"offset":0,"name":"libLAPACK.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","debugName":"libLAPACK.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","breakpadId":"987E42B05108306587F09DF7616A8A060","arch":"x86_64h"},{"start":140735445241856,"end":140735445254144,"offset":0,"name":"libCVMSPluginSupport.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","debugName":"libCVMSPluginSupport.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","breakpadId":"4AA6710A62673062BFF227DB5E6B58920","arch":"x86_64"},{"start":140735446953984,"end":140735446962176,"offset":0,"name":"TrustEvaluationAgent","path":"/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent","debugName":"TrustEvaluationAgent","debugPath":"/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent","breakpadId":"0239494EFEFE39BC9FC7E251BA5128F10","arch":"x86_64"},{"start":140735446962176,"end":140735447252992,"offset":0,"name":"libauto.dylib","path":"/usr/lib/libauto.dylib","debugName":"libauto.dylib","debugPath":"/usr/lib/libauto.dylib","breakpadId":"999E610F41FC32A3ADCA5EC049B65DFB0","arch":"x86_64"},{"start":140735447252992,"end":140735447339008,"offset":0,"name":"libCGInterfaces.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib","debugName":"libCGInterfaces.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib","breakpadId":"5079DE4F371732FFB76A77F53236D17D0","arch":"x86_64h"},{"start":140735447384064,"end":140735447764992,"offset":0,"name":"libTIFF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","debugName":"libTIFF.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","breakpadId":"2A22E6B7213B3253838FC3EC3C8F27270","arch":"x86_64h"},{"start":140735447764992,"end":140735447818240,"offset":0,"name":"OpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","debugName":"OpenDirectory","debugPath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","breakpadId":"31A67AD55CC2350A96D7821DF4BC41960","arch":"x86_64"},{"start":140735447945216,"end":140735448260608,"offset":0,"name":"HIServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","debugName":"HIServices","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","breakpadId":"E4E1BD10F4753E199E0BA5071D158F470","arch":"x86_64"},{"start":140735448764416,"end":140735448993792,"offset":0,"name":"LDAP","path":"/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP","debugName":"LDAP","debugPath":"/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP","breakpadId":"9AE33BF2FB17342D8F1E5F83C6E6EB690","arch":"x86_64"},{"start":140735449333760,"end":140735450570752,"offset":0,"name":"CoreText","path":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","debugName":"CoreText","debugPath":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","breakpadId":"08E8640E66023A00BC2894235FD311B40","arch":"x86_64"},{"start":140735450570752,"end":140735454957568,"offset":0,"name":"FaceCore","path":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","debugName":"FaceCore","debugPath":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","breakpadId":"E54028EA42173078A2B1C52E4214D59E0","arch":"x86_64"},{"start":140735454957568,"end":140735455539200,"offset":0,"name":"libsystem_c.dylib","path":"/usr/lib/system/libsystem_c.dylib","debugName":"libsystem_c.dylib","debugPath":"/usr/lib/system/libsystem_c.dylib","breakpadId":"CDEBF2BBA57830F5846F96274951C3C50","arch":"x86_64"},{"start":140735455850496,"end":140735456432128,"offset":0,"name":"AppleJPEG","path":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","debugName":"AppleJPEG","debugPath":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","breakpadId":"558ACADAC41F3EEF82A0C2D7B13C54280","arch":"x86_64"},{"start":140735456571392,"end":140735457517568,"offset":0,"name":"libcrypto.0.9.8.dylib","path":"/usr/lib/libcrypto.0.9.8.dylib","debugName":"libcrypto.0.9.8.dylib","debugPath":"/usr/lib/libcrypto.0.9.8.dylib","breakpadId":"2486D801C7563488B5191AA6807E89480","arch":"x86_64"},{"start":140735457730560,"end":140735457841152,"offset":0,"name":"Kerberos","path":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","debugName":"Kerberos","debugPath":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","breakpadId":"1B4744BFE5AE38E2AA56E22D3270F2E80","arch":"x86_64"},{"start":140735457841152,"end":140735457857536,"offset":0,"name":"libCoreFSCache.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","debugName":"libCoreFSCache.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","breakpadId":"2389D7DAB8EF3EB4AAAFFBEDE01CDECA0","arch":"x86_64"},{"start":140735457857536,"end":140735458840576,"offset":0,"name":"libxml2.2.dylib","path":"/usr/lib/libxml2.2.dylib","debugName":"libxml2.2.dylib","debugPath":"/usr/lib/libxml2.2.dylib","breakpadId":"4096C2EA66593F22AC601E2F30BDD2B70","arch":"x86_64"},{"start":140735458840576,"end":140735458848768,"offset":0,"name":"liblangid.dylib","path":"/usr/lib/liblangid.dylib","debugName":"liblangid.dylib","debugPath":"/usr/lib/liblangid.dylib","breakpadId":"9CC4F0D15C513B69BC8FEE3A51FD08220","arch":"x86_64"},{"start":140735458930688,"end":140735459917824,"offset":0,"name":"libJP2.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","debugName":"libJP2.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","breakpadId":"27371567A1223217ADA03A446EF6A3E90","arch":"x86_64h"},{"start":140735461052416,"end":140735461494784,"offset":0,"name":"CoreWLAN","path":"/System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN","debugName":"CoreWLAN","debugPath":"/System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN","breakpadId":"3B35C5437FCE333F80C1432FA41DDCDE0","arch":"x86_64"},{"start":140735461638144,"end":140735464419328,"offset":0,"name":"CoreData","path":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","debugName":"CoreData","debugPath":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","breakpadId":"A29A54916169372B828F84EE0CFD4BC40","arch":"x86_64"},{"start":140735464419328,"end":140735464583168,"offset":0,"name":"ChunkingLibrary","path":"/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary","debugName":"ChunkingLibrary","debugPath":"/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary","breakpadId":"AD7F285C005E36BB98A35826413533BE0","arch":"x86_64"},{"start":140735464628224,"end":140735464632320,"offset":0,"name":"Carbon","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon","debugName":"Carbon","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon","breakpadId":"8F6ED60259433E29A793BC331E2C183D0","arch":"x86_64"},{"start":140735465189376,"end":140735465361408,"offset":0,"name":"libxslt.1.dylib","path":"/usr/lib/libxslt.1.dylib","debugName":"libxslt.1.dylib","debugPath":"/usr/lib/libxslt.1.dylib","breakpadId":"27DE3F2ECE963327A563788EE3E2775B0","arch":"x86_64"},{"start":140735473594368,"end":140735473623040,"offset":0,"name":"IOAccelerator","path":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","debugName":"IOAccelerator","debugPath":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","breakpadId":"851B6BF85B7F3FB59E4510AAE3BF74380","arch":"x86_64"},{"start":140735473729536,"end":140735473860608,"offset":0,"name":"Apple80211","path":"/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211","debugName":"Apple80211","debugPath":"/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211","breakpadId":"AE7795B845903714999D3FBFF6BF5D930","arch":"x86_64"},{"start":140735473860608,"end":140735473893376,"offset":0,"name":"libcompiler_rt.dylib","path":"/usr/lib/system/libcompiler_rt.dylib","debugName":"libcompiler_rt.dylib","debugPath":"/usr/lib/system/libcompiler_rt.dylib","breakpadId":"A13ECF69F59F38AE86097B731450FBCD0","arch":"x86_64"},{"start":140735474249728,"end":140735474356224,"offset":0,"name":"CFOpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","debugName":"CFOpenDirectory","debugPath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","breakpadId":"11F9567255E03F9D91715E8C56AEE9480","arch":"x86_64"},{"start":140735474421760,"end":140735474438144,"offset":0,"name":"Help","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help","debugName":"Help","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help","breakpadId":"35DA4D480BC235A18D7C40905CDF4F640","arch":"x86_64"},{"start":140735491973120,"end":140735492046848,"offset":0,"name":"libSparseBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","debugName":"libSparseBLAS.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","breakpadId":"EBEB38483468342A91A65C47F2369CD90","arch":"x86_64h"},{"start":140735492198400,"end":140735492202496,"offset":0,"name":"Quartz","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Quartz","debugName":"Quartz","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Quartz","breakpadId":"5DC3D0D99E3F3AA592F1F229907A49B90","arch":"x86_64"},{"start":140735493005312,"end":140735493021696,"offset":0,"name":"libspindump.dylib","path":"/usr/lib/libspindump.dylib","debugName":"libspindump.dylib","debugPath":"/usr/lib/libspindump.dylib","breakpadId":"48F4C6739F0C38BEB55088241E8125180","arch":"x86_64"},{"start":140735493021696,"end":140735493025792,"offset":0,"name":"libenergytrace.dylib","path":"/usr/lib/libenergytrace.dylib","debugName":"libenergytrace.dylib","debugPath":"/usr/lib/libenergytrace.dylib","breakpadId":"0A491CA734513FD5999A58AB4362682B0","arch":"x86_64"},{"start":140735493025792,"end":140735493296128,"offset":0,"name":"libGLU.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","debugName":"libGLU.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","breakpadId":"C56DDF90CF6D30D2A3E689288BE69DCB0","arch":"x86_64"},{"start":140735495749632,"end":140735495757824,"offset":0,"name":"libSystem.B.dylib","path":"/usr/lib/libSystem.B.dylib","debugName":"libSystem.B.dylib","debugPath":"/usr/lib/libSystem.B.dylib","breakpadId":"CD307E99FC5C3575BCCE0C861AA631240","arch":"x86_64"},{"start":140735495757824,"end":140735495766016,"offset":0,"name":"Print","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print","debugName":"Print","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print","breakpadId":"3E85F70CD7D434E1B88AC1F503F99CDA0","arch":"x86_64"},{"start":140735496216576,"end":140735496224768,"offset":0,"name":"libsystem_secinit.dylib","path":"/usr/lib/system/libsystem_secinit.dylib","debugName":"libsystem_secinit.dylib","debugPath":"/usr/lib/system/libsystem_secinit.dylib","breakpadId":"32B1A8C6DC843F4FB8CE9A52B47C3E6B0","arch":"x86_64"},{"start":140735496880128,"end":140735497084928,"offset":0,"name":"GSS","path":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","debugName":"GSS","debugPath":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","breakpadId":"B490333A3B3E397AAD7568846E9A91400","arch":"x86_64"},{"start":140735497084928,"end":140735497109504,"offset":0,"name":"ImageCapture","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture","debugName":"ImageCapture","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture","breakpadId":"ACECF0B77D923A22BF47E8FADF4C53780","arch":"x86_64"},{"start":140735497109504,"end":140735497228288,"offset":0,"name":"libresolv.9.dylib","path":"/usr/lib/libresolv.9.dylib","debugName":"libresolv.9.dylib","debugPath":"/usr/lib/libresolv.9.dylib","breakpadId":"A650B5C8195036A086D10B2465318BFA0","arch":"x86_64"},{"start":140735497228288,"end":140735498960896,"offset":0,"name":"AudioToolbox","path":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","debugName":"AudioToolbox","debugPath":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","breakpadId":"082319FC59F23D36AC9B94759724E3020","arch":"x86_64"},{"start":140735499005952,"end":140735499010048,"offset":0,"name":"AudioUnit","path":"/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit","debugName":"AudioUnit","debugPath":"/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit","breakpadId":"93C1D64237D43692AD35DCAD04F9610B0","arch":"x86_64"},{"start":140735506554880,"end":140735506583552,"offset":0,"name":"SpeechRecognition","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition","debugName":"SpeechRecognition","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition","breakpadId":"9E5A980AF45532D5BBEE3BD6018CC45E0","arch":"x86_64"},{"start":140735508774912,"end":140735508791296,"offset":0,"name":"Mangrove","path":"/System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove","debugName":"Mangrove","debugPath":"/System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove","breakpadId":"2D86B3AD64C33BB4BC661CFD0C90E8440","arch":"x86_64"},{"start":140735508791296,"end":140735511830528,"offset":0,"name":"CarbonCore","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","debugName":"CarbonCore","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","breakpadId":"2DBAFC9A6CD6351DB1F487D81AA6D6400","arch":"x86_64"},{"start":140735511842816,"end":140735512530944,"offset":0,"name":"LanguageModeling","path":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","debugName":"LanguageModeling","debugPath":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","breakpadId":"58C18A47BDE73CBE81C0797029D170A10","arch":"x86_64"},{"start":140735512530944,"end":140735512870912,"offset":0,"name":"ImageCaptureCore","path":"/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore","debugName":"ImageCaptureCore","debugPath":"/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore","breakpadId":"9F3123D829D2332FAD6BAB9BF1A580220","arch":"x86_64"},{"start":140735512870912,"end":140735512887296,"offset":0,"name":"IOSurface","path":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","debugName":"IOSurface","debugPath":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","breakpadId":"A0037B0A277A393E9BF6688595BD564D0","arch":"x86_64"},{"start":140735513333760,"end":140735513337856,"offset":0,"name":"libunc.dylib","path":"/usr/lib/system/libunc.dylib","debugName":"libunc.dylib","debugPath":"/usr/lib/system/libunc.dylib","breakpadId":"DDB1E947C77533B8B46163E5EB698F0E0","arch":"x86_64"},{"start":140735513337856,"end":140735513952256,"offset":0,"name":"Ink","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink","debugName":"Ink","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink","breakpadId":"1F76CF363F7936B8BC37C540AF34B3380","arch":"x86_64"},{"start":140735515729920,"end":140735515881472,"offset":0,"name":"QuartzFilters","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters","debugName":"QuartzFilters","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters","breakpadId":"F5C482E25AFB39598C01C149D48E75830","arch":"x86_64"},{"start":140735516348416,"end":140735516385280,"offset":0,"name":"libcopyfile.dylib","path":"/usr/lib/system/libcopyfile.dylib","debugName":"libcopyfile.dylib","debugPath":"/usr/lib/system/libcopyfile.dylib","breakpadId":"A48637BCF3F234F2BB684C65FD0128320","arch":"x86_64"},{"start":140735516733440,"end":140735516753920,"offset":0,"name":"libGIF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","debugName":"libGIF.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","breakpadId":"D3F44A33355E3154A4651C732AAC5F750","arch":"x86_64h"},{"start":140735516766208,"end":140735516839936,"offset":0,"name":"libsystem_trace.dylib","path":"/usr/lib/system/libsystem_trace.dylib","debugName":"libsystem_trace.dylib","debugPath":"/usr/lib/system/libsystem_trace.dylib","breakpadId":"2510454252513E8DB14A9E37207218BC0","arch":"x86_64"},{"start":140735517237248,"end":140735517409280,"offset":0,"name":"libc++abi.dylib","path":"/usr/lib/libc++abi.dylib","debugName":"libc++abi.dylib","debugPath":"/usr/lib/libc++abi.dylib","breakpadId":"DCCC81773D0935BC97842A04FEC4C71B0","arch":"x86_64"},{"start":140735517863936,"end":140735517876224,"offset":0,"name":"SecCodeWrapper","path":"/System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper","debugName":"SecCodeWrapper","debugPath":"/System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper","breakpadId":"1F83259159A83B3F943FD6D8274637820","arch":"x86_64"},{"start":140735517876224,"end":140735518990336,"offset":0,"name":"libvDSP.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","debugName":"libvDSP.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","breakpadId":"9AB6CA3C4F0E35E691849DF86E7C3DAD0","arch":"x86_64h"},{"start":140735520952320,"end":140735520956416,"offset":0,"name":"liblaunch.dylib","path":"/usr/lib/system/liblaunch.dylib","debugName":"liblaunch.dylib","debugPath":"/usr/lib/system/liblaunch.dylib","breakpadId":"1CD7619DAF2E34D18EC68021CF473D9B0","arch":"x86_64"},{"start":140735524982784,"end":140735525642240,"offset":0,"name":"ViewBridge","path":"/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge","debugName":"ViewBridge","debugPath":"/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge","breakpadId":"D8131B7EDFC93FDD9D5649821C1D15210","arch":"x86_64"},{"start":140735529152512,"end":140735529160704,"offset":0,"name":"libremovefile.dylib","path":"/usr/lib/system/libremovefile.dylib","debugName":"libremovefile.dylib","debugPath":"/usr/lib/system/libremovefile.dylib","breakpadId":"552EF39E14D7363E90594565AC2F894E0","arch":"x86_64"},{"start":140735529160704,"end":140735529222144,"offset":0,"name":"OpenGL","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","debugName":"OpenGL","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","breakpadId":"AEA28993BA3E3E0FA2F588C312ABB6340","arch":"x86_64"},{"start":140735529623552,"end":140735529803776,"offset":0,"name":"ContactsFoundation","path":"/System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation","debugName":"ContactsFoundation","debugPath":"/System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation","breakpadId":"BAE70E9DBCC83650B5546D646388EDEF0","arch":"x86_64"},{"start":140735529803776,"end":140735530147840,"offset":0,"name":"libc++.1.dylib","path":"/usr/lib/libc++.1.dylib","debugName":"libc++.1.dylib","debugPath":"/usr/lib/libc++.1.dylib","breakpadId":"8FC3D139805534989AC56467CB7F4D140","arch":"x86_64"},{"start":140735530549248,"end":140735530561536,"offset":0,"name":"libsystem_configuration.dylib","path":"/usr/lib/system/libsystem_configuration.dylib","debugName":"libsystem_configuration.dylib","debugPath":"/usr/lib/system/libsystem_configuration.dylib","breakpadId":"3DEB7DF9680437E1BC830166882FF0FF0","arch":"x86_64"},{"start":140735530561536,"end":140735530569728,"offset":0,"name":"libsystem_blocks.dylib","path":"/usr/lib/system/libsystem_blocks.dylib","debugName":"libsystem_blocks.dylib","debugPath":"/usr/lib/system/libsystem_blocks.dylib","breakpadId":"1244D9D5F6AA35BBB30786851C24B8E50","arch":"x86_64"},{"start":140735532089344,"end":140735532093440,"offset":0,"name":"Cocoa","path":"/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa","debugName":"Cocoa","debugPath":"/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa","breakpadId":"807787ABD2313F51A99BA9314623C5710","arch":"x86_64"},{"start":140735536041984,"end":140735536066560,"offset":0,"name":"libheimdal-asn1.dylib","path":"/usr/lib/libheimdal-asn1.dylib","debugName":"libheimdal-asn1.dylib","debugPath":"/usr/lib/libheimdal-asn1.dylib","breakpadId":"981DE40BFA1636F7BE928C8A115D6CD90","arch":"x86_64"},{"start":140735536066560,"end":140735536148480,"offset":0,"name":"CoreBluetooth","path":"/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth","debugName":"CoreBluetooth","debugPath":"/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth","breakpadId":"E54CA9A2A5C630C59D6E8472DBA9371E0","arch":"x86_64"},{"start":140735536406528,"end":140735536537600,"offset":0,"name":"vCard","path":"/System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard","debugName":"vCard","debugPath":"/System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard","breakpadId":"41529BD91BCC3A6292BA2A71108673550","arch":"x86_64"},{"start":140735536640000,"end":140735542026240,"offset":0,"name":"QuartzComposer","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer","debugName":"QuartzComposer","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer","breakpadId":"80235264CA1B3E3F96F75F6F52FDC5B60","arch":"x86_64"},{"start":140735542026240,"end":140735542038528,"offset":0,"name":"libRadiance.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","debugName":"libRadiance.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","breakpadId":"A5EFA292AFD43FCE8802958AD60F75DA0","arch":"x86_64h"},{"start":140735542038528,"end":140735542497280,"offset":0,"name":"DataDetectorsCore","path":"/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore","debugName":"DataDetectorsCore","debugPath":"/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore","breakpadId":"8EF4EECC4FF136DF84CF65545555A2250","arch":"x86_64"},{"start":140735542530048,"end":140735542624256,"offset":0,"name":"CoreMediaAuthoring","path":"/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring","debugName":"CoreMediaAuthoring","debugPath":"/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring","breakpadId":"06C2E0E2BA5C3BB18DD755613EDD654D0","arch":"x86_64"},{"start":140735542624256,"end":140735543107584,"offset":0,"name":"IOKit","path":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","debugName":"IOKit","debugPath":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","breakpadId":"FB2AD43B905D3BD0BE17ACE7D4D13E240","arch":"x86_64"},{"start":140735543808000,"end":140735543816192,"offset":0,"name":"libDiagnosticMessagesClient.dylib","path":"/usr/lib/libDiagnosticMessagesClient.dylib","debugName":"libDiagnosticMessagesClient.dylib","debugPath":"/usr/lib/libDiagnosticMessagesClient.dylib","breakpadId":"4243B6B421E9355B9C5A95A216233B960","arch":"x86_64"},{"start":140735543853056,"end":140735543943168,"offset":0,"name":"ToneKit","path":"/System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit","debugName":"ToneKit","debugPath":"/System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit","breakpadId":"6D5AD263308F3F708D867027569D26940","arch":"x86_64"},{"start":140735543943168,"end":140735543980032,"offset":0,"name":"FSEvents","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","debugName":"FSEvents","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","breakpadId":"7F5B7A23BC1D3FA9A9B8D534F1E1979A0","arch":"x86_64"},{"start":140735543980032,"end":140735544016896,"offset":0,"name":"libMatch.1.dylib","path":"/usr/lib/libMatch.1.dylib","debugName":"libMatch.1.dylib","debugPath":"/usr/lib/libMatch.1.dylib","breakpadId":"3AC0BFB87E693DBEA1757F3946FC45540","arch":"x86_64"},{"start":140735544782848,"end":140735544844288,"offset":0,"name":"libxar.1.dylib","path":"/usr/lib/libxar.1.dylib","debugName":"libxar.1.dylib","debugPath":"/usr/lib/libxar.1.dylib","breakpadId":"03207F662C4A3DBD8D8170F4C85903C40","arch":"x86_64"},{"start":140735546105856,"end":140735546142720,"offset":0,"name":"CoreDaemon","path":"/System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon","debugName":"CoreDaemon","debugPath":"/System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon","breakpadId":"CC53DC1292313C4F921B9A770D4633230","arch":"x86_64"},{"start":140735546482688,"end":140735546974208,"offset":0,"name":"libcorecrypto.dylib","path":"/usr/lib/system/libcorecrypto.dylib","debugName":"libcorecrypto.dylib","debugPath":"/usr/lib/system/libcorecrypto.dylib","breakpadId":"9D300121CAF838948774DF38FA65F2380","arch":"x86_64"},{"start":140735546974208,"end":140735547006976,"offset":0,"name":"PhoneNumbers","path":"/System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers","debugName":"PhoneNumbers","debugPath":"/System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers","breakpadId":"A616AFB52336385AB05816A423D2B21B0","arch":"x86_64"},{"start":140735547006976,"end":140735547461632,"offset":0,"name":"ATS","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","debugName":"ATS","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","breakpadId":"847DBFBA8D6B367B99FDC6CAA8C05C650","arch":"x86_64"},{"start":140735547539456,"end":140735547682816,"offset":0,"name":"Sharing","path":"/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing","debugName":"Sharing","debugPath":"/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing","breakpadId":"DDD2811C6ECB32F28EE169BF9657B4A80","arch":"x86_64"},{"start":140735547682816,"end":140735547707392,"offset":0,"name":"MediaAccessibility","path":"/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility","debugName":"MediaAccessibility","debugPath":"/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility","breakpadId":"C5E61B4519673602A48C31E132B998B20","arch":"x86_64"},{"start":140735547707392,"end":140735547813888,"offset":0,"name":"OpenScripting","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting","debugName":"OpenScripting","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting","breakpadId":"36EBF6A7334A3197838FE8C7B27FCDBB0","arch":"x86_64"},{"start":140735547977728,"end":140735547981824,"offset":0,"name":"CoreServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","debugName":"CoreServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","breakpadId":"78CB3EACA66E3FD9A1DFA9CF227ED3C30","arch":"x86_64"},{"start":140735548006400,"end":140735548334080,"offset":0,"name":"OpenCL","path":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","debugName":"OpenCL","debugPath":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","breakpadId":"307263BA036838C9A7FB25920343D0DF0","arch":"x86_64"},{"start":140735548334080,"end":140735548338176,"offset":0,"name":"vecLib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib","debugName":"vecLib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib","breakpadId":"054DFE32737D32119A140FC5E1A880E30","arch":"x86_64h"},{"start":140735548395520,"end":140735548514304,"offset":0,"name":"libextension.dylib","path":"/usr/lib/libextension.dylib","debugName":"libextension.dylib","debugPath":"/usr/lib/libextension.dylib","breakpadId":"FD952DA6BBEC3CB698B3E1D111C5C54E0","arch":"x86_64"},{"start":140735548514304,"end":140735548534784,"offset":0,"name":"libcache.dylib","path":"/usr/lib/system/libcache.dylib","debugName":"libcache.dylib","debugPath":"/usr/lib/system/libcache.dylib","breakpadId":"9548AAE92AB735259ECEA2A7C46884470","arch":"x86_64"},{"start":140735552184320,"end":140735552188416,"offset":0,"name":"libkeymgr.dylib","path":"/usr/lib/system/libkeymgr.dylib","debugName":"libkeymgr.dylib","debugPath":"/usr/lib/system/libkeymgr.dylib","breakpadId":"8371CE545FDD3CE9B3DFE98C761B6FE00","arch":"x86_64"},{"start":140735552188416,"end":140735553662976,"offset":0,"name":"libBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","debugName":"libBLAS.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","breakpadId":"A1398FE039D233EA9A0FB2644EEA29A00","arch":"x86_64h"},{"start":140735554510848,"end":140735555506176,"offset":0,"name":"libiconv.2.dylib","path":"/usr/lib/libiconv.2.dylib","debugName":"libiconv.2.dylib","debugPath":"/usr/lib/libiconv.2.dylib","breakpadId":"F05A0A5A92A936688F20F27CBDA26BE90","arch":"x86_64"},{"start":140735555506176,"end":140735559266304,"offset":0,"name":"vImage","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","debugName":"vImage","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","breakpadId":"4BAC9B6F748235808787AB0A5B4D331B0","arch":"x86_64h"},{"start":140735561207808,"end":140735561244672,"offset":0,"name":"NetFS","path":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","debugName":"NetFS","debugPath":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","breakpadId":"842A534624C33F229ECFE586A10EA1F20","arch":"x86_64"},{"start":140735563984896,"end":140735566397440,"offset":0,"name":"AddressBook","path":"/System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook","debugName":"AddressBook","debugPath":"/System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook","breakpadId":"8879002BC87B35959CD2B672F10DD1560","arch":"x86_64"},{"start":140735566782464,"end":140735566807040,"offset":0,"name":"TCC","path":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","debugName":"TCC","debugPath":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","breakpadId":"50F7EC605B213B9BBF2FF037EA7B12FB0","arch":"x86_64"},{"start":140735566807040,"end":140735566843904,"offset":0,"name":"AppleSRP","path":"/System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP","debugName":"AppleSRP","debugPath":"/System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP","breakpadId":"840A5C20645236BBACF729BA6CBF7C480","arch":"x86_64"},{"start":140735566843904,"end":140735566905344,"offset":0,"name":"ToneLibrary","path":"/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary","debugName":"ToneLibrary","debugPath":"/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary","breakpadId":"AF05AF349BC43BA681C17420F22C9D7D0","arch":"x86_64"},{"start":140735568654336,"end":140735568670720,"offset":0,"name":"libdyld.dylib","path":"/usr/lib/system/libdyld.dylib","debugName":"libdyld.dylib","debugPath":"/usr/lib/system/libdyld.dylib","breakpadId":"8390E026F7DE3C3294863DFF6BD131B00","arch":"x86_64"},{"start":140735568670720,"end":140735569235968,"offset":0,"name":"PerformanceAnalysis","path":"/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis","debugName":"PerformanceAnalysis","debugPath":"/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis","breakpadId":"608E8C506F593FEBB822D9B02F3287160","arch":"x86_64"},{"start":140735569235968,"end":140735571132416,"offset":0,"name":"QuartzCore","path":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","debugName":"QuartzCore","debugPath":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","breakpadId":"0283748A831836AC8B308A951FEB305A0","arch":"x86_64"},{"start":140735571132416,"end":140735571156992,"offset":0,"name":"libunwind.dylib","path":"/usr/lib/system/libunwind.dylib","debugName":"libunwind.dylib","debugPath":"/usr/lib/system/libunwind.dylib","breakpadId":"F6EB48E54D12359AAB54C937FBBE90430","arch":"x86_64"},{"start":140735571156992,"end":140735571472384,"offset":0,"name":"CoreLocation","path":"/System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation","debugName":"CoreLocation","debugPath":"/System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation","breakpadId":"6336CFC59D7D3B76B26356DD6EBD0B8D0","arch":"x86_64"},{"start":140735571472384,"end":140735576154112,"offset":0,"name":"CoreFoundation","path":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","debugName":"CoreFoundation","debugPath":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","breakpadId":"943A1383DA6A3DC0ABCDD9AEB3D0D34D0","arch":"x86_64"},{"start":140735576158208,"end":140735576162304,"offset":0,"name":"Accelerate","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate","debugName":"Accelerate","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate","breakpadId":"185EC96A5AF03620A4ED4D3654D25B390","arch":"x86_64h"},{"start":140735577632768,"end":140735577636864,"offset":0,"name":"libmetal_timestamp.dylib","path":"/System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib","debugName":"libmetal_timestamp.dylib","debugPath":"/System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib","breakpadId":"6576F284BACA332AA6E7FA1C347636E30","arch":"x86_64"},{"start":140735580123136,"end":140735580545024,"offset":0,"name":"libsystem_network.dylib","path":"/usr/lib/system/libsystem_network.dylib","debugName":"libsystem_network.dylib","debugPath":"/usr/lib/system/libsystem_network.dylib","breakpadId":"269E5ADD692231E28D557B777263AC0D0","arch":"x86_64"},{"start":140735580545024,"end":140735580934144,"offset":0,"name":"SystemConfiguration","path":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","debugName":"SystemConfiguration","debugPath":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","breakpadId":"10082F5861903A7C8B6CC12B16DC793A0","arch":"x86_64"},{"start":140735581089792,"end":140735581282304,"offset":0,"name":"CoreServicesInternal","path":"/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal","debugName":"CoreServicesInternal","debugPath":"/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal","breakpadId":"6E111F0AD7F13738ADE7CF983BD4EC8B0","arch":"x86_64"},{"start":140735582711808,"end":140735582724096,"offset":0,"name":"ExceptionHandling","path":"/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling","debugName":"ExceptionHandling","debugPath":"/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling","breakpadId":"086E1FB38B753241958506C43B51F2C80","arch":"x86_64"},{"start":140735583088640,"end":140735583211520,"offset":0,"name":"AppleVPA","path":"/System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA","debugName":"AppleVPA","debugPath":"/System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA","breakpadId":"F4AF2363B28E3097AB1EFDA1C92F8F560","arch":"x86_64"},{"start":140735583211520,"end":140735583453184,"offset":0,"name":"DebugSymbols","path":"/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols","debugName":"DebugSymbols","debugPath":"/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols","breakpadId":"23A42C53B94138719EE24C87A46005B50","arch":"x86_64"},{"start":140735583453184,"end":140735583465472,"offset":0,"name":"loginsupport","path":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","debugName":"loginsupport","debugPath":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","breakpadId":"9B2F5F9BED38313FB798D2B667BCD6B50","arch":"x86_64"},{"start":140735583490048,"end":140735583592448,"offset":0,"name":"libcompression.dylib","path":"/usr/lib/libcompression.dylib","debugName":"libcompression.dylib","debugPath":"/usr/lib/libcompression.dylib","breakpadId":"E7601B621053369D8A9E91CF862392200","arch":"x86_64h"},{"start":140735583645696,"end":140735583838208,"offset":0,"name":"libsandbox.1.dylib","path":"/usr/lib/libsandbox.1.dylib","debugName":"libsandbox.1.dylib","debugPath":"/usr/lib/libsandbox.1.dylib","breakpadId":"26158471870A32699E2B7D7963B8E9F30","arch":"x86_64"},{"start":140735583838208,"end":140735583936512,"offset":0,"name":"libmarisa.dylib","path":"/usr/lib/libmarisa.dylib","debugName":"libmarisa.dylib","debugPath":"/usr/lib/libmarisa.dylib","breakpadId":"E4919B03D9BD3AF8B436C415C98E3F0A0","arch":"x86_64"},{"start":140735583936512,"end":140735584178176,"offset":0,"name":"QD","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","debugName":"QD","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","breakpadId":"0FE5318028953D14A1E7F82DE1D106E10","arch":"x86_64"},{"start":140735584178176,"end":140735584198656,"offset":0,"name":"CommonPanels","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels","debugName":"CommonPanels","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels","breakpadId":"4AE7E5AE55B337FA9BDEB23147ADA2E90","arch":"x86_64"},{"start":140735584198656,"end":140735585533952,"offset":0,"name":"QTKit","path":"/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit","debugName":"QTKit","debugPath":"/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit","breakpadId":"88AA19A7717037988CBAB1B8D4763ADB0","arch":"x86_64"},{"start":140735585746944,"end":140735585828864,"offset":0,"name":"ContactsPersistence","path":"/System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence","debugName":"ContactsPersistence","debugPath":"/System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence","breakpadId":"71232F2011BD370D9F43F262BFE46C930","arch":"x86_64"},{"start":140735585828864,"end":140735586017280,"offset":0,"name":"libdispatch.dylib","path":"/usr/lib/system/libdispatch.dylib","debugName":"libdispatch.dylib","debugPath":"/usr/lib/system/libdispatch.dylib","breakpadId":"C749985761A53D7DA5EA65DCC8C3DF920","arch":"x86_64"},{"start":140735586385920,"end":140735587004416,"offset":0,"name":"ColorSync","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync","debugName":"ColorSync","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync","breakpadId":"8FC37E2065793CB29D49BC39FC38DF870","arch":"x86_64"},{"start":140735587004416,"end":140735587119104,"offset":0,"name":"libCRFSuite.dylib","path":"/usr/lib/libCRFSuite.dylib","debugName":"libCRFSuite.dylib","debugPath":"/usr/lib/libCRFSuite.dylib","breakpadId":"078B4CD86A8C3067B2BA0C2A0BAB8AC30","arch":"x86_64"},{"start":140735587278848,"end":140735588171776,"offset":0,"name":"CoreMedia","path":"/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia","debugName":"CoreMedia","debugPath":"/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia","breakpadId":"D2A49E529D2635A8BDDC3BCDBEC5A19E0","arch":"x86_64"},{"start":140735588188160,"end":140735588278272,"offset":0,"name":"AppContainer","path":"/System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer","debugName":"AppContainer","debugPath":"/System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer","breakpadId":"F220E7021C003BD29943C7E75C3B44180","arch":"x86_64"},{"start":140735588278272,"end":140735588315136,"offset":0,"name":"libsystem_networkextension.dylib","path":"/usr/lib/system/libsystem_networkextension.dylib","debugName":"libsystem_networkextension.dylib","debugPath":"/usr/lib/system/libsystem_networkextension.dylib","breakpadId":"66095DC7653938F295EE458F15F6D0140","arch":"x86_64"},{"start":140735588315136,"end":140735588356096,"offset":0,"name":"libsystem_notify.dylib","path":"/usr/lib/system/libsystem_notify.dylib","debugName":"libsystem_notify.dylib","debugPath":"/usr/lib/system/libsystem_notify.dylib","breakpadId":"D48BDE340F7E34CAA0FFC578E39987CC0","arch":"x86_64"},{"start":140735588540416,"end":140735594147840,"offset":0,"name":"MediaToolbox","path":"/System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox","debugName":"MediaToolbox","debugPath":"/System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox","breakpadId":"A19F9D2553333AA090FB97F3F420A7EA0","arch":"x86_64"},{"start":140735594373120,"end":140735594713088,"offset":0,"name":"AppleVA","path":"/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA","debugName":"AppleVA","debugPath":"/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA","breakpadId":"FC1AED2CB3E231D9B16337989CD8A0730","arch":"x86_64"},{"start":140735594713088,"end":140735594762240,"offset":0,"name":"CrashReporterSupport","path":"/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport","debugName":"CrashReporterSupport","debugPath":"/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport","breakpadId":"474544AD11993ECC90E5071847BA72C60","arch":"x86_64"},{"start":140735594762240,"end":140735594913792,"offset":0,"name":"libJPEG.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","debugName":"libJPEG.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","breakpadId":"AECB826C8B143D048DEC33EE85F5150D0","arch":"x86_64h"},{"start":140735594913792,"end":140735595032576,"offset":0,"name":"libsystem_malloc.dylib","path":"/usr/lib/system/libsystem_malloc.dylib","debugName":"libsystem_malloc.dylib","debugPath":"/usr/lib/system/libsystem_malloc.dylib","breakpadId":"5748E8B2F81C34C68B134562131276780","arch":"x86_64"},{"start":140735597518848,"end":140735600623616,"offset":0,"name":"HIToolbox","path":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox","debugName":"HIToolbox","debugPath":"/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox","breakpadId":"871E52235D03364998AF9CCA3B41E3070","arch":"x86_64"},{"start":140735600623616,"end":140735600955392,"offset":0,"name":"Symbolication","path":"/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication","debugName":"Symbolication","debugPath":"/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication","breakpadId":"F70BF765FBE93F1E85CABB2F8E53E8C20","arch":"x86_64"},{"start":140735608553472,"end":140735609753600,"offset":0,"name":"libsqlite3.dylib","path":"/usr/lib/libsqlite3.dylib","debugName":"libsqlite3.dylib","debugPath":"/usr/lib/libsqlite3.dylib","breakpadId":"280D67B8F93D3587A14619F36C8175480","arch":"x86_64h"},{"start":140735609884672,"end":140735610544128,"offset":0,"name":"Metadata","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","debugName":"Metadata","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","breakpadId":"F19E0200693737999C67D26C2CE5AA5F0","arch":"x86_64"},{"start":140735610544128,"end":140735611133952,"offset":0,"name":"CorePDF","path":"/System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF","debugName":"CorePDF","debugPath":"/System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF","breakpadId":"849BBFF607003ED198DFA6E93B9B707F0","arch":"x86_64"},{"start":140735611133952,"end":140735612891136,"offset":0,"name":"AVFoundation","path":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation","debugName":"AVFoundation","debugPath":"/System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation","breakpadId":"DE524245B7EF3E9D8AA13D99A3304EF40","arch":"x86_64"},{"start":140735612891136,"end":140735612985344,"offset":0,"name":"libLinearAlgebra.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","debugName":"libLinearAlgebra.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","breakpadId":"FFE54EDFF06F3C0A864A4CA7BBFD4B2D0","arch":"x86_64"},{"start":140735612985344,"end":140735613026304,"offset":0,"name":"libsystem_pthread.dylib","path":"/usr/lib/system/libsystem_pthread.dylib","debugName":"libsystem_pthread.dylib","debugPath":"/usr/lib/system/libsystem_pthread.dylib","breakpadId":"3DD1EF4C1D1B3ABF8CC6B3B1CEEE95590","arch":"x86_64"},{"start":140735613026304,"end":140735613054976,"offset":0,"name":"XPCService","path":"/System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService","debugName":"XPCService","debugPath":"/System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService","breakpadId":"5E2122D6FFA23552BF169FD3F36B40DB0","arch":"x86_64"},{"start":140735613464576,"end":140735616180224,"offset":0,"name":"libmecabra.dylib","path":"/usr/lib/libmecabra.dylib","debugName":"libmecabra.dylib","debugPath":"/usr/lib/libmecabra.dylib","breakpadId":"EF6C0BD45FE834FB8ADF69A53CEC97A90","arch":"x86_64"},{"start":140735616180224,"end":140735616376832,"offset":0,"name":"SecurityInterface","path":"/System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface","debugName":"SecurityInterface","debugPath":"/System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface","breakpadId":"1BB39B19DD74347EA3440E67817735770","arch":"x86_64"},{"start":140735616376832,"end":140735618523136,"offset":0,"name":"libFosl_dynamic.dylib","path":"/usr/lib/libFosl_dynamic.dylib","debugName":"libFosl_dynamic.dylib","debugPath":"/usr/lib/libFosl_dynamic.dylib","breakpadId":"5F9DB82DFD4B39528531CE020F93ED490","arch":"x86_64"},{"start":140735618523136,"end":140735618781184,"offset":0,"name":"libGLImage.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","debugName":"libGLImage.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","breakpadId":"734B133FE7893A259DE61CCBA4896D4D0","arch":"x86_64"},{"start":140735619538944,"end":140735619710976,"offset":0,"name":"libsystem_info.dylib","path":"/usr/lib/system/libsystem_info.dylib","debugName":"libsystem_info.dylib","debugPath":"/usr/lib/system/libsystem_info.dylib","breakpadId":"6B01C09EA3E53C71B370D0CABD11A4360","arch":"x86_64"},{"start":140735629733888,"end":140735629750272,"offset":0,"name":"libScreenReader.dylib","path":"/usr/lib/libScreenReader.dylib","debugName":"libScreenReader.dylib","debugPath":"/usr/lib/libScreenReader.dylib","breakpadId":"16FC79D145733E90945FCBA22D5185FD0","arch":"x86_64"},{"start":140735629750272,"end":140735630209024,"offset":0,"name":"SearchKit","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","debugName":"SearchKit","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","breakpadId":"F159A88834CA36F1AC8EEB1B38C9DFB30","arch":"x86_64"},{"start":140735630209024,"end":140735630225408,"offset":0,"name":"AppleSystemInfo","path":"/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo","debugName":"AppleSystemInfo","debugPath":"/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo","breakpadId":"6932B5EC0EA9333DBF7E665047392FEC0","arch":"x86_64"},{"start":140735631126528,"end":140735631179776,"offset":0,"name":"SpeechSynthesis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","debugName":"SpeechSynthesis","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","breakpadId":"71DA00B85EA2326B881459DB25512F650","arch":"x86_64"},{"start":140735631179776,"end":140735631396864,"offset":0,"name":"CoreVideo","path":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","debugName":"CoreVideo","debugPath":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","breakpadId":"1AA24A1BCB843F6BB6DE11494542649C0","arch":"x86_64"},{"start":140735631396864,"end":140735631462400,"offset":0,"name":"LangAnalysis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","debugName":"LangAnalysis","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","breakpadId":"18D21123A3E73851974A08E5D45404750","arch":"x86_64"},{"start":140735633747968,"end":140735634227200,"offset":0,"name":"SecurityFoundation","path":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","debugName":"SecurityFoundation","debugPath":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","breakpadId":"1F6BDF183CF03E858D9B0663599B99490","arch":"x86_64"},{"start":140735635152896,"end":140735635632128,"offset":0,"name":"Heimdal","path":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","debugName":"Heimdal","debugPath":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","breakpadId":"5D3653818B5E32598867FC4A7D307BDE0","arch":"x86_64"},{"start":140735635828736,"end":140735636164608,"offset":0,"name":"CoreAudio","path":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","debugName":"CoreAudio","debugPath":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","breakpadId":"3D62A9B367A83F8AA10205E3102490750","arch":"x86_64"},{"start":140735636164608,"end":140735638401024,"offset":0,"name":"CoreImage","path":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","debugName":"CoreImage","debugPath":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","breakpadId":"6EE4A68650C83D77A036BE8AA0F8A2FD0","arch":"x86_64"},{"start":140735638425600,"end":140735638851584,"offset":0,"name":"CoreWiFi","path":"/System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi","debugName":"CoreWiFi","debugPath":"/System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi","breakpadId":"993592F1B3F13FAD87BDEA83C361BCCF0","arch":"x86_64"},{"start":140735638851584,"end":140735638900736,"offset":0,"name":"libkxld.dylib","path":"/usr/lib/system/libkxld.dylib","debugName":"libkxld.dylib","debugPath":"/usr/lib/system/libkxld.dylib","breakpadId":"6F776D34D06C3C48B753D0FB375A4A8A0","arch":"x86_64"},{"start":140735638900736,"end":140735640764416,"offset":0,"name":"ImageIO","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","debugName":"ImageIO","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","breakpadId":"54F18254F31B3464BB51BAF9E96204190","arch":"x86_64h"},{"start":140735640764416,"end":140735640961024,"offset":0,"name":"DictionaryServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","debugName":"DictionaryServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","breakpadId":"30250542CBAA39C191AAB57A5DE175940","arch":"x86_64"},{"start":140735644188672,"end":140735644237824,"offset":0,"name":"AppSandbox","path":"/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox","debugName":"AppSandbox","debugPath":"/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox","breakpadId":"52766210B6EB3B73AB1B42E0A9AD2EE80","arch":"x86_64"},{"start":140735644483584,"end":140735644524544,"offset":0,"name":"CommonAuth","path":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","debugName":"CommonAuth","debugPath":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","breakpadId":"4B8673E136973FE28D30AC7AC5D4F8BF0","arch":"x86_64"},{"start":140735646609408,"end":140735646633984,"offset":0,"name":"DiskArbitration","path":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","debugName":"DiskArbitration","debugPath":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","breakpadId":"F55902AA53163255A701FDED5B5530650","arch":"x86_64"},{"start":140735650611200,"end":140735650656256,"offset":0,"name":"NetAuth","path":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","debugName":"NetAuth","debugPath":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","breakpadId":"D692B1EF534F38928E2F2BBA7C8AFD740","arch":"x86_64"},{"start":140735653150720,"end":140735653875712,"offset":0,"name":"libvMisc.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","debugName":"libvMisc.dylib","debugPath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","breakpadId":"6D73C20DD1C43BA5809B4B597C15AA860","arch":"x86_64h"},{"start":140735653875712,"end":140735653896192,"offset":0,"name":"libpam.2.dylib","path":"/usr/lib/libpam.2.dylib","debugName":"libpam.2.dylib","debugPath":"/usr/lib/libpam.2.dylib","breakpadId":"CFCD19BD87BC3F2BBB1C4C23E8E55F1A0","arch":"x86_64"},{"start":140735653896192,"end":140735653945344,"offset":0,"name":"libGL.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","debugName":"libGL.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","breakpadId":"4FC6D3F965823E7DA7D1E035F0E266970","arch":"x86_64"},{"start":140735653945344,"end":140735656599552,"offset":0,"name":"CFNetwork","path":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","debugName":"CFNetwork","debugPath":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","breakpadId":"24C4A3903079358A8D5175A3E818A6DF0","arch":"x86_64"},{"start":140735656599552,"end":140735656886272,"offset":0,"name":"libFontRegistry.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","debugName":"libFontRegistry.dylib","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","breakpadId":"F3355C6EED333506B10E2F6995D34BC10","arch":"x86_64"},{"start":140735657721856,"end":140735661756416,"offset":0,"name":"CoreAUC","path":"/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC","debugName":"CoreAUC","debugPath":"/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC","breakpadId":"F80C19CA6CD030529C220288A257CCC80","arch":"x86_64"},{"start":140735661957120,"end":140735662129152,"offset":0,"name":"libRIP.A.dylib","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib","debugName":"libRIP.A.dylib","debugPath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib","breakpadId":"5F18F20D59213314A9F8F1B1CB62C83D0","arch":"x86_64"},{"start":140735662166016,"end":140735663370240,"offset":0,"name":"LaunchServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","debugName":"LaunchServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","breakpadId":"FDA38B1782E2322FA008B9207A6EA6680","arch":"x86_64"},{"start":140735663689728,"end":140735664365568,"offset":0,"name":"IOBluetooth","path":"/System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth","debugName":"IOBluetooth","debugPath":"/System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth","breakpadId":"BCF89EFE853D3AEAAE31DC8293C7284F0","arch":"x86_64"},{"start":140735664398336,"end":140735664607232,"offset":0,"name":"libTrueTypeScaler.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib","debugName":"libTrueTypeScaler.dylib","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib","breakpadId":"EA63B45B22D335469BD6EEEB7F1B48B60","arch":"x86_64"},{"start":140735665020928,"end":140735665082368,"offset":0,"name":"IntlPreferences","path":"/System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences","debugName":"IntlPreferences","debugPath":"/System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences","breakpadId":"61F6212609023324BB1D8B93297ED8990","arch":"x86_64"},{"start":140735665082368,"end":140735665094656,"offset":0,"name":"SafariServices","path":"/System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices","debugName":"SafariServices","debugPath":"/System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices","breakpadId":"396E2233E2DC391C84D2991F636A941B0","arch":"x86_64"},{"start":140735665737728,"end":140735665864704,"offset":0,"name":"libsystem_kernel.dylib","path":"/usr/lib/system/libsystem_kernel.dylib","debugName":"libsystem_kernel.dylib","debugPath":"/usr/lib/system/libsystem_kernel.dylib","breakpadId":"88C17B7F1CD83979A1A9F7BDB4FCE7890","arch":"x86_64"},{"start":140735665864704,"end":140735666061312,"offset":0,"name":"libsystem_m.dylib","path":"/usr/lib/system/libsystem_m.dylib","debugName":"libsystem_m.dylib","debugPath":"/usr/lib/system/libsystem_m.dylib","breakpadId":"08E1A4B264483DFEA58CACC7335BE7E40","arch":"x86_64"},{"start":140735666061312,"end":140735666065408,"offset":0,"name":"ApplicationServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","debugName":"ApplicationServices","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","breakpadId":"ADD57D3A142F3EF5BFD8EACD821648840","arch":"x86_64"},{"start":140735666065408,"end":140735666163712,"offset":0,"name":"libsystem_coretls.dylib","path":"/usr/lib/system/libsystem_coretls.dylib","debugName":"libsystem_coretls.dylib","debugPath":"/usr/lib/system/libsystem_coretls.dylib","breakpadId":"C90DAE384082381CA1852A6A8B6776280","arch":"x86_64"},{"start":140735666216960,"end":140735666221056,"offset":0,"name":"libOpenScriptingUtil.dylib","path":"/usr/lib/libOpenScriptingUtil.dylib","debugName":"libOpenScriptingUtil.dylib","debugPath":"/usr/lib/libOpenScriptingUtil.dylib","breakpadId":"AD0DAC8A98493077999F9AEC6112BDAB0","arch":"x86_64"},{"start":140735666221056,"end":140735666536448,"offset":0,"name":"PrintCore","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","debugName":"PrintCore","debugPath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","breakpadId":"5AE8AA6BCE09397DB0D40F9CCBF1F77D0","arch":"x86_64"},{"start":140735666679808,"end":140735668248576,"offset":0,"name":"UIFoundation","path":"/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation","debugName":"UIFoundation","debugPath":"/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation","breakpadId":"AABB5267E7B73D75B051E665BDA8DEF40","arch":"x86_64"},{"start":140735668281344,"end":140735668322304,"offset":0,"name":"DisplayServices","path":"/System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices","debugName":"DisplayServices","debugPath":"/System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices","breakpadId":"45BE1B998E1032F0A180A6B6CB5883AE0","arch":"x86_64"},{"start":140735668322304,"end":140735670870016,"offset":0,"name":"ImageKit","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit","debugName":"ImageKit","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit","breakpadId":"FAE317B8DF153096AFAC464913BF2F3B0","arch":"x86_64"},{"start":140735671201792,"end":140735671279616,"offset":0,"name":"libsasl2.2.dylib","path":"/usr/lib/libsasl2.2.dylib","debugName":"libsasl2.2.dylib","debugPath":"/usr/lib/libsasl2.2.dylib","breakpadId":"2F81C8C911A33581B2C1D8C03AB7D39C0","arch":"x86_64"},{"start":140735672180736,"end":140735672467456,"offset":0,"name":"SharedFileList","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","debugName":"SharedFileList","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","breakpadId":"1D2AD77B778F3253A2953D0A32A8121C0","arch":"x86_64"},{"start":140735673081856,"end":140735673135104,"offset":0,"name":"SpeechRecognitionCore","path":"/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore","debugName":"SpeechRecognitionCore","debugPath":"/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore","breakpadId":"6BA06290D4A3351C87F9B61EF61FF0550","arch":"x86_64"},{"start":140735673135104,"end":140735673204736,"offset":0,"name":"ProtocolBuffer","path":"/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer","debugName":"ProtocolBuffer","debugPath":"/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer","breakpadId":"BAE5E5C9DD593BB89741EEFC5E3046EE0","arch":"x86_64"},{"start":140735673204736,"end":140735673217024,"offset":0,"name":"libquarantine.dylib","path":"/usr/lib/system/libquarantine.dylib","debugName":"libquarantine.dylib","debugPath":"/usr/lib/system/libquarantine.dylib","breakpadId":"0F4169F00C843A25B3AEE47B3586D9080","arch":"x86_64"},{"start":140735675416576,"end":140735675428864,"offset":0,"name":"libCGXType.A.dylib","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib","debugName":"libCGXType.A.dylib","debugPath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib","breakpadId":"B901C222E77932EB96C25A707A09FC5B0","arch":"x86_64"},{"start":140735678193664,"end":140735681687552,"offset":0,"name":"Foundation","path":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","debugName":"Foundation","debugPath":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","breakpadId":"518331436CAE3E1C9FBABCDEB48D4ADF0","arch":"x86_64"},{"start":140735681687552,"end":140735682072576,"offset":0,"name":"OSServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","debugName":"OSServices","debugPath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","breakpadId":"4CE49D8A8304334793796075CB9064190","arch":"x86_64"},{"start":140735682801664,"end":140735684157440,"offset":0,"name":"CoreUI","path":"/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI","debugName":"CoreUI","debugPath":"/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI","breakpadId":"A3868F31ACF43EA59E7579ED44FA7F060","arch":"x86_64"},{"start":140735684190208,"end":140735684214784,"offset":0,"name":"libmacho.dylib","path":"/usr/lib/system/libmacho.dylib","debugName":"libmacho.dylib","debugPath":"/usr/lib/system/libmacho.dylib","breakpadId":"318264FA58F139D882851F6254EE410E0","arch":"x86_64"},{"start":140735684214784,"end":140735684366336,"offset":0,"name":"MultitouchSupport","path":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","debugName":"MultitouchSupport","debugPath":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","breakpadId":"CE75EDA32B223968834E550EA870ECC80","arch":"x86_64"},{"start":140735687331840,"end":140735687503872,"offset":0,"name":"libxpc.dylib","path":"/usr/lib/system/libxpc.dylib","debugName":"libxpc.dylib","debugPath":"/usr/lib/system/libxpc.dylib","breakpadId":"2CC7CF3666D4301BA6D8EBAE7405B0080","arch":"x86_64"},{"start":140735687684096,"end":140735687753728,"offset":0,"name":"libbsm.0.dylib","path":"/usr/lib/libbsm.0.dylib","debugName":"libbsm.0.dylib","debugPath":"/usr/lib/libbsm.0.dylib","breakpadId":"7E14504CA8B03574B6EB5D5FABC729260","arch":"x86_64"},{"start":140735688077312,"end":140735707262976,"offset":0,"name":"CoreGraphics","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","debugName":"CoreGraphics","debugPath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","breakpadId":"8C9F8E1A274C36CE93FB49906A9B9EE20","arch":"x86_64h"},{"start":140735707340800,"end":140735707389952,"offset":0,"name":"libcommonCrypto.dylib","path":"/usr/lib/system/libcommonCrypto.dylib","debugName":"libcommonCrypto.dylib","debugPath":"/usr/lib/system/libcommonCrypto.dylib","breakpadId":"B9D08EB8FB353F7B8A1C6FCE3F07B7E70","arch":"x86_64"},{"start":140735707828224,"end":140735707840512,"offset":0,"name":"ServiceManagement","path":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","debugName":"ServiceManagement","debugPath":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","breakpadId":"F3E145615DF4342998ED8F27A87A343A0","arch":"x86_64"},{"start":140735707840512,"end":140735708073984,"offset":0,"name":"RemoteViewServices","path":"/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices","debugName":"RemoteViewServices","debugPath":"/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices","breakpadId":"B28814498CFE3D1CB4BF1556403925330","arch":"x86_64"},{"start":140735718592512,"end":140735718772736,"offset":0,"name":"libarchive.2.dylib","path":"/usr/lib/libarchive.2.dylib","debugName":"libarchive.2.dylib","debugPath":"/usr/lib/libarchive.2.dylib","breakpadId":"6C370A2163FD3A68B4B35333F24B770B0","arch":"x86_64"},{"start":140735719694336,"end":140735720419328,"offset":0,"name":"Backup","path":"/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup","debugName":"Backup","debugPath":"/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup","breakpadId":"F304E9D1991A379E9659BF85C35B48080","arch":"x86_64"},{"start":140735720419328,"end":140735725252608,"offset":0,"name":"GeoServices","path":"/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices","debugName":"GeoServices","debugPath":"/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices","breakpadId":"928294E768973D5B9D2EBC092B6C25DE0","arch":"x86_64"},{"start":140735725281280,"end":140735725330432,"offset":0,"name":"DirectoryService","path":"/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService","debugName":"DirectoryService","debugPath":"/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService","breakpadId":"6F827D0E0F023B09B2A8252865EECA7F0","arch":"x86_64"},{"start":140735725330432,"end":140735738085376,"offset":0,"name":"AppKit","path":"/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit","debugName":"AppKit","debugPath":"/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit","breakpadId":"2492D31576B6320BB542231FCA44CA480","arch":"x86_64"},{"start":140735738155008,"end":140735738253312,"offset":0,"name":"libsystem_asl.dylib","path":"/usr/lib/system/libsystem_asl.dylib","debugName":"libsystem_asl.dylib","debugPath":"/usr/lib/system/libsystem_asl.dylib","breakpadId":"007F9094317A33EAAF62BAEAAB48C0F70","arch":"x86_64"},{"start":140735738253312,"end":140735738269696,"offset":0,"name":"libCoreVMClient.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","debugName":"libCoreVMClient.dylib","debugPath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","breakpadId":"560D70FB709F303096C9F249FCB7DA6D0","arch":"x86_64"},{"start":140735738761216,"end":140735738798080,"offset":0,"name":"libsystem_dnssd.dylib","path":"/usr/lib/system/libsystem_dnssd.dylib","debugName":"libsystem_dnssd.dylib","debugPath":"/usr/lib/system/libsystem_dnssd.dylib","breakpadId":"86A05653DCA03345B29FF320029AA05E0","arch":"x86_64"},{"start":140735738826752,"end":140735739531264,"offset":0,"name":"PDFKit","path":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit","debugName":"PDFKit","debugPath":"/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit","breakpadId":"27AF3C851C0B389C856C2E527620C1950","arch":"x86_64"},{"start":140735739650048,"end":140735739723776,"offset":0,"name":"libcmph.dylib","path":"/usr/lib/libcmph.dylib","debugName":"libcmph.dylib","debugPath":"/usr/lib/libcmph.dylib","breakpadId":"BA4BF2C67F4E33B89DD7619C9EB83ECF0","arch":"x86_64"},{"start":140735740198912,"end":140735740272640,"offset":0,"name":"libz.1.dylib","path":"/usr/lib/libz.1.dylib","debugName":"libz.1.dylib","debugPath":"/usr/lib/libz.1.dylib","breakpadId":"B3EBB42F48E332879F0D308E04D407AC0","arch":"x86_64"},{"start":140735740272640,"end":140735743926272,"offset":0,"name":"VideoToolbox","path":"/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox","debugName":"VideoToolbox","debugPath":"/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox","breakpadId":"B839BE1495033B5EA54AC7FCEED34EA30","arch":"x86_64"},{"start":140735743926272,"end":140735744081920,"offset":0,"name":"libPng.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","debugName":"libPng.dylib","debugPath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","breakpadId":"47ACF98DB5F13A03B6FD4107D5FAE5E90","arch":"x86_64h"},{"start":140735744081920,"end":140735744200704,"offset":0,"name":"GenerationalStorage","path":"/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage","debugName":"GenerationalStorage","debugPath":"/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage","breakpadId":"8C821448429437369CEF467C93785CB90","arch":"x86_64"},{"start":140735744200704,"end":140735745310720,"offset":0,"name":"DesktopServicesPriv","path":"/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv","debugName":"DesktopServicesPriv","debugPath":"/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv","breakpadId":"3A6906D4C0B830D1B5890466E5E42B690","arch":"x86_64"}],"meta":{"version":9,"startTime":1523986294997.0308,"shutdownTime":null,"interval":1,"stackwalk":0,"debug":0,"gcpoison":0,"asyncstack":0,"processType":2,"platform":"Macintosh","oscpu":"Intel Mac OS X 10.11","misc":"rv:59.0","abi":"x86_64-gcc3","toolkit":"cocoa","product":"Firefox","extensions":{"schema":{"id":0,"name":1,"baseURL":2},"data":[["screenshots@mozilla.org","Firefox Screenshots","moz-extension://30f03023-f150-1d41-94f5-c8f689462468/"]]}},"threads":[{"processType":"tab","name":"GeckoMain","tid":9101203,"pid":60640,"registerTime":23.535361,"unregisterTime":null,"samples":{"schema":{"stack":0,"time":1,"responsiveness":2,"rss":3,"uss":4},"data":[[45,0.9106829999946058,12.341081000020495],[49,2.03845799996634,13.468855999992229],[52,3.0279909999808297,14.458389000006719],[55,4.048778999975184,15.479177000001073],[52,5.030815999984043,16.46121400000993],[57,6.046769999986282,17.47716800001217],[57,7.034031999966828,18.464429999992717],[57,8.04733099997975,19.47772900000564],[57,8.841030999989016,20.271429000014905],[57,9.864089999959106,21.294487999984995],[57,11.090239999990445,22.520638000016334],[57,12.032203999959165,23.462601999985054],[59,13.046589999983553,24.47698800000944],[59,14.04434399996535,25.474741999991238],[57,15.050287999998545,26.480686000024434],[59,16.03172399997129,27.46212199999718],[59,17.036800999980187,28.467199000006076],[57,18.03345099996659,29.46384899999248],[57,19.047190999990562,30.47758900001645],[59,20.033258999988902,31.46365700001479],[59,21.05189099998097,32.48228900000686],[59,22.031463999970583,33.46186199999647],[57,23.052531999972416,34.482929999998305],[57,24.030148999998346,35.460547000024235],[57,25.050715999968816,36.481113999994704],[57,25.887595999985933,37.31799400001182],[59,27.08442999998806,38.51482800001395],[59,28.034035999968182,39.46443399999407],[57,29.04436399997212,40.47476199999801],[57,30.055023999972036,41.485421999997925],[57,31.04386700000032,42.47426500002621],[57,32.01914899997064,43.44954699999653],[57,33.051387999992585,44.481786000018474],[69,34.031278999958886,45.461676999984775],[86,34.870541999989655,46.300940000015544],[97,36.08382799997344,47.514225999999326],[98,37.01849299998139,48.44889100000728],[125,37.888738999987254,49.31913700001314]]},"markers":{"schema":{"name":0,"time":1,"data":2},"data":[[45,177314.720344,{"type":"tracing","category":"Paint","interval":"start"}],[46,177314.727175,{"type":"tracing","category":"Paint","interval":"start"}],[46,177314.759572,{"type":"tracing","category":"Paint","interval":"end"}],[45,177314.762545,{"type":"tracing","category":"Paint","interval":"end"}],[47,177315.373872]]},"stackTable":{"schema":{"prefix":0,"frame":1},"data":[[null,0],[0,1],[1,2],[2,3],[3,4],[4,5],[5,6],[6,7],[7,8],[8,9],[9,7],[10,10],[11,7],[12,11],[13,7],[14,12],[15,13],[16,14],[17,15],[18,16],[19,7],[20,17],[21,7],[22,18],[23,19],[24,20],[25,21],[26,22],[27,7],[28,23],[29,19],[30,20],[31,21],[32,22],[33,7],[34,23],[35,19],[36,20],[37,21],[38,24],[39,7],[40,23],[41,25],[42,7],[43,26],[44,27],[7,28],[46,29],[47,30],[48,31],[46,32],[50,33],[51,34],[46,35],[53,36],[54,34],[53,37],[56,38],[50,39],[58,40],[2,7],[60,41],[61,7],[62,42],[63,7],[64,42],[65,7],[66,43],[67,7],[68,44],[68,45],[70,7],[71,46],[72,21],[73,22],[74,7],[75,23],[76,19],[77,47],[78,7],[79,48],[80,7],[81,49],[82,7],[83,50],[84,7],[85,51],[76,7],[87,14],[88,15],[89,16],[90,7],[91,17],[92,7],[93,52],[94,7],[95,14],[96,53],[2,54],[60,55],[99,9],[100,7],[101,10],[102,7],[103,11],[104,7],[105,12],[106,13],[107,14],[108,15],[109,16],[110,7],[111,17],[112,7],[113,56],[114,19],[115,20],[116,21],[117,24],[118,7],[119,23],[120,7],[121,57],[122,7],[123,58],[124,7]]},"frameTable":{"schema":{"location":0,"implementation":1,"optimizations":2,"line":3,"category":4},"data":[[0],[1,null,null,399,16],[2,null,null,403,4096],[3,null,null,392,512],[4,null,null,673,512],[5,null,null,95,512],[6,null,null,140,64],[7,null,null,null,64],[8,null,null,28,64],[9,null,null,292,16],[10,11],[12,null,null,581,64],[13,null,null,317,64],[14,11],[15,11],[16,11],[16,11],[17,11],[18,null,null,147,64],[19,null,null,246,64],[20,11],[21,11],[22,11],[23,null,null,1270,64],[22,11],[24,null,null,174,64],[25,null,null,60,64],[26,null,null,52,64],[8,null,null,29,64],[27,null,null,3,64],[28,null,null,10,64],[29,11],[27,11],[30,11],[29,31],[27,11],[28,11],[28,31],[29,31],[30,31],[29,31],[32,null,null,742,64],[17,null,null,989,64],[33,null,null,806,64],[34,null,null,911,64],[34,null,null,922,64],[35,null,null,1035,64],[20,11],[36,null,null,16,64],[37,null,null,350,64],[38,null,null,4194,64],[39,null,null,4189,64],[40,null,null,99,64],[16,11],[41,null,null,383,16],[42,null,null,31,64],[18,null,null,149,64],[43,null,null,317,64],[44,null,null,685,64]]},"stringTable":["(root)","XRE_InitChildProcess","nsAppShell::ProcessGeckoEvents","nsInputStreamPump::OnInputStreamReady","nsInputStreamPump::OnStateStop","nsIncrementalStreamLoader::OnStopRequest","nsJSUtils::ExecutionContext","js::RunScript","file:///Users/jlfwong/code/speedscope/sample/simple.js:1","nsObserverService::NotifyObservers console-api-profiler","exports.makeInfallible/< (resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:107)","baseline","sanitizeHandler/< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:573)","ProfilerManager.observe< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:283)","emitEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:357)","emit (resource://devtools/shared/base-loader.js -> resource://devtools/shared/event-emitter.js:254)","emit (resource://devtools/shared/base-loader.js -> resource://devtools/shared/event-emitter.js:150)","bound (self-hosted:962)","_onProfilerEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/recorder.js:144)","asyncFunction (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:222)","TaskImpl (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:265)","_run (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:304)","next (self-hosted:1217)","InterpretGeneratorResume (self-hosted:1269)","_pullTimelineData (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/timeline.js:108)","setTimeout (resource://gre/modules/Timer.jsm:59)","_setTimeoutOrIsInterval (resource://gre/modules/Timer.jsm:26)","a (file:///Users/jlfwong/code/speedscope/sample/simple.js:1)","b (file:///Users/jlfwong/code/speedscope/sample/simple.js:8)","d (file:///Users/jlfwong/code/speedscope/sample/simple.js:20)","c (file:///Users/jlfwong/code/speedscope/sample/simple.js:14)","ion","scheduleWalkerLoop/< (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:741)","walkerLoop (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:787)","process (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:911)","bound (self-hosted:1009)","defer (resource://devtools/shared/base-loader.js -> resource://devtools/shared/defer.js:14)","Promise (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:342)","defineProperty (self-hosted:4193)","ObjectOrReflectDefineProperty (self-hosted:4142)","_onRecorderEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/performance.js:88)","nsHtml5TreeOpExecutor::RunFlushLoop","file:///Users/jlfwong/code/speedscope/sample/simple.js:30","filter (self-hosted:309)","ArraySpeciesCreate (self-hosted:673)","RefreshDriverTick","Scripts","Navigation::DOMInteractive"]}],"pausedRanges":[{"startTime":51593.999369000005,"endTime":51648.439512000004,"reason":"collecting"},{"startTime":55944.502577,"endTime":55962.657264,"reason":"collecting"},{"startTime":74987.146907,"endTime":75006.547935,"reason":"collecting"},{"startTime":78808.336169,"endTime":78826.072482,"reason":"collecting"},{"startTime":85283.517032,"endTime":85302.078038,"reason":"collecting"},{"startTime":86458.64313600001,"endTime":86477.67636099999,"reason":"collecting"},{"startTime":129570.06573999999,"endTime":129595.020708,"reason":"collecting"},{"startTime":163818.686878,"endTime":163853.58965,"reason":"collecting"},{"startTime":166504.285375,"endTime":166535.005559,"reason":"collecting"}],"processes":[]},"configuration":{"withMarkers":true,"withTicks":true,"withMemory":false,"withAllocations":true,"allocationsSampleProbability":0.05,"allocationsMaxLogLength":125000,"bufferSize":0,"sampleFrequency":1},"systemHost":{"appid":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","apptype":"firefox","vendor":"Mozilla","name":"Firefox","version":"59.0.1","appbuildid":"20180315233128","platformbuildid":"20180315233128","geckobuildid":"20180315233128","platformversion":"59.0.1","geckoversion":"59.0.1","locale":"en-US","endianness":"LE","hostname":"","os":"Darwin","platform":"Darwin","hardware":"unknown","arch":"x86_64","processor":"x86_64","compiler":"gcc3","profile":"","channel":"release","brandName":"Mozilla Firefox"},"systemClient":{"appid":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","apptype":"firefox","vendor":"Mozilla","name":"Firefox","version":"59.0.1","appbuildid":"20180315233128","platformbuildid":"20180315233128","geckobuildid":"20180315233128","platformversion":"59.0.1","geckoversion":"59.0.1","locale":"en-US","endianness":"LE","hostname":"Jamess-MacBook-Pro","os":"Darwin","platform":"Darwin","hardware":"unknown","arch":"x86_64","processor":"x86_64","compiler":"gcc3","profile":"default","channel":"release","dpi":221,"useragent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:59.0) Gecko/20100101 Firefox/59.0","width":1440,"height":900,"physicalWidth":2880,"physicalHeight":1800,"brandName":"Mozilla Firefox"},"fileType":"Recorded Performance Data","version":2} \ No newline at end of file diff --git a/sample/simple-firefox.pretty.json b/sample/simple-firefox.pretty.json new file mode 100644 index 0000000..1b1b96e --- /dev/null +++ b/sample/simple-firefox.pretty.json @@ -0,0 +1,4078 @@ +{ + "allocations": { + "frames": [], + "sites": [], + "sizes": [], + "timestamps": [] + }, + "configuration": { + "allocationsMaxLogLength": 125000, + "allocationsSampleProbability": 0.05, + "bufferSize": 0, + "sampleFrequency": 1, + "withAllocations": true, + "withMarkers": true, + "withMemory": false, + "withTicks": true + }, + "duration": 74.11410099998466, + "fileType": "Recorded Performance Data", + "frames": [], + "label": "a", + "markers": [], + "memory": [], + "profile": { + "libs": [ + { + "arch": "x86_64", + "breakpadId": "B5A80C40794A3C129E5E90BE32676F300", + "debugName": "plugin-container", + "debugPath": "/Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/plugin-container", + "end": 4410318848, + "name": "plugin-container", + "offset": 0, + "path": "/Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/plugin-container", + "start": 4410314752 + }, + { + "arch": "x86_64", + "breakpadId": "61AF87DC3B743C5088E057C011B6255F0", + "debugName": "libplugin_child_interpose.dylib", + "debugPath": "/Applications/Firefox.app/Contents/MacOS/libplugin_child_interpose.dylib", + "end": 4410363904, + "name": "libplugin_child_interpose.dylib", + "offset": 0, + "path": "/Applications/Firefox.app/Contents/MacOS/libplugin_child_interpose.dylib", + "start": 4410359808 + }, + { + "arch": "x86_64", + "breakpadId": "0B2B0701F18F3BD9910BCEFB36EBF4880", + "debugName": "libnss3.dylib", + "debugPath": "/Applications/Firefox.app/Contents/MacOS/libnss3.dylib", + "end": 4412801024, + "name": "libnss3.dylib", + "offset": 0, + "path": "/Applications/Firefox.app/Contents/MacOS/libnss3.dylib", + "start": 4410396672 + }, + { + "arch": "x86_64", + "breakpadId": "EB86C47B0FFD336CA73023EDAAC39A780", + "debugName": "XUL", + "debugPath": "/Applications/Firefox.app/Contents/MacOS/XUL", + "end": 4493787136, + "name": "XUL", + "offset": 0, + "path": "/Applications/Firefox.app/Contents/MacOS/XUL", + "start": 4413046784 + }, + { + "arch": "x86_64", + "breakpadId": "3A1D0C0ADA93388FA22051EAF09B44970", + "debugName": "libmozglue.dylib", + "debugPath": "/Applications/Firefox.app/Contents/MacOS/libmozglue.dylib", + "end": 4500176896, + "name": "libmozglue.dylib", + "offset": 0, + "path": "/Applications/Firefox.app/Contents/MacOS/libmozglue.dylib", + "start": 4500041728 + }, + { + "arch": "x86_64", + "breakpadId": "254E373F8EE63F6698D260FDECFD5F7E0", + "debugName": "liblgpllibs.dylib", + "debugPath": "/Applications/Firefox.app/Contents/MacOS/liblgpllibs.dylib", + "end": 4500275200, + "name": "liblgpllibs.dylib", + "offset": 0, + "path": "/Applications/Firefox.app/Contents/MacOS/liblgpllibs.dylib", + "start": 4500226048 + }, + { + "arch": "x86_64", + "breakpadId": "E12A9CB4C807360283576037579F6A130", + "debugName": "JavaScriptCore", + "debugPath": "/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore", + "end": 140735377215488, + "name": "JavaScriptCore", + "offset": 0, + "path": "/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore", + "start": 140735370268672 + }, + { + "arch": "x86_64h", + "breakpadId": "7489D2D61EFD3414B18D2AECCCC902860", + "debugName": "libobjc.A.dylib", + "debugPath": "/usr/lib/libobjc.A.dylib", + "end": 140735380766720, + "name": "libobjc.A.dylib", + "offset": 0, + "path": "/usr/lib/libobjc.A.dylib", + "start": 140735377215488 + }, + { + "arch": "x86_64", + "breakpadId": "7C5B8DEF3D0234109BD32B1251F84D4B0", + "debugName": "Security", + "debugPath": "/System/Library/Frameworks/Security.framework/Versions/A/Security", + "end": 140735383891968, + "name": "Security", + "offset": 0, + "path": "/System/Library/Frameworks/Security.framework/Versions/A/Security", + "start": 140735381159936 + }, + { + "arch": "x86_64", + "breakpadId": "35315A29E21C3CC58BD6E07A3AE8FC0D0", + "debugName": "libicucore.A.dylib", + "debugPath": "/usr/lib/libicucore.A.dylib", + "end": 140735386112000, + "name": "libicucore.A.dylib", + "offset": 0, + "path": "/usr/lib/libicucore.A.dylib", + "start": 140735383957504 + }, + { + "arch": "x86_64", + "breakpadId": "1B3F5AFCFFCD3ECB8B9A5538366FB20D0", + "debugName": "libsystem_coreservices.dylib", + "debugPath": "/usr/lib/system/libsystem_coreservices.dylib", + "end": 140735403880448, + "name": "libsystem_coreservices.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_coreservices.dylib", + "start": 140735403868160 + }, + { + "arch": "x86_64", + "breakpadId": "1A98DBF3490B37FB928AAB1E36E6E5DD0", + "debugName": "libAVFAudio.dylib", + "debugPath": "/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib", + "end": 140735404290048, + "name": "libAVFAudio.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib", + "start": 140735403880448 + }, + { + "arch": "x86_64", + "breakpadId": "29A905EF67773C3382B06C3A88C4BA150", + "debugName": "libsystem_platform.dylib", + "debugPath": "/usr/lib/system/libsystem_platform.dylib", + "end": 140735404359680, + "name": "libsystem_platform.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_platform.dylib", + "start": 140735404322816 + }, + { + "arch": "x86_64", + "breakpadId": "1CDE5AEF3E443547879EBB490EE7702C0", + "debugName": "libGFXShared.dylib", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib", + "end": 140735404396544, + "name": "libGFXShared.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib", + "start": 140735404359680 + }, + { + "arch": "x86_64", + "breakpadId": "5A4AAFECD38C3DA09361CBF1D4C6B3760", + "debugName": "QuickLookUI", + "debugPath": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI", + "end": 140735405363200, + "name": "QuickLookUI", + "offset": 0, + "path": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI", + "start": 140735404396544 + }, + { + "arch": "x86_64", + "breakpadId": "CDEEDBE6F53B3BA182D423BCA3DD89490", + "debugName": "IconServices", + "debugPath": "/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices", + "end": 140735405506560, + "name": "IconServices", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices", + "start": 140735405363200 + }, + { + "arch": "x86_64", + "breakpadId": "A4CEFD45C51C381CA57BFF75D90C680F0", + "debugName": "SecurityHI", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI", + "end": 140735406792704, + "name": "SecurityHI", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI", + "start": 140735406780416 + }, + { + "arch": "x86_64", + "breakpadId": "30671DCC265F325AB33D11CD336B3DA30", + "debugName": "libsystem_sandbox.dylib", + "debugPath": "/usr/lib/system/libsystem_sandbox.dylib", + "end": 140735406829568, + "name": "libsystem_sandbox.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_sandbox.dylib", + "start": 140735406813184 + }, + { + "arch": "x86_64", + "breakpadId": "28E54258C0FE38D4AB761734CACCB3440", + "debugName": "libbz2.1.0.dylib", + "debugPath": "/usr/lib/libbz2.1.0.dylib", + "end": 140735408218112, + "name": "libbz2.1.0.dylib", + "offset": 0, + "path": "/usr/lib/libbz2.1.0.dylib", + "start": 140735408156672 + }, + { + "arch": "x86_64", + "breakpadId": "CAD47B6EA5813B35885B67B206F41D5E0", + "debugName": "ApplePushService", + "debugPath": "/System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService", + "end": 140735408332800, + "name": "ApplePushService", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService", + "start": 140735408218112 + }, + { + "arch": "x86_64", + "breakpadId": "7DCBE573B7133C50A16E2F33A84C3CFB0", + "debugName": "Metal", + "debugPath": "/System/Library/Frameworks/Metal.framework/Versions/A/Metal", + "end": 140735409426432, + "name": "Metal", + "offset": 0, + "path": "/System/Library/Frameworks/Metal.framework/Versions/A/Metal", + "start": 140735409152000 + }, + { + "arch": "x86_64", + "breakpadId": "B974A22561C634DDAC2A495BD6A393B30", + "debugName": "CoreMediaIO", + "debugPath": "/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO", + "end": 140735410843648, + "name": "CoreMediaIO", + "offset": 0, + "path": "/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO", + "start": 140735410532352 + }, + { + "arch": "x86_64", + "breakpadId": "79B8C67A30613C7892CD4650719E68D40", + "debugName": "libChineseTokenizer.dylib", + "debugPath": "/usr/lib/libChineseTokenizer.dylib", + "end": 140735411240960, + "name": "libChineseTokenizer.dylib", + "offset": 0, + "path": "/usr/lib/libChineseTokenizer.dylib", + "start": 140735411191808 + }, + { + "arch": "x86_64", + "breakpadId": "AD492742F884386BA450FAC281B9FFA40", + "debugName": "AE", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE", + "end": 140735411593216, + "name": "AE", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE", + "start": 140735411240960 + }, + { + "arch": "x86_64", + "breakpadId": "4730422E417834F98550BB92F2A4F44B0", + "debugName": "CoreSymbolication", + "debugPath": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication", + "end": 140735412154368, + "name": "CoreSymbolication", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication", + "start": 140735411593216 + }, + { + "arch": "x86_64", + "breakpadId": "ECD331695EB13783AF9E1AB9240F83580", + "debugName": "QuickLook", + "debugPath": "/System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook", + "end": 140735412928512, + "name": "QuickLook", + "offset": 0, + "path": "/System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook", + "start": 140735412531200 + }, + { + "arch": "x86_64", + "breakpadId": "62796E9936B736B68D335349F88014C30", + "debugName": "libFontParser.dylib", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib", + "end": 140735439925248, + "name": "libFontParser.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib", + "start": 140735438888960 + }, + { + "arch": "x86_64", + "breakpadId": "4AAFB1C4370830F9ACFA90564347204C0", + "debugName": "CoreAVCHD", + "debugPath": "/System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD", + "end": 140735440420864, + "name": "CoreAVCHD", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD", + "start": 140735440220160 + }, + { + "arch": "x86_64", + "breakpadId": "CC03591BFA573CA5AC810D76033AC0CE0", + "debugName": "liblzma.5.dylib", + "debugPath": "/usr/lib/liblzma.5.dylib", + "end": 140735440576512, + "name": "liblzma.5.dylib", + "offset": 0, + "path": "/usr/lib/liblzma.5.dylib", + "start": 140735440465920 + }, + { + "arch": "x86_64", + "breakpadId": "4198A94DA46C39AA92B683D0BA507D6C0", + "debugName": "libcups.2.dylib", + "debugPath": "/usr/lib/libcups.2.dylib", + "end": 140735441022976, + "name": "libcups.2.dylib", + "offset": 0, + "path": "/usr/lib/libcups.2.dylib", + "start": 140735440687104 + }, + { + "arch": "x86_64h", + "breakpadId": "987E42B05108306587F09DF7616A8A060", + "debugName": "libLAPACK.dylib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", + "end": 140735445204992, + "name": "libLAPACK.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib", + "start": 140735441022976 + }, + { + "arch": "x86_64", + "breakpadId": "4AA6710A62673062BFF227DB5E6B58920", + "debugName": "libCVMSPluginSupport.dylib", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib", + "end": 140735445254144, + "name": "libCVMSPluginSupport.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib", + "start": 140735445241856 + }, + { + "arch": "x86_64", + "breakpadId": "0239494EFEFE39BC9FC7E251BA5128F10", + "debugName": "TrustEvaluationAgent", + "debugPath": "/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent", + "end": 140735446962176, + "name": "TrustEvaluationAgent", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent", + "start": 140735446953984 + }, + { + "arch": "x86_64", + "breakpadId": "999E610F41FC32A3ADCA5EC049B65DFB0", + "debugName": "libauto.dylib", + "debugPath": "/usr/lib/libauto.dylib", + "end": 140735447252992, + "name": "libauto.dylib", + "offset": 0, + "path": "/usr/lib/libauto.dylib", + "start": 140735446962176 + }, + { + "arch": "x86_64h", + "breakpadId": "5079DE4F371732FFB76A77F53236D17D0", + "debugName": "libCGInterfaces.dylib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib", + "end": 140735447339008, + "name": "libCGInterfaces.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib", + "start": 140735447252992 + }, + { + "arch": "x86_64h", + "breakpadId": "2A22E6B7213B3253838FC3EC3C8F27270", + "debugName": "libTIFF.dylib", + "debugPath": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib", + "end": 140735447764992, + "name": "libTIFF.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib", + "start": 140735447384064 + }, + { + "arch": "x86_64", + "breakpadId": "31A67AD55CC2350A96D7821DF4BC41960", + "debugName": "OpenDirectory", + "debugPath": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory", + "end": 140735447818240, + "name": "OpenDirectory", + "offset": 0, + "path": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory", + "start": 140735447764992 + }, + { + "arch": "x86_64", + "breakpadId": "E4E1BD10F4753E199E0BA5071D158F470", + "debugName": "HIServices", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices", + "end": 140735448260608, + "name": "HIServices", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices", + "start": 140735447945216 + }, + { + "arch": "x86_64", + "breakpadId": "9AE33BF2FB17342D8F1E5F83C6E6EB690", + "debugName": "LDAP", + "debugPath": "/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP", + "end": 140735448993792, + "name": "LDAP", + "offset": 0, + "path": "/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP", + "start": 140735448764416 + }, + { + "arch": "x86_64", + "breakpadId": "08E8640E66023A00BC2894235FD311B40", + "debugName": "CoreText", + "debugPath": "/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText", + "end": 140735450570752, + "name": "CoreText", + "offset": 0, + "path": "/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText", + "start": 140735449333760 + }, + { + "arch": "x86_64", + "breakpadId": "E54028EA42173078A2B1C52E4214D59E0", + "debugName": "FaceCore", + "debugPath": "/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore", + "end": 140735454957568, + "name": "FaceCore", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore", + "start": 140735450570752 + }, + { + "arch": "x86_64", + "breakpadId": "CDEBF2BBA57830F5846F96274951C3C50", + "debugName": "libsystem_c.dylib", + "debugPath": "/usr/lib/system/libsystem_c.dylib", + "end": 140735455539200, + "name": "libsystem_c.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_c.dylib", + "start": 140735454957568 + }, + { + "arch": "x86_64", + "breakpadId": "558ACADAC41F3EEF82A0C2D7B13C54280", + "debugName": "AppleJPEG", + "debugPath": "/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG", + "end": 140735456432128, + "name": "AppleJPEG", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG", + "start": 140735455850496 + }, + { + "arch": "x86_64", + "breakpadId": "2486D801C7563488B5191AA6807E89480", + "debugName": "libcrypto.0.9.8.dylib", + "debugPath": "/usr/lib/libcrypto.0.9.8.dylib", + "end": 140735457517568, + "name": "libcrypto.0.9.8.dylib", + "offset": 0, + "path": "/usr/lib/libcrypto.0.9.8.dylib", + "start": 140735456571392 + }, + { + "arch": "x86_64", + "breakpadId": "1B4744BFE5AE38E2AA56E22D3270F2E80", + "debugName": "Kerberos", + "debugPath": "/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos", + "end": 140735457841152, + "name": "Kerberos", + "offset": 0, + "path": "/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos", + "start": 140735457730560 + }, + { + "arch": "x86_64", + "breakpadId": "2389D7DAB8EF3EB4AAAFFBEDE01CDECA0", + "debugName": "libCoreFSCache.dylib", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib", + "end": 140735457857536, + "name": "libCoreFSCache.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib", + "start": 140735457841152 + }, + { + "arch": "x86_64", + "breakpadId": "4096C2EA66593F22AC601E2F30BDD2B70", + "debugName": "libxml2.2.dylib", + "debugPath": "/usr/lib/libxml2.2.dylib", + "end": 140735458840576, + "name": "libxml2.2.dylib", + "offset": 0, + "path": "/usr/lib/libxml2.2.dylib", + "start": 140735457857536 + }, + { + "arch": "x86_64", + "breakpadId": "9CC4F0D15C513B69BC8FEE3A51FD08220", + "debugName": "liblangid.dylib", + "debugPath": "/usr/lib/liblangid.dylib", + "end": 140735458848768, + "name": "liblangid.dylib", + "offset": 0, + "path": "/usr/lib/liblangid.dylib", + "start": 140735458840576 + }, + { + "arch": "x86_64h", + "breakpadId": "27371567A1223217ADA03A446EF6A3E90", + "debugName": "libJP2.dylib", + "debugPath": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib", + "end": 140735459917824, + "name": "libJP2.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib", + "start": 140735458930688 + }, + { + "arch": "x86_64", + "breakpadId": "3B35C5437FCE333F80C1432FA41DDCDE0", + "debugName": "CoreWLAN", + "debugPath": "/System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN", + "end": 140735461494784, + "name": "CoreWLAN", + "offset": 0, + "path": "/System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN", + "start": 140735461052416 + }, + { + "arch": "x86_64", + "breakpadId": "A29A54916169372B828F84EE0CFD4BC40", + "debugName": "CoreData", + "debugPath": "/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData", + "end": 140735464419328, + "name": "CoreData", + "offset": 0, + "path": "/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData", + "start": 140735461638144 + }, + { + "arch": "x86_64", + "breakpadId": "AD7F285C005E36BB98A35826413533BE0", + "debugName": "ChunkingLibrary", + "debugPath": "/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary", + "end": 140735464583168, + "name": "ChunkingLibrary", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary", + "start": 140735464419328 + }, + { + "arch": "x86_64", + "breakpadId": "8F6ED60259433E29A793BC331E2C183D0", + "debugName": "Carbon", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon", + "end": 140735464632320, + "name": "Carbon", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon", + "start": 140735464628224 + }, + { + "arch": "x86_64", + "breakpadId": "27DE3F2ECE963327A563788EE3E2775B0", + "debugName": "libxslt.1.dylib", + "debugPath": "/usr/lib/libxslt.1.dylib", + "end": 140735465361408, + "name": "libxslt.1.dylib", + "offset": 0, + "path": "/usr/lib/libxslt.1.dylib", + "start": 140735465189376 + }, + { + "arch": "x86_64", + "breakpadId": "851B6BF85B7F3FB59E4510AAE3BF74380", + "debugName": "IOAccelerator", + "debugPath": "/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator", + "end": 140735473623040, + "name": "IOAccelerator", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator", + "start": 140735473594368 + }, + { + "arch": "x86_64", + "breakpadId": "AE7795B845903714999D3FBFF6BF5D930", + "debugName": "Apple80211", + "debugPath": "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211", + "end": 140735473860608, + "name": "Apple80211", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211", + "start": 140735473729536 + }, + { + "arch": "x86_64", + "breakpadId": "A13ECF69F59F38AE86097B731450FBCD0", + "debugName": "libcompiler_rt.dylib", + "debugPath": "/usr/lib/system/libcompiler_rt.dylib", + "end": 140735473893376, + "name": "libcompiler_rt.dylib", + "offset": 0, + "path": "/usr/lib/system/libcompiler_rt.dylib", + "start": 140735473860608 + }, + { + "arch": "x86_64", + "breakpadId": "11F9567255E03F9D91715E8C56AEE9480", + "debugName": "CFOpenDirectory", + "debugPath": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory", + "end": 140735474356224, + "name": "CFOpenDirectory", + "offset": 0, + "path": "/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory", + "start": 140735474249728 + }, + { + "arch": "x86_64", + "breakpadId": "35DA4D480BC235A18D7C40905CDF4F640", + "debugName": "Help", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help", + "end": 140735474438144, + "name": "Help", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help", + "start": 140735474421760 + }, + { + "arch": "x86_64h", + "breakpadId": "EBEB38483468342A91A65C47F2369CD90", + "debugName": "libSparseBLAS.dylib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib", + "end": 140735492046848, + "name": "libSparseBLAS.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib", + "start": 140735491973120 + }, + { + "arch": "x86_64", + "breakpadId": "5DC3D0D99E3F3AA592F1F229907A49B90", + "debugName": "Quartz", + "debugPath": "/System/Library/Frameworks/Quartz.framework/Versions/A/Quartz", + "end": 140735492202496, + "name": "Quartz", + "offset": 0, + "path": "/System/Library/Frameworks/Quartz.framework/Versions/A/Quartz", + "start": 140735492198400 + }, + { + "arch": "x86_64", + "breakpadId": "48F4C6739F0C38BEB55088241E8125180", + "debugName": "libspindump.dylib", + "debugPath": "/usr/lib/libspindump.dylib", + "end": 140735493021696, + "name": "libspindump.dylib", + "offset": 0, + "path": "/usr/lib/libspindump.dylib", + "start": 140735493005312 + }, + { + "arch": "x86_64", + "breakpadId": "0A491CA734513FD5999A58AB4362682B0", + "debugName": "libenergytrace.dylib", + "debugPath": "/usr/lib/libenergytrace.dylib", + "end": 140735493025792, + "name": "libenergytrace.dylib", + "offset": 0, + "path": "/usr/lib/libenergytrace.dylib", + "start": 140735493021696 + }, + { + "arch": "x86_64", + "breakpadId": "C56DDF90CF6D30D2A3E689288BE69DCB0", + "debugName": "libGLU.dylib", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib", + "end": 140735493296128, + "name": "libGLU.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib", + "start": 140735493025792 + }, + { + "arch": "x86_64", + "breakpadId": "CD307E99FC5C3575BCCE0C861AA631240", + "debugName": "libSystem.B.dylib", + "debugPath": "/usr/lib/libSystem.B.dylib", + "end": 140735495757824, + "name": "libSystem.B.dylib", + "offset": 0, + "path": "/usr/lib/libSystem.B.dylib", + "start": 140735495749632 + }, + { + "arch": "x86_64", + "breakpadId": "3E85F70CD7D434E1B88AC1F503F99CDA0", + "debugName": "Print", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print", + "end": 140735495766016, + "name": "Print", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print", + "start": 140735495757824 + }, + { + "arch": "x86_64", + "breakpadId": "32B1A8C6DC843F4FB8CE9A52B47C3E6B0", + "debugName": "libsystem_secinit.dylib", + "debugPath": "/usr/lib/system/libsystem_secinit.dylib", + "end": 140735496224768, + "name": "libsystem_secinit.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_secinit.dylib", + "start": 140735496216576 + }, + { + "arch": "x86_64", + "breakpadId": "B490333A3B3E397AAD7568846E9A91400", + "debugName": "GSS", + "debugPath": "/System/Library/Frameworks/GSS.framework/Versions/A/GSS", + "end": 140735497084928, + "name": "GSS", + "offset": 0, + "path": "/System/Library/Frameworks/GSS.framework/Versions/A/GSS", + "start": 140735496880128 + }, + { + "arch": "x86_64", + "breakpadId": "ACECF0B77D923A22BF47E8FADF4C53780", + "debugName": "ImageCapture", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture", + "end": 140735497109504, + "name": "ImageCapture", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture", + "start": 140735497084928 + }, + { + "arch": "x86_64", + "breakpadId": "A650B5C8195036A086D10B2465318BFA0", + "debugName": "libresolv.9.dylib", + "debugPath": "/usr/lib/libresolv.9.dylib", + "end": 140735497228288, + "name": "libresolv.9.dylib", + "offset": 0, + "path": "/usr/lib/libresolv.9.dylib", + "start": 140735497109504 + }, + { + "arch": "x86_64", + "breakpadId": "082319FC59F23D36AC9B94759724E3020", + "debugName": "AudioToolbox", + "debugPath": "/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox", + "end": 140735498960896, + "name": "AudioToolbox", + "offset": 0, + "path": "/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox", + "start": 140735497228288 + }, + { + "arch": "x86_64", + "breakpadId": "93C1D64237D43692AD35DCAD04F9610B0", + "debugName": "AudioUnit", + "debugPath": "/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit", + "end": 140735499010048, + "name": "AudioUnit", + "offset": 0, + "path": "/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit", + "start": 140735499005952 + }, + { + "arch": "x86_64", + "breakpadId": "9E5A980AF45532D5BBEE3BD6018CC45E0", + "debugName": "SpeechRecognition", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition", + "end": 140735506583552, + "name": "SpeechRecognition", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition", + "start": 140735506554880 + }, + { + "arch": "x86_64", + "breakpadId": "2D86B3AD64C33BB4BC661CFD0C90E8440", + "debugName": "Mangrove", + "debugPath": "/System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove", + "end": 140735508791296, + "name": "Mangrove", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove", + "start": 140735508774912 + }, + { + "arch": "x86_64", + "breakpadId": "2DBAFC9A6CD6351DB1F487D81AA6D6400", + "debugName": "CarbonCore", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore", + "end": 140735511830528, + "name": "CarbonCore", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore", + "start": 140735508791296 + }, + { + "arch": "x86_64", + "breakpadId": "58C18A47BDE73CBE81C0797029D170A10", + "debugName": "LanguageModeling", + "debugPath": "/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling", + "end": 140735512530944, + "name": "LanguageModeling", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling", + "start": 140735511842816 + }, + { + "arch": "x86_64", + "breakpadId": "9F3123D829D2332FAD6BAB9BF1A580220", + "debugName": "ImageCaptureCore", + "debugPath": "/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore", + "end": 140735512870912, + "name": "ImageCaptureCore", + "offset": 0, + "path": "/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore", + "start": 140735512530944 + }, + { + "arch": "x86_64", + "breakpadId": "A0037B0A277A393E9BF6688595BD564D0", + "debugName": "IOSurface", + "debugPath": "/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface", + "end": 140735512887296, + "name": "IOSurface", + "offset": 0, + "path": "/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface", + "start": 140735512870912 + }, + { + "arch": "x86_64", + "breakpadId": "DDB1E947C77533B8B46163E5EB698F0E0", + "debugName": "libunc.dylib", + "debugPath": "/usr/lib/system/libunc.dylib", + "end": 140735513337856, + "name": "libunc.dylib", + "offset": 0, + "path": "/usr/lib/system/libunc.dylib", + "start": 140735513333760 + }, + { + "arch": "x86_64", + "breakpadId": "1F76CF363F7936B8BC37C540AF34B3380", + "debugName": "Ink", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink", + "end": 140735513952256, + "name": "Ink", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink", + "start": 140735513337856 + }, + { + "arch": "x86_64", + "breakpadId": "F5C482E25AFB39598C01C149D48E75830", + "debugName": "QuartzFilters", + "debugPath": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters", + "end": 140735515881472, + "name": "QuartzFilters", + "offset": 0, + "path": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters", + "start": 140735515729920 + }, + { + "arch": "x86_64", + "breakpadId": "A48637BCF3F234F2BB684C65FD0128320", + "debugName": "libcopyfile.dylib", + "debugPath": "/usr/lib/system/libcopyfile.dylib", + "end": 140735516385280, + "name": "libcopyfile.dylib", + "offset": 0, + "path": "/usr/lib/system/libcopyfile.dylib", + "start": 140735516348416 + }, + { + "arch": "x86_64h", + "breakpadId": "D3F44A33355E3154A4651C732AAC5F750", + "debugName": "libGIF.dylib", + "debugPath": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib", + "end": 140735516753920, + "name": "libGIF.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib", + "start": 140735516733440 + }, + { + "arch": "x86_64", + "breakpadId": "2510454252513E8DB14A9E37207218BC0", + "debugName": "libsystem_trace.dylib", + "debugPath": "/usr/lib/system/libsystem_trace.dylib", + "end": 140735516839936, + "name": "libsystem_trace.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_trace.dylib", + "start": 140735516766208 + }, + { + "arch": "x86_64", + "breakpadId": "DCCC81773D0935BC97842A04FEC4C71B0", + "debugName": "libc++abi.dylib", + "debugPath": "/usr/lib/libc++abi.dylib", + "end": 140735517409280, + "name": "libc++abi.dylib", + "offset": 0, + "path": "/usr/lib/libc++abi.dylib", + "start": 140735517237248 + }, + { + "arch": "x86_64", + "breakpadId": "1F83259159A83B3F943FD6D8274637820", + "debugName": "SecCodeWrapper", + "debugPath": "/System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper", + "end": 140735517876224, + "name": "SecCodeWrapper", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper", + "start": 140735517863936 + }, + { + "arch": "x86_64h", + "breakpadId": "9AB6CA3C4F0E35E691849DF86E7C3DAD0", + "debugName": "libvDSP.dylib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib", + "end": 140735518990336, + "name": "libvDSP.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib", + "start": 140735517876224 + }, + { + "arch": "x86_64", + "breakpadId": "1CD7619DAF2E34D18EC68021CF473D9B0", + "debugName": "liblaunch.dylib", + "debugPath": "/usr/lib/system/liblaunch.dylib", + "end": 140735520956416, + "name": "liblaunch.dylib", + "offset": 0, + "path": "/usr/lib/system/liblaunch.dylib", + "start": 140735520952320 + }, + { + "arch": "x86_64", + "breakpadId": "D8131B7EDFC93FDD9D5649821C1D15210", + "debugName": "ViewBridge", + "debugPath": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge", + "end": 140735525642240, + "name": "ViewBridge", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge", + "start": 140735524982784 + }, + { + "arch": "x86_64", + "breakpadId": "552EF39E14D7363E90594565AC2F894E0", + "debugName": "libremovefile.dylib", + "debugPath": "/usr/lib/system/libremovefile.dylib", + "end": 140735529160704, + "name": "libremovefile.dylib", + "offset": 0, + "path": "/usr/lib/system/libremovefile.dylib", + "start": 140735529152512 + }, + { + "arch": "x86_64", + "breakpadId": "AEA28993BA3E3E0FA2F588C312ABB6340", + "debugName": "OpenGL", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL", + "end": 140735529222144, + "name": "OpenGL", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL", + "start": 140735529160704 + }, + { + "arch": "x86_64", + "breakpadId": "BAE70E9DBCC83650B5546D646388EDEF0", + "debugName": "ContactsFoundation", + "debugPath": "/System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation", + "end": 140735529803776, + "name": "ContactsFoundation", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation", + "start": 140735529623552 + }, + { + "arch": "x86_64", + "breakpadId": "8FC3D139805534989AC56467CB7F4D140", + "debugName": "libc++.1.dylib", + "debugPath": "/usr/lib/libc++.1.dylib", + "end": 140735530147840, + "name": "libc++.1.dylib", + "offset": 0, + "path": "/usr/lib/libc++.1.dylib", + "start": 140735529803776 + }, + { + "arch": "x86_64", + "breakpadId": "3DEB7DF9680437E1BC830166882FF0FF0", + "debugName": "libsystem_configuration.dylib", + "debugPath": "/usr/lib/system/libsystem_configuration.dylib", + "end": 140735530561536, + "name": "libsystem_configuration.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_configuration.dylib", + "start": 140735530549248 + }, + { + "arch": "x86_64", + "breakpadId": "1244D9D5F6AA35BBB30786851C24B8E50", + "debugName": "libsystem_blocks.dylib", + "debugPath": "/usr/lib/system/libsystem_blocks.dylib", + "end": 140735530569728, + "name": "libsystem_blocks.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_blocks.dylib", + "start": 140735530561536 + }, + { + "arch": "x86_64", + "breakpadId": "807787ABD2313F51A99BA9314623C5710", + "debugName": "Cocoa", + "debugPath": "/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa", + "end": 140735532093440, + "name": "Cocoa", + "offset": 0, + "path": "/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa", + "start": 140735532089344 + }, + { + "arch": "x86_64", + "breakpadId": "981DE40BFA1636F7BE928C8A115D6CD90", + "debugName": "libheimdal-asn1.dylib", + "debugPath": "/usr/lib/libheimdal-asn1.dylib", + "end": 140735536066560, + "name": "libheimdal-asn1.dylib", + "offset": 0, + "path": "/usr/lib/libheimdal-asn1.dylib", + "start": 140735536041984 + }, + { + "arch": "x86_64", + "breakpadId": "E54CA9A2A5C630C59D6E8472DBA9371E0", + "debugName": "CoreBluetooth", + "debugPath": "/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth", + "end": 140735536148480, + "name": "CoreBluetooth", + "offset": 0, + "path": "/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth", + "start": 140735536066560 + }, + { + "arch": "x86_64", + "breakpadId": "41529BD91BCC3A6292BA2A71108673550", + "debugName": "vCard", + "debugPath": "/System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard", + "end": 140735536537600, + "name": "vCard", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard", + "start": 140735536406528 + }, + { + "arch": "x86_64", + "breakpadId": "80235264CA1B3E3F96F75F6F52FDC5B60", + "debugName": "QuartzComposer", + "debugPath": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer", + "end": 140735542026240, + "name": "QuartzComposer", + "offset": 0, + "path": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer", + "start": 140735536640000 + }, + { + "arch": "x86_64h", + "breakpadId": "A5EFA292AFD43FCE8802958AD60F75DA0", + "debugName": "libRadiance.dylib", + "debugPath": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib", + "end": 140735542038528, + "name": "libRadiance.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib", + "start": 140735542026240 + }, + { + "arch": "x86_64", + "breakpadId": "8EF4EECC4FF136DF84CF65545555A2250", + "debugName": "DataDetectorsCore", + "debugPath": "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore", + "end": 140735542497280, + "name": "DataDetectorsCore", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore", + "start": 140735542038528 + }, + { + "arch": "x86_64", + "breakpadId": "06C2E0E2BA5C3BB18DD755613EDD654D0", + "debugName": "CoreMediaAuthoring", + "debugPath": "/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring", + "end": 140735542624256, + "name": "CoreMediaAuthoring", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring", + "start": 140735542530048 + }, + { + "arch": "x86_64", + "breakpadId": "FB2AD43B905D3BD0BE17ACE7D4D13E240", + "debugName": "IOKit", + "debugPath": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", + "end": 140735543107584, + "name": "IOKit", + "offset": 0, + "path": "/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit", + "start": 140735542624256 + }, + { + "arch": "x86_64", + "breakpadId": "4243B6B421E9355B9C5A95A216233B960", + "debugName": "libDiagnosticMessagesClient.dylib", + "debugPath": "/usr/lib/libDiagnosticMessagesClient.dylib", + "end": 140735543816192, + "name": "libDiagnosticMessagesClient.dylib", + "offset": 0, + "path": "/usr/lib/libDiagnosticMessagesClient.dylib", + "start": 140735543808000 + }, + { + "arch": "x86_64", + "breakpadId": "6D5AD263308F3F708D867027569D26940", + "debugName": "ToneKit", + "debugPath": "/System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit", + "end": 140735543943168, + "name": "ToneKit", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit", + "start": 140735543853056 + }, + { + "arch": "x86_64", + "breakpadId": "7F5B7A23BC1D3FA9A9B8D534F1E1979A0", + "debugName": "FSEvents", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents", + "end": 140735543980032, + "name": "FSEvents", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents", + "start": 140735543943168 + }, + { + "arch": "x86_64", + "breakpadId": "3AC0BFB87E693DBEA1757F3946FC45540", + "debugName": "libMatch.1.dylib", + "debugPath": "/usr/lib/libMatch.1.dylib", + "end": 140735544016896, + "name": "libMatch.1.dylib", + "offset": 0, + "path": "/usr/lib/libMatch.1.dylib", + "start": 140735543980032 + }, + { + "arch": "x86_64", + "breakpadId": "03207F662C4A3DBD8D8170F4C85903C40", + "debugName": "libxar.1.dylib", + "debugPath": "/usr/lib/libxar.1.dylib", + "end": 140735544844288, + "name": "libxar.1.dylib", + "offset": 0, + "path": "/usr/lib/libxar.1.dylib", + "start": 140735544782848 + }, + { + "arch": "x86_64", + "breakpadId": "CC53DC1292313C4F921B9A770D4633230", + "debugName": "CoreDaemon", + "debugPath": "/System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon", + "end": 140735546142720, + "name": "CoreDaemon", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon", + "start": 140735546105856 + }, + { + "arch": "x86_64", + "breakpadId": "9D300121CAF838948774DF38FA65F2380", + "debugName": "libcorecrypto.dylib", + "debugPath": "/usr/lib/system/libcorecrypto.dylib", + "end": 140735546974208, + "name": "libcorecrypto.dylib", + "offset": 0, + "path": "/usr/lib/system/libcorecrypto.dylib", + "start": 140735546482688 + }, + { + "arch": "x86_64", + "breakpadId": "A616AFB52336385AB05816A423D2B21B0", + "debugName": "PhoneNumbers", + "debugPath": "/System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers", + "end": 140735547006976, + "name": "PhoneNumbers", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers", + "start": 140735546974208 + }, + { + "arch": "x86_64", + "breakpadId": "847DBFBA8D6B367B99FDC6CAA8C05C650", + "debugName": "ATS", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS", + "end": 140735547461632, + "name": "ATS", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS", + "start": 140735547006976 + }, + { + "arch": "x86_64", + "breakpadId": "DDD2811C6ECB32F28EE169BF9657B4A80", + "debugName": "Sharing", + "debugPath": "/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing", + "end": 140735547682816, + "name": "Sharing", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing", + "start": 140735547539456 + }, + { + "arch": "x86_64", + "breakpadId": "C5E61B4519673602A48C31E132B998B20", + "debugName": "MediaAccessibility", + "debugPath": "/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility", + "end": 140735547707392, + "name": "MediaAccessibility", + "offset": 0, + "path": "/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility", + "start": 140735547682816 + }, + { + "arch": "x86_64", + "breakpadId": "36EBF6A7334A3197838FE8C7B27FCDBB0", + "debugName": "OpenScripting", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting", + "end": 140735547813888, + "name": "OpenScripting", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting", + "start": 140735547707392 + }, + { + "arch": "x86_64", + "breakpadId": "78CB3EACA66E3FD9A1DFA9CF227ED3C30", + "debugName": "CoreServices", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices", + "end": 140735547981824, + "name": "CoreServices", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices", + "start": 140735547977728 + }, + { + "arch": "x86_64", + "breakpadId": "307263BA036838C9A7FB25920343D0DF0", + "debugName": "OpenCL", + "debugPath": "/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL", + "end": 140735548334080, + "name": "OpenCL", + "offset": 0, + "path": "/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL", + "start": 140735548006400 + }, + { + "arch": "x86_64h", + "breakpadId": "054DFE32737D32119A140FC5E1A880E30", + "debugName": "vecLib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib", + "end": 140735548338176, + "name": "vecLib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib", + "start": 140735548334080 + }, + { + "arch": "x86_64", + "breakpadId": "FD952DA6BBEC3CB698B3E1D111C5C54E0", + "debugName": "libextension.dylib", + "debugPath": "/usr/lib/libextension.dylib", + "end": 140735548514304, + "name": "libextension.dylib", + "offset": 0, + "path": "/usr/lib/libextension.dylib", + "start": 140735548395520 + }, + { + "arch": "x86_64", + "breakpadId": "9548AAE92AB735259ECEA2A7C46884470", + "debugName": "libcache.dylib", + "debugPath": "/usr/lib/system/libcache.dylib", + "end": 140735548534784, + "name": "libcache.dylib", + "offset": 0, + "path": "/usr/lib/system/libcache.dylib", + "start": 140735548514304 + }, + { + "arch": "x86_64", + "breakpadId": "8371CE545FDD3CE9B3DFE98C761B6FE00", + "debugName": "libkeymgr.dylib", + "debugPath": "/usr/lib/system/libkeymgr.dylib", + "end": 140735552188416, + "name": "libkeymgr.dylib", + "offset": 0, + "path": "/usr/lib/system/libkeymgr.dylib", + "start": 140735552184320 + }, + { + "arch": "x86_64h", + "breakpadId": "A1398FE039D233EA9A0FB2644EEA29A00", + "debugName": "libBLAS.dylib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib", + "end": 140735553662976, + "name": "libBLAS.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib", + "start": 140735552188416 + }, + { + "arch": "x86_64", + "breakpadId": "F05A0A5A92A936688F20F27CBDA26BE90", + "debugName": "libiconv.2.dylib", + "debugPath": "/usr/lib/libiconv.2.dylib", + "end": 140735555506176, + "name": "libiconv.2.dylib", + "offset": 0, + "path": "/usr/lib/libiconv.2.dylib", + "start": 140735554510848 + }, + { + "arch": "x86_64h", + "breakpadId": "4BAC9B6F748235808787AB0A5B4D331B0", + "debugName": "vImage", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage", + "end": 140735559266304, + "name": "vImage", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage", + "start": 140735555506176 + }, + { + "arch": "x86_64", + "breakpadId": "842A534624C33F229ECFE586A10EA1F20", + "debugName": "NetFS", + "debugPath": "/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS", + "end": 140735561244672, + "name": "NetFS", + "offset": 0, + "path": "/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS", + "start": 140735561207808 + }, + { + "arch": "x86_64", + "breakpadId": "8879002BC87B35959CD2B672F10DD1560", + "debugName": "AddressBook", + "debugPath": "/System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook", + "end": 140735566397440, + "name": "AddressBook", + "offset": 0, + "path": "/System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook", + "start": 140735563984896 + }, + { + "arch": "x86_64", + "breakpadId": "50F7EC605B213B9BBF2FF037EA7B12FB0", + "debugName": "TCC", + "debugPath": "/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC", + "end": 140735566807040, + "name": "TCC", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC", + "start": 140735566782464 + }, + { + "arch": "x86_64", + "breakpadId": "840A5C20645236BBACF729BA6CBF7C480", + "debugName": "AppleSRP", + "debugPath": "/System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP", + "end": 140735566843904, + "name": "AppleSRP", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP", + "start": 140735566807040 + }, + { + "arch": "x86_64", + "breakpadId": "AF05AF349BC43BA681C17420F22C9D7D0", + "debugName": "ToneLibrary", + "debugPath": "/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary", + "end": 140735566905344, + "name": "ToneLibrary", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary", + "start": 140735566843904 + }, + { + "arch": "x86_64", + "breakpadId": "8390E026F7DE3C3294863DFF6BD131B00", + "debugName": "libdyld.dylib", + "debugPath": "/usr/lib/system/libdyld.dylib", + "end": 140735568670720, + "name": "libdyld.dylib", + "offset": 0, + "path": "/usr/lib/system/libdyld.dylib", + "start": 140735568654336 + }, + { + "arch": "x86_64", + "breakpadId": "608E8C506F593FEBB822D9B02F3287160", + "debugName": "PerformanceAnalysis", + "debugPath": "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis", + "end": 140735569235968, + "name": "PerformanceAnalysis", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis", + "start": 140735568670720 + }, + { + "arch": "x86_64", + "breakpadId": "0283748A831836AC8B308A951FEB305A0", + "debugName": "QuartzCore", + "debugPath": "/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore", + "end": 140735571132416, + "name": "QuartzCore", + "offset": 0, + "path": "/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore", + "start": 140735569235968 + }, + { + "arch": "x86_64", + "breakpadId": "F6EB48E54D12359AAB54C937FBBE90430", + "debugName": "libunwind.dylib", + "debugPath": "/usr/lib/system/libunwind.dylib", + "end": 140735571156992, + "name": "libunwind.dylib", + "offset": 0, + "path": "/usr/lib/system/libunwind.dylib", + "start": 140735571132416 + }, + { + "arch": "x86_64", + "breakpadId": "6336CFC59D7D3B76B26356DD6EBD0B8D0", + "debugName": "CoreLocation", + "debugPath": "/System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation", + "end": 140735571472384, + "name": "CoreLocation", + "offset": 0, + "path": "/System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation", + "start": 140735571156992 + }, + { + "arch": "x86_64", + "breakpadId": "943A1383DA6A3DC0ABCDD9AEB3D0D34D0", + "debugName": "CoreFoundation", + "debugPath": "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation", + "end": 140735576154112, + "name": "CoreFoundation", + "offset": 0, + "path": "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation", + "start": 140735571472384 + }, + { + "arch": "x86_64h", + "breakpadId": "185EC96A5AF03620A4ED4D3654D25B390", + "debugName": "Accelerate", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate", + "end": 140735576162304, + "name": "Accelerate", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate", + "start": 140735576158208 + }, + { + "arch": "x86_64", + "breakpadId": "6576F284BACA332AA6E7FA1C347636E30", + "debugName": "libmetal_timestamp.dylib", + "debugPath": "/System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib", + "end": 140735577636864, + "name": "libmetal_timestamp.dylib", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib", + "start": 140735577632768 + }, + { + "arch": "x86_64", + "breakpadId": "269E5ADD692231E28D557B777263AC0D0", + "debugName": "libsystem_network.dylib", + "debugPath": "/usr/lib/system/libsystem_network.dylib", + "end": 140735580545024, + "name": "libsystem_network.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_network.dylib", + "start": 140735580123136 + }, + { + "arch": "x86_64", + "breakpadId": "10082F5861903A7C8B6CC12B16DC793A0", + "debugName": "SystemConfiguration", + "debugPath": "/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration", + "end": 140735580934144, + "name": "SystemConfiguration", + "offset": 0, + "path": "/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration", + "start": 140735580545024 + }, + { + "arch": "x86_64", + "breakpadId": "6E111F0AD7F13738ADE7CF983BD4EC8B0", + "debugName": "CoreServicesInternal", + "debugPath": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal", + "end": 140735581282304, + "name": "CoreServicesInternal", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal", + "start": 140735581089792 + }, + { + "arch": "x86_64", + "breakpadId": "086E1FB38B753241958506C43B51F2C80", + "debugName": "ExceptionHandling", + "debugPath": "/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling", + "end": 140735582724096, + "name": "ExceptionHandling", + "offset": 0, + "path": "/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling", + "start": 140735582711808 + }, + { + "arch": "x86_64", + "breakpadId": "F4AF2363B28E3097AB1EFDA1C92F8F560", + "debugName": "AppleVPA", + "debugPath": "/System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA", + "end": 140735583211520, + "name": "AppleVPA", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA", + "start": 140735583088640 + }, + { + "arch": "x86_64", + "breakpadId": "23A42C53B94138719EE24C87A46005B50", + "debugName": "DebugSymbols", + "debugPath": "/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols", + "end": 140735583453184, + "name": "DebugSymbols", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols", + "start": 140735583211520 + }, + { + "arch": "x86_64", + "breakpadId": "9B2F5F9BED38313FB798D2B667BCD6B50", + "debugName": "loginsupport", + "debugPath": "/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport", + "end": 140735583465472, + "name": "loginsupport", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport", + "start": 140735583453184 + }, + { + "arch": "x86_64h", + "breakpadId": "E7601B621053369D8A9E91CF862392200", + "debugName": "libcompression.dylib", + "debugPath": "/usr/lib/libcompression.dylib", + "end": 140735583592448, + "name": "libcompression.dylib", + "offset": 0, + "path": "/usr/lib/libcompression.dylib", + "start": 140735583490048 + }, + { + "arch": "x86_64", + "breakpadId": "26158471870A32699E2B7D7963B8E9F30", + "debugName": "libsandbox.1.dylib", + "debugPath": "/usr/lib/libsandbox.1.dylib", + "end": 140735583838208, + "name": "libsandbox.1.dylib", + "offset": 0, + "path": "/usr/lib/libsandbox.1.dylib", + "start": 140735583645696 + }, + { + "arch": "x86_64", + "breakpadId": "E4919B03D9BD3AF8B436C415C98E3F0A0", + "debugName": "libmarisa.dylib", + "debugPath": "/usr/lib/libmarisa.dylib", + "end": 140735583936512, + "name": "libmarisa.dylib", + "offset": 0, + "path": "/usr/lib/libmarisa.dylib", + "start": 140735583838208 + }, + { + "arch": "x86_64", + "breakpadId": "0FE5318028953D14A1E7F82DE1D106E10", + "debugName": "QD", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD", + "end": 140735584178176, + "name": "QD", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD", + "start": 140735583936512 + }, + { + "arch": "x86_64", + "breakpadId": "4AE7E5AE55B337FA9BDEB23147ADA2E90", + "debugName": "CommonPanels", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels", + "end": 140735584198656, + "name": "CommonPanels", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels", + "start": 140735584178176 + }, + { + "arch": "x86_64", + "breakpadId": "88AA19A7717037988CBAB1B8D4763ADB0", + "debugName": "QTKit", + "debugPath": "/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit", + "end": 140735585533952, + "name": "QTKit", + "offset": 0, + "path": "/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit", + "start": 140735584198656 + }, + { + "arch": "x86_64", + "breakpadId": "71232F2011BD370D9F43F262BFE46C930", + "debugName": "ContactsPersistence", + "debugPath": "/System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence", + "end": 140735585828864, + "name": "ContactsPersistence", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence", + "start": 140735585746944 + }, + { + "arch": "x86_64", + "breakpadId": "C749985761A53D7DA5EA65DCC8C3DF920", + "debugName": "libdispatch.dylib", + "debugPath": "/usr/lib/system/libdispatch.dylib", + "end": 140735586017280, + "name": "libdispatch.dylib", + "offset": 0, + "path": "/usr/lib/system/libdispatch.dylib", + "start": 140735585828864 + }, + { + "arch": "x86_64", + "breakpadId": "8FC37E2065793CB29D49BC39FC38DF870", + "debugName": "ColorSync", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync", + "end": 140735587004416, + "name": "ColorSync", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync", + "start": 140735586385920 + }, + { + "arch": "x86_64", + "breakpadId": "078B4CD86A8C3067B2BA0C2A0BAB8AC30", + "debugName": "libCRFSuite.dylib", + "debugPath": "/usr/lib/libCRFSuite.dylib", + "end": 140735587119104, + "name": "libCRFSuite.dylib", + "offset": 0, + "path": "/usr/lib/libCRFSuite.dylib", + "start": 140735587004416 + }, + { + "arch": "x86_64", + "breakpadId": "D2A49E529D2635A8BDDC3BCDBEC5A19E0", + "debugName": "CoreMedia", + "debugPath": "/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia", + "end": 140735588171776, + "name": "CoreMedia", + "offset": 0, + "path": "/System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia", + "start": 140735587278848 + }, + { + "arch": "x86_64", + "breakpadId": "F220E7021C003BD29943C7E75C3B44180", + "debugName": "AppContainer", + "debugPath": "/System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer", + "end": 140735588278272, + "name": "AppContainer", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer", + "start": 140735588188160 + }, + { + "arch": "x86_64", + "breakpadId": "66095DC7653938F295EE458F15F6D0140", + "debugName": "libsystem_networkextension.dylib", + "debugPath": "/usr/lib/system/libsystem_networkextension.dylib", + "end": 140735588315136, + "name": "libsystem_networkextension.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_networkextension.dylib", + "start": 140735588278272 + }, + { + "arch": "x86_64", + "breakpadId": "D48BDE340F7E34CAA0FFC578E39987CC0", + "debugName": "libsystem_notify.dylib", + "debugPath": "/usr/lib/system/libsystem_notify.dylib", + "end": 140735588356096, + "name": "libsystem_notify.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_notify.dylib", + "start": 140735588315136 + }, + { + "arch": "x86_64", + "breakpadId": "A19F9D2553333AA090FB97F3F420A7EA0", + "debugName": "MediaToolbox", + "debugPath": "/System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox", + "end": 140735594147840, + "name": "MediaToolbox", + "offset": 0, + "path": "/System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox", + "start": 140735588540416 + }, + { + "arch": "x86_64", + "breakpadId": "FC1AED2CB3E231D9B16337989CD8A0730", + "debugName": "AppleVA", + "debugPath": "/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA", + "end": 140735594713088, + "name": "AppleVA", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA", + "start": 140735594373120 + }, + { + "arch": "x86_64", + "breakpadId": "474544AD11993ECC90E5071847BA72C60", + "debugName": "CrashReporterSupport", + "debugPath": "/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport", + "end": 140735594762240, + "name": "CrashReporterSupport", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport", + "start": 140735594713088 + }, + { + "arch": "x86_64h", + "breakpadId": "AECB826C8B143D048DEC33EE85F5150D0", + "debugName": "libJPEG.dylib", + "debugPath": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib", + "end": 140735594913792, + "name": "libJPEG.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib", + "start": 140735594762240 + }, + { + "arch": "x86_64", + "breakpadId": "5748E8B2F81C34C68B134562131276780", + "debugName": "libsystem_malloc.dylib", + "debugPath": "/usr/lib/system/libsystem_malloc.dylib", + "end": 140735595032576, + "name": "libsystem_malloc.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_malloc.dylib", + "start": 140735594913792 + }, + { + "arch": "x86_64", + "breakpadId": "871E52235D03364998AF9CCA3B41E3070", + "debugName": "HIToolbox", + "debugPath": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox", + "end": 140735600623616, + "name": "HIToolbox", + "offset": 0, + "path": "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox", + "start": 140735597518848 + }, + { + "arch": "x86_64", + "breakpadId": "F70BF765FBE93F1E85CABB2F8E53E8C20", + "debugName": "Symbolication", + "debugPath": "/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication", + "end": 140735600955392, + "name": "Symbolication", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication", + "start": 140735600623616 + }, + { + "arch": "x86_64h", + "breakpadId": "280D67B8F93D3587A14619F36C8175480", + "debugName": "libsqlite3.dylib", + "debugPath": "/usr/lib/libsqlite3.dylib", + "end": 140735609753600, + "name": "libsqlite3.dylib", + "offset": 0, + "path": "/usr/lib/libsqlite3.dylib", + "start": 140735608553472 + }, + { + "arch": "x86_64", + "breakpadId": "F19E0200693737999C67D26C2CE5AA5F0", + "debugName": "Metadata", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata", + "end": 140735610544128, + "name": "Metadata", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata", + "start": 140735609884672 + }, + { + "arch": "x86_64", + "breakpadId": "849BBFF607003ED198DFA6E93B9B707F0", + "debugName": "CorePDF", + "debugPath": "/System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF", + "end": 140735611133952, + "name": "CorePDF", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF", + "start": 140735610544128 + }, + { + "arch": "x86_64", + "breakpadId": "DE524245B7EF3E9D8AA13D99A3304EF40", + "debugName": "AVFoundation", + "debugPath": "/System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation", + "end": 140735612891136, + "name": "AVFoundation", + "offset": 0, + "path": "/System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation", + "start": 140735611133952 + }, + { + "arch": "x86_64", + "breakpadId": "FFE54EDFF06F3C0A864A4CA7BBFD4B2D0", + "debugName": "libLinearAlgebra.dylib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib", + "end": 140735612985344, + "name": "libLinearAlgebra.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib", + "start": 140735612891136 + }, + { + "arch": "x86_64", + "breakpadId": "3DD1EF4C1D1B3ABF8CC6B3B1CEEE95590", + "debugName": "libsystem_pthread.dylib", + "debugPath": "/usr/lib/system/libsystem_pthread.dylib", + "end": 140735613026304, + "name": "libsystem_pthread.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_pthread.dylib", + "start": 140735612985344 + }, + { + "arch": "x86_64", + "breakpadId": "5E2122D6FFA23552BF169FD3F36B40DB0", + "debugName": "XPCService", + "debugPath": "/System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService", + "end": 140735613054976, + "name": "XPCService", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService", + "start": 140735613026304 + }, + { + "arch": "x86_64", + "breakpadId": "EF6C0BD45FE834FB8ADF69A53CEC97A90", + "debugName": "libmecabra.dylib", + "debugPath": "/usr/lib/libmecabra.dylib", + "end": 140735616180224, + "name": "libmecabra.dylib", + "offset": 0, + "path": "/usr/lib/libmecabra.dylib", + "start": 140735613464576 + }, + { + "arch": "x86_64", + "breakpadId": "1BB39B19DD74347EA3440E67817735770", + "debugName": "SecurityInterface", + "debugPath": "/System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface", + "end": 140735616376832, + "name": "SecurityInterface", + "offset": 0, + "path": "/System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface", + "start": 140735616180224 + }, + { + "arch": "x86_64", + "breakpadId": "5F9DB82DFD4B39528531CE020F93ED490", + "debugName": "libFosl_dynamic.dylib", + "debugPath": "/usr/lib/libFosl_dynamic.dylib", + "end": 140735618523136, + "name": "libFosl_dynamic.dylib", + "offset": 0, + "path": "/usr/lib/libFosl_dynamic.dylib", + "start": 140735616376832 + }, + { + "arch": "x86_64", + "breakpadId": "734B133FE7893A259DE61CCBA4896D4D0", + "debugName": "libGLImage.dylib", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib", + "end": 140735618781184, + "name": "libGLImage.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib", + "start": 140735618523136 + }, + { + "arch": "x86_64", + "breakpadId": "6B01C09EA3E53C71B370D0CABD11A4360", + "debugName": "libsystem_info.dylib", + "debugPath": "/usr/lib/system/libsystem_info.dylib", + "end": 140735619710976, + "name": "libsystem_info.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_info.dylib", + "start": 140735619538944 + }, + { + "arch": "x86_64", + "breakpadId": "16FC79D145733E90945FCBA22D5185FD0", + "debugName": "libScreenReader.dylib", + "debugPath": "/usr/lib/libScreenReader.dylib", + "end": 140735629750272, + "name": "libScreenReader.dylib", + "offset": 0, + "path": "/usr/lib/libScreenReader.dylib", + "start": 140735629733888 + }, + { + "arch": "x86_64", + "breakpadId": "F159A88834CA36F1AC8EEB1B38C9DFB30", + "debugName": "SearchKit", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit", + "end": 140735630209024, + "name": "SearchKit", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit", + "start": 140735629750272 + }, + { + "arch": "x86_64", + "breakpadId": "6932B5EC0EA9333DBF7E665047392FEC0", + "debugName": "AppleSystemInfo", + "debugPath": "/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo", + "end": 140735630225408, + "name": "AppleSystemInfo", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo", + "start": 140735630209024 + }, + { + "arch": "x86_64", + "breakpadId": "71DA00B85EA2326B881459DB25512F650", + "debugName": "SpeechSynthesis", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis", + "end": 140735631179776, + "name": "SpeechSynthesis", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis", + "start": 140735631126528 + }, + { + "arch": "x86_64", + "breakpadId": "1AA24A1BCB843F6BB6DE11494542649C0", + "debugName": "CoreVideo", + "debugPath": "/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo", + "end": 140735631396864, + "name": "CoreVideo", + "offset": 0, + "path": "/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo", + "start": 140735631179776 + }, + { + "arch": "x86_64", + "breakpadId": "18D21123A3E73851974A08E5D45404750", + "debugName": "LangAnalysis", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis", + "end": 140735631462400, + "name": "LangAnalysis", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis", + "start": 140735631396864 + }, + { + "arch": "x86_64", + "breakpadId": "1F6BDF183CF03E858D9B0663599B99490", + "debugName": "SecurityFoundation", + "debugPath": "/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation", + "end": 140735634227200, + "name": "SecurityFoundation", + "offset": 0, + "path": "/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation", + "start": 140735633747968 + }, + { + "arch": "x86_64", + "breakpadId": "5D3653818B5E32598867FC4A7D307BDE0", + "debugName": "Heimdal", + "debugPath": "/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal", + "end": 140735635632128, + "name": "Heimdal", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal", + "start": 140735635152896 + }, + { + "arch": "x86_64", + "breakpadId": "3D62A9B367A83F8AA10205E3102490750", + "debugName": "CoreAudio", + "debugPath": "/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio", + "end": 140735636164608, + "name": "CoreAudio", + "offset": 0, + "path": "/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio", + "start": 140735635828736 + }, + { + "arch": "x86_64", + "breakpadId": "6EE4A68650C83D77A036BE8AA0F8A2FD0", + "debugName": "CoreImage", + "debugPath": "/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage", + "end": 140735638401024, + "name": "CoreImage", + "offset": 0, + "path": "/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage", + "start": 140735636164608 + }, + { + "arch": "x86_64", + "breakpadId": "993592F1B3F13FAD87BDEA83C361BCCF0", + "debugName": "CoreWiFi", + "debugPath": "/System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi", + "end": 140735638851584, + "name": "CoreWiFi", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi", + "start": 140735638425600 + }, + { + "arch": "x86_64", + "breakpadId": "6F776D34D06C3C48B753D0FB375A4A8A0", + "debugName": "libkxld.dylib", + "debugPath": "/usr/lib/system/libkxld.dylib", + "end": 140735638900736, + "name": "libkxld.dylib", + "offset": 0, + "path": "/usr/lib/system/libkxld.dylib", + "start": 140735638851584 + }, + { + "arch": "x86_64h", + "breakpadId": "54F18254F31B3464BB51BAF9E96204190", + "debugName": "ImageIO", + "debugPath": "/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO", + "end": 140735640764416, + "name": "ImageIO", + "offset": 0, + "path": "/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO", + "start": 140735638900736 + }, + { + "arch": "x86_64", + "breakpadId": "30250542CBAA39C191AAB57A5DE175940", + "debugName": "DictionaryServices", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices", + "end": 140735640961024, + "name": "DictionaryServices", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices", + "start": 140735640764416 + }, + { + "arch": "x86_64", + "breakpadId": "52766210B6EB3B73AB1B42E0A9AD2EE80", + "debugName": "AppSandbox", + "debugPath": "/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox", + "end": 140735644237824, + "name": "AppSandbox", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox", + "start": 140735644188672 + }, + { + "arch": "x86_64", + "breakpadId": "4B8673E136973FE28D30AC7AC5D4F8BF0", + "debugName": "CommonAuth", + "debugPath": "/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth", + "end": 140735644524544, + "name": "CommonAuth", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth", + "start": 140735644483584 + }, + { + "arch": "x86_64", + "breakpadId": "F55902AA53163255A701FDED5B5530650", + "debugName": "DiskArbitration", + "debugPath": "/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration", + "end": 140735646633984, + "name": "DiskArbitration", + "offset": 0, + "path": "/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration", + "start": 140735646609408 + }, + { + "arch": "x86_64", + "breakpadId": "D692B1EF534F38928E2F2BBA7C8AFD740", + "debugName": "NetAuth", + "debugPath": "/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth", + "end": 140735650656256, + "name": "NetAuth", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth", + "start": 140735650611200 + }, + { + "arch": "x86_64h", + "breakpadId": "6D73C20DD1C43BA5809B4B597C15AA860", + "debugName": "libvMisc.dylib", + "debugPath": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib", + "end": 140735653875712, + "name": "libvMisc.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib", + "start": 140735653150720 + }, + { + "arch": "x86_64", + "breakpadId": "CFCD19BD87BC3F2BBB1C4C23E8E55F1A0", + "debugName": "libpam.2.dylib", + "debugPath": "/usr/lib/libpam.2.dylib", + "end": 140735653896192, + "name": "libpam.2.dylib", + "offset": 0, + "path": "/usr/lib/libpam.2.dylib", + "start": 140735653875712 + }, + { + "arch": "x86_64", + "breakpadId": "4FC6D3F965823E7DA7D1E035F0E266970", + "debugName": "libGL.dylib", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib", + "end": 140735653945344, + "name": "libGL.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib", + "start": 140735653896192 + }, + { + "arch": "x86_64", + "breakpadId": "24C4A3903079358A8D5175A3E818A6DF0", + "debugName": "CFNetwork", + "debugPath": "/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork", + "end": 140735656599552, + "name": "CFNetwork", + "offset": 0, + "path": "/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork", + "start": 140735653945344 + }, + { + "arch": "x86_64", + "breakpadId": "F3355C6EED333506B10E2F6995D34BC10", + "debugName": "libFontRegistry.dylib", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib", + "end": 140735656886272, + "name": "libFontRegistry.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib", + "start": 140735656599552 + }, + { + "arch": "x86_64", + "breakpadId": "F80C19CA6CD030529C220288A257CCC80", + "debugName": "CoreAUC", + "debugPath": "/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC", + "end": 140735661756416, + "name": "CoreAUC", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC", + "start": 140735657721856 + }, + { + "arch": "x86_64", + "breakpadId": "5F18F20D59213314A9F8F1B1CB62C83D0", + "debugName": "libRIP.A.dylib", + "debugPath": "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib", + "end": 140735662129152, + "name": "libRIP.A.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib", + "start": 140735661957120 + }, + { + "arch": "x86_64", + "breakpadId": "FDA38B1782E2322FA008B9207A6EA6680", + "debugName": "LaunchServices", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices", + "end": 140735663370240, + "name": "LaunchServices", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices", + "start": 140735662166016 + }, + { + "arch": "x86_64", + "breakpadId": "BCF89EFE853D3AEAAE31DC8293C7284F0", + "debugName": "IOBluetooth", + "debugPath": "/System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth", + "end": 140735664365568, + "name": "IOBluetooth", + "offset": 0, + "path": "/System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth", + "start": 140735663689728 + }, + { + "arch": "x86_64", + "breakpadId": "EA63B45B22D335469BD6EEEB7F1B48B60", + "debugName": "libTrueTypeScaler.dylib", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib", + "end": 140735664607232, + "name": "libTrueTypeScaler.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib", + "start": 140735664398336 + }, + { + "arch": "x86_64", + "breakpadId": "61F6212609023324BB1D8B93297ED8990", + "debugName": "IntlPreferences", + "debugPath": "/System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences", + "end": 140735665082368, + "name": "IntlPreferences", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences", + "start": 140735665020928 + }, + { + "arch": "x86_64", + "breakpadId": "396E2233E2DC391C84D2991F636A941B0", + "debugName": "SafariServices", + "debugPath": "/System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices", + "end": 140735665094656, + "name": "SafariServices", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices", + "start": 140735665082368 + }, + { + "arch": "x86_64", + "breakpadId": "88C17B7F1CD83979A1A9F7BDB4FCE7890", + "debugName": "libsystem_kernel.dylib", + "debugPath": "/usr/lib/system/libsystem_kernel.dylib", + "end": 140735665864704, + "name": "libsystem_kernel.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_kernel.dylib", + "start": 140735665737728 + }, + { + "arch": "x86_64", + "breakpadId": "08E1A4B264483DFEA58CACC7335BE7E40", + "debugName": "libsystem_m.dylib", + "debugPath": "/usr/lib/system/libsystem_m.dylib", + "end": 140735666061312, + "name": "libsystem_m.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_m.dylib", + "start": 140735665864704 + }, + { + "arch": "x86_64", + "breakpadId": "ADD57D3A142F3EF5BFD8EACD821648840", + "debugName": "ApplicationServices", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices", + "end": 140735666065408, + "name": "ApplicationServices", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices", + "start": 140735666061312 + }, + { + "arch": "x86_64", + "breakpadId": "C90DAE384082381CA1852A6A8B6776280", + "debugName": "libsystem_coretls.dylib", + "debugPath": "/usr/lib/system/libsystem_coretls.dylib", + "end": 140735666163712, + "name": "libsystem_coretls.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_coretls.dylib", + "start": 140735666065408 + }, + { + "arch": "x86_64", + "breakpadId": "AD0DAC8A98493077999F9AEC6112BDAB0", + "debugName": "libOpenScriptingUtil.dylib", + "debugPath": "/usr/lib/libOpenScriptingUtil.dylib", + "end": 140735666221056, + "name": "libOpenScriptingUtil.dylib", + "offset": 0, + "path": "/usr/lib/libOpenScriptingUtil.dylib", + "start": 140735666216960 + }, + { + "arch": "x86_64", + "breakpadId": "5AE8AA6BCE09397DB0D40F9CCBF1F77D0", + "debugName": "PrintCore", + "debugPath": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore", + "end": 140735666536448, + "name": "PrintCore", + "offset": 0, + "path": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore", + "start": 140735666221056 + }, + { + "arch": "x86_64", + "breakpadId": "AABB5267E7B73D75B051E665BDA8DEF40", + "debugName": "UIFoundation", + "debugPath": "/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation", + "end": 140735668248576, + "name": "UIFoundation", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation", + "start": 140735666679808 + }, + { + "arch": "x86_64", + "breakpadId": "45BE1B998E1032F0A180A6B6CB5883AE0", + "debugName": "DisplayServices", + "debugPath": "/System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices", + "end": 140735668322304, + "name": "DisplayServices", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices", + "start": 140735668281344 + }, + { + "arch": "x86_64", + "breakpadId": "FAE317B8DF153096AFAC464913BF2F3B0", + "debugName": "ImageKit", + "debugPath": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit", + "end": 140735670870016, + "name": "ImageKit", + "offset": 0, + "path": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit", + "start": 140735668322304 + }, + { + "arch": "x86_64", + "breakpadId": "2F81C8C911A33581B2C1D8C03AB7D39C0", + "debugName": "libsasl2.2.dylib", + "debugPath": "/usr/lib/libsasl2.2.dylib", + "end": 140735671279616, + "name": "libsasl2.2.dylib", + "offset": 0, + "path": "/usr/lib/libsasl2.2.dylib", + "start": 140735671201792 + }, + { + "arch": "x86_64", + "breakpadId": "1D2AD77B778F3253A2953D0A32A8121C0", + "debugName": "SharedFileList", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList", + "end": 140735672467456, + "name": "SharedFileList", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList", + "start": 140735672180736 + }, + { + "arch": "x86_64", + "breakpadId": "6BA06290D4A3351C87F9B61EF61FF0550", + "debugName": "SpeechRecognitionCore", + "debugPath": "/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore", + "end": 140735673135104, + "name": "SpeechRecognitionCore", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore", + "start": 140735673081856 + }, + { + "arch": "x86_64", + "breakpadId": "BAE5E5C9DD593BB89741EEFC5E3046EE0", + "debugName": "ProtocolBuffer", + "debugPath": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer", + "end": 140735673204736, + "name": "ProtocolBuffer", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer", + "start": 140735673135104 + }, + { + "arch": "x86_64", + "breakpadId": "0F4169F00C843A25B3AEE47B3586D9080", + "debugName": "libquarantine.dylib", + "debugPath": "/usr/lib/system/libquarantine.dylib", + "end": 140735673217024, + "name": "libquarantine.dylib", + "offset": 0, + "path": "/usr/lib/system/libquarantine.dylib", + "start": 140735673204736 + }, + { + "arch": "x86_64", + "breakpadId": "B901C222E77932EB96C25A707A09FC5B0", + "debugName": "libCGXType.A.dylib", + "debugPath": "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib", + "end": 140735675428864, + "name": "libCGXType.A.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib", + "start": 140735675416576 + }, + { + "arch": "x86_64", + "breakpadId": "518331436CAE3E1C9FBABCDEB48D4ADF0", + "debugName": "Foundation", + "debugPath": "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation", + "end": 140735681687552, + "name": "Foundation", + "offset": 0, + "path": "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation", + "start": 140735678193664 + }, + { + "arch": "x86_64", + "breakpadId": "4CE49D8A8304334793796075CB9064190", + "debugName": "OSServices", + "debugPath": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices", + "end": 140735682072576, + "name": "OSServices", + "offset": 0, + "path": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices", + "start": 140735681687552 + }, + { + "arch": "x86_64", + "breakpadId": "A3868F31ACF43EA59E7579ED44FA7F060", + "debugName": "CoreUI", + "debugPath": "/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI", + "end": 140735684157440, + "name": "CoreUI", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI", + "start": 140735682801664 + }, + { + "arch": "x86_64", + "breakpadId": "318264FA58F139D882851F6254EE410E0", + "debugName": "libmacho.dylib", + "debugPath": "/usr/lib/system/libmacho.dylib", + "end": 140735684214784, + "name": "libmacho.dylib", + "offset": 0, + "path": "/usr/lib/system/libmacho.dylib", + "start": 140735684190208 + }, + { + "arch": "x86_64", + "breakpadId": "CE75EDA32B223968834E550EA870ECC80", + "debugName": "MultitouchSupport", + "debugPath": "/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport", + "end": 140735684366336, + "name": "MultitouchSupport", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport", + "start": 140735684214784 + }, + { + "arch": "x86_64", + "breakpadId": "2CC7CF3666D4301BA6D8EBAE7405B0080", + "debugName": "libxpc.dylib", + "debugPath": "/usr/lib/system/libxpc.dylib", + "end": 140735687503872, + "name": "libxpc.dylib", + "offset": 0, + "path": "/usr/lib/system/libxpc.dylib", + "start": 140735687331840 + }, + { + "arch": "x86_64", + "breakpadId": "7E14504CA8B03574B6EB5D5FABC729260", + "debugName": "libbsm.0.dylib", + "debugPath": "/usr/lib/libbsm.0.dylib", + "end": 140735687753728, + "name": "libbsm.0.dylib", + "offset": 0, + "path": "/usr/lib/libbsm.0.dylib", + "start": 140735687684096 + }, + { + "arch": "x86_64h", + "breakpadId": "8C9F8E1A274C36CE93FB49906A9B9EE20", + "debugName": "CoreGraphics", + "debugPath": "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics", + "end": 140735707262976, + "name": "CoreGraphics", + "offset": 0, + "path": "/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics", + "start": 140735688077312 + }, + { + "arch": "x86_64", + "breakpadId": "B9D08EB8FB353F7B8A1C6FCE3F07B7E70", + "debugName": "libcommonCrypto.dylib", + "debugPath": "/usr/lib/system/libcommonCrypto.dylib", + "end": 140735707389952, + "name": "libcommonCrypto.dylib", + "offset": 0, + "path": "/usr/lib/system/libcommonCrypto.dylib", + "start": 140735707340800 + }, + { + "arch": "x86_64", + "breakpadId": "F3E145615DF4342998ED8F27A87A343A0", + "debugName": "ServiceManagement", + "debugPath": "/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement", + "end": 140735707840512, + "name": "ServiceManagement", + "offset": 0, + "path": "/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement", + "start": 140735707828224 + }, + { + "arch": "x86_64", + "breakpadId": "B28814498CFE3D1CB4BF1556403925330", + "debugName": "RemoteViewServices", + "debugPath": "/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices", + "end": 140735708073984, + "name": "RemoteViewServices", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices", + "start": 140735707840512 + }, + { + "arch": "x86_64", + "breakpadId": "6C370A2163FD3A68B4B35333F24B770B0", + "debugName": "libarchive.2.dylib", + "debugPath": "/usr/lib/libarchive.2.dylib", + "end": 140735718772736, + "name": "libarchive.2.dylib", + "offset": 0, + "path": "/usr/lib/libarchive.2.dylib", + "start": 140735718592512 + }, + { + "arch": "x86_64", + "breakpadId": "F304E9D1991A379E9659BF85C35B48080", + "debugName": "Backup", + "debugPath": "/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup", + "end": 140735720419328, + "name": "Backup", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup", + "start": 140735719694336 + }, + { + "arch": "x86_64", + "breakpadId": "928294E768973D5B9D2EBC092B6C25DE0", + "debugName": "GeoServices", + "debugPath": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices", + "end": 140735725252608, + "name": "GeoServices", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices", + "start": 140735720419328 + }, + { + "arch": "x86_64", + "breakpadId": "6F827D0E0F023B09B2A8252865EECA7F0", + "debugName": "DirectoryService", + "debugPath": "/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService", + "end": 140735725330432, + "name": "DirectoryService", + "offset": 0, + "path": "/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService", + "start": 140735725281280 + }, + { + "arch": "x86_64", + "breakpadId": "2492D31576B6320BB542231FCA44CA480", + "debugName": "AppKit", + "debugPath": "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit", + "end": 140735738085376, + "name": "AppKit", + "offset": 0, + "path": "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit", + "start": 140735725330432 + }, + { + "arch": "x86_64", + "breakpadId": "007F9094317A33EAAF62BAEAAB48C0F70", + "debugName": "libsystem_asl.dylib", + "debugPath": "/usr/lib/system/libsystem_asl.dylib", + "end": 140735738253312, + "name": "libsystem_asl.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_asl.dylib", + "start": 140735738155008 + }, + { + "arch": "x86_64", + "breakpadId": "560D70FB709F303096C9F249FCB7DA6D0", + "debugName": "libCoreVMClient.dylib", + "debugPath": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib", + "end": 140735738269696, + "name": "libCoreVMClient.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib", + "start": 140735738253312 + }, + { + "arch": "x86_64", + "breakpadId": "86A05653DCA03345B29FF320029AA05E0", + "debugName": "libsystem_dnssd.dylib", + "debugPath": "/usr/lib/system/libsystem_dnssd.dylib", + "end": 140735738798080, + "name": "libsystem_dnssd.dylib", + "offset": 0, + "path": "/usr/lib/system/libsystem_dnssd.dylib", + "start": 140735738761216 + }, + { + "arch": "x86_64", + "breakpadId": "27AF3C851C0B389C856C2E527620C1950", + "debugName": "PDFKit", + "debugPath": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit", + "end": 140735739531264, + "name": "PDFKit", + "offset": 0, + "path": "/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit", + "start": 140735738826752 + }, + { + "arch": "x86_64", + "breakpadId": "BA4BF2C67F4E33B89DD7619C9EB83ECF0", + "debugName": "libcmph.dylib", + "debugPath": "/usr/lib/libcmph.dylib", + "end": 140735739723776, + "name": "libcmph.dylib", + "offset": 0, + "path": "/usr/lib/libcmph.dylib", + "start": 140735739650048 + }, + { + "arch": "x86_64", + "breakpadId": "B3EBB42F48E332879F0D308E04D407AC0", + "debugName": "libz.1.dylib", + "debugPath": "/usr/lib/libz.1.dylib", + "end": 140735740272640, + "name": "libz.1.dylib", + "offset": 0, + "path": "/usr/lib/libz.1.dylib", + "start": 140735740198912 + }, + { + "arch": "x86_64", + "breakpadId": "B839BE1495033B5EA54AC7FCEED34EA30", + "debugName": "VideoToolbox", + "debugPath": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox", + "end": 140735743926272, + "name": "VideoToolbox", + "offset": 0, + "path": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox", + "start": 140735740272640 + }, + { + "arch": "x86_64h", + "breakpadId": "47ACF98DB5F13A03B6FD4107D5FAE5E90", + "debugName": "libPng.dylib", + "debugPath": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib", + "end": 140735744081920, + "name": "libPng.dylib", + "offset": 0, + "path": "/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib", + "start": 140735743926272 + }, + { + "arch": "x86_64", + "breakpadId": "8C821448429437369CEF467C93785CB90", + "debugName": "GenerationalStorage", + "debugPath": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage", + "end": 140735744200704, + "name": "GenerationalStorage", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage", + "start": 140735744081920 + }, + { + "arch": "x86_64", + "breakpadId": "3A6906D4C0B830D1B5890466E5E42B690", + "debugName": "DesktopServicesPriv", + "debugPath": "/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv", + "end": 140735745310720, + "name": "DesktopServicesPriv", + "offset": 0, + "path": "/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv", + "start": 140735744200704 + } + ], + "meta": { + "abi": "x86_64-gcc3", + "asyncstack": 0, + "debug": 0, + "extensions": { + "data": [ + [ + "screenshots@mozilla.org", + "Firefox Screenshots", + "moz-extension://30f03023-f150-1d41-94f5-c8f689462468/" + ] + ], + "schema": { + "baseURL": 2, + "id": 0, + "name": 1 + } + }, + "gcpoison": 0, + "interval": 1, + "misc": "rv:59.0", + "oscpu": "Intel Mac OS X 10.11", + "platform": "Macintosh", + "processType": 2, + "product": "Firefox", + "shutdownTime": null, + "stackwalk": 0, + "startTime": 1523986294997.0308, + "toolkit": "cocoa", + "version": 9 + }, + "pausedRanges": [ + { + "endTime": 51648.439512000004, + "reason": "collecting", + "startTime": 51593.999369000005 + }, + { + "endTime": 55962.657264, + "reason": "collecting", + "startTime": 55944.502577 + }, + { + "endTime": 75006.547935, + "reason": "collecting", + "startTime": 74987.146907 + }, + { + "endTime": 78826.072482, + "reason": "collecting", + "startTime": 78808.336169 + }, + { + "endTime": 85302.078038, + "reason": "collecting", + "startTime": 85283.517032 + }, + { + "endTime": 86477.67636099999, + "reason": "collecting", + "startTime": 86458.64313600001 + }, + { + "endTime": 129595.020708, + "reason": "collecting", + "startTime": 129570.06573999999 + }, + { + "endTime": 163853.58965, + "reason": "collecting", + "startTime": 163818.686878 + }, + { + "endTime": 166535.005559, + "reason": "collecting", + "startTime": 166504.285375 + } + ], + "processes": [], + "threads": [ + { + "frameTable": { + "data": [ + [ + 0 + ], + [ + 1, + null, + null, + 399, + 16 + ], + [ + 2, + null, + null, + 403, + 4096 + ], + [ + 3, + null, + null, + 392, + 512 + ], + [ + 4, + null, + null, + 673, + 512 + ], + [ + 5, + null, + null, + 95, + 512 + ], + [ + 6, + null, + null, + 140, + 64 + ], + [ + 7, + null, + null, + null, + 64 + ], + [ + 8, + null, + null, + 28, + 64 + ], + [ + 9, + null, + null, + 292, + 16 + ], + [ + 10, + 11 + ], + [ + 12, + null, + null, + 581, + 64 + ], + [ + 13, + null, + null, + 317, + 64 + ], + [ + 14, + 11 + ], + [ + 15, + 11 + ], + [ + 16, + 11 + ], + [ + 16, + 11 + ], + [ + 17, + 11 + ], + [ + 18, + null, + null, + 147, + 64 + ], + [ + 19, + null, + null, + 246, + 64 + ], + [ + 20, + 11 + ], + [ + 21, + 11 + ], + [ + 22, + 11 + ], + [ + 23, + null, + null, + 1270, + 64 + ], + [ + 22, + 11 + ], + [ + 24, + null, + null, + 174, + 64 + ], + [ + 25, + null, + null, + 60, + 64 + ], + [ + 26, + null, + null, + 52, + 64 + ], + [ + 8, + null, + null, + 29, + 64 + ], + [ + 27, + null, + null, + 3, + 64 + ], + [ + 28, + null, + null, + 10, + 64 + ], + [ + 29, + 11 + ], + [ + 27, + 11 + ], + [ + 30, + 11 + ], + [ + 29, + 31 + ], + [ + 27, + 11 + ], + [ + 28, + 11 + ], + [ + 28, + 31 + ], + [ + 29, + 31 + ], + [ + 30, + 31 + ], + [ + 29, + 31 + ], + [ + 32, + null, + null, + 742, + 64 + ], + [ + 17, + null, + null, + 989, + 64 + ], + [ + 33, + null, + null, + 806, + 64 + ], + [ + 34, + null, + null, + 911, + 64 + ], + [ + 34, + null, + null, + 922, + 64 + ], + [ + 35, + null, + null, + 1035, + 64 + ], + [ + 20, + 11 + ], + [ + 36, + null, + null, + 16, + 64 + ], + [ + 37, + null, + null, + 350, + 64 + ], + [ + 38, + null, + null, + 4194, + 64 + ], + [ + 39, + null, + null, + 4189, + 64 + ], + [ + 40, + null, + null, + 99, + 64 + ], + [ + 16, + 11 + ], + [ + 41, + null, + null, + 383, + 16 + ], + [ + 42, + null, + null, + 31, + 64 + ], + [ + 18, + null, + null, + 149, + 64 + ], + [ + 43, + null, + null, + 317, + 64 + ], + [ + 44, + null, + null, + 685, + 64 + ] + ], + "schema": { + "category": 4, + "implementation": 1, + "line": 3, + "location": 0, + "optimizations": 2 + } + }, + "markers": { + "data": [ + [ + 45, + 177314.720344, + { + "category": "Paint", + "interval": "start", + "type": "tracing" + } + ], + [ + 46, + 177314.727175, + { + "category": "Paint", + "interval": "start", + "type": "tracing" + } + ], + [ + 46, + 177314.759572, + { + "category": "Paint", + "interval": "end", + "type": "tracing" + } + ], + [ + 45, + 177314.762545, + { + "category": "Paint", + "interval": "end", + "type": "tracing" + } + ], + [ + 47, + 177315.373872 + ] + ], + "schema": { + "data": 2, + "name": 0, + "time": 1 + } + }, + "name": "GeckoMain", + "pid": 60640, + "processType": "tab", + "registerTime": 23.535361, + "samples": { + "data": [ + [ + 45, + 0.9106829999946058, + 12.341081000020495 + ], + [ + 49, + 2.03845799996634, + 13.468855999992229 + ], + [ + 52, + 3.0279909999808297, + 14.458389000006719 + ], + [ + 55, + 4.048778999975184, + 15.479177000001073 + ], + [ + 52, + 5.030815999984043, + 16.46121400000993 + ], + [ + 57, + 6.046769999986282, + 17.47716800001217 + ], + [ + 57, + 7.034031999966828, + 18.464429999992717 + ], + [ + 57, + 8.04733099997975, + 19.47772900000564 + ], + [ + 57, + 8.841030999989016, + 20.271429000014905 + ], + [ + 57, + 9.864089999959106, + 21.294487999984995 + ], + [ + 57, + 11.090239999990445, + 22.520638000016334 + ], + [ + 57, + 12.032203999959165, + 23.462601999985054 + ], + [ + 59, + 13.046589999983553, + 24.47698800000944 + ], + [ + 59, + 14.04434399996535, + 25.474741999991238 + ], + [ + 57, + 15.050287999998545, + 26.480686000024434 + ], + [ + 59, + 16.03172399997129, + 27.46212199999718 + ], + [ + 59, + 17.036800999980187, + 28.467199000006076 + ], + [ + 57, + 18.03345099996659, + 29.46384899999248 + ], + [ + 57, + 19.047190999990562, + 30.47758900001645 + ], + [ + 59, + 20.033258999988902, + 31.46365700001479 + ], + [ + 59, + 21.05189099998097, + 32.48228900000686 + ], + [ + 59, + 22.031463999970583, + 33.46186199999647 + ], + [ + 57, + 23.052531999972416, + 34.482929999998305 + ], + [ + 57, + 24.030148999998346, + 35.460547000024235 + ], + [ + 57, + 25.050715999968816, + 36.481113999994704 + ], + [ + 57, + 25.887595999985933, + 37.31799400001182 + ], + [ + 59, + 27.08442999998806, + 38.51482800001395 + ], + [ + 59, + 28.034035999968182, + 39.46443399999407 + ], + [ + 57, + 29.04436399997212, + 40.47476199999801 + ], + [ + 57, + 30.055023999972036, + 41.485421999997925 + ], + [ + 57, + 31.04386700000032, + 42.47426500002621 + ], + [ + 57, + 32.01914899997064, + 43.44954699999653 + ], + [ + 57, + 33.051387999992585, + 44.481786000018474 + ], + [ + 69, + 34.031278999958886, + 45.461676999984775 + ], + [ + 86, + 34.870541999989655, + 46.300940000015544 + ], + [ + 97, + 36.08382799997344, + 47.514225999999326 + ], + [ + 98, + 37.01849299998139, + 48.44889100000728 + ], + [ + 125, + 37.888738999987254, + 49.31913700001314 + ] + ], + "schema": { + "responsiveness": 2, + "rss": 3, + "stack": 0, + "time": 1, + "uss": 4 + } + }, + "stackTable": { + "data": [ + [ + null, + 0 + ], + [ + 0, + 1 + ], + [ + 1, + 2 + ], + [ + 2, + 3 + ], + [ + 3, + 4 + ], + [ + 4, + 5 + ], + [ + 5, + 6 + ], + [ + 6, + 7 + ], + [ + 7, + 8 + ], + [ + 8, + 9 + ], + [ + 9, + 7 + ], + [ + 10, + 10 + ], + [ + 11, + 7 + ], + [ + 12, + 11 + ], + [ + 13, + 7 + ], + [ + 14, + 12 + ], + [ + 15, + 13 + ], + [ + 16, + 14 + ], + [ + 17, + 15 + ], + [ + 18, + 16 + ], + [ + 19, + 7 + ], + [ + 20, + 17 + ], + [ + 21, + 7 + ], + [ + 22, + 18 + ], + [ + 23, + 19 + ], + [ + 24, + 20 + ], + [ + 25, + 21 + ], + [ + 26, + 22 + ], + [ + 27, + 7 + ], + [ + 28, + 23 + ], + [ + 29, + 19 + ], + [ + 30, + 20 + ], + [ + 31, + 21 + ], + [ + 32, + 22 + ], + [ + 33, + 7 + ], + [ + 34, + 23 + ], + [ + 35, + 19 + ], + [ + 36, + 20 + ], + [ + 37, + 21 + ], + [ + 38, + 24 + ], + [ + 39, + 7 + ], + [ + 40, + 23 + ], + [ + 41, + 25 + ], + [ + 42, + 7 + ], + [ + 43, + 26 + ], + [ + 44, + 27 + ], + [ + 7, + 28 + ], + [ + 46, + 29 + ], + [ + 47, + 30 + ], + [ + 48, + 31 + ], + [ + 46, + 32 + ], + [ + 50, + 33 + ], + [ + 51, + 34 + ], + [ + 46, + 35 + ], + [ + 53, + 36 + ], + [ + 54, + 34 + ], + [ + 53, + 37 + ], + [ + 56, + 38 + ], + [ + 50, + 39 + ], + [ + 58, + 40 + ], + [ + 2, + 7 + ], + [ + 60, + 41 + ], + [ + 61, + 7 + ], + [ + 62, + 42 + ], + [ + 63, + 7 + ], + [ + 64, + 42 + ], + [ + 65, + 7 + ], + [ + 66, + 43 + ], + [ + 67, + 7 + ], + [ + 68, + 44 + ], + [ + 68, + 45 + ], + [ + 70, + 7 + ], + [ + 71, + 46 + ], + [ + 72, + 21 + ], + [ + 73, + 22 + ], + [ + 74, + 7 + ], + [ + 75, + 23 + ], + [ + 76, + 19 + ], + [ + 77, + 47 + ], + [ + 78, + 7 + ], + [ + 79, + 48 + ], + [ + 80, + 7 + ], + [ + 81, + 49 + ], + [ + 82, + 7 + ], + [ + 83, + 50 + ], + [ + 84, + 7 + ], + [ + 85, + 51 + ], + [ + 76, + 7 + ], + [ + 87, + 14 + ], + [ + 88, + 15 + ], + [ + 89, + 16 + ], + [ + 90, + 7 + ], + [ + 91, + 17 + ], + [ + 92, + 7 + ], + [ + 93, + 52 + ], + [ + 94, + 7 + ], + [ + 95, + 14 + ], + [ + 96, + 53 + ], + [ + 2, + 54 + ], + [ + 60, + 55 + ], + [ + 99, + 9 + ], + [ + 100, + 7 + ], + [ + 101, + 10 + ], + [ + 102, + 7 + ], + [ + 103, + 11 + ], + [ + 104, + 7 + ], + [ + 105, + 12 + ], + [ + 106, + 13 + ], + [ + 107, + 14 + ], + [ + 108, + 15 + ], + [ + 109, + 16 + ], + [ + 110, + 7 + ], + [ + 111, + 17 + ], + [ + 112, + 7 + ], + [ + 113, + 56 + ], + [ + 114, + 19 + ], + [ + 115, + 20 + ], + [ + 116, + 21 + ], + [ + 117, + 24 + ], + [ + 118, + 7 + ], + [ + 119, + 23 + ], + [ + 120, + 7 + ], + [ + 121, + 57 + ], + [ + 122, + 7 + ], + [ + 123, + 58 + ], + [ + 124, + 7 + ] + ], + "schema": { + "frame": 1, + "prefix": 0 + } + }, + "stringTable": [ + "(root)", + "XRE_InitChildProcess", + "nsAppShell::ProcessGeckoEvents", + "nsInputStreamPump::OnInputStreamReady", + "nsInputStreamPump::OnStateStop", + "nsIncrementalStreamLoader::OnStopRequest", + "nsJSUtils::ExecutionContext", + "js::RunScript", + "file:///Users/jlfwong/code/speedscope/sample/simple.js:1", + "nsObserverService::NotifyObservers console-api-profiler", + "exports.makeInfallible/< (resource://devtools/shared/base-loader.js -> resource://devtools/shared/ThreadSafeDevToolsUtils.js:107)", + "baseline", + "sanitizeHandler/< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:573)", + "ProfilerManager.observe< (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:283)", + "emitEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/profiler.js:357)", + "emit (resource://devtools/shared/base-loader.js -> resource://devtools/shared/event-emitter.js:254)", + "emit (resource://devtools/shared/base-loader.js -> resource://devtools/shared/event-emitter.js:150)", + "bound (self-hosted:962)", + "_onProfilerEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/recorder.js:144)", + "asyncFunction (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:222)", + "TaskImpl (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:265)", + "_run (resource://devtools/shared/base-loader.js -> resource://devtools/shared/task.js:304)", + "next (self-hosted:1217)", + "InterpretGeneratorResume (self-hosted:1269)", + "_pullTimelineData (resource://devtools/shared/base-loader.js -> resource://devtools/server/performance/timeline.js:108)", + "setTimeout (resource://gre/modules/Timer.jsm:59)", + "_setTimeoutOrIsInterval (resource://gre/modules/Timer.jsm:26)", + "a (file:///Users/jlfwong/code/speedscope/sample/simple.js:1)", + "b (file:///Users/jlfwong/code/speedscope/sample/simple.js:8)", + "d (file:///Users/jlfwong/code/speedscope/sample/simple.js:20)", + "c (file:///Users/jlfwong/code/speedscope/sample/simple.js:14)", + "ion", + "scheduleWalkerLoop/< (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:741)", + "walkerLoop (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:787)", + "process (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:911)", + "bound (self-hosted:1009)", + "defer (resource://devtools/shared/base-loader.js -> resource://devtools/shared/defer.js:14)", + "Promise (resource://gre/modules/Promise.jsm -> resource://gre/modules/Promise-backend.js:342)", + "defineProperty (self-hosted:4193)", + "ObjectOrReflectDefineProperty (self-hosted:4142)", + "_onRecorderEvent (resource://devtools/shared/base-loader.js -> resource://devtools/server/actors/performance.js:88)", + "nsHtml5TreeOpExecutor::RunFlushLoop", + "file:///Users/jlfwong/code/speedscope/sample/simple.js:30", + "filter (self-hosted:309)", + "ArraySpeciesCreate (self-hosted:673)", + "RefreshDriverTick", + "Scripts", + "Navigation::DOMInteractive" + ], + "tid": 9101203, + "unregisterTime": null + } + ] + }, + "systemClient": { + "appbuildid": "20180315233128", + "appid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "apptype": "firefox", + "arch": "x86_64", + "brandName": "Mozilla Firefox", + "channel": "release", + "compiler": "gcc3", + "dpi": 221, + "endianness": "LE", + "geckobuildid": "20180315233128", + "geckoversion": "59.0.1", + "hardware": "unknown", + "height": 900, + "hostname": "Jamess-MacBook-Pro", + "locale": "en-US", + "name": "Firefox", + "os": "Darwin", + "physicalHeight": 1800, + "physicalWidth": 2880, + "platform": "Darwin", + "platformbuildid": "20180315233128", + "platformversion": "59.0.1", + "processor": "x86_64", + "profile": "default", + "useragent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:59.0) Gecko/20100101 Firefox/59.0", + "vendor": "Mozilla", + "version": "59.0.1", + "width": 1440 + }, + "systemHost": { + "appbuildid": "20180315233128", + "appid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "apptype": "firefox", + "arch": "x86_64", + "brandName": "Mozilla Firefox", + "channel": "release", + "compiler": "gcc3", + "endianness": "LE", + "geckobuildid": "20180315233128", + "geckoversion": "59.0.1", + "hardware": "unknown", + "hostname": "", + "locale": "en-US", + "name": "Firefox", + "os": "Darwin", + "platform": "Darwin", + "platformbuildid": "20180315233128", + "platformversion": "59.0.1", + "processor": "x86_64", + "profile": "", + "vendor": "Mozilla", + "version": "59.0.1" + }, + "ticks": [], + "version": 2 +} diff --git a/sample/simple.html b/sample/simple.html new file mode 100644 index 0000000..26077bb --- /dev/null +++ b/sample/simple.html @@ -0,0 +1 @@ + \ No newline at end of file