Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created December 27, 2020 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melezhik/239abd43cdaeff06c680713db0fd0932 to your computer and use it in GitHub Desktop.
Save melezhik/239abd43cdaeff06c680713db0fd0932 to your computer and use it in GitHub Desktop.
Raku profile data. Rakudo Version: 45b4e6464d5437526aac6fa0c0822c2c90c0cb2c
<!DOCTYPE html>
<html lang="en" ng-app="moarProfApp" ng-controller="NavigationController">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MoarVM Profiler Results</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<style>
body {
min-height: 500px;
padding-top: 70px;
}
.icyclegraph .call {
display: block;
border: 1px solid black;
overflow: hidden;
}
.icyclegraph .child {
float: left;
}
.icyclegraph a {
color: black;
}
</style>
</head>
<body >
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">MoarVM Profiler Results</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li ng-class="Tab == 'Overview' ? 'active' : ''"><a href="#overview" ng-click="Tab = 'Overview'">Overview</a></li>
<li ng-class="Tab == 'Routines' ? 'active' : ''"><a href="#routines" ng-click="Tab = 'Routines'">Routines</a></li>
<li ng-class="Tab == 'Call Graph' ? 'active' : ''"><a href="#callgraph" ng-click="Tab = 'Call Graph'">Call Graph</a></li>
<li ng-class="Tab == 'Allocations' ? 'active' : ''"><a href="#allocations" ng-click="Tab = 'Allocations'">Allocations</a></li>
<li ng-class="Tab == 'GC' ? 'active' : ''"><a href="#gc" ng-click="Tab = 'GC'">GC</a></li>
<li ng-class="Tab == 'OSR/Deopt' ? 'active' : ''"><a href="#osrdeopt" ng-click="Tab = 'OSR/Deopt'">OSR / Deopt</a></li>
</ul>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Overview'">
<div ng-controller="OverviewController">
<h3>Time Spent</h3>
<p>The profiled code ran for <strong>{{TotalTime}}ms</strong>. Of this,
<strong>{{GCOverheadTime}}ms</strong> were spent on garbage collection
(that's <strong>{{GCOverheadTimePercent}}%</strong>).
</p>
<p>The dynamic optimizer was active for <strong>{{SpeshTimePercent}}%</strong> of the program's run time.
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Executing Code</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{ExecutingTimePercent}}%;">
</div>
</div>
</div>
<div>
{{ExecutingTimePercent}}%
({{ExecutingTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Garbage Collection</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{GCTimePercent}}%;">
</div>
</div>
</div>
<div>
{{GCTimePercent}}%
({{GCTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Dynamic Optimization</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshTimePercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshTimePercent}}%
({{SpeshTime}}ms)
</div>
</td>
</tr>
</tbody>
</table>
<h3>Call Frames</h3>
<p>In total, <strong>{{EntriesWithoutInline}} call frames</strong> were
entered and exited by the profiled code. Inlining eliminated the need
to create <strong>{{EntriesInline}} call frames</strong> (that's
<strong>{{InlinePercent}}%</strong>).
</p>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Interpreted Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpFramesPercent}}%
({{InterpFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshFramesPercent}}%
({{SpeshFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{JITFramesPercent}}%
({{JITFrames}})
</div>
</td>
</tr>
</tbody>
</table>
<h3>Garbage Collection</h3>
<p>The profiled code did <strong>{{GCRuns}} garbage collections</strong>.
There were <strong>{{FullGCRuns}} full collections</strong> involving
the entire heap.
</p>
<p ng-show="{{GCRuns > 0}}">
The average nursery collection time was <strong>{{NurseryAverage}}ms</strong>.
<span ng-show="{{FullGCRuns > 0}}">
The average full collection time was <strong>{{FullAverage}}ms</strong>.
</span>
<span ng-show="{{AverageParticipants > 1}}">
On average, <strong>{{AverageParticipants}}</strong> threads participated in GC.
</span>
</p>
<p ng-show="{{ScalarReplacements > 1}}">
Scalar replacement eliminated <strong>{{ScalarReplacements}}</strong> allocations
(that's <strong>{{ScalarReplacementPercent}}%</strong>).
</p>
<h3>Dynamic Optimization</h3>
<p>Of {{OptimizedFrames}} specialized or JIT-compiled frames, there were
<strong>{{DeoptOnes}} deoptimizations</strong> (that's <strong>
{{DeoptOnePercent}}%</strong> of all optimized frames).
</p>
<p ng-show="DeoptAlls == 0">
There was <strong>no global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls == 1">
There was <strong>one global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls > 1">
There were <strong>{{DeoptAlls}} global deoptimization</strong> triggered
by the profiled code.
</p>
<p ng-show="OSRs == 0">
There was <strong>no On Stack Replacement</strong> performed while
executing the profiled code (normal if the code lacks long-running
loops with many iterations).
</p>
<p ng-show="OSRs == 1">
There was <strong>one On Stack Replacement</strong> performed while
executing the profiled code.
</p>
<p ng-show="OSRs > 1">
There were <strong>{{OSRs}} On Stack Replacements</strong> performed
while executing the profiled code.
</p>
</div>
</div>
<div class="container" ng-show="Tab == 'Routines'">
<div ng-controller="RoutinesController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Entries' ? !reverse : true; predicate = 'Entries';">Entries</a></th>
<th><a href="" ng-click="reverse = predicate == 'InclusiveTime' ? !reverse : true; predicate = 'InclusiveTime';">Inclusive Time</a></th>
<th><a href="" ng-click="reverse = predicate == 'ExclusiveTime' ? !reverse : true; predicate = 'ExclusiveTime';">Exclusive Time</a></th>
<th>
<span class="text-danger" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Type-specialized, JIT-compiled code">JIT</span>
</th>
</thead>
<tbody>
<tr ng-repeat="routine in Routines | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>{{routine.Entries}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.InclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.InclusiveTimePercent}}%</strong>
({{routine.InclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.ExclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.ExclusiveTimePercent}}%</strong>
({{routine.ExclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 110px">
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.InterpEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.SpeshEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.JITEntriesPercent}}%">
</div>
</div>
</div>
<div>
<span class="label label-default" ng-show="routine.OSR">OSR</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/ng-template" id="icycle_graph_callee_renderer.html">
<a href="#" class="call" style="background-color:{{backgroundColor(callee)}}" ng-click="toCallee(callee)">{{callee.name}}</a>
<div class="child" style="width: {{callee.inclusive_time * 100 / Current.inclusive_time}}%;" ng-repeat="callee in callee.callees" title="{{callee.name}}" ng-include="'icycle_graph_callee_renderer.html'"></div>
</script>
<div class="container" ng-show="Tab == 'Call Graph'">
<div ng-controller="CallGraphController">
<ol class="breadcrumb">
<li><strong>Callers:</strong></li>
<li ng-show="RecentCallers.length == 0"><em>None</em></li>
<li ng-repeat="caller in RecentCallers">
<a href="" ng-click="toCaller(caller)">
{{caller.name == '' ? '&lt;anon&gt;' : caller.name}}
</a>
</li>
</ol>
<p>
<span class="lead">{{Current.name == '' ? '&lt;anon&gt;' : Current.name}}</span><br />
<span class="text-muted">{{File}}:{{Line}}</span>
</p>
<div class="icyclegraph">
<div class="child" ng-repeat="callee in [Current]" ng-include="'icycle_graph_callee_renderer.html'"></div>
</div>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Calls <span class="text-success">(Inlined)</span></strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{Percent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{InlinePercent}}%;">
</div>
</div>
</div>
<div ng-show="InlinePercent == 0">
{{Entries}}
</div>
<div ng-show="InlinePercent != 0">
{{Entries}} +
<span class="text-success">{{InlineEntries}} ({{InlinePercent}}%)</span>
</div>
</td>
</tr>
<tr>
<td><strong>Interpreted Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpPercent}}%
({{InterpEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshPercent}}%
({{SpeshEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITPercent}}%;">
</div>
</div>
</div>
<div>
{{JITPercent}}%
({{JITEntries}})
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel panel-default">
<div class="panel-heading">Callees</div>
<table class="table table-striped table-condensed table-bordered" ng-show="Callees.length > 0">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Calls' ? !reverse : true; predicate = 'Calls';">Calls</a></th>
<th><a href="" ng-click="reverse = predicate == 'Time' ? !reverse : true; predicate = 'Time';">Time In Callee</a></th>
<th>
<span class="text-danger" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Type-specialized, JIT-compiled code">JIT</span>
</th>
<th>
<span tooltip-placement="bottom" tooltip="Code from this callee was flattened into the routine by the optimizer">Inlined</span>
</th>
</thead>
<tbody>
<tr ng-repeat="callee in Callees | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong><a href="" ng-click="toCallee(callee.Node)">{{callee.Name}}</a></strong><br />
<span class="text-muted">{{callee.File}}:{{callee.Line}}</span>
</td>
<td>{{callee.Calls}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{callee.TimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{callee.TimePercent}}%</strong>
({{callee.Time}}ms)
</div>
</td>
<td>
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{callee.InterpCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{callee.SpeshCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{callee.JITCallsPercent}}%">
</div>
</div>
</td>
<td>
<div ng-show="callee.VeryInline">
<span class="text-success">
<span class="glyphicon glyphicon-star"></span>
</span>
{{callee.InlinedPercent}}%
</div>
<div ng-show="callee.SometimesInline">
<span class="text-muted">
<span class="glyphicon glyphicon-star-empty"></span>
</span>
{{callee.InlinedPercent}}%
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel-body" ng-show="Callees.length == 0">
This code has no callees.
</div>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Allocations'">
<div ng-controller="AllocationsController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Allocations' ? !reverse : true; predicate = 'Allocations';">Allocations</a></th>
<th>Allocating Routines</th>
</thead>
<tbody>
<tr ng-repeat="alloc in AllocationSummary | filter:NameFilter | orderBy:predicate:reverse">
<td><strong>{{alloc.Name}}</strong></td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{alloc.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{alloc.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{alloc.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{alloc.Allocations}}
</div>
</td>
<td>
<a href="" ng-click="showAllocatingRoutines(alloc)">View</a>
</td>
</tr>
</tbody>
</table>
<script type="text/ng-template" id="myModalContent.html">
<div class="modal-header">
<button type="button" ng-click="modalInstance.close()"
class="close" data-dismiss="modal">
<span aria-hidden="true">&times;</span><span class="sr-only">Close</span>
</button>
<h4 class="modal-title" id="allocatingRoutinesModalLabel">
Routines Allocating {{CurrentAllocatingRoutine}}
</h4>
</div>
<div class="modal-body">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="routineReverse = routinePredicate == 'Name' ? !routineReverse : false; routinePredicate = 'Name';">Name</a>
<input ng-model="RoutineNameFilter">
</th>
<th><a href="" ng-click="routineReverse = routinePredicate == 'Allocations' ? !routineReverse : true; routinePredicate = 'Allocations';">Allocations</a></th>
</thead>
<tbody>
<tr ng-repeat="routine in CurrentAllocatingRoutineStats | filter:RoutineNameFilter | orderBy:routinePredicate:routineReverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{routine.Allocations}}
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" ng-click="modalInstance.close()"
class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</script>
</div>
</div>
<div class="container" ng-show="Tab == 'GC'">
<div ng-controller="GCController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'StartTime' ? !reverse : false; predicate = 'StartTime';">Start Time</a>
</th>
<th>
<a href="" ng-click="reverse = predicate == 'Run' ? !reverse : false; predicate = 'Run';">Run</a>
</th>
<th>Full</th>
<th>
<a href="" ng-click="reverse = predicate == 'Time' ? !reverse : false; predicate = 'Time';">Time</a>
</th>
<th>
Nursery:
<span class="text-danger" tooltip-placement="bottom" tooltip="Bytes retained in the nursery">Retained</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Bytes promoted to gen2 and now available in nursery">Promoted</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Bytes released and now availabe in nursery">Freed</span>
</th>
</thead>
<tbody>
<tr ng-repeat="gc in GCs | orderBy:predicate:reverse">
<td>{{gc.StartTime}}ms</td>
<td><strong>{{gc.Run}}</strong></td>
<td>
<span class="text-success" ng-show="gc.Full">
<span class="glyphicon glyphicon-star"></span>
</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar" role="progressbar" style="width: {{gc.TimePercent}}%;">
</div>
</div>
</div>
<div>
{{gc.Time}}ms
</div>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{gc.RetainedPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{gc.PromotedPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{gc.ClearedPercent}}%">
</div>
</div>
</div>
<div>
{{gc.RetainedKilobytes}}KB /
{{gc.PromotedKilobytes}}KB /
{{gc.ClearedKilobytes}}KB ...
<small>{{gc.Gen2Roots}} gen2 roots</small>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="container" ng-show="Tab == 'OSR/Deopt'">
<div ng-controller="OSRDeoptController">
<h3>OSR</h3>
<p>On Stack Replacement detects routines containing hot loops that are
being interpreted, and replaces them with specialized or JIT-compiled
code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="OSRs.length > 0">
<thead>
<th>
Routine
</th>
<th>On Stack Replacements</th>
</thead>
<tbody>
<tr ng-repeat="osr in OSRs | orderBy:predicate:reverse">
<td>
<strong>{{osr.Name}}</strong><br />
<span class="text-muted">{{osr.File}}:{{osr.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{osr.Percent}}%;">
</div>
</div>
</div>
<div>
{{osr.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="OSRs.length == 0">
<em>No OSR was performed during this profile.</em>
</p>
<h3>Local Deoptimization</h3>
<p>Local deoptimization happens when a guard in specialized or JIT-compiled
code fails. Since the code was produced assuming the guard would hold,
the VM falls back to running the safe, but slower, interpreted code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptOnes.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptOnes | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptOnes.length == 0">
<em>No local deoptimizations occurred during this profile.</em>
</p>
<h3>Global Deoptimization</h3>
<p>Global deoptimization happens when an event occurs that renders
all currently type-specialized or JIT-compiled code on the call
stack potentially invalid. Mixins - changing the type of an object
in place - are a common reason.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptAlls.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptAlls | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptAlls.length == 0">
<em>No global deoptimizations occurred during this profile.</em>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.2.0/ui-bootstrap-tpls.js"></script>
<script>
var rawData = JSON.parse('[{"999":{"name":"flags","line":1111,"file":"gen/moar/stage2/MASTNodes.nqp"},"998":{"name":"num-annotations","line":1120,"file":"gen/moar/stage2/MASTNodes.nqp"},"997":{"name":"annotations-offset","line":1098,"file":"gen/moar/stage2/MASTNodes.nqp"},"996":{"name":"write_uint16","line":80,"file":"gen/moar/stage2/MASTNodes.nqp"},"995":{"name":"outer","line":1028,"file":"gen/moar/stage2/MASTNodes.nqp"},"994":{"name":"name-idx","line":1093,"file":"gen/moar/stage2/MASTNodes.nqp"},"993":{"name":"cuuid-idx","line":1092,"file":"gen/moar/stage2/MASTNodes.nqp"},"992":{"name":"bytecode-length","line":1095,"file":"gen/moar/stage2/MASTNodes.nqp"},"991":{"name":"bytecode-offset","line":1096,"file":"gen/moar/stage2/MASTNodes.nqp"},"990":{"name":"debug_map_idxs","line":1013,"file":"gen/moar/stage2/MASTNodes.nqp"},"99":{"name":"stash_type","line":14,"file":"gen/moar/Metamodel.nqp"},"989":{"name":"handlers","line":1121,"file":"gen/moar/stage2/MASTNodes.nqp"},"988":{"name":"lexical-name-idxs","line":1107,"file":"gen/moar/stage2/MASTNodes.nqp"},"987":{"name":"write_frame","line":7215,"file":"gen/moar/stage2/QAST.nqp"},"986":{"name":"write_extops","line":7317,"file":"gen/moar/stage2/QAST.nqp"},"985":{"name":"write_sc_deps_table","line":7312,"file":"gen/moar/stage2/QAST.nqp"},"984":{"name":"align","line":7336,"file":"gen/moar/stage2/QAST.nqp"},"983":{"name":"main_frame","line":279,"file":"gen/moar/stage2/MASTNodes.nqp"},"982":{"name":"elems","line":7068,"file":"gen/moar/stage2/QAST.nqp"},"981":{"name":"elems","line":7008,"file":"gen/moar/stage2/QAST.nqp"},"980":{"name":"write_s","line":62,"file":"gen/moar/stage2/MASTNodes.nqp"},"98":"Stash","979":{"name":"serialized","line":297,"file":"gen/moar/stage2/MASTNodes.nqp"},"978":{"name":"size","line":7064,"file":"gen/moar/stage2/QAST.nqp"},"977":{"name":"size","line":7012,"file":"gen/moar/stage2/QAST.nqp"},"976":{"name":"debug_map","line":1009,"file":"gen/moar/stage2/MASTNodes.nqp"},"975":{"name":"static_lex_values","line":1108,"file":"gen/moar/stage2/MASTNodes.nqp"},"974":{"name":"lexical_types","line":1104,"file":"gen/moar/stage2/MASTNodes.nqp"},"973":{"name":"size","line":1122,"file":"gen/moar/stage2/MASTNodes.nqp"},"972":{"name":"align_section","line":7080,"file":"gen/moar/stage2/QAST.nqp"},"971":{"name":"write_header","line":7125,"file":"gen/moar/stage2/QAST.nqp"},"970":{"name":"set-bytecode-offset","line":1100,"file":"gen/moar/stage2/MASTNodes.nqp"},"97":{"name":"add_stash","line":210,"file":"gen/moar/Metamodel.nqp"},"969":{"name":"collect_bytecode","line":7285,"file":"gen/moar/stage2/QAST.nqp"},"968":{"name":"assemble","line":7363,"file":"gen/moar/stage2/QAST.nqp"},"967":{"name":"write_buf","line":86,"file":"gen/moar/stage2/MASTNodes.nqp"},"966":{"name":"annotations","line":1097,"file":"gen/moar/stage2/MASTNodes.nqp"},"965":{"name":"set-annotations-offset","line":1099,"file":"gen/moar/stage2/MASTNodes.nqp"},"964":{"name":"prepare","line":954,"file":"gen/moar/stage2/MASTNodes.nqp"},"963":{"name":"collect_extop_names","line":7306,"file":"gen/moar/stage2/QAST.nqp"},"962":{"name":"add-string","line":7119,"file":"gen/moar/stage2/QAST.nqp"},"961":{"name":"collect_sc_deps","line":7300,"file":"gen/moar/stage2/QAST.nqp"},"960":{"name":"prepare","line":7106,"file":"gen/moar/stage2/QAST.nqp"},"96":{"name":"set_name","line":159,"file":"gen/moar/Metamodel.nqp"},"959":{"name":"add-frame","line":7122,"file":"gen/moar/stage2/QAST.nqp"},"958":{"name":"writer","line":253,"file":"gen/moar/stage2/MASTNodes.nqp"},"957":{"name":"assemble","line":7467,"file":"gen/moar/stage2/QAST.nqp"},"956":{"name":"assemble_and_load","line":7478,"file":"gen/moar/stage2/QAST.nqp"},"955":{"name":"mbc","line":799,"file":"gen/moar/stage2/NQPHLL.nqp"},"954":{"name":"mainline_frame","line":273,"file":"gen/moar/stage2/MASTNodes.nqp"},"953":{"name":"main","line":1065,"file":"gen/moar/stage2/QASTNode.nqp"},"952":{"name":"load_frame","line":285,"file":"gen/moar/stage2/MASTNodes.nqp"},"951":{"name":"deserialize_frame","line":291,"file":"gen/moar/stage2/MASTNodes.nqp"},"950":{"name":"default","line":629,"file":"gen/moar/stage2/QASTNode.nqp"},"95":{"name":"BUILDALLPLAN","line":1256,"file":"gen/moar/stage2/nqpmo.nqp"},"949":{"name":"","line":6526,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"948":{"name":"","line":6559,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"947":{"name":"","line":6553,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"946":{"name":"","line":8076,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"945":{"name":"","line":7394,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"944":{"name":"get_frame_index","line":7435,"file":"gen/moar/stage2/QAST.nqp"},"943":{"name":"writer","line":1029,"file":"gen/moar/stage2/MASTNodes.nqp"},"942":{"name":"","line":6539,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"941":{"name":"value","line":496,"file":"gen/moar/stage2/QASTNode.nqp"},"940":{"name":"compile_node","line":6737,"file":"gen/moar/stage2/QAST.nqp"},"94":{"name":"BUILDALL","line":637,"file":"gen/moar/stage2/NQPCORE.setting"},"939":{"name":"clone_inner","line":5030,"file":"gen/moar/stage2/QAST.nqp"},"938":{"name":"capture_inner","line":5027,"file":"gen/moar/stage2/QAST.nqp"},"937":{"name":"add_local_debug_name","line":1005,"file":"gen/moar/stage2/MASTNodes.nqp"},"936":{"name":"local_debug_map","line":988,"file":"gen/moar/stage2/QASTNode.nqp"},"935":{"name":"","line":9527,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"934":{"name":"","line":6399,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"933":{"name":"new_with_operand_array","line":439,"file":"gen/moar/stage2/MASTNodes.nqp"},"932":{"name":"push_op","line":4708,"file":"gen/moar/stage2/QAST.nqp"},"931":{"name":"params","line":5012,"file":"gen/moar/stage2/QAST.nqp"},"930":{"name":"custom_args","line":920,"file":"gen/moar/stage2/QASTNode.nqp"},"93":"Perl6::Metamodel::ClassHOW","929":{"name":"contvar_locals","line":5046,"file":"gen/moar/stage2/QAST.nqp"},"928":{"name":"cloned_inners","line":5044,"file":"gen/moar/stage2/QAST.nqp"},"927":{"name":"captured_inners","line":5043,"file":"gen/moar/stage2/QAST.nqp"},"926":{"name":"","line":5774,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"925":{"name":"return_kind","line":4980,"file":"gen/moar/stage2/QAST.nqp"},"924":{"name":"","line":8400,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"923":{"name":"","line":9815,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"922":{"name":"alternative","line":761,"file":"gen/moar/stage2/QASTNode.nqp"},"921":{"name":"supports","line":757,"file":"gen/moar/stage2/QASTNode.nqp"},"920":{"name":"compile_node","line":6178,"file":"gen/moar/stage2/QAST.nqp"},"92":{"name":"new","line":3992,"file":"gen/moar/Metamodel.nqp"},"919":"QAST::VM","918":{"name":"new","line":750,"file":"gen/moar/stage2/QASTNode.nqp"},"917":{"name":"compile_node","line":6696,"file":"gen/moar/stage2/QAST.nqp"},"916":{"name":"compile_with_stmt_temps","line":6102,"file":"gen/moar/stage2/QAST.nqp"},"915":{"name":"compile_node","line":6090,"file":"gen/moar/stage2/QAST.nqp"},"914":{"name":"compile_node","line":6755,"file":"gen/moar/stage2/QAST.nqp"},"913":{"name":"","line":5564,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"912":{"name":"add-label","line":1152,"file":"gen/moar/stage2/MASTNodes.nqp"},"911":{"name":"write_buf_at","line":89,"file":"gen/moar/stage2/MASTNodes.nqp"},"910":{"name":"annotations-end","line":810,"file":"gen/moar/stage2/MASTNodes.nqp"},"91":"IO","909":{"name":"read_uint32_at","line":74,"file":"gen/moar/stage2/MASTNodes.nqp"},"908":{"name":"insert_bytecode","line":842,"file":"gen/moar/stage2/MASTNodes.nqp"},"907":{"name":"label-fixups","line":1143,"file":"gen/moar/stage2/MASTNodes.nqp"},"906":{"name":"labels","line":1142,"file":"gen/moar/stage2/MASTNodes.nqp"},"905":{"name":"compile_label","line":1177,"file":"gen/moar/stage2/MASTNodes.nqp"},"904":{"name":"","line":5571,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"903":{"name":"end-annotations","line":814,"file":"gen/moar/stage2/MASTNodes.nqp"},"902":{"name":"handlers","line":813,"file":"gen/moar/stage2/MASTNodes.nqp"},"901":{"name":"annotations-offset","line":809,"file":"gen/moar/stage2/MASTNodes.nqp"},"900":{"name":"labels","line":812,"file":"gen/moar/stage2/MASTNodes.nqp"},"90":{"name":"new_type","line":3997,"file":"gen/moar/Metamodel.nqp"},"9":{"name":"","line":2612,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"899":{"name":"label-fixups","line":811,"file":"gen/moar/stage2/MASTNodes.nqp"},"898":{"name":"bytecode","line":808,"file":"gen/moar/stage2/MASTNodes.nqp"},"897":{"name":"end_subbuffer","line":830,"file":"gen/moar/stage2/MASTNodes.nqp"},"896":{"name":"start_subbuffer","line":817,"file":"gen/moar/stage2/MASTNodes.nqp"},"895":{"name":"local_types","line":1101,"file":"gen/moar/stage2/MASTNodes.nqp"},"894":{"name":"isa","line":1342,"file":"gen/moar/stage2/nqpmo.nqp"},"893":{"name":"isa","line":721,"file":"gen/moar/stage2/NQPCORE.setting"},"892":{"name":"consume-all-chars","line":809,"file":"gen/moar/stage2/NQPCORE.setting"},"891":{"name":"add-bytes","line":800,"file":"gen/moar/stage2/NQPCORE.setting"},"890":{"name":"get_callsite_id_from_args","line":6953,"file":"gen/moar/stage2/QAST.nqp"},"89":{"name":"make_pun","line":2335,"file":"gen/moar/Metamodel.nqp"},"889":{"name":"callsites","line":1140,"file":"gen/moar/stage2/MASTNodes.nqp"},"888":{"name":"","line":7237,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"887":{"name":"fresh_o","line":4807,"file":"gen/moar/stage2/QAST.nqp"},"886":{"name":"arrange_args","line":2875,"file":"gen/moar/stage2/QAST.nqp"},"885":{"name":"","line":3042,"file":"gen/moar/stage2/QAST.nqp"},"884":{"name":"","line":7261,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"883":{"name":"","line":8286,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"882":{"name":"has_compile_time_value","line":208,"file":"gen/moar/stage2/QASTNode.nqp"},"881":{"name":"","line":7223,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"880":{"name":"needs_cond_passed","line":2126,"file":"gen/moar/stage2/QAST.nqp"},"88":{"name":"pun","line":2350,"file":"gen/moar/Metamodel.nqp"},"879":{"name":"keep-label","line":1148,"file":"gen/moar/stage2/MASTNodes.nqp"},"878":"MAST::Label","877":{"name":"new","line":416,"file":"gen/moar/stage2/MASTNodes.nqp"},"876":{"name":"unique","line":5063,"file":"gen/moar/stage2/QAST.nqp"},"875":{"name":"","line":2132,"file":"gen/moar/stage2/QAST.nqp"},"874":{"name":"","line":5453,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"873":{"name":"","line":5725,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"872":{"name":"lexical","line":5002,"file":"gen/moar/stage2/QAST.nqp"},"871":{"name":"","line":9251,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"870":{"name":"is_var","line":4976,"file":"gen/moar/stage2/QAST.nqp"},"87":{"name":"composable","line":141,"file":"gen/moar/Metamodel.nqp"},"869":{"name":"release_register","line":4833,"file":"gen/moar/stage2/QAST.nqp"},"868":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/QAST.moarvm"},"867":{"name":"bytecode","line":1094,"file":"gen/moar/stage2/MASTNodes.nqp"},"866":{"name":"","line":5446,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/nqp/lib/MAST/Ops.nqp"},"865":{"name":"new","line":435,"file":"gen/moar/stage2/MASTNodes.nqp"},"864":{"name":"fresh_s","line":4806,"file":"gen/moar/stage2/QAST.nqp"},"863":{"name":"const_s","line":6725,"file":"gen/moar/stage2/QAST.nqp"},"862":{"name":"value","line":469,"file":"gen/moar/stage2/QASTNode.nqp"},"861":{"name":"compile_node","line":6733,"file":"gen/moar/stage2/QAST.nqp"},"860":{"name":"as_mast_clear_bindval","line":6658,"file":"gen/moar/stage2/QAST.nqp"},"86":{"name":"archetypes","line":3520,"file":"gen/moar/Metamodel.nqp"},"859":{"name":"local_kind","line":5007,"file":"gen/moar/stage2/QAST.nqp"},"858":{"name":"local","line":5006,"file":"gen/moar/stage2/QAST.nqp"},"857":{"name":"","line":3198,"file":"gen/moar/stage2/QAST.nqp"},"856":{"name":"append","line":1469,"file":"gen/moar/stage2/QAST.nqp"},"855":{"name":"result_reg","line":1466,"file":"gen/moar/stage2/QAST.nqp"},"854":{"name":"coercion","line":5132,"file":"gen/moar/stage2/QAST.nqp"},"853":{"name":"add_static_lex_value","line":990,"file":"gen/moar/stage2/MASTNodes.nqp"},"852":{"name":"mast_compunit","line":5065,"file":"gen/moar/stage2/QAST.nqp"},"851":"MAST::Lexical","850":{"name":"new","line":387,"file":"gen/moar/stage2/MASTNodes.nqp"},"85":{"name":"Str","line":181,"file":"SETTING::src/core.c/IO/Path.pm6"},"849":{"name":"register_lexical","line":4921,"file":"gen/moar/stage2/QAST.nqp"},"848":{"name":"add_lexical","line":976,"file":"gen/moar/stage2/MASTNodes.nqp"},"847":{"name":"add_lexical","line":4899,"file":"gen/moar/stage2/QAST.nqp"},"846":{"name":"set_code_object_idxs","line":1052,"file":"gen/moar/stage2/MASTNodes.nqp"},"845":{"name":"sc_idx","line":319,"file":"gen/moar/stage2/MASTNodes.nqp"},"844":{"name":"set_outer","line":1017,"file":"gen/moar/stage2/MASTNodes.nqp"},"843":{"name":"ACCEPTS","line":712,"file":"gen/moar/stage2/NQPCORE.setting"},"842":{"name":"compile_mastop","line":1520,"file":"gen/moar/stage2/QAST.nqp"},"841":{"name":"","line":1780,"file":"gen/moar/stage2/QAST.nqp"},"840":{"name":"","line":2890,"file":"gen/moar/stage2/QAST.nqp"},"84":{"name":"assign-scalar-no-whence-no-typecheck","line":4398,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"839":{"name":"compile_op","line":1500,"file":"gen/moar/stage2/QAST.nqp"},"838":{"name":"compile_node","line":6173,"file":"gen/moar/stage2/QAST.nqp"},"837":{"name":"add-string","line":1137,"file":"gen/moar/stage2/MASTNodes.nqp"},"836":{"name":"write_uint32","line":68,"file":"gen/moar/stage2/MASTNodes.nqp"},"835":{"name":"add-annotation","line":1251,"file":"gen/moar/stage2/MASTNodes.nqp"},"834":{"name":"new","line":612,"file":"gen/moar/stage2/MASTNodes.nqp"},"833":{"name":"line_and_column_of","line":2444,"file":"gen/moar/stage2/NQPHLL.nqp"},"832":{"name":"linefileof","line":2504,"file":"gen/moar/stage2/NQPHLL.nqp"},"831":{"name":"compile_annotation","line":6112,"file":"gen/moar/stage2/QAST.nqp"},"830":{"name":"compile_node","line":6081,"file":"gen/moar/stage2/QAST.nqp"},"83":{"name":"","line":4450,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"829":{"name":"result_kind","line":1467,"file":"gen/moar/stage2/QAST.nqp"},"828":{"name":"coerce","line":5122,"file":"gen/moar/stage2/QAST.nqp"},"827":"MAST::InstructionList","826":{"name":"new","line":1459,"file":"gen/moar/stage2/QAST.nqp"},"825":{"name":"index","line":375,"file":"gen/moar/stage2/MASTNodes.nqp"},"824":"MAST::Local","823":{"name":"new","line":369,"file":"gen/moar/stage2/MASTNodes.nqp"},"822":{"name":"add_local","line":999,"file":"gen/moar/stage2/MASTNodes.nqp"},"821":{"name":"fresh_register","line":4812,"file":"gen/moar/stage2/QAST.nqp"},"820":{"name":"type_to_register_kind","line":6798,"file":"gen/moar/stage2/QAST.nqp"},"82":{"name":"ASSIGN-KEY","line":123,"file":"SETTING::src/core.c/Hash.pm6"},"819":{"name":"register_local","line":4953,"file":"gen/moar/stage2/QAST.nqp"},"818":{"name":"add_param","line":4886,"file":"gen/moar/stage2/QAST.nqp"},"817":{"name":"compile_var","line":6269,"file":"gen/moar/stage2/QAST.nqp"},"816":{"name":"compile_node","line":6241,"file":"gen/moar/stage2/QAST.nqp"},"815":{"name":"compile_all_the_stmts","line":6124,"file":"gen/moar/stage2/QAST.nqp"},"814":"RegAlloc","813":{"name":"new","line":4795,"file":"gen/moar/stage2/QAST.nqp"},"812":{"name":"","line":5734,"file":"gen/moar/stage2/QAST.nqp"},"811":{"name":"no_inline","line":923,"file":"gen/moar/stage2/QASTNode.nqp"},"810":{"name":"is_thunk","line":922,"file":"gen/moar/stage2/QASTNode.nqp"},"81":{"name":"ASSIGN-KEY","line":420,"file":"SETTING::src/core.c/Any.pm6"},"809":{"name":"has_exit_handler","line":921,"file":"gen/moar/stage2/QASTNode.nqp"},"808":{"name":"BUILD","line":4868,"file":"gen/moar/stage2/QAST.nqp"},"807":"BlockInfo","806":{"name":"new","line":4862,"file":"gen/moar/stage2/QAST.nqp"},"805":{"name":"set_index","line":971,"file":"gen/moar/stage2/MASTNodes.nqp"},"804":{"name":"add_frame","line":257,"file":"gen/moar/stage2/MASTNodes.nqp"},"803":{"name":"BUILD","line":801,"file":"gen/moar/stage2/MASTNodes.nqp"},"802":"SubBuffer","801":{"name":"new","line":796,"file":"gen/moar/stage2/MASTNodes.nqp"},"800":{"name":"write_uint8","line":83,"file":"gen/moar/stage2/MASTNodes.nqp"},"80":{"name":"postcircumfix:<{ }>","line":9,"file":"SETTING::src/core.c/hash_slice.pm6"},"8":"CallCapture","799":{"name":"write_uint32_at","line":77,"file":"gen/moar/stage2/MASTNodes.nqp"},"798":{"name":"add-internal","line":7038,"file":"gen/moar/stage2/QAST.nqp"},"797":{"name":"add","line":7061,"file":"gen/moar/stage2/QAST.nqp"},"796":{"name":"callsites","line":7117,"file":"gen/moar/stage2/QAST.nqp"},"795":{"name":"string-heap","line":7116,"file":"gen/moar/stage2/QAST.nqp"},"794":{"name":"BUILD","line":921,"file":"gen/moar/stage2/MASTNodes.nqp"},"793":"MAST::Frame","792":{"name":"new","line":915,"file":"gen/moar/stage2/MASTNodes.nqp"},"791":{"name":"","line":5685,"file":"gen/moar/stage2/QAST.nqp"},"790":{"name":"compile_node","line":5675,"file":"gen/moar/stage2/QAST.nqp"},"79":{"name":"postcircumfix:<{ }>","line":3,"file":"SETTING::src/core.c/hash_slice.pm6"},"789":{"name":"hll","line":267,"file":"gen/moar/stage2/MASTNodes.nqp"},"788":{"name":"compile_node","line":5493,"file":"gen/moar/stage2/QAST.nqp"},"787":{"name":"as_mast","line":5366,"file":"gen/moar/stage2/QAST.nqp"},"786":{"name":"set-compunit","line":7115,"file":"gen/moar/stage2/QAST.nqp"},"785":{"name":"BUILD","line":243,"file":"gen/moar/stage2/MASTNodes.nqp"},"784":{"name":"BUILD","line":7096,"file":"gen/moar/stage2/QAST.nqp"},"783":"MAST::CompUnit","782":"MoarVM::BytecodeWriter","781":{"name":"to_mast","line":5069,"file":"gen/moar/stage2/QAST.nqp"},"780":"MASTCompilerInstance","78":{"name":"nominal","line":137,"file":"gen/moar/Metamodel.nqp"},"779":{"name":"to_mast","line":6839,"file":"gen/moar/stage2/QAST.nqp"},"778":{"name":"mast","line":795,"file":"gen/moar/stage2/NQPHLL.nqp"},"777":{"name":"finish","line":3095,"file":"gen/moar/stage2/NQPHLL.nqp"},"776":{"name":"","line":2590,"file":"gen/moar/World.nqp"},"775":{"name":"cleanup_tasks","line":457,"file":"gen/moar/World.nqp"},"774":{"name":"cleanup","line":4460,"file":"gen/moar/World.nqp"},"773":{"name":"report","line":393,"file":"gen/moar/Optimizer.nqp"},"772":{"name":"add_local_debug_mapping","line":983,"file":"gen/moar/stage2/QASTNode.nqp"},"771":{"name":"unique","line":242,"file":"gen/moar/stage2/QASTNode.nqp"},"770":{"name":"lexical_vars_to_locals","line":711,"file":"gen/moar/Optimizer.nqp"},"77":{"name":"base_type","line":5141,"file":"gen/moar/Metamodel.nqp"},"769":{"name":"LoweredAwayLexical","line":118,"file":"gen/moar/Optimizer.nqp"},"768":{"name":"simplify_takedispatcher","line":702,"file":"gen/moar/Optimizer.nqp"},"767":{"name":"delete_unused_autoslurpy","line":687,"file":"gen/moar/Optimizer.nqp"},"766":{"name":"delete_unused_magicals","line":618,"file":"gen/moar/Optimizer.nqp"},"765":{"name":"pop_block","line":81,"file":"gen/moar/Optimizer.nqp"},"764":{"name":"scopes_in","line":237,"file":"gen/moar/Optimizer.nqp"},"763":{"name":"name","line":105,"file":"gen/moar/stage2/NQPHLL.nqp"},"762":{"name":"backend","line":1781,"file":"gen/moar/stage2/NQPHLL.nqp"},"761":"Num","760":{"name":"Num","line":62,"file":"SETTING::src/core.c/Int.pm6"},"76":{"name":"check_instantiated","line":5136,"file":"gen/moar/Metamodel.nqp"},"759":{"name":"count","line":101,"file":"SETTING::src/core.c/Signature.pm6"},"758":{"name":"arity","line":97,"file":"SETTING::src/core.c/Signature.pm6"},"757":{"name":"simplify_refs","line":3159,"file":"gen/moar/Optimizer.nqp"},"756":{"name":"call_ct_chosen_multi","line":3123,"file":"gen/moar/Optimizer.nqp"},"755":{"name":"","line":3203,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"754":{"name":"","line":2970,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"753":{"name":"trial_bind","line":979,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"752":{"name":"trial_bind","line":390,"file":"gen/moar/Ops.nqp"},"751":{"name":"signature","line":21,"file":"SETTING::src/core.c/Code.pm6"},"750":{"name":"has_compile_time_value","line":551,"file":"gen/moar/stage2/QASTNode.nqp"},"75":{"name":"definite","line":5146,"file":"gen/moar/Metamodel.nqp"},"749":{"name":"Mu","line":109,"file":"gen/moar/Optimizer.nqp"},"748":{"name":"flat","line":174,"file":"gen/moar/stage2/QASTNode.nqp"},"747":{"name":"analyze_args_for_ct_call","line":2726,"file":"gen/moar/Optimizer.nqp"},"746":{"name":"onlystar","line":22,"file":"SETTING::src/core.c/Routine.pm6"},"745":{"name":"","line":2226,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"744":{"name":"optimize_call","line":1898,"file":"gen/moar/Optimizer.nqp"},"743":{"name":"op_eq_core","line":2349,"file":"gen/moar/Optimizer.nqp"},"742":{"name":"visit_want","line":2594,"file":"gen/moar/Optimizer.nqp"},"741":{"name":"resultchild","line":851,"file":"gen/moar/stage2/QASTNode.nqp"},"740":{"name":"named","line":164,"file":"gen/moar/stage2/QASTNode.nqp"},"74":{"name":"definite","line":146,"file":"gen/moar/Metamodel.nqp"},"739":{"name":"AST","line":117,"file":"gen/moar/Optimizer.nqp"},"738":{"name":"Regex","line":112,"file":"gen/moar/Optimizer.nqp"},"737":{"name":"PseudoStash","line":113,"file":"gen/moar/Optimizer.nqp"},"736":{"name":"has_compile_time_value","line":9,"file":"gen/moar/stage2/QASTNode.nqp"},"735":{"name":"register_getlexouter_usage","line":509,"file":"gen/moar/Optimizer.nqp"},"734":{"name":"register_call","line":507,"file":"gen/moar/Optimizer.nqp"},"733":{"name":"add_usage","line":491,"file":"gen/moar/Optimizer.nqp"},"732":{"name":"visit_op_children","line":1748,"file":"gen/moar/Optimizer.nqp"},"731":{"name":"is_outer_foldable","line":880,"file":"gen/moar/Optimizer.nqp"},"730":{"name":"optimize","line":952,"file":"gen/moar/Optimizer.nqp"},"73":{"name":"archetypes","line":5099,"file":"gen/moar/Metamodel.nqp"},"729":{"name":"visit_op","line":1324,"file":"gen/moar/Optimizer.nqp"},"728":{"name":"name","line":611,"file":"gen/moar/stage2/QASTNode.nqp"},"727":{"name":"add_decl","line":471,"file":"gen/moar/Optimizer.nqp"},"726":{"name":"decl","line":619,"file":"gen/moar/stage2/QASTNode.nqp"},"725":{"name":"scope","line":615,"file":"gen/moar/stage2/QASTNode.nqp"},"724":{"name":"visit_var","line":2667,"file":"gen/moar/Optimizer.nqp"},"723":{"name":"resultchild","line":802,"file":"gen/moar/stage2/QASTNode.nqp"},"722":{"name":"visit_children","line":2832,"file":"gen/moar/Optimizer.nqp"},"721":"BlockVarOptimizer","720":{"name":"push_block","line":78,"file":"gen/moar/Optimizer.nqp"},"72":{"name":"","line":4315,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"719":{"name":"visit_block","line":1107,"file":"gen/moar/Optimizer.nqp"},"718":{"name":"UNIT","line":108,"file":"gen/moar/Optimizer.nqp"},"717":{"name":"BUILD","line":315,"file":"gen/moar/Optimizer.nqp"},"716":"Problems","715":{"name":"new","line":310,"file":"gen/moar/Optimizer.nqp"},"714":{"name":"BUILD","line":874,"file":"gen/moar/Optimizer.nqp"},"713":"JunctionOptimizer","712":{"name":"new","line":869,"file":"gen/moar/Optimizer.nqp"},"711":{"name":"find_symbol","line":124,"file":"gen/moar/Optimizer.nqp"},"710":{"name":"force_value","line":222,"file":"gen/moar/Optimizer.nqp"},"71":{"name":"identity","line":4145,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"709":{"name":"find_lexical","line":182,"file":"gen/moar/Optimizer.nqp"},"708":{"name":"BUILD","line":53,"file":"gen/moar/Optimizer.nqp"},"707":"Symbols","706":{"name":"new","line":48,"file":"gen/moar/Optimizer.nqp"},"705":{"name":"optimize","line":1070,"file":"gen/moar/Optimizer.nqp"},"704":"Perl6::Optimizer","703":{"name":"optimize","line":122,"file":"gen/moar/Compiler.nqp"},"702":{"name":"ast","line":2309,"file":"gen/moar/stage2/NQPHLL.nqp"},"701":{"name":"syntaxcheck","line":135,"file":"gen/moar/Compiler.nqp"},"700":{"name":"pop_lexpad","line":279,"file":"gen/moar/World.nqp"},"70":{"name":"decontrv_plugin","line":4177,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"7":"Hash","699":{"name":"pop_lexpad","line":880,"file":"gen/moar/World.nqp"},"698":{"name":"annotate_self","line":221,"file":"gen/moar/stage2/QASTNode.nqp"},"697":{"name":"pre_deserialize","line":1070,"file":"gen/moar/stage2/QASTNode.nqp"},"696":{"name":"post_deserialize","line":1074,"file":"gen/moar/stage2/QASTNode.nqp"},"695":{"name":"is_nested","line":1084,"file":"gen/moar/stage2/QASTNode.nqp"},"694":{"name":"repo_conflict_resolver","line":1078,"file":"gen/moar/stage2/QASTNode.nqp"},"693":{"name":"hll","line":1063,"file":"gen/moar/stage2/QASTNode.nqp"},"692":{"name":"code_ref_blocks","line":1081,"file":"gen/moar/stage2/QASTNode.nqp"},"691":{"name":"sc","line":1062,"file":"gen/moar/stage2/QASTNode.nqp"},"690":{"name":"compilation_mode","line":1067,"file":"gen/moar/stage2/QASTNode.nqp"},"69":{"name":"sink","line":712,"file":"SETTING::src/core.c/List.pm6"},"689":{"name":"load","line":1064,"file":"gen/moar/stage2/QASTNode.nqp"},"688":"QAST::CompUnit","687":{"name":"new","line":1055,"file":"gen/moar/stage2/QASTNode.nqp"},"686":{"name":"fixup_tasks","line":3083,"file":"gen/moar/stage2/NQPHLL.nqp"},"685":{"name":"load_dependency_tasks","line":3078,"file":"gen/moar/stage2/NQPHLL.nqp"},"684":{"name":"code_ref_blocks","line":3073,"file":"gen/moar/stage2/NQPHLL.nqp"},"683":{"name":"sc","line":3064,"file":"gen/moar/stage2/NQPHLL.nqp"},"682":{"name":"blocktype","line":916,"file":"gen/moar/stage2/QASTNode.nqp"},"681":{"name":"CTXSAVE","line":1505,"file":"gen/moar/stage2/NQPHLL.nqp"},"680":{"name":"unshift","line":71,"file":"gen/moar/stage2/QASTNode.nqp"},"68":{"name":"SET-SELF","line":13,"file":"SETTING::src/core.c/IO/Path.pm6"},"679":{"name":"slurpy","line":628,"file":"gen/moar/stage2/QASTNode.nqp"},"678":{"name":"!clear_highwater","line":1819,"file":"gen/moar/stage2/QRegex.nqp"},"677":{"name":"statementlist_with_handlers","line":1846,"file":"gen/moar/Actions.nqp"},"676":{"name":"protos_to_sort","line":433,"file":"gen/moar/World.nqp"},"675":{"name":"sort_protos","line":952,"file":"gen/moar/World.nqp"},"674":{"name":"stub_check","line":424,"file":"gen/moar/World.nqp"},"673":{"name":"assert_stubs_defined","line":939,"file":"gen/moar/World.nqp"},"672":{"name":"add_phasers_handling_code","line":2759,"file":"gen/moar/World.nqp"},"671":{"name":"fixup_tasks","line":2961,"file":"gen/moar/stage2/NQPHLL.nqp"},"670":{"name":"add_fixup_task","line":3054,"file":"gen/moar/stage2/NQPHLL.nqp"},"67":{"name":"Str","line":61,"file":"SETTING::src/core.c/Str.pm6"},"669":{"name":"set_attribute","line":2862,"file":"gen/moar/World.nqp"},"668":"QAST::BVal","667":{"name":"new","line":489,"file":"gen/moar/stage2/QASTNode.nqp"},"666":{"name":"is_nested","line":3033,"file":"gen/moar/stage2/NQPHLL.nqp"},"665":{"name":"sub_id_to_sc_idx","line":445,"file":"gen/moar/World.nqp"},"664":{"name":"code_ref_blocks","line":2956,"file":"gen/moar/stage2/NQPHLL.nqp"},"663":{"name":"next_code_ref_num","line":2950,"file":"gen/moar/stage2/NQPHLL.nqp"},"662":{"name":"add_root_code_ref","line":3016,"file":"gen/moar/stage2/NQPHLL.nqp"},"661":{"name":"name","line":912,"file":"gen/moar/stage2/QASTNode.nqp"},"660":{"name":"add_cleanup_task","line":453,"file":"gen/moar/World.nqp"},"66":{"name":"Str","line":648,"file":"SETTING::src/core.c/Mu.pm6"},"659":{"name":"sub_id_to_code_object","line":441,"file":"gen/moar/World.nqp"},"658":{"name":"cuid","line":933,"file":"gen/moar/stage2/QASTNode.nqp"},"657":{"name":"code_object","line":926,"file":"gen/moar/stage2/QASTNode.nqp"},"656":{"name":"pop_code_object","line":411,"file":"gen/moar/World.nqp"},"655":{"name":"finish_code_object","line":2564,"file":"gen/moar/World.nqp"},"654":{"name":"attach_signature","line":2551,"file":"gen/moar/World.nqp"},"653":{"name":"value","line":514,"file":"gen/moar/stage2/QASTNode.nqp"},"652":"Signature","651":{"name":"create_signature","line":2457,"file":"gen/moar/World.nqp"},"650":{"name":"comp_unit","line":1301,"file":"gen/moar/Actions.nqp"},"65":{"name":"new","line":32,"file":"SETTING::src/core.c/IO/Path.pm6"},"649":{"name":"checks","line":558,"file":"gen/moar/World.nqp"},"648":{"name":"CHECK","line":4452,"file":"gen/moar/World.nqp"},"647":{"name":"compose","line":504,"file":"gen/moar/Metamodel.nqp"},"646":"!EVAL_MARKER","645":"!UNIT_MARKER","644":"Perl6::Metamodel::PackageHOW","643":{"name":"new_type","line":496,"file":"gen/moar/Metamodel.nqp"},"642":{"name":"pkg_create_mo","line":3263,"file":"gen/moar/World.nqp"},"641":{"name":"how","line":1375,"file":"gen/moar/stage2/QRegex.nqp"},"640":{"name":"add_unit_marker","line":840,"file":"gen/moar/World.nqp"},"64":{"name":"","line":33,"file":"SETTING::src/core.c/IO/Path.pm6"},"639":{"name":"compile_time_value","line":13,"file":"gen/moar/stage2/QASTNode.nqp"},"638":"Array","637":{"name":"new","line":245,"file":"SETTING::src/core.c/Array.pm6"},"636":{"name":"new","line":239,"file":"SETTING::src/core.c/Array.pm6"},"635":{"name":"mop_up_and_check","line":846,"file":"gen/moar/World.nqp"},"634":{"name":"cry_sorrows","line":4500,"file":"gen/moar/Grammar.nqp"},"633":{"name":"hash","line":1141,"file":"gen/moar/stage2/NQPCORE.setting"},"632":{"name":"explain_mystery","line":4440,"file":"gen/moar/Grammar.nqp"},"631":{"name":"install_doc_phaser","line":1433,"file":"gen/moar/Actions.nqp"},"630":{"name":"install_doc_phaser","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"63":"Code","629":{"name":"final","line":192,"file":"gen/moar/stage2/QASTNode.nqp"},"628":"QAST::Stmt","627":{"name":"new","line":844,"file":"gen/moar/stage2/QASTNode.nqp"},"626":{"name":"sink","line":1124,"file":"gen/moar/Actions.nqp"},"625":{"name":"nosink","line":190,"file":"gen/moar/stage2/QASTNode.nqp"},"624":{"name":"autosink","line":1142,"file":"gen/moar/Actions.nqp"},"623":{"name":"statementlist","line":1488,"file":"gen/moar/Actions.nqp"},"622":{"name":"eat_terminator","line":990,"file":"gen/moar/Grammar.nqp"},"621":{"name":"","line":1604,"file":"gen/moar/Actions.nqp"},"620":{"name":"statement","line":1602,"file":"gen/moar/Actions.nqp"},"62":{"name":"","line":2025,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"619":{"name":"statement_mod_loop","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"618":{"name":"statement_mod_cond","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"617":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"616":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"615":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"614":"NQPMatch","613":{"name":"ACCEPTS","line":2351,"file":"gen/moar/stage2/QRegex.nqp"},"612":"NQPRegex","611":{"name":"new","line":2332,"file":"gen/moar/stage2/QRegex.nqp"},"610":{"name":"add_mystery","line":4391,"file":"gen/moar/Grammar.nqp"},"61":{"name":"","line":342,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"609":{"name":"name","line":692,"file":"gen/moar/stage2/QASTNode.nqp"},"608":{"name":"WANTALL","line":48,"file":"gen/moar/Actions.nqp"},"607":{"name":"handle_special_call_names","line":10135,"file":"gen/moar/Actions.nqp"},"606":{"name":"istype","line":10487,"file":"gen/moar/Actions.nqp"},"605":{"name":"find_macro_routine","line":6260,"file":"gen/moar/Actions.nqp"},"604":{"name":"attach_adverbs","line":4540,"file":"gen/moar/World.nqp"},"603":{"name":"term:sym<name>","line":6375,"file":"gen/moar/Actions.nqp"},"602":{"name":"args","line":6616,"file":"gen/moar/Actions.nqp"},"601":{"name":"arglist","line":6683,"file":"gen/moar/Actions.nqp"},"600":{"name":"EXPR","line":7073,"file":"gen/moar/Actions.nqp"},"60":"Str","6":"BOOTHash","599":{"name":"!clone_match_at","line":1640,"file":"gen/moar/stage2/QRegex.nqp"},"598":{"name":"infixish","line":3782,"file":"gen/moar/Grammar.nqp"},"597":{"name":"made","line":1158,"file":"gen/moar/stage2/QRegex.nqp"},"596":{"name":"termish","line":1626,"file":"gen/moar/stage2/NQPHLL.nqp"},"595":{"name":"terminator:sym<;>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"594":{"name":"terminator","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"593":{"name":"postfixish","line":3823,"file":"gen/moar/Grammar.nqp"},"592":{"name":"term:sym<value>","line":6773,"file":"gen/moar/Actions.nqp"},"591":{"name":"value:sym<quote>","line":8222,"file":"gen/moar/Actions.nqp"},"590":{"name":"ast","line":1159,"file":"gen/moar/stage2/QRegex.nqp"},"59":{"name":"","line":1,"file":"SETTING::src/core.c/Env.pm6"},"589":{"name":"quote:sym<dblq>","line":8643,"file":"gen/moar/Actions.nqp"},"588":{"name":"set_braid_from","line":1387,"file":"gen/moar/stage2/QRegex.nqp"},"587":{"name":"make","line":1157,"file":"gen/moar/stage2/QRegex.nqp"},"586":{"name":"shift","line":731,"file":"gen/moar/stage2/NQPCORE.setting"},"585":"QAST::Want","584":{"name":"new","line":544,"file":"gen/moar/stage2/QASTNode.nqp"},"583":{"name":"returns","line":159,"file":"gen/moar/stage2/QASTNode.nqp"},"582":"QAST::WVal","581":{"name":"new","line":507,"file":"gen/moar/stage2/QASTNode.nqp"},"580":{"name":"join","line":1073,"file":"gen/moar/stage2/NQPCORE.setting"},"58":{"name":"language_version","line":79,"file":"gen/moar/Compiler.nqp"},"579":{"name":"sorted_keys","line":1150,"file":"gen/moar/stage2/NQPCORE.setting"},"578":{"name":"const_cache","line":449,"file":"gen/moar/World.nqp"},"577":{"name":"add_constant","line":3000,"file":"gen/moar/World.nqp"},"576":{"name":"add_string_constant","line":3093,"file":"gen/moar/World.nqp"},"575":{"name":"nibbler","line":10803,"file":"gen/moar/Actions.nqp"},"574":"NFAType","573":{"name":"optimize","line":817,"file":"gen/moar/stage2/QRegex.nqp"},"572":{"name":"mergesubstates","line":665,"file":"gen/moar/stage2/QRegex.nqp"},"571":{"name":"NFA","line":571,"file":"gen/moar/stage2/NQPCORE.setting"},"570":{"name":"mergesubrule","line":560,"file":"gen/moar/stage2/QRegex.nqp"},"57":{"name":"INITIALIZE-DYNAMIC","line":1006,"file":"SETTING::src/core.c/Rakudo/Internals.pm6"},"569":{"name":"addstate","line":84,"file":"gen/moar/stage2/QRegex.nqp"},"568":{"name":"new","line":73,"file":"gen/moar/stage2/QRegex.nqp"},"567":{"name":"cache_add","line":1414,"file":"gen/moar/stage2/nqpmo.nqp"},"566":{"name":"name","line":386,"file":"gen/moar/stage2/NQPCORE.setting"},"565":{"name":"methods","line":1280,"file":"gen/moar/stage2/nqpmo.nqp"},"564":{"name":"!protoregex_table","line":1721,"file":"gen/moar/stage2/QRegex.nqp"},"563":{"name":"","line":1705,"file":"gen/moar/stage2/QRegex.nqp"},"562":{"name":"cache","line":1396,"file":"gen/moar/stage2/nqpmo.nqp"},"561":{"name":"!protoregex_nfa","line":1704,"file":"gen/moar/stage2/QRegex.nqp"},"560":{"name":"escape","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"56":"VMString","559":{"name":"starter","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"558":{"name":"!INTERPOLATE","line":2268,"file":"gen/moar/stage2/QRegex.nqp"},"557":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"556":{"name":"do_nibbling","line":5541,"file":"gen/moar/Grammar.nqp"},"555":{"name":"nibbler","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"554":{"name":"nibble","line":257,"file":"gen/moar/Grammar.nqp"},"553":{"name":"associative_delegate","line":1667,"file":"gen/moar/stage2/nqpmo.nqp"},"552":{"name":"positional_delegate","line":1663,"file":"gen/moar/stage2/nqpmo.nqp"},"551":{"name":"auto_viv_container","line":1647,"file":"gen/moar/stage2/nqpmo.nqp"},"550":{"name":"box_target","line":1643,"file":"gen/moar/stage2/nqpmo.nqp"},"55":{"name":"DYNAMIC","line":33,"file":"SETTING::src/core.c/stubs.pm6"},"549":{"name":"type","line":1623,"file":"gen/moar/stage2/nqpmo.nqp"},"548":{"name":"name","line":1619,"file":"gen/moar/stage2/nqpmo.nqp"},"547":{"name":"is_array_type","line":820,"file":"gen/moar/stage2/nqpmo.nqp"},"546":{"name":"compose_repr","line":935,"file":"gen/moar/stage2/nqpmo.nqp"},"545":{"name":"BUILDPLAN","line":1252,"file":"gen/moar/stage2/nqpmo.nqp"},"544":{"name":"create_BUILDPLAN","line":1200,"file":"gen/moar/stage2/nqpmo.nqp"},"543":{"name":"find_method","line":1379,"file":"gen/moar/stage2/nqpmo.nqp"},"542":{"name":"publish_boolification_spec","line":1176,"file":"gen/moar/stage2/nqpmo.nqp"},"541":{"name":"reverse","line":1156,"file":"gen/moar/stage2/nqpmo.nqp"},"540":{"name":"publish_method_cache","line":1162,"file":"gen/moar/stage2/nqpmo.nqp"},"54":"IO::Path","539":{"name":"role_typecheck_list","line":331,"file":"gen/moar/stage2/nqpmo.nqp"},"538":{"name":"role_typecheck_list","line":1276,"file":"gen/moar/stage2/nqpmo.nqp"},"537":{"name":"mro","line":1268,"file":"gen/moar/stage2/nqpmo.nqp"},"536":{"name":"publish_type_cache","line":1136,"file":"gen/moar/stage2/nqpmo.nqp"},"535":{"name":"compose","line":1671,"file":"gen/moar/stage2/nqpmo.nqp"},"534":{"name":"attributes","line":1320,"file":"gen/moar/stage2/nqpmo.nqp"},"533":{"name":"incorporate_multi_candidates","line":991,"file":"gen/moar/stage2/nqpmo.nqp"},"532":{"name":"parents","line":1264,"file":"gen/moar/stage2/nqpmo.nqp"},"531":{"name":"compute_c3_mro","line":1044,"file":"gen/moar/stage2/nqpmo.nqp"},"530":{"name":"attributes","line":323,"file":"gen/moar/stage2/nqpmo.nqp"},"53":{"name":"new","line":40,"file":"SETTING::src/core.c/IO/Path.pm6"},"529":{"name":"add_method","line":785,"file":"gen/moar/stage2/nqpmo.nqp"},"528":{"name":"method_table","line":1299,"file":"gen/moar/stage2/nqpmo.nqp"},"527":{"name":"has_method","line":343,"file":"gen/moar/stage2/nqpmo.nqp"},"526":{"name":"methods","line":294,"file":"gen/moar/stage2/nqpmo.nqp"},"525":{"name":"collisions","line":310,"file":"gen/moar/stage2/nqpmo.nqp"},"524":{"name":"apply","line":356,"file":"gen/moar/stage2/nqpmo.nqp"},"523":{"name":"compose","line":270,"file":"gen/moar/stage2/nqpmo.nqp"},"522":{"name":"add_method","line":231,"file":"gen/moar/stage2/nqpmo.nqp"},"521":{"name":"save","line":549,"file":"gen/moar/stage2/QRegex.nqp"},"520":{"name":"addedge","line":93,"file":"gen/moar/stage2/QRegex.nqp"},"52":{"name":"new","line":31,"file":"SETTING::src/core.c/IO/Path.pm6"},"519":{"name":"ord-or-str","line":291,"file":"gen/moar/stage2/QRegex.nqp"},"518":{"name":"subtype","line":381,"file":"gen/moar/stage2/QASTNode.nqp"},"517":{"name":"literal","line":297,"file":"gen/moar/stage2/QRegex.nqp"},"516":"QAST::Regex","515":{"name":"new","line":367,"file":"gen/moar/stage2/QASTNode.nqp"},"514":{"name":"instantiate_generic","line":761,"file":"gen/moar/stage2/QRegex.nqp"},"513":"QRegex::NFA","512":{"name":"from_saved","line":80,"file":"gen/moar/stage2/QRegex.nqp"},"511":"NQPRegex","510":{"name":"clone","line":583,"file":"gen/moar/stage2/NQPCORE.setting"},"51":{"name":"IO","line":35,"file":"SETTING::src/core.c/Str.pm6"},"509":{"name":"instantiate_generic","line":603,"file":"gen/moar/stage2/NQPCORE.setting"},"508":{"name":"name","line":615,"file":"gen/moar/stage2/NQPCORE.setting"},"507":{"name":"BUILD","line":210,"file":"gen/moar/stage2/nqpmo.nqp"},"506":"NQPConcreteRoleHOW","505":{"name":"new","line":204,"file":"gen/moar/stage2/nqpmo.nqp"},"504":"stop","503":{"name":"new_type","line":226,"file":"gen/moar/stage2/nqpmo.nqp"},"502":{"name":"","line":21,"file":"gen/moar/Grammar.nqp"},"501":{"name":"specialize","line":588,"file":"gen/moar/stage2/nqpmo.nqp"},"500":{"name":"specialize","line":438,"file":"gen/moar/stage2/nqpmo.nqp"},"50":"List","5":{"name":"EVALFILE","line":103,"file":"SETTING::src/core.c/ForeignCode.pm6"},"499":{"name":"compose","line":886,"file":"gen/moar/stage2/nqpmo.nqp"},"498":{"name":"add_role","line":876,"file":"gen/moar/stage2/nqpmo.nqp"},"497":{"name":"add_parent","line":833,"file":"gen/moar/stage2/nqpmo.nqp"},"496":"NQPMixinCacheHOW","495":{"name":"new","line":673,"file":"gen/moar/stage2/nqpmo.nqp"},"494":"mixin cache","493":{"name":"new_type","line":676,"file":"gen/moar/stage2/nqpmo.nqp"},"492":{"name":"setup_mixin_cache","line":1430,"file":"gen/moar/stage2/nqpmo.nqp"},"491":{"name":"set_is_mixin","line":1428,"file":"gen/moar/stage2/nqpmo.nqp"},"490":{"name":"BUILD","line":751,"file":"gen/moar/stage2/nqpmo.nqp"},"49":{"name":"","line":3755,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"489":"NQPClassHOW","488":{"name":"new","line":745,"file":"gen/moar/stage2/nqpmo.nqp"},"487":"Perl6::QGrammar+{qq}+{stop}","486":{"name":"new_type","line":771,"file":"gen/moar/stage2/nqpmo.nqp"},"485":{"name":"name","line":442,"file":"gen/moar/stage2/nqpmo.nqp"},"484":{"name":"flush_cache","line":1403,"file":"gen/moar/stage2/nqpmo.nqp"},"483":{"name":"generate_mixin","line":1447,"file":"gen/moar/stage2/nqpmo.nqp"},"482":{"name":"","line":679,"file":"gen/moar/stage2/nqpmo.nqp"},"481":{"name":"name","line":649,"file":"gen/moar/stage2/nqpmo.nqp"},"480":{"name":"BUILD","line":426,"file":"gen/moar/stage2/nqpmo.nqp"},"48":{"name":"IO","line":387,"file":"SETTING::src/core.c/Cool.pm6"},"479":"NQPCurriedRoleHOW","478":{"name":"new","line":420,"file":"gen/moar/stage2/nqpmo.nqp"},"477":"stop","476":{"name":"new_type","line":431,"file":"gen/moar/stage2/nqpmo.nqp"},"475":{"name":"curry","line":582,"file":"gen/moar/stage2/nqpmo.nqp"},"474":{"name":"unbalanced","line":60,"file":"gen/moar/Grammar.nqp"},"473":{"name":"mixin","line":1434,"file":"gen/moar/stage2/nqpmo.nqp"},"472":{"name":"apply_tweak","line":5649,"file":"gen/moar/Grammar.nqp"},"471":{"name":"truly","line":5644,"file":"gen/moar/Grammar.nqp"},"470":{"name":"tweak_qq","line":5657,"file":"gen/moar/Grammar.nqp"},"47":{"name":"name","line":155,"file":"gen/moar/Metamodel.nqp"},"469":"Perl6::QGrammar","468":{"name":"con_lang","line":84,"file":"gen/moar/Grammar.nqp"},"467":{"name":"quote_lang_cache","line":5714,"file":"gen/moar/World.nqp"},"466":{"name":"name","line":1303,"file":"gen/moar/stage2/nqpmo.nqp"},"465":{"name":"lang_key","line":68,"file":"gen/moar/Grammar.nqp"},"464":{"name":"quote_lang","line":67,"file":"gen/moar/Grammar.nqp"},"463":{"name":"quote:sym<dblq>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"462":{"name":"quote","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"461":{"name":"value:sym<quote>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"460":{"name":"value","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"46":{"name":"","line":4970,"file":"gen/moar/Metamodel.nqp"},"459":{"name":"term:sym<value>","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"458":{"name":"stdstopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"457":{"name":"arglist","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"456":{"name":"args","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"455":{"name":"is_lexical","line":369,"file":"gen/moar/World.nqp"},"454":{"name":"is_lexical","line":5219,"file":"gen/moar/World.nqp"},"453":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/World.moarvm"},"452":{"name":"is_pseudo_package","line":4673,"file":"gen/moar/World.nqp"},"451":{"name":"is_pseudo_package","line":4815,"file":"gen/moar/World.nqp"},"450":{"name":"is_name","line":4820,"file":"gen/moar/World.nqp"},"45":{"name":"coerce","line":4953,"file":"gen/moar/Metamodel.nqp"},"449":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/World.moarvm"},"448":{"name":"package","line":1354,"file":"gen/moar/stage2/QRegex.nqp"},"447":{"name":"find_symbol","line":5054,"file":"gen/moar/World.nqp"},"446":{"name":"is_type","line":4845,"file":"gen/moar/World.nqp"},"445":{"name":"components","line":4550,"file":"gen/moar/World.nqp"},"444":{"name":"get_who","line":4647,"file":"gen/moar/World.nqp"},"443":{"name":"contains_indirect_lookup","line":4568,"file":"gen/moar/World.nqp"},"442":{"name":"to","line":1148,"file":"gen/moar/stage2/QRegex.nqp"},"441":{"name":"Str","line":1151,"file":"gen/moar/stage2/QRegex.nqp"},"440":{"name":"Bool","line":1128,"file":"gen/moar/stage2/QRegex.nqp"},"44":{"name":"accepts_type","line":4947,"file":"gen/moar/Metamodel.nqp"},"439":"LongName","438":{"name":"dissect_longname","line":4728,"file":"gen/moar/World.nqp"},"437":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"436":{"name":"name","line":2832,"file":"gen/moar/Actions.nqp"},"435":{"name":"morename","line":590,"file":"gen/moar/Grammar.nqp"},"434":{"name":"apostrophe","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"433":{"name":"!cursor_pass_quick","line":1598,"file":"gen/moar/stage2/QRegex.nqp"},"432":{"name":"ident","line":2008,"file":"gen/moar/stage2/QRegex.nqp"},"431":{"name":"identifier","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"430":{"name":"name","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"43":{"name":"type_check","line":4939,"file":"gen/moar/Metamodel.nqp"},"429":{"name":"longname","line":595,"file":"gen/moar/Grammar.nqp"},"428":{"name":"term:sym<name>","line":3154,"file":"gen/moar/Grammar.nqp"},"427":{"name":"states","line":119,"file":"gen/moar/stage2/QRegex.nqp"},"426":{"name":"run","line":735,"file":"gen/moar/stage2/QRegex.nqp"},"425":{"name":"!protoregex","line":1676,"file":"gen/moar/stage2/QRegex.nqp"},"424":{"name":"term","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"423":{"name":"arg_flat_nok","line":3748,"file":"gen/moar/Grammar.nqp"},"422":{"name":"termish","line":3715,"file":"gen/moar/Grammar.nqp"},"421":{"name":"EXPR","line":1222,"file":"gen/moar/stage2/NQPHLL.nqp"},"420":{"name":"EXPR","line":3758,"file":"gen/moar/Grammar.nqp"},"42":{"name":"parents","line":1219,"file":"gen/moar/Metamodel.nqp"},"419":{"name":"stopper","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"418":{"name":"","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"417":{"name":"before","line":1924,"file":"gen/moar/stage2/QRegex.nqp"},"416":{"name":"statement","line":957,"file":"gen/moar/Grammar.nqp"},"415":{"name":"!cursor_pos","line":1613,"file":"gen/moar/stage2/QRegex.nqp"},"414":{"name":"from","line":1146,"file":"gen/moar/stage2/QRegex.nqp"},"413":{"name":"shallow_copy","line":900,"file":"gen/moar/Grammar.nqp"},"412":{"name":"slangs","line":1266,"file":"gen/moar/stage2/QRegex.nqp"},"411":{"name":"statementlist","line":890,"file":"gen/moar/Grammar.nqp"},"410":{"name":"traced","line":1312,"file":"gen/moar/stage2/nqpmo.nqp"},"41":{"name":"type_check_parents","line":3350,"file":"gen/moar/Metamodel.nqp"},"409":{"name":"set_actions","line":1347,"file":"gen/moar/stage2/QRegex.nqp"},"408":{"name":"slang_actions","line":1274,"file":"gen/moar/stage2/QRegex.nqp"},"407":{"name":"!clone","line":1103,"file":"gen/moar/stage2/QRegex.nqp"},"406":{"name":"braid","line":1386,"file":"gen/moar/stage2/QRegex.nqp"},"405":{"name":"clone_braid_from","line":1388,"file":"gen/moar/stage2/QRegex.nqp"},"404":{"name":"!shared","line":1672,"file":"gen/moar/stage2/QRegex.nqp"},"403":{"name":"orig","line":1144,"file":"gen/moar/stage2/QRegex.nqp"},"402":{"name":"check_PACKAGE_oopsies","line":1303,"file":"gen/moar/stage2/QRegex.nqp"},"401":{"name":"LANG","line":1465,"file":"gen/moar/stage2/NQPHLL.nqp"},"400":{"name":"slang_grammar","line":1270,"file":"gen/moar/stage2/QRegex.nqp"},"40":{"name":"!get_nonsignatured_candidate","line":3718,"file":"gen/moar/Metamodel.nqp"},"4":{"name":"<unit>","line":1,"file":"-e"},"399":{"name":"FOREIGN_LANG","line":1340,"file":"gen/moar/Grammar.nqp"},"398":"QAST::Op","397":{"name":"new","line":683,"file":"gen/moar/stage2/QASTNode.nqp"},"396":"QAST::SVal","395":{"name":"new","line":461,"file":"gen/moar/stage2/QASTNode.nqp"},"394":{"name":"op","line":696,"file":"gen/moar/stage2/QASTNode.nqp"},"393":{"name":"list","line":67,"file":"gen/moar/stage2/QASTNode.nqp"},"392":{"name":"sunk","line":189,"file":"gen/moar/stage2/QASTNode.nqp"},"391":{"name":"setflag","line":184,"file":"gen/moar/stage2/QASTNode.nqp"},"390":{"name":"isflag","line":186,"file":"gen/moar/stage2/QASTNode.nqp"},"39":{"name":"pretending_to_be","line":389,"file":"gen/moar/Metamodel.nqp"},"389":{"name":"wanted","line":188,"file":"gen/moar/stage2/QASTNode.nqp"},"388":{"name":"wanted","line":79,"file":"gen/moar/Actions.nqp"},"387":{"name":"WANTED","line":272,"file":"gen/moar/Actions.nqp"},"386":{"name":"ann","line":227,"file":"gen/moar/stage2/QASTNode.nqp"},"385":{"name":"cur_lexpad","line":285,"file":"gen/moar/World.nqp"},"384":{"name":"cur_lexpad","line":885,"file":"gen/moar/World.nqp"},"383":{"name":"finishpad","line":1923,"file":"gen/moar/Actions.nqp"},"382":{"name":"finishpad","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"381":{"name":"add_load_dependency_task","line":3043,"file":"gen/moar/stage2/NQPHLL.nqp"},"380":{"name":"sc","line":2946,"file":"gen/moar/stage2/NQPHLL.nqp"},"38":{"name":"type_check","line":3646,"file":"gen/moar/Metamodel.nqp"},"379":{"name":"add_object","line":3007,"file":"gen/moar/stage2/NQPHLL.nqp"},"378":{"name":"add_object_if_no_sc","line":5678,"file":"gen/moar/World.nqp"},"377":{"name":"push_code_object","line":407,"file":"gen/moar/World.nqp"},"376":{"name":"stub_code_object","line":2541,"file":"gen/moar/World.nqp"},"375":{"name":"push","line":69,"file":"gen/moar/stage2/QASTNode.nqp"},"374":{"name":"value","line":630,"file":"gen/moar/stage2/QASTNode.nqp"},"373":"QAST::Var","372":{"name":"new","line":601,"file":"gen/moar/stage2/QASTNode.nqp"},"371":{"name":"install_lexical_symbol","line":1724,"file":"gen/moar/World.nqp"},"370":{"name":"set_package","line":1360,"file":"gen/moar/stage2/QRegex.nqp"},"37":{"name":"is_narrower","line":2299,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"369":{"name":"FLATTENABLE_HASH","line":506,"file":"SETTING::src/core.c/Map.pm6"},"368":{"name":"stash_hash","line":5582,"file":"gen/moar/World.nqp"},"367":{"name":"force_value","line":5322,"file":"gen/moar/World.nqp"},"366":{"name":"blocks","line":252,"file":"gen/moar/World.nqp"},"365":{"name":"find_single_symbol","line":4991,"file":"gen/moar/World.nqp"},"364":{"name":"unitstart","line":1477,"file":"gen/moar/Actions.nqp"},"363":{"name":"unitstart","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"362":{"name":"comp_unit_stage1","line":718,"file":"gen/moar/World.nqp"},"361":{"name":"!cursor_capture","line":1543,"file":"gen/moar/stage2/QRegex.nqp"},"360":{"name":"symbol","line":948,"file":"gen/moar/stage2/QASTNode.nqp"},"36":{"name":"target_type","line":4892,"file":"gen/moar/Metamodel.nqp"},"359":{"name":"Str","line":740,"file":"gen/moar/stage2/NQPCORE.setting"},"358":{"name":"SET_BLOCK_OUTER_CTX","line":1531,"file":"gen/moar/stage2/NQPHLL.nqp"},"357":{"name":"lang-version","line":1484,"file":"gen/moar/Actions.nqp"},"356":{"name":"load-lang-ver","line":586,"file":"gen/moar/World.nqp"},"355":{"name":"!cursor_next","line":1617,"file":"gen/moar/stage2/QRegex.nqp"},"354":{"name":"!cursor_push_cstack","line":1555,"file":"gen/moar/stage2/QRegex.nqp"},"353":{"name":"!reduce","line":1653,"file":"gen/moar/stage2/QRegex.nqp"},"352":{"name":"!cursor_pass","line":1587,"file":"gen/moar/stage2/QRegex.nqp"},"351":{"name":"MARKER","line":1437,"file":"gen/moar/stage2/NQPHLL.nqp"},"350":{"name":"run_alt","line":746,"file":"gen/moar/stage2/QRegex.nqp"},"35":{"name":"constraint_type","line":4896,"file":"gen/moar/Metamodel.nqp"},"349":{"name":"cache_get","line":1409,"file":"gen/moar/stage2/nqpmo.nqp"},"348":{"name":"!alt","line":1735,"file":"gen/moar/stage2/QRegex.nqp"},"347":{"name":"ww","line":1981,"file":"gen/moar/stage2/QRegex.nqp"},"346":{"name":"!dba","line":1786,"file":"gen/moar/stage2/QRegex.nqp"},"345":{"name":"!fresh_highexpect","line":1809,"file":"gen/moar/stage2/QRegex.nqp"},"344":{"name":"_ws","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"343":{"name":"Bool","line":2247,"file":"gen/moar/stage2/QRegex.nqp"},"342":{"name":"pos","line":1147,"file":"gen/moar/stage2/QRegex.nqp"},"341":{"name":"!cursor_start_fail","line":1529,"file":"gen/moar/stage2/QRegex.nqp"},"340":{"name":"MARKED","line":1454,"file":"gen/moar/stage2/NQPHLL.nqp"},"34":{"name":"nominalizable_kind","line":5057,"file":"gen/moar/Metamodel.nqp"},"339":{"name":"ws","line":678,"file":"gen/moar/Grammar.nqp"},"338":{"name":"lang-version","line":864,"file":"gen/moar/Grammar.nqp"},"337":{"name":"!cursor_fail","line":1605,"file":"gen/moar/stage2/QRegex.nqp"},"336":{"name":"bom","line":-1,"file":"/tmp/whateverable/rakudo-moar/45b4e6464d5437526aac6fa0c0822c2c90c0cb2c/share/perl6/lib/Perl6/Grammar.moarvm"},"335":{"name":"annotate","line":217,"file":"gen/moar/stage2/QASTNode.nqp"},"334":"QAST::Block","333":{"name":"new","line":903,"file":"gen/moar/stage2/QASTNode.nqp"},"332":{"name":"node","line":153,"file":"gen/moar/stage2/QASTNode.nqp"},"331":{"name":"set","line":142,"file":"gen/moar/stage2/QASTNode.nqp"},"330":"QAST::Stmts","33":{"name":"!find_wrappee","line":341,"file":"gen/moar/Metamodel.nqp"},"329":{"name":"new","line":795,"file":"gen/moar/stage2/QASTNode.nqp"},"328":{"name":"create_block","line":256,"file":"gen/moar/World.nqp"},"327":{"name":"push_lexpad","line":271,"file":"gen/moar/World.nqp"},"326":{"name":"context","line":3037,"file":"gen/moar/stage2/NQPHLL.nqp"},"325":{"name":"push_lexpad","line":875,"file":"gen/moar/World.nqp"},"324":{"name":"comp_unit_stage0","line":680,"file":"gen/moar/World.nqp"},"323":{"name":"reset_language_version","line":69,"file":"gen/moar/Compiler.nqp"},"322":{"name":"onlyname","line":524,"file":"gen/moar/stage2/NQPCORE.setting"},"321":{"name":"prepare-hash","line":501,"file":"gen/moar/stage2/NQPCORE.setting"},"320":{"name":"prepare-list","line":480,"file":"gen/moar/stage2/NQPCORE.setting"},"32":{"name":"wrappee","line":367,"file":"gen/moar/Metamodel.nqp"},"319":{"name":"has-captures","line":472,"file":"gen/moar/stage2/NQPCORE.setting"},"318":{"name":"CAPS","line":568,"file":"gen/moar/stage2/NQPCORE.setting"},"317":{"name":"MATCH","line":2144,"file":"gen/moar/stage2/QRegex.nqp"},"316":{"name":"!cursor_start","line":1485,"file":"gen/moar/stage2/QRegex.nqp"},"315":{"name":"comp_unit","line":832,"file":"gen/moar/Grammar.nqp"},"314":{"name":"is_precompilation_mode","line":3029,"file":"gen/moar/stage2/NQPHLL.nqp"},"313":{"name":"add_initializations","line":5335,"file":"gen/moar/World.nqp"},"312":{"name":"BUILD","line":526,"file":"gen/moar/World.nqp"},"311":{"name":"BUILD","line":237,"file":"gen/moar/World.nqp"},"310":"SCRef","31":{"name":"archetypes","line":4851,"file":"gen/moar/Metamodel.nqp"},"309":{"name":"BUILD","line":2933,"file":"gen/moar/stage2/NQPHLL.nqp"},"308":"Perl6CompilationContext","307":{"name":"context_class","line":494,"file":"gen/moar/World.nqp"},"306":{"name":"BUILD","line":2983,"file":"gen/moar/stage2/NQPHLL.nqp"},"305":"Perl6::World","304":{"name":"target","line":1145,"file":"gen/moar/stage2/QRegex.nqp"},"303":{"name":"set_how","line":1378,"file":"gen/moar/stage2/QRegex.nqp"},"302":{"name":"set_pragma","line":1370,"file":"gen/moar/stage2/QRegex.nqp"},"301":{"name":"pragma","line":1367,"file":"gen/moar/stage2/QRegex.nqp"},"300":{"name":"define_slang","line":1278,"file":"gen/moar/stage2/QRegex.nqp"},"30":{"name":"coercive","line":145,"file":"gen/moar/Metamodel.nqp"},"3":"BOOTArray","299":{"name":"actions","line":1342,"file":"gen/moar/stage2/QRegex.nqp"},"298":{"name":"TOP","line":491,"file":"gen/moar/Grammar.nqp"},"297":{"name":"!cursor_start_cur","line":1511,"file":"gen/moar/stage2/QRegex.nqp"},"296":"ParseShared","295":"Perl6::Grammar","294":{"name":"!cursor_init","line":1408,"file":"gen/moar/stage2/QRegex.nqp"},"293":"Braid","292":{"name":"!braid_init","line":1095,"file":"gen/moar/stage2/QRegex.nqp"},"291":{"name":"parse","line":2258,"file":"gen/moar/stage2/QRegex.nqp"},"290":{"name":"parseactions","line":1977,"file":"gen/moar/stage2/NQPHLL.nqp"},"29":{"name":"archetypes","line":3988,"file":"gen/moar/Metamodel.nqp"},"289":{"name":"parsegrammar","line":1970,"file":"gen/moar/stage2/NQPHLL.nqp"},"288":{"name":"parse","line":2286,"file":"gen/moar/stage2/NQPHLL.nqp"},"287":"NQPDecoder","286":{"name":"new","line":795,"file":"gen/moar/stage2/NQPCORE.setting"},"285":{"name":"new","line":59,"file":"gen/moar/stage2/MASTNodes.nqp"},"284":{"name":"BUILD","line":6894,"file":"gen/moar/stage2/QAST.nqp"},"283":"BOOTStrArray","282":"MAST::Bytecode","281":{"name":"BUILD","line":7027,"file":"gen/moar/stage2/QAST.nqp"},"280":"MoarVM::Callsites","28":"BOOTInt","279":"MoarVM::StringHeap","278":{"name":"start","line":776,"file":"gen/moar/stage2/NQPHLL.nqp"},"277":{"name":"execute_stage","line":2209,"file":"gen/moar/stage2/NQPHLL.nqp"},"276":{"name":"run","line":2249,"file":"gen/moar/stage2/NQPHLL.nqp"},"275":{"name":"","line":2245,"file":"gen/moar/stage2/NQPHLL.nqp"},"274":{"name":"stages","line":1963,"file":"gen/moar/stage2/NQPHLL.nqp"},"273":{"name":"stdin","line":1025,"file":"gen/moar/stage2/NQPCORE.setting"},"272":{"name":"stderr","line":1027,"file":"gen/moar/stage2/NQPCORE.setting"},"271":{"name":"compile","line":2222,"file":"gen/moar/stage2/NQPHLL.nqp"},"270":{"name":"FLATTENABLE_HASH","line":931,"file":"SETTING::src/core.c/List.pm6"},"27":"BOOTStr","269":{"name":"FLATTENABLE_LIST","line":917,"file":"SETTING::src/core.c/List.pm6"},"268":{"name":"defined","line":112,"file":"SETTING::src/core.c/Mu.pm6"},"267":{"name":"reification-target","line":565,"file":"SETTING::src/core.c/List.pm6"},"266":"List::Reifier","265":"IterationBuffer","264":{"name":"from-slurpy-onearg","line":215,"file":"SETTING::src/core.c/List.pm6"},"263":{"name":"infix:<andthen>","line":344,"file":"SETTING::src/core.c/operators.pm6"},"262":{"name":"infix:<andthen>","line":343,"file":"SETTING::src/core.c/operators.pm6"},"261":"Block","260":{"name":"","line":2085,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"26":"BOOTIntArray","259":{"name":"","line":3760,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"258":{"name":"cli-options","line":2531,"file":"gen/moar/stage2/NQPHLL.nqp"},"257":{"name":"default","line":1125,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"256":{"name":"next","line":1156,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"255":{"name":"default","line":1163,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"254":"ContainerDescriptor::BindHashPos","253":{"name":"new","line":1263,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"252":"ContainerDescriptor::Untyped","251":{"name":"AT_KEY_CONTAINER","line":29,"file":"SETTING::src/core.c/Hash.pm6"},"250":{"name":"AT-KEY","line":33,"file":"SETTING::src/core.c/Hash.pm6"},"25":"NQPArrayIter","249":"CALLERS","248":{"name":"","line":163,"file":"SETTING::src/core.c/PseudoStash.pm6"},"247":{"name":"EXISTS-KEY","line":305,"file":"SETTING::src/core.c/PseudoStash.pm6"},"246":{"name":"postcircumfix:<{ }>","line":21,"file":"SETTING::src/core.c/hash_slice.pm6"},"245":{"name":"role_typecheck_list","line":4830,"file":"gen/moar/Metamodel.nqp"},"244":{"name":"mro","line":1306,"file":"gen/moar/Metamodel.nqp"},"243":{"name":"type_check","line":1615,"file":"gen/moar/Metamodel.nqp"},"242":{"name":"sink","line":12,"file":"SETTING::src/core.c/Mu.pm6"},"241":{"name":"defined","line":113,"file":"SETTING::src/core.c/Mu.pm6"},"240":{"name":"defined","line":111,"file":"SETTING::src/core.c/Mu.pm6"},"24":{"name":"","line":2269,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"239":{"name":"NORMALIZE_ENCODING","line":342,"file":"SETTING::src/core.c/Rakudo/Internals.pm6"},"238":{"name":"decode","line":306,"file":"SETTING::src/core.c/Buf.pm6"},"237":{"name":"decode","line":292,"file":"SETTING::src/core.c/Buf.pm6"},"236":{"name":"infix:<eq>","line":3660,"file":"SETTING::src/core.c/Str.pm6"},"235":{"name":"infix:<eq>","line":35,"file":"SETTING::src/core.c/Stringy.pm6"},"234":{"name":"archetypes","line":4681,"file":"gen/moar/Metamodel.nqp"},"233":{"name":"Bool","line":105,"file":"SETTING::src/core.c/Mu.pm6"},"232":{"name":"assign-scalar-no-whence","line":4406,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"231":{"name":"EVAL","line":27,"file":"SETTING::src/core.c/ForeignCode.pm6"},"230":"Perl6::Metamodel::ModuleHOW","23":{"name":"slurp","line":126,"file":"SETTING::src/core.c/io_operators.pm6"},"229":{"name":"new","line":529,"file":"gen/moar/Metamodel.nqp"},"228":"CALLER","227":{"name":"new_type","line":533,"file":"gen/moar/Metamodel.nqp"},"226":{"name":"","line":100,"file":"SETTING::src/core.c/PseudoStash.pm6"},"225":{"name":"AT-KEY","line":239,"file":"SETTING::src/core.c/PseudoStash.pm6"},"224":{"name":"AT-KEY","line":399,"file":"SETTING::src/core.c/Any.pm6"},"223":{"name":"postcircumfix:<{ }>","line":6,"file":"SETTING::src/core.c/hash_slice.pm6"},"222":"PseudoStash","221":{"name":"new","line":15,"file":"SETTING::src/core.c/PseudoStash.pm6"},"220":"Buf[uint8]","22":{"name":"EVALFILE","line":104,"file":"SETTING::src/core.c/ForeignCode.pm6"},"219":{"name":"slurp-PIO","line":568,"file":"SETTING::src/core.c/IO/Path.pm6"},"218":"BOOTIO","217":{"name":"slurp-path-bin","line":591,"file":"SETTING::src/core.c/IO/Path.pm6"},"216":{"name":"decontrv","line":4158,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"215":"StrLexRef","214":{"name":"canonpath","line":3,"file":"SETTING::src/core.c/IO/Spec/Unix.pm6"},"213":{"name":"of","line":1123,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"212":{"name":"rel2abs","line":259,"file":"SETTING::src/core.c/IO/Spec/Unix.pm6"},"211":{"name":"absolute","line":218,"file":"SETTING::src/core.c/IO/Path.pm6"},"210":{"name":"absolute","line":217,"file":"SETTING::src/core.c/IO/Path.pm6"},"21":"BOOTMultiCache","209":{"name":"slurp","line":615,"file":"SETTING::src/core.c/IO/Path.pm6"},"208":{"name":"slurp","line":614,"file":"SETTING::src/core.c/IO/Path.pm6"},"207":{"name":"slurp","line":129,"file":"SETTING::src/core.c/io_operators.pm6"},"206":{"name":"WHY","line":199,"file":"gen/moar/Metamodel.nqp"},"205":{"name":"has_multi_invocation_attrs","line":2243,"file":"gen/moar/Metamodel.nqp"},"204":{"name":"invocation_handler","line":2235,"file":"gen/moar/Metamodel.nqp"},"203":{"name":"has_invocation_handler","line":2234,"file":"gen/moar/Metamodel.nqp"},"202":{"name":"has_invocation_attr","line":2230,"file":"gen/moar/Metamodel.nqp"},"201":{"name":"compose_invocation","line":2248,"file":"gen/moar/Metamodel.nqp"},"200":{"name":"meta_methods","line":1091,"file":"gen/moar/Metamodel.nqp"},"20":{"name":"add_to_cache","line":2894,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"2":"BOOTCode","199":{"name":"compose_meta_methods","line":1097,"file":"gen/moar/Metamodel.nqp"},"198":{"name":"get_container_spec","line":456,"file":"gen/moar/Metamodel.nqp"},"197":{"name":"publish_container_spec","line":464,"file":"gen/moar/Metamodel.nqp"},"196":{"name":"publish_boolification_spec","line":435,"file":"gen/moar/Metamodel.nqp"},"195":{"name":"has_fallbacks","line":4260,"file":"gen/moar/Metamodel.nqp"},"194":{"name":"value","line":739,"file":"gen/moar/stage2/NQPCORE.setting"},"193":{"name":"key","line":738,"file":"gen/moar/stage2/NQPCORE.setting"},"192":{"name":"publish_method_cache","line":1571,"file":"gen/moar/Metamodel.nqp"},"191":{"name":"role_typecheck_list","line":4221,"file":"gen/moar/Metamodel.nqp"},"190":{"name":"publish_type_cache","line":1634,"file":"gen/moar/Metamodel.nqp"},"19":{"name":"handle_optional","line":606,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"189":{"name":"compose_repr","line":2129,"file":"gen/moar/Metamodel.nqp"},"188":{"name":"BUILDALLPLAN","line":2120,"file":"gen/moar/Metamodel.nqp"},"187":{"name":"create_BUILDPLAN","line":1844,"file":"gen/moar/Metamodel.nqp"},"186":{"name":"set_boolification_mode","line":431,"file":"gen/moar/Metamodel.nqp"},"185":{"name":"get_boolification_mode","line":427,"file":"gen/moar/Metamodel.nqp"},"184":{"name":"submethod_table","line":851,"file":"gen/moar/Metamodel.nqp"},"183":{"name":"find_method","line":1518,"file":"gen/moar/Metamodel.nqp"},"182":{"name":"setup_finalization","line":713,"file":"gen/moar/Metamodel.nqp"},"181":{"name":"submethod_type","line":21,"file":"gen/moar/Metamodel.nqp"},"180":{"name":"incorporate_multi_candidates","line":982,"file":"gen/moar/Metamodel.nqp"},"18":"int","179":{"name":"repr_composed","line":2195,"file":"gen/moar/Metamodel.nqp"},"178":{"name":"add_parent","line":1189,"file":"gen/moar/Metamodel.nqp"},"177":{"name":"get_default_parent_type","line":1283,"file":"gen/moar/Metamodel.nqp"},"176":{"name":"has_default_parent_type","line":1279,"file":"gen/moar/Metamodel.nqp"},"175":{"name":"private_methods","line":923,"file":"gen/moar/Metamodel.nqp"},"174":{"name":"compose_method_table","line":3825,"file":"gen/moar/Metamodel.nqp"},"173":{"name":"lang-rev-before","line":290,"file":"gen/moar/Metamodel.nqp"},"172":{"name":"apply","line":3818,"file":"gen/moar/Metamodel.nqp"},"171":{"name":"method_table","line":846,"file":"gen/moar/Metamodel.nqp"},"170":"NQPHashIter","17":{"name":"","line":2009,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"169":{"name":"compose_attributes","line":626,"file":"gen/moar/Metamodel.nqp"},"168":{"name":"role_typecheck_list","line":2924,"file":"gen/moar/Metamodel.nqp"},"167":{"name":"wipe_conc_cache","line":2820,"file":"gen/moar/Metamodel.nqp"},"166":{"name":"collisions","line":2911,"file":"gen/moar/Metamodel.nqp"},"165":{"name":"prepare","line":3758,"file":"gen/moar/Metamodel.nqp"},"164":"RoleToClassApplier","163":{"name":"role_to_class_applier_type","line":37,"file":"gen/moar/Metamodel.nqp"},"162":{"name":"archetypes","line":2851,"file":"gen/moar/Metamodel.nqp"},"161":{"name":"mro","line":1493,"file":"gen/moar/Metamodel.nqp"},"160":{"name":"hides","line":1253,"file":"gen/moar/Metamodel.nqp"},"16":"Scalar","159":{"name":"inheritable","line":139,"file":"gen/moar/Metamodel.nqp"},"158":{"name":"unshift","line":730,"file":"gen/moar/stage2/NQPCORE.setting"},"157":{"name":"c3_merge","line":1427,"file":"gen/moar/Metamodel.nqp"},"156":{"name":"concretizations","line":2684,"file":"gen/moar/Metamodel.nqp"},"155":{"name":"compute_mro","line":1334,"file":"gen/moar/Metamodel.nqp"},"154":{"name":"add_concretization","line":2677,"file":"gen/moar/Metamodel.nqp"},"153":{"name":"incompat-revisions","line":312,"file":"gen/moar/Metamodel.nqp"},"152":{"name":"check-type-compat","line":299,"file":"gen/moar/Metamodel.nqp"},"151":{"name":"ver","line":230,"file":"gen/moar/Metamodel.nqp"},"150":{"name":"add_conc_to_cache","line":2795,"file":"gen/moar/Metamodel.nqp"},"15":{"name":"bind_one_param","line":207,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"149":{"name":"push","line":728,"file":"gen/moar/stage2/NQPCORE.setting"},"148":{"name":"publish_type_cache","line":2941,"file":"gen/moar/Metamodel.nqp"},"147":{"name":"role_typecheck_list","line":3345,"file":"gen/moar/Metamodel.nqp"},"146":{"name":"apply","line":2404,"file":"gen/moar/Metamodel.nqp"},"145":{"name":"role_to_role_applier_type","line":43,"file":"gen/moar/Metamodel.nqp"},"144":{"name":"compose","line":2886,"file":"gen/moar/Metamodel.nqp"},"143":{"name":"is_array_type","line":2388,"file":"gen/moar/Metamodel.nqp"},"142":{"name":"multi_methods_to_incorporate","line":976,"file":"gen/moar/Metamodel.nqp"},"141":{"name":"private_method_names","line":927,"file":"gen/moar/Metamodel.nqp"},"140":{"name":"","line":748,"file":"gen/moar/stage2/NQPCORE.setting"},"14":{"name":"bind","line":639,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"139":{"name":"private_method_table","line":919,"file":"gen/moar/Metamodel.nqp"},"138":{"name":"method_names","line":840,"file":"gen/moar/Metamodel.nqp"},"137":{"name":"method_order","line":836,"file":"gen/moar/Metamodel.nqp"},"136":{"name":"attributes","line":690,"file":"gen/moar/Metamodel.nqp"},"135":{"name":"specialize_with","line":3426,"file":"gen/moar/Metamodel.nqp"},"134":{"name":"","line":1,"file":"SETTING::src/core.c/IO.pm6"},"133":{"name":"hidden","line":1262,"file":"gen/moar/Metamodel.nqp"},"132":{"name":"set_language_revision","line":275,"file":"gen/moar/Metamodel.nqp"},"131":{"name":"language-revision","line":322,"file":"gen/moar/Metamodel.nqp"},"130":{"name":"set_ver","line":234,"file":"gen/moar/Metamodel.nqp"},"13":"BOOTContext","129":"Perl6::Metamodel::ConcreteRoleHOW","128":{"name":"new","line":2855,"file":"gen/moar/Metamodel.nqp"},"127":"IO","126":{"name":"new_type","line":2870,"file":"gen/moar/Metamodel.nqp"},"125":{"name":"is_composed","line":4225,"file":"gen/moar/Metamodel.nqp"},"124":"Capture","123":{"name":"!make_capture","line":2777,"file":"gen/moar/Metamodel.nqp"},"122":{"name":"get_cached_conc","line":2807,"file":"gen/moar/Metamodel.nqp"},"121":{"name":"","line":3386,"file":"gen/moar/Metamodel.nqp"},"120":{"name":"protect","line":1216,"file":"gen/moar/stage2/NQPCORE.setting"},"12":{"name":"","line":958,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"119":{"name":"specialize","line":3380,"file":"gen/moar/Metamodel.nqp"},"118":{"name":"body_block","line":3299,"file":"gen/moar/Metamodel.nqp"},"117":{"name":"try_select","line":3597,"file":"gen/moar/Metamodel.nqp"},"116":{"name":"","line":3596,"file":"gen/moar/Metamodel.nqp"},"115":{"name":"select_candidate","line":3592,"file":"gen/moar/Metamodel.nqp"},"114":{"name":"specialize","line":3631,"file":"gen/moar/Metamodel.nqp"},"113":{"name":"pop","line":729,"file":"gen/moar/stage2/NQPCORE.setting"},"112":{"name":"roles_to_compose","line":1137,"file":"gen/moar/Metamodel.nqp"},"111":{"name":"set_language_version","line":249,"file":"gen/moar/Metamodel.nqp"},"110":{"name":"compose","line":4046,"file":"gen/moar/Metamodel.nqp"},"11":{"name":"is_bindable","line":952,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"109":{"name":"set_pun_source","line":4264,"file":"gen/moar/Metamodel.nqp"},"108":{"name":"add_role","line":1133,"file":"gen/moar/Metamodel.nqp"},"107":"MixinCacheHOW","106":{"name":"CREATE","line":627,"file":"gen/moar/stage2/NQPCORE.setting"},"105":{"name":"bless","line":631,"file":"gen/moar/stage2/NQPCORE.setting"},"104":{"name":"new","line":703,"file":"gen/moar/stage2/NQPCORE.setting"},"103":"<unknown type>","1028":{"name":"gist","line":14,"file":"SETTING::src/core.c/Bool.pm6"},"1027":{"name":"gist","line":4,"file":"SETTING::src/core.c/Bool.pm6"},"1026":{"name":"WRITE","line":615,"file":"SETTING::src/core.c/IO/Handle.pm6"},"1025":"utf8","1024":{"name":"encode-chars","line":22,"file":"SETTING::src/core.c/Encoding/Encoder/Builtin.pm6"},"1023":{"name":"print","line":658,"file":"SETTING::src/core.c/IO/Handle.pm6"},"1022":{"name":"print","line":675,"file":"SETTING::src/core.c/Mu.pm6"},"1021":{"name":"nl-out","line":4,"file":"SETTING::src/core.c/IO/Handle.pm6"},"1020":{"name":"gist","line":811,"file":"SETTING::src/core.c/Str.pm6"},"102":{"name":"new_type","line":1686,"file":"gen/moar/Metamodel.nqp"},"1019":{"name":"gist","line":780,"file":"SETTING::src/core.c/Mu.pm6"},"1018":{"name":"say","line":35,"file":"SETTING::src/core.c/io_operators.pm6"},"1017":{"name":"say","line":30,"file":"SETTING::src/core.c/io_operators.pm6"},"1016":{"name":"<unit>","line":1,"file":"code.rakuplay-1609039017.raku"},"1015":{"name":"<unit-outer>","line":1,"file":"code.rakuplay-1609039017.raku"},"1014":"ForeignCode","1013":{"name":"","line":3765,"file":"gen/moar/BOOTSTRAP/v6c.nqp"},"1012":{"name":"compunit_mainline","line":822,"file":"gen/moar/stage2/NQPHLL.nqp"},"1011":{"name":"moar","line":814,"file":"gen/moar/stage2/NQPHLL.nqp"},"1010":{"name":"<dependencies+deserialize>","line":-1,"file":""},"101":{"name":"setup_mixin_cache","line":1708,"file":"gen/moar/Metamodel.nqp"},"1009":{"name":"bytecode","line":7451,"file":"gen/moar/stage2/QAST.nqp"},"1008":{"name":"write_annotations","line":7333,"file":"gen/moar/stage2/QAST.nqp"},"1007":{"name":"write_serialized_data","line":7297,"file":"gen/moar/stage2/QAST.nqp"},"1006":{"name":"strings","line":7071,"file":"gen/moar/stage2/QAST.nqp"},"1005":{"name":"write_string_heap","line":7294,"file":"gen/moar/stage2/QAST.nqp"},"1004":{"name":"bytecode","line":7016,"file":"gen/moar/stage2/QAST.nqp"},"1003":{"name":"write_callsites","line":7291,"file":"gen/moar/stage2/QAST.nqp"},"1002":{"name":"code_obj_sc_idx","line":1117,"file":"gen/moar/stage2/MASTNodes.nqp"},"1001":{"name":"code_obj_sc_dep_idx","line":1114,"file":"gen/moar/stage2/MASTNodes.nqp"},"1000":{"name":"type_to_local_type","line":6870,"file":"gen/moar/stage2/QAST.nqp"},"100":{"name":"stash_attr_type","line":15,"file":"gen/moar/Metamodel.nqp"},"10":"NQPArray","1":{"name":"<unit-outer>","line":1,"file":"-e"},"0":{"name":"","line":1939,"file":"gen/moar/stage2/NQPHLL.nqp"}},{"total_time":104622,"thread":1,"start_time":0,"spesh_time":47153,"parent":0,"gcs":[],"call_graph":{"inclusive_time":60678,"id":"0","highest_child_id":3409,"first_entry_time":0,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":60642,"id":"1","highest_child_id":3409,"first_entry_time":34,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":60608,"id":"4","highest_child_id":3409,"first_entry_time":68,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":60350,"id":"5","highest_child_id":3384,"first_entry_time":112,"exclusive_time":248,"entries":1,"callees":[{"inclusive_time":518,"id":"9","highest_child_id":11,"first_entry_time":358,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":470,"id":"11","highest_child_id":10,"first_entry_time":390,"exclusive_time":62,"entries":1,"callees":[{"inclusive_time":407,"id":"12","highest_child_id":10,"first_entry_time":451,"exclusive_time":144,"entries":1,"callees":[{"inclusive_time":262,"id":"14","highest_child_id":10,"first_entry_time":595,"exclusive_time":219,"entries":1,"callees":[{"inclusive_time":41,"id":"15","highest_child_id":9,"first_entry_time":788,"exclusive_time":38,"entries":3,"callees":[{"inclusive_time":2,"id":"17","highest_child_id":9,"first_entry_time":806,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]}],"allocations":[{"id":"2","count":9},{"id":"16","count":3}]},{"inclusive_time":2,"id":"19","highest_child_id":10,"first_entry_time":835,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":11,"first_entry_time":873,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":59584,"id":"22","highest_child_id":3384,"first_entry_time":878,"exclusive_time":516,"entries":1,"callees":[{"inclusive_time":13853,"id":"23","highest_child_id":453,"first_entry_time":907,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":12710,"id":"9","highest_child_id":365,"first_entry_time":912,"exclusive_time":226,"entries":1,"callees":[{"inclusive_time":1895,"id":"24","highest_child_id":30,"first_entry_time":1101,"exclusive_time":1157,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":16,"first_entry_time":1747,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"30","highest_child_id":17,"first_entry_time":1766,"exclusive_time":2,"entries":4},{"inclusive_time":4,"id":"17","highest_child_id":18,"first_entry_time":1773,"exclusive_time":4,"entries":4,"allocations":[{"id":"18","count":4}]},{"inclusive_time":3,"id":"31","highest_child_id":19,"first_entry_time":1825,"exclusive_time":2,"entries":3},{"inclusive_time":68,"id":"32","highest_child_id":22,"first_entry_time":1842,"exclusive_time":50,"entries":3,"callees":[{"inclusive_time":17,"id":"33","highest_child_id":22,"first_entry_time":1888,"exclusive_time":16,"entries":3,"callees":[{"inclusive_time":1,"id":"34","highest_child_id":22,"first_entry_time":1899,"exclusive_time":0,"entries":3}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"6","count":3}]},{"inclusive_time":2,"id":"35","highest_child_id":23,"first_entry_time":1913,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"36","highest_child_id":24,"first_entry_time":1928,"exclusive_time":1,"entries":3},{"inclusive_time":666,"id":"37","highest_child_id":30,"first_entry_time":2160,"exclusive_time":270,"entries":56,"callees":[{"inclusive_time":390,"id":"38","highest_child_id":30,"first_entry_time":2274,"exclusive_time":269,"entries":24,"callees":[{"inclusive_time":7,"id":"39","highest_child_id":27,"first_entry_time":2288,"exclusive_time":2,"entries":24},{"inclusive_time":5,"id":"40","highest_child_id":28,"first_entry_time":2315,"exclusive_time":4,"entries":6},{"inclusive_time":111,"id":"41","highest_child_id":30,"first_entry_time":2466,"exclusive_time":92,"entries":6,"callees":[{"inclusive_time":18,"id":"42","highest_child_id":30,"first_entry_time":2548,"exclusive_time":17,"entries":6}],"allocations":[{"id":"25","count":6}]}],"allocations":[{"id":"25","count":30}]}]}],"allocations":[{"id":"10","count":33},{"id":"25","count":6},{"id":"6","count":16},{"id":"26","count":10},{"id":"27","count":1},{"id":"28","count":8}]},{"inclusive_time":10585,"id":"11","highest_child_id":364,"first_entry_time":3030,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":10538,"id":"12","highest_child_id":364,"first_entry_time":3075,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":10532,"id":"14","highest_child_id":364,"first_entry_time":3081,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":10498,"id":"15","highest_child_id":364,"first_entry_time":3089,"exclusive_time":185,"entries":2,"callees":[{"inclusive_time":18,"id":"43","highest_child_id":40,"first_entry_time":3118,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":15,"id":"38","highest_child_id":40,"first_entry_time":3122,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"39","highest_child_id":37,"first_entry_time":3123,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"40","highest_child_id":38,"first_entry_time":3129,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"41","highest_child_id":40,"first_entry_time":3131,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"42","highest_child_id":40,"first_entry_time":3133,"exclusive_time":2,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":1,"id":"44","highest_child_id":41,"first_entry_time":3154,"exclusive_time":1,"entries":1},{"inclusive_time":15,"id":"17","highest_child_id":42,"first_entry_time":3158,"exclusive_time":15,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":6,"id":"32","highest_child_id":45,"first_entry_time":3161,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"33","highest_child_id":45,"first_entry_time":3164,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"34","highest_child_id":45,"first_entry_time":3165,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":10270,"id":"45","highest_child_id":364,"first_entry_time":3283,"exclusive_time":89,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":47,"first_entry_time":3287,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":48,"first_entry_time":3292,"exclusive_time":0,"entries":1},{"inclusive_time":10179,"id":"46","highest_child_id":364,"first_entry_time":3372,"exclusive_time":139,"entries":1,"callees":[{"inclusive_time":4,"id":"47","highest_child_id":50,"first_entry_time":3397,"exclusive_time":4,"entries":1},{"inclusive_time":3057,"id":"48","highest_child_id":150,"first_entry_time":3455,"exclusive_time":66,"entries":1,"callees":[{"inclusive_time":2,"id":"49","highest_child_id":52,"first_entry_time":3470,"exclusive_time":2,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":136,"id":"9","highest_child_id":59,"first_entry_time":3485,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":105,"id":"24","highest_child_id":58,"first_entry_time":3497,"exclusive_time":78,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":55,"first_entry_time":3509,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":56,"first_entry_time":3512,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"17","highest_child_id":57,"first_entry_time":3516,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":22,"id":"37","highest_child_id":58,"first_entry_time":3556,"exclusive_time":21,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":2,"id":"20","highest_child_id":59,"first_entry_time":3618,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2851,"id":"51","highest_child_id":150,"first_entry_time":3661,"exclusive_time":748,"entries":1,"callees":[{"inclusive_time":2101,"id":"52","highest_child_id":148,"first_entry_time":4405,"exclusive_time":59,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":62,"first_entry_time":4410,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":484,"id":"9","highest_child_id":69,"first_entry_time":4417,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":443,"id":"24","highest_child_id":68,"first_entry_time":4422,"exclusive_time":327,"entries":1,"callees":[{"inclusive_time":4,"id":"29","highest_child_id":65,"first_entry_time":4552,"exclusive_time":2,"entries":10},{"inclusive_time":5,"id":"30","highest_child_id":66,"first_entry_time":4555,"exclusive_time":4,"entries":10},{"inclusive_time":10,"id":"17","highest_child_id":67,"first_entry_time":4559,"exclusive_time":8,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":105,"id":"37","highest_child_id":68,"first_entry_time":4675,"exclusive_time":100,"entries":30}],"allocations":[{"id":"10","count":32},{"id":"25","count":7},{"id":"6","count":12},{"id":"26","count":12},{"id":"27","count":3},{"id":"28","count":6}]},{"inclusive_time":3,"id":"20","highest_child_id":69,"first_entry_time":4897,"exclusive_time":3,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":1556,"id":"53","highest_child_id":148,"first_entry_time":4950,"exclusive_time":66,"entries":1,"callees":[{"inclusive_time":1261,"id":"55","highest_child_id":122,"first_entry_time":5001,"exclusive_time":83,"entries":2,"callees":[{"inclusive_time":1177,"id":"57","highest_child_id":122,"first_entry_time":5087,"exclusive_time":93,"entries":1,"callees":[{"inclusive_time":2,"id":"58","highest_child_id":73,"first_entry_time":5120,"exclusive_time":2,"entries":1},{"inclusive_time":1081,"id":"59","highest_child_id":122,"first_entry_time":5182,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":779,"id":"52","highest_child_id":111,"first_entry_time":5202,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":76,"first_entry_time":5207,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":285,"id":"9","highest_child_id":88,"first_entry_time":5214,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":252,"id":"11","highest_child_id":87,"first_entry_time":5239,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":203,"id":"12","highest_child_id":87,"first_entry_time":5287,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":197,"id":"14","highest_child_id":87,"first_entry_time":5292,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":106,"id":"15","highest_child_id":83,"first_entry_time":5299,"exclusive_time":99,"entries":5,"callees":[{"inclusive_time":5,"id":"17","highest_child_id":82,"first_entry_time":5309,"exclusive_time":4,"entries":5,"allocations":[{"id":"18","count":5}]},{"inclusive_time":2,"id":"61","highest_child_id":83,"first_entry_time":5364,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":15},{"id":"16","count":3}]},{"inclusive_time":64,"id":"19","highest_child_id":87,"first_entry_time":5397,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":3,"id":"62","highest_child_id":85,"first_entry_time":5422,"exclusive_time":3,"entries":1,"allocations":[{"id":"63","count":1},{"id":"2","count":1}]},{"inclusive_time":20,"id":"64","highest_child_id":87,"first_entry_time":5441,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":16,"id":"55","highest_child_id":87,"first_entry_time":5444,"exclusive_time":16,"entries":1,"allocations":[{"id":"56","count":1}]}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":88,"first_entry_time":5496,"exclusive_time":3,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":479,"id":"65","highest_child_id":111,"first_entry_time":5502,"exclusive_time":249,"entries":1,"callees":[{"inclusive_time":2,"id":"62","highest_child_id":90,"first_entry_time":5506,"exclusive_time":2,"entries":1,"allocations":[{"id":"63","count":1},{"id":"2","count":1}]},{"inclusive_time":11,"id":"64","highest_child_id":92,"first_entry_time":5510,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"55","highest_child_id":92,"first_entry_time":5511,"exclusive_time":10,"entries":1,"allocations":[{"id":"56","count":1}]}]},{"inclusive_time":77,"id":"66","highest_child_id":97,"first_entry_time":5544,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":94,"first_entry_time":5547,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":51,"id":"9","highest_child_id":96,"first_entry_time":5553,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":8,"id":"20","highest_child_id":96,"first_entry_time":5595,"exclusive_time":7,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2,"id":"67","highest_child_id":97,"first_entry_time":5619,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":33,"id":"68","highest_child_id":99,"first_entry_time":5695,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":2,"id":"69","highest_child_id":99,"first_entry_time":5720,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"70","highest_child_id":100,"first_entry_time":5761,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"71","highest_child_id":101,"first_entry_time":5776,"exclusive_time":0,"entries":2},{"inclusive_time":101,"id":"72","highest_child_id":111,"first_entry_time":5877,"exclusive_time":68,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":103,"first_entry_time":5889,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":104,"first_entry_time":5891,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"74","highest_child_id":105,"first_entry_time":5906,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"75","highest_child_id":107,"first_entry_time":5920,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"76","highest_child_id":107,"first_entry_time":5943,"exclusive_time":1,"entries":1}]},{"inclusive_time":3,"id":"77","highest_child_id":109,"first_entry_time":5958,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":109,"first_entry_time":5959,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":110,"first_entry_time":5963,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"78","highest_child_id":111,"first_entry_time":5974,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"16","count":1},{"id":"6","count":1},{"id":"54","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":259,"id":"79","highest_child_id":122,"first_entry_time":6004,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":56,"id":"9","highest_child_id":114,"first_entry_time":6012,"exclusive_time":53,"entries":1,"callees":[{"inclusive_time":3,"id":"20","highest_child_id":114,"first_entry_time":6064,"exclusive_time":3,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":176,"id":"80","highest_child_id":122,"first_entry_time":6087,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":155,"id":"81","highest_child_id":122,"first_entry_time":6107,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":117,"first_entry_time":6111,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":21,"id":"9","highest_child_id":119,"first_entry_time":6121,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":119,"first_entry_time":6139,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":88,"id":"82","highest_child_id":122,"first_entry_time":6174,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":5,"id":"83","highest_child_id":121,"first_entry_time":6243,"exclusive_time":5,"entries":1},{"inclusive_time":1,"id":"84","highest_child_id":122,"first_entry_time":6261,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]}],"allocations":[{"id":"56","count":1},{"id":"60","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"56","count":2}]}],"allocations":[{"id":"56","count":2}]},{"inclusive_time":190,"id":"66","highest_child_id":134,"first_entry_time":6266,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":124,"first_entry_time":6269,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":141,"id":"9","highest_child_id":131,"first_entry_time":6274,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":121,"id":"24","highest_child_id":130,"first_entry_time":6279,"exclusive_time":93,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":127,"first_entry_time":6289,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":128,"first_entry_time":6291,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"17","highest_child_id":129,"first_entry_time":6295,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":22,"id":"37","highest_child_id":130,"first_entry_time":6349,"exclusive_time":21,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":2,"id":"20","highest_child_id":131,"first_entry_time":6412,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":10,"id":"85","highest_child_id":134,"first_entry_time":6447,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":133,"first_entry_time":6452,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":134,"first_entry_time":6456,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":11,"id":"68","highest_child_id":136,"first_entry_time":6459,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"69","highest_child_id":136,"first_entry_time":6464,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":137,"first_entry_time":6472,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":138,"first_entry_time":6475,"exclusive_time":0,"entries":2},{"inclusive_time":25,"id":"72","highest_child_id":148,"first_entry_time":6478,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":140,"first_entry_time":6480,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":141,"first_entry_time":6482,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":142,"first_entry_time":6485,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":144,"first_entry_time":6486,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":144,"first_entry_time":6487,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"77","highest_child_id":146,"first_entry_time":6490,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":146,"first_entry_time":6491,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"29","highest_child_id":147,"first_entry_time":6493,"exclusive_time":5,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":148,"first_entry_time":6500,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"54","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"70","highest_child_id":149,"first_entry_time":6509,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":150,"first_entry_time":6512,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"86","highest_child_id":151,"first_entry_time":6525,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"87","highest_child_id":152,"first_entry_time":6542,"exclusive_time":1,"entries":1},{"inclusive_time":6977,"id":"88","highest_child_id":364,"first_entry_time":6574,"exclusive_time":56,"entries":1,"callees":[{"inclusive_time":6921,"id":"89","highest_child_id":364,"first_entry_time":6626,"exclusive_time":445,"entries":1,"callees":[{"inclusive_time":1,"id":"47","highest_child_id":155,"first_entry_time":6630,"exclusive_time":1,"entries":1},{"inclusive_time":357,"id":"90","highest_child_id":172,"first_entry_time":6707,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":144,"id":"92","highest_child_id":159,"first_entry_time":6727,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":85,"id":"94","highest_child_id":159,"first_entry_time":6785,"exclusive_time":83,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":159,"first_entry_time":6797,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":12},{"id":"10","count":18}]}],"allocations":[{"id":"6","count":1},{"id":"93","count":1}]},{"inclusive_time":3,"id":"96","highest_child_id":160,"first_entry_time":6893,"exclusive_time":3,"entries":1},{"inclusive_time":26,"id":"97","highest_child_id":164,"first_entry_time":6916,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"99","highest_child_id":162,"first_entry_time":6926,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"100","highest_child_id":163,"first_entry_time":6937,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"47","highest_child_id":164,"first_entry_time":6940,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"98","count":1}]},{"inclusive_time":105,"id":"101","highest_child_id":172,"first_entry_time":6960,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":68,"id":"102","highest_child_id":172,"first_entry_time":6995,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":47,"id":"104","highest_child_id":171,"first_entry_time":7008,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":34,"id":"105","highest_child_id":171,"first_entry_time":7021,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":169,"first_entry_time":7031,"exclusive_time":1,"entries":1,"allocations":[{"id":"107","count":1}]},{"inclusive_time":20,"id":"94","highest_child_id":171,"first_entry_time":7034,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":171,"first_entry_time":7052,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"47","highest_child_id":172,"first_entry_time":7058,"exclusive_time":1,"entries":1}],"allocations":[{"id":"103","count":1},{"id":"56","count":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"91","count":1}]},{"inclusive_time":3,"id":"108","highest_child_id":173,"first_entry_time":7084,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"109","highest_child_id":174,"first_entry_time":7103,"exclusive_time":1,"entries":1},{"inclusive_time":6108,"id":"110","highest_child_id":363,"first_entry_time":7396,"exclusive_time":2266,"entries":1,"callees":[{"inclusive_time":26,"id":"111","highest_child_id":177,"first_entry_time":7510,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"58","highest_child_id":177,"first_entry_time":7524,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"112","highest_child_id":178,"first_entry_time":7552,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"113","highest_child_id":179,"first_entry_time":7566,"exclusive_time":0,"entries":1},{"inclusive_time":1845,"id":"114","highest_child_id":224,"first_entry_time":7599,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":87,"id":"115","highest_child_id":186,"first_entry_time":7657,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":44,"id":"116","highest_child_id":185,"first_entry_time":7680,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":26,"id":"117","highest_child_id":185,"first_entry_time":7697,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":18,"id":"9","highest_child_id":185,"first_entry_time":7705,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":185,"first_entry_time":7720,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"8","count":1}]}],"allocations":[{"id":"2","count":1}]},{"inclusive_time":1,"id":"118","highest_child_id":186,"first_entry_time":7741,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1679,"id":"119","highest_child_id":224,"first_entry_time":7765,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":1636,"id":"120","highest_child_id":224,"first_entry_time":7808,"exclusive_time":86,"entries":1,"callees":[{"inclusive_time":1549,"id":"121","highest_child_id":224,"first_entry_time":7894,"exclusive_time":544,"entries":1,"callees":[{"inclusive_time":66,"id":"122","highest_child_id":192,"first_entry_time":7943,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":24,"id":"123","highest_child_id":192,"first_entry_time":7981,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"125","highest_child_id":192,"first_entry_time":7999,"exclusive_time":1,"entries":1}],"allocations":[{"id":"124","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"47","highest_child_id":193,"first_entry_time":8013,"exclusive_time":1,"entries":1},{"inclusive_time":98,"id":"126","highest_child_id":199,"first_entry_time":8159,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":55,"id":"128","highest_child_id":197,"first_entry_time":8177,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":50,"id":"94","highest_child_id":197,"first_entry_time":8182,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":197,"first_entry_time":8185,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":10},{"id":"10","count":12}]}],"allocations":[{"id":"6","count":1},{"id":"129","count":1}]},{"inclusive_time":2,"id":"96","highest_child_id":198,"first_entry_time":8236,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"130","highest_child_id":199,"first_entry_time":8255,"exclusive_time":1,"entries":1}],"allocations":[{"id":"127","count":1}]},{"inclusive_time":1,"id":"131","highest_child_id":200,"first_entry_time":8271,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"132","highest_child_id":202,"first_entry_time":8304,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":14,"id":"111","highest_child_id":202,"first_entry_time":8311,"exclusive_time":13,"entries":1,"allocations":[{"id":"27","count":2},{"id":"56","count":1}]}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":2,"id":"133","highest_child_id":203,"first_entry_time":8344,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"134","highest_child_id":204,"first_entry_time":8369,"exclusive_time":8,"entries":1,"allocations":[{"id":"3","count":1},{"id":"13","count":1}]},{"inclusive_time":788,"id":"135","highest_child_id":222,"first_entry_time":8600,"exclusive_time":207,"entries":1,"callees":[{"inclusive_time":5,"id":"136","highest_child_id":206,"first_entry_time":8644,"exclusive_time":5,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"137","highest_child_id":207,"first_entry_time":8665,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"138","highest_child_id":208,"first_entry_time":8679,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"139","highest_child_id":209,"first_entry_time":8699,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"140","highest_child_id":210,"first_entry_time":8713,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"141","highest_child_id":211,"first_entry_time":8726,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"142","highest_child_id":212,"first_entry_time":8742,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"112","highest_child_id":213,"first_entry_time":8746,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"42","highest_child_id":214,"first_entry_time":8749,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"143","highest_child_id":215,"first_entry_time":8766,"exclusive_time":1,"entries":1},{"inclusive_time":559,"id":"144","highest_child_id":222,"first_entry_time":8827,"exclusive_time":516,"entries":1,"callees":[{"inclusive_time":1,"id":"145","highest_child_id":217,"first_entry_time":8841,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"112","highest_child_id":218,"first_entry_time":8843,"exclusive_time":3,"entries":2},{"inclusive_time":15,"id":"146","highest_child_id":219,"first_entry_time":9276,"exclusive_time":15,"entries":1,"allocations":[{"id":"2","count":3},{"id":"6","count":6},{"id":"10","count":5}]},{"inclusive_time":2,"id":"147","highest_child_id":220,"first_entry_time":9329,"exclusive_time":2,"entries":1},{"inclusive_time":19,"id":"148","highest_child_id":222,"first_entry_time":9367,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"149","highest_child_id":222,"first_entry_time":9381,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"25","count":3}]}],"allocations":[{"id":"25","count":7}]},{"inclusive_time":17,"id":"150","highest_child_id":224,"first_entry_time":9426,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":3,"id":"123","highest_child_id":224,"first_entry_time":9429,"exclusive_time":3,"entries":1,"allocations":[{"id":"124","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"56","count":1},{"id":"27","count":1},{"id":"10","count":2}]}],"allocations":[{"id":"10","count":1}]}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":2,"id":"133","highest_child_id":225,"first_entry_time":9447,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"131","highest_child_id":226,"first_entry_time":9452,"exclusive_time":0,"entries":1},{"inclusive_time":46,"id":"132","highest_child_id":230,"first_entry_time":9454,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":42,"id":"111","highest_child_id":230,"first_entry_time":9459,"exclusive_time":37,"entries":1,"callees":[{"inclusive_time":2,"id":"151","highest_child_id":229,"first_entry_time":9484,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"130","highest_child_id":230,"first_entry_time":9495,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":2},{"id":"56","count":1}]}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":51,"id":"152","highest_child_id":233,"first_entry_time":9547,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":1,"id":"131","highest_child_id":232,"first_entry_time":9551,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"153","highest_child_id":233,"first_entry_time":9593,"exclusive_time":4,"entries":1,"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"149","highest_child_id":234,"first_entry_time":9600,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"154","highest_child_id":235,"first_entry_time":9624,"exclusive_time":7,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":465,"id":"155","highest_child_id":260,"first_entry_time":9803,"exclusive_time":229,"entries":2,"callees":[{"inclusive_time":5,"id":"42","highest_child_id":237,"first_entry_time":9812,"exclusive_time":5,"entries":2},{"inclusive_time":142,"id":"156","highest_child_id":243,"first_entry_time":9885,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":85,"id":"156","highest_child_id":240,"first_entry_time":9893,"exclusive_time":78,"entries":2,"callees":[{"inclusive_time":6,"id":"157","highest_child_id":240,"first_entry_time":9968,"exclusive_time":6,"entries":2,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":38,"id":"157","highest_child_id":243,"first_entry_time":9976,"exclusive_time":31,"entries":2,"callees":[{"inclusive_time":4,"id":"157","highest_child_id":242,"first_entry_time":9988,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":2,"id":"158","highest_child_id":243,"first_entry_time":10003,"exclusive_time":2,"entries":2}],"allocations":[{"id":"10","count":4},{"id":"25","count":6}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":4}]},{"inclusive_time":1,"id":"158","highest_child_id":244,"first_entry_time":10007,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"29","highest_child_id":245,"first_entry_time":10010,"exclusive_time":1,"entries":8},{"inclusive_time":6,"id":"159","highest_child_id":246,"first_entry_time":10027,"exclusive_time":4,"entries":10},{"inclusive_time":7,"id":"133","highest_child_id":247,"first_entry_time":10037,"exclusive_time":6,"entries":5},{"inclusive_time":5,"id":"160","highest_child_id":248,"first_entry_time":10053,"exclusive_time":4,"entries":5},{"inclusive_time":2,"id":"149","highest_child_id":249,"first_entry_time":11157,"exclusive_time":1,"entries":3},{"inclusive_time":6,"id":"161","highest_child_id":250,"first_entry_time":11183,"exclusive_time":5,"entries":1},{"inclusive_time":61,"id":"157","highest_child_id":259,"first_entry_time":11193,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":2,"id":"149","highest_child_id":252,"first_entry_time":11203,"exclusive_time":1,"entries":3},{"inclusive_time":38,"id":"157","highest_child_id":258,"first_entry_time":11215,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"149","highest_child_id":254,"first_entry_time":11222,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"157","highest_child_id":257,"first_entry_time":11226,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":4,"id":"157","highest_child_id":256,"first_entry_time":11244,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"158","highest_child_id":257,"first_entry_time":11249,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"25","count":5}]},{"inclusive_time":0,"id":"158","highest_child_id":258,"first_entry_time":11252,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"25","count":5}]},{"inclusive_time":0,"id":"158","highest_child_id":259,"first_entry_time":11254,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"25","count":5}]},{"inclusive_time":1,"id":"162","highest_child_id":260,"first_entry_time":11275,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":19},{"id":"6","count":14},{"id":"25","count":10},{"id":"56","count":5}]},{"inclusive_time":1,"id":"163","highest_child_id":261,"first_entry_time":10071,"exclusive_time":1,"entries":1},{"inclusive_time":47,"id":"104","highest_child_id":266,"first_entry_time":10083,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":45,"id":"105","highest_child_id":266,"first_entry_time":10085,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":264,"first_entry_time":10087,"exclusive_time":0,"entries":1,"allocations":[{"id":"164","count":1}]},{"inclusive_time":40,"id":"94","highest_child_id":266,"first_entry_time":10089,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":266,"first_entry_time":10117,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":20,"id":"165","highest_child_id":268,"first_entry_time":10285,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"166","highest_child_id":268,"first_entry_time":10302,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":3,"id":"167","highest_child_id":269,"first_entry_time":10319,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"168","highest_child_id":270,"first_entry_time":10337,"exclusive_time":1,"entries":1},{"inclusive_time":36,"id":"169","highest_child_id":273,"first_entry_time":10402,"exclusive_time":32,"entries":2,"callees":[{"inclusive_time":3,"id":"171","highest_child_id":272,"first_entry_time":10414,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"140","highest_child_id":273,"first_entry_time":10418,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":4},{"id":"170","count":2},{"id":"25","count":2}]},{"inclusive_time":180,"id":"172","highest_child_id":284,"first_entry_time":10796,"exclusive_time":158,"entries":1,"callees":[{"inclusive_time":4,"id":"173","highest_child_id":275,"first_entry_time":10824,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"137","highest_child_id":276,"first_entry_time":10831,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"138","highest_child_id":277,"first_entry_time":10835,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"174","highest_child_id":278,"first_entry_time":10924,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":2}]},{"inclusive_time":1,"id":"175","highest_child_id":279,"first_entry_time":10942,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"141","highest_child_id":280,"first_entry_time":10946,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"142","highest_child_id":281,"first_entry_time":10951,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"136","highest_child_id":282,"first_entry_time":10954,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"42","highest_child_id":283,"first_entry_time":10960,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"143","highest_child_id":284,"first_entry_time":10971,"exclusive_time":2,"entries":2}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"25","count":4}]},{"inclusive_time":1,"id":"42","highest_child_id":285,"first_entry_time":10978,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"176","highest_child_id":286,"first_entry_time":10994,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"47","highest_child_id":287,"first_entry_time":10998,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"177","highest_child_id":288,"first_entry_time":11015,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"178","highest_child_id":291,"first_entry_time":11096,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"125","highest_child_id":290,"first_entry_time":11099,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"179","highest_child_id":291,"first_entry_time":11115,"exclusive_time":2,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":20,"id":"180","highest_child_id":293,"first_entry_time":11462,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"181","highest_child_id":293,"first_entry_time":11478,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":2},{"id":"25","count":1},{"id":"6","count":1}]},{"inclusive_time":141,"id":"182","highest_child_id":301,"first_entry_time":11553,"exclusive_time":66,"entries":1,"callees":[{"inclusive_time":3,"id":"161","highest_child_id":295,"first_entry_time":11556,"exclusive_time":3,"entries":1},{"inclusive_time":67,"id":"183","highest_child_id":300,"first_entry_time":11613,"exclusive_time":50,"entries":3,"callees":[{"inclusive_time":3,"id":"184","highest_child_id":297,"first_entry_time":11629,"exclusive_time":3,"entries":3},{"inclusive_time":3,"id":"140","highest_child_id":298,"first_entry_time":11632,"exclusive_time":1,"entries":9},{"inclusive_time":8,"id":"161","highest_child_id":299,"first_entry_time":11634,"exclusive_time":8,"entries":3},{"inclusive_time":4,"id":"171","highest_child_id":300,"first_entry_time":11640,"exclusive_time":3,"entries":6}],"allocations":[{"id":"27","count":3},{"id":"6","count":6},{"id":"25","count":3}]},{"inclusive_time":5,"id":"173","highest_child_id":301,"first_entry_time":11651,"exclusive_time":4,"entries":3,"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"185","highest_child_id":302,"first_entry_time":11710,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"161","highest_child_id":303,"first_entry_time":11715,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"171","highest_child_id":304,"first_entry_time":11720,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"140","highest_child_id":305,"first_entry_time":11721,"exclusive_time":1,"entries":5},{"inclusive_time":2,"id":"184","highest_child_id":306,"first_entry_time":11724,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"186","highest_child_id":307,"first_entry_time":11751,"exclusive_time":2,"entries":1},{"inclusive_time":25,"id":"183","highest_child_id":312,"first_entry_time":11755,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":5,"id":"184","highest_child_id":309,"first_entry_time":11758,"exclusive_time":5,"entries":1},{"inclusive_time":1,"id":"140","highest_child_id":310,"first_entry_time":11765,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"161","highest_child_id":311,"first_entry_time":11767,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"171","highest_child_id":312,"first_entry_time":11772,"exclusive_time":2,"entries":3}],"allocations":[{"id":"27","count":1},{"id":"6","count":2},{"id":"25","count":1}]},{"inclusive_time":106,"id":"187","highest_child_id":324,"first_entry_time":12258,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":4,"id":"136","highest_child_id":314,"first_entry_time":12265,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"173","highest_child_id":315,"first_entry_time":12272,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":44,"id":"183","highest_child_id":320,"first_entry_time":12278,"exclusive_time":32,"entries":2,"callees":[{"inclusive_time":2,"id":"184","highest_child_id":317,"first_entry_time":12281,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"140","highest_child_id":318,"first_entry_time":12283,"exclusive_time":1,"entries":8},{"inclusive_time":4,"id":"161","highest_child_id":319,"first_entry_time":12285,"exclusive_time":4,"entries":2},{"inclusive_time":4,"id":"171","highest_child_id":320,"first_entry_time":12290,"exclusive_time":3,"entries":6}],"allocations":[{"id":"27","count":2},{"id":"6","count":4},{"id":"25","count":2}]},{"inclusive_time":11,"id":"42","highest_child_id":322,"first_entry_time":12328,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":2,"id":"161","highest_child_id":322,"first_entry_time":12330,"exclusive_time":2,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":2}]},{"inclusive_time":2,"id":"161","highest_child_id":323,"first_entry_time":12342,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"188","highest_child_id":324,"first_entry_time":12361,"exclusive_time":2,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":5}]},{"inclusive_time":46,"id":"189","highest_child_id":329,"first_entry_time":12456,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":2,"id":"143","highest_child_id":326,"first_entry_time":12460,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"161","highest_child_id":327,"first_entry_time":12464,"exclusive_time":2,"entries":1},{"inclusive_time":6,"id":"136","highest_child_id":328,"first_entry_time":12471,"exclusive_time":5,"entries":3,"allocations":[{"id":"10","count":3},{"id":"25","count":3}]},{"inclusive_time":4,"id":"42","highest_child_id":329,"first_entry_time":12475,"exclusive_time":4,"entries":3}],"allocations":[{"id":"10","count":7},{"id":"25","count":4},{"id":"6","count":1}]},{"inclusive_time":50,"id":"190","highest_child_id":333,"first_entry_time":12537,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":3,"id":"161","highest_child_id":331,"first_entry_time":12539,"exclusive_time":3,"entries":1},{"inclusive_time":3,"id":"149","highest_child_id":332,"first_entry_time":12545,"exclusive_time":1,"entries":7},{"inclusive_time":3,"id":"191","highest_child_id":333,"first_entry_time":12567,"exclusive_time":3,"entries":3}],"allocations":[{"id":"10","count":1},{"id":"25","count":4}]},{"inclusive_time":464,"id":"192","highest_child_id":343,"first_entry_time":12654,"exclusive_time":436,"entries":1,"callees":[{"inclusive_time":3,"id":"161","highest_child_id":335,"first_entry_time":12658,"exclusive_time":3,"entries":1},{"inclusive_time":2,"id":"158","highest_child_id":336,"first_entry_time":12663,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"171","highest_child_id":337,"first_entry_time":12669,"exclusive_time":2,"entries":3},{"inclusive_time":1,"id":"140","highest_child_id":338,"first_entry_time":12671,"exclusive_time":0,"entries":4},{"inclusive_time":36,"id":"193","highest_child_id":339,"first_entry_time":12683,"exclusive_time":8,"entries":147},{"inclusive_time":32,"id":"194","highest_child_id":340,"first_entry_time":12695,"exclusive_time":3,"entries":147},{"inclusive_time":2,"id":"125","highest_child_id":341,"first_entry_time":12832,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"184","highest_child_id":342,"first_entry_time":13057,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"195","highest_child_id":343,"first_entry_time":13113,"exclusive_time":3,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1},{"id":"25","count":2},{"id":"170","count":4},{"id":"27","count":147}]},{"inclusive_time":4,"id":"196","highest_child_id":344,"first_entry_time":13148,"exclusive_time":3,"entries":1},{"inclusive_time":30,"id":"197","highest_child_id":347,"first_entry_time":13180,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":3,"id":"161","highest_child_id":346,"first_entry_time":13182,"exclusive_time":3,"entries":1},{"inclusive_time":4,"id":"198","highest_child_id":347,"first_entry_time":13202,"exclusive_time":4,"entries":3}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":37,"id":"199","highest_child_id":350,"first_entry_time":13251,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":3,"id":"161","highest_child_id":349,"first_entry_time":13255,"exclusive_time":3,"entries":1},{"inclusive_time":4,"id":"200","highest_child_id":350,"first_entry_time":13274,"exclusive_time":3,"entries":3}],"allocations":[{"id":"6","count":1},{"id":"10","count":1},{"id":"25","count":4}]},{"inclusive_time":131,"id":"201","highest_child_id":363,"first_entry_time":13372,"exclusive_time":86,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":352,"first_entry_time":13374,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"87","highest_child_id":353,"first_entry_time":13376,"exclusive_time":1,"entries":1},{"inclusive_time":21,"id":"183","highest_child_id":358,"first_entry_time":13380,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"184","highest_child_id":355,"first_entry_time":13383,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"140","highest_child_id":356,"first_entry_time":13386,"exclusive_time":0,"entries":4},{"inclusive_time":2,"id":"161","highest_child_id":357,"first_entry_time":13388,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"171","highest_child_id":358,"first_entry_time":13393,"exclusive_time":2,"entries":3}],"allocations":[{"id":"27","count":1},{"id":"6","count":2},{"id":"25","count":1}]},{"inclusive_time":4,"id":"161","highest_child_id":359,"first_entry_time":13403,"exclusive_time":4,"entries":2},{"inclusive_time":4,"id":"202","highest_child_id":360,"first_entry_time":13420,"exclusive_time":3,"entries":3},{"inclusive_time":3,"id":"203","highest_child_id":361,"first_entry_time":13436,"exclusive_time":3,"entries":3},{"inclusive_time":2,"id":"204","highest_child_id":362,"first_entry_time":13456,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"205","highest_child_id":363,"first_entry_time":13480,"exclusive_time":7,"entries":3}],"allocations":[{"id":"25","count":2}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":3},{"id":"27","count":1},{"id":"25","count":3}]},{"inclusive_time":4,"id":"206","highest_child_id":364,"first_entry_time":13542,"exclusive_time":4,"entries":1}]}]}]}]}],"allocations":[{"id":"2","count":6},{"id":"16","count":2}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":3,"id":"20","highest_child_id":365,"first_entry_time":13618,"exclusive_time":3,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":1136,"id":"207","highest_child_id":453,"first_entry_time":13624,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":367,"first_entry_time":13627,"exclusive_time":1,"entries":1},{"inclusive_time":71,"id":"45","highest_child_id":384,"first_entry_time":13630,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":369,"first_entry_time":13632,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":370,"first_entry_time":13634,"exclusive_time":0,"entries":1},{"inclusive_time":63,"id":"46","highest_child_id":384,"first_entry_time":13636,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"47","highest_child_id":372,"first_entry_time":13638,"exclusive_time":0,"entries":1},{"inclusive_time":52,"id":"51","highest_child_id":381,"first_entry_time":13642,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":48,"id":"53","highest_child_id":380,"first_entry_time":13644,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":16,"id":"55","highest_child_id":375,"first_entry_time":13655,"exclusive_time":15,"entries":2,"allocations":[{"id":"56","count":2}]},{"inclusive_time":3,"id":"85","highest_child_id":377,"first_entry_time":13677,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":377,"first_entry_time":13680,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":8,"id":"68","highest_child_id":379,"first_entry_time":13682,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"69","highest_child_id":379,"first_entry_time":13685,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"71","highest_child_id":380,"first_entry_time":13691,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"54","count":1}]},{"inclusive_time":0,"id":"71","highest_child_id":381,"first_entry_time":13693,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"86","highest_child_id":382,"first_entry_time":13695,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"87","highest_child_id":383,"first_entry_time":13696,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"88","highest_child_id":384,"first_entry_time":13698,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1032,"id":"208","highest_child_id":451,"first_entry_time":13724,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":204,"id":"9","highest_child_id":398,"first_entry_time":13729,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":90,"id":"24","highest_child_id":391,"first_entry_time":13733,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":388,"first_entry_time":13741,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"30","highest_child_id":389,"first_entry_time":13742,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":390,"first_entry_time":13746,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":23,"id":"37","highest_child_id":391,"first_entry_time":13781,"exclusive_time":22,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"27","count":2},{"id":"28","count":3}]},{"inclusive_time":90,"id":"11","highest_child_id":397,"first_entry_time":13836,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":52,"id":"12","highest_child_id":397,"first_entry_time":13875,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":43,"id":"14","highest_child_id":397,"first_entry_time":13883,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":27,"id":"15","highest_child_id":397,"first_entry_time":13889,"exclusive_time":23,"entries":3,"callees":[{"inclusive_time":1,"id":"61","highest_child_id":396,"first_entry_time":13894,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"17","highest_child_id":397,"first_entry_time":13897,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]}],"allocations":[{"id":"2","count":9},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":398,"first_entry_time":13930,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":821,"id":"209","highest_child_id":451,"first_entry_time":13935,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":572,"id":"210","highest_child_id":446,"first_entry_time":13959,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":0,"id":"49","highest_child_id":401,"first_entry_time":13961,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":77,"id":"9","highest_child_id":408,"first_entry_time":13966,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":61,"id":"24","highest_child_id":407,"first_entry_time":13969,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":1,"id":"29","highest_child_id":404,"first_entry_time":13986,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"30","highest_child_id":405,"first_entry_time":13988,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"17","highest_child_id":406,"first_entry_time":13991,"exclusive_time":1,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":3,"id":"37","highest_child_id":407,"first_entry_time":14018,"exclusive_time":3,"entries":2}],"allocations":[{"id":"10","count":12},{"id":"25","count":3},{"id":"6","count":4},{"id":"26","count":4},{"id":"28","count":2}]},{"inclusive_time":1,"id":"20","highest_child_id":408,"first_entry_time":14040,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":462,"id":"211","highest_child_id":446,"first_entry_time":14069,"exclusive_time":208,"entries":1,"callees":[{"inclusive_time":239,"id":"212","highest_child_id":434,"first_entry_time":14273,"exclusive_time":140,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":411,"first_entry_time":14277,"exclusive_time":1,"entries":1},{"inclusive_time":23,"id":"83","highest_child_id":415,"first_entry_time":14284,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":1,"id":"213","highest_child_id":413,"first_entry_time":14295,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"29","highest_child_id":414,"first_entry_time":14297,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"78","highest_child_id":415,"first_entry_time":14299,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"84","highest_child_id":416,"first_entry_time":14304,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"67","highest_child_id":417,"first_entry_time":14308,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":72,"id":"214","highest_child_id":432,"first_entry_time":14435,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":1,"id":"67","highest_child_id":419,"first_entry_time":14442,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"70","highest_child_id":420,"first_entry_time":14456,"exclusive_time":2,"entries":1},{"inclusive_time":4,"id":"216","highest_child_id":421,"first_entry_time":14475,"exclusive_time":4,"entries":1},{"inclusive_time":24,"id":"72","highest_child_id":431,"first_entry_time":14481,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":423,"first_entry_time":14483,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":424,"first_entry_time":14484,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":425,"first_entry_time":14494,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":427,"first_entry_time":14496,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":427,"first_entry_time":14496,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":429,"first_entry_time":14499,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":429,"first_entry_time":14500,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":430,"first_entry_time":14502,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":431,"first_entry_time":14503,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"71","highest_child_id":432,"first_entry_time":14507,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"16","count":2},{"id":"6","count":1},{"id":"7","count":1},{"id":"215","count":1},{"id":"60","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":433,"first_entry_time":14509,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":434,"first_entry_time":14512,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"6","count":1},{"id":"56","count":2},{"id":"60","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":435,"first_entry_time":14514,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":436,"first_entry_time":14516,"exclusive_time":0,"entries":2},{"inclusive_time":12,"id":"72","highest_child_id":446,"first_entry_time":14517,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":438,"first_entry_time":14519,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":439,"first_entry_time":14519,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":440,"first_entry_time":14521,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"75","highest_child_id":442,"first_entry_time":14522,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":442,"first_entry_time":14523,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":444,"first_entry_time":14525,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":444,"first_entry_time":14526,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":445,"first_entry_time":14527,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":446,"first_entry_time":14528,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":199,"id":"217","highest_child_id":449,"first_entry_time":14549,"exclusive_time":78,"entries":1,"callees":[{"inclusive_time":121,"id":"219","highest_child_id":449,"first_entry_time":14619,"exclusive_time":117,"entries":1,"callees":[{"inclusive_time":3,"id":"88","highest_child_id":449,"first_entry_time":14695,"exclusive_time":3,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"220","count":1}]}],"allocations":[{"id":"218","count":1}]},{"inclusive_time":2,"id":"70","highest_child_id":450,"first_entry_time":14752,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":451,"first_entry_time":14756,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"70","highest_child_id":452,"first_entry_time":14758,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":453,"first_entry_time":14760,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":13,"id":"221","highest_child_id":456,"first_entry_time":14961,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":455,"first_entry_time":14969,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":456,"first_entry_time":14973,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"222","count":1},{"id":"13","count":2}]},{"inclusive_time":808,"id":"79","highest_child_id":488,"first_entry_time":14977,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":152,"id":"9","highest_child_id":459,"first_entry_time":14986,"exclusive_time":149,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":459,"first_entry_time":15135,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":633,"id":"223","highest_child_id":488,"first_entry_time":15152,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":618,"id":"224","highest_child_id":488,"first_entry_time":15167,"exclusive_time":82,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":462,"first_entry_time":15170,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":345,"id":"9","highest_child_id":475,"first_entry_time":15174,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":328,"id":"24","highest_child_id":474,"first_entry_time":15177,"exclusive_time":214,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":465,"first_entry_time":15186,"exclusive_time":1,"entries":9},{"inclusive_time":4,"id":"30","highest_child_id":466,"first_entry_time":15188,"exclusive_time":2,"entries":10},{"inclusive_time":5,"id":"17","highest_child_id":467,"first_entry_time":15191,"exclusive_time":3,"entries":10,"allocations":[{"id":"18","count":10}]},{"inclusive_time":0,"id":"31","highest_child_id":468,"first_entry_time":15300,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"32","highest_child_id":471,"first_entry_time":15304,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"33","highest_child_id":471,"first_entry_time":15306,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"34","highest_child_id":471,"first_entry_time":15307,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"35","highest_child_id":472,"first_entry_time":15309,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"36","highest_child_id":473,"first_entry_time":15313,"exclusive_time":0,"entries":1},{"inclusive_time":105,"id":"37","highest_child_id":474,"first_entry_time":15321,"exclusive_time":100,"entries":30}],"allocations":[{"id":"10","count":29},{"id":"25","count":6},{"id":"6","count":12},{"id":"26","count":10},{"id":"28","count":6}]},{"inclusive_time":2,"id":"20","highest_child_id":475,"first_entry_time":15516,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":188,"id":"225","highest_child_id":488,"first_entry_time":15596,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":477,"first_entry_time":15601,"exclusive_time":1,"entries":1},{"inclusive_time":152,"id":"226","highest_child_id":488,"first_entry_time":15633,"exclusive_time":109,"entries":1,"callees":[{"inclusive_time":42,"id":"227","highest_child_id":488,"first_entry_time":15742,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":13,"id":"229","highest_child_id":482,"first_entry_time":15757,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":10,"id":"94","highest_child_id":482,"first_entry_time":15760,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":482,"first_entry_time":15762,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"230","count":1}]},{"inclusive_time":2,"id":"96","highest_child_id":483,"first_entry_time":15773,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"130","highest_child_id":484,"first_entry_time":15777,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"97","highest_child_id":488,"first_entry_time":15778,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"99","highest_child_id":486,"first_entry_time":15780,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"100","highest_child_id":487,"first_entry_time":15781,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"47","highest_child_id":488,"first_entry_time":15783,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"98","count":1}]}],"allocations":[{"id":"228","count":1}]}],"allocations":[{"id":"16","count":1},{"id":"13","count":1},{"id":"222","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"6","count":1},{"id":"7","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":44391,"id":"231","highest_child_id":3382,"first_entry_time":16067,"exclusive_time":1387,"entries":1,"callees":[{"inclusive_time":26,"id":"83","highest_child_id":494,"first_entry_time":16074,"exclusive_time":22,"entries":3,"callees":[{"inclusive_time":1,"id":"213","highest_child_id":491,"first_entry_time":16078,"exclusive_time":1,"entries":3},{"inclusive_time":0,"id":"29","highest_child_id":492,"first_entry_time":16080,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"78","highest_child_id":493,"first_entry_time":16081,"exclusive_time":0,"entries":3},{"inclusive_time":0,"id":"31","highest_child_id":494,"first_entry_time":16095,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"84","highest_child_id":495,"first_entry_time":16086,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"44","highest_child_id":496,"first_entry_time":16089,"exclusive_time":1,"entries":3},{"inclusive_time":9,"id":"232","highest_child_id":501,"first_entry_time":16122,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":498,"first_entry_time":16125,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"31","highest_child_id":499,"first_entry_time":16127,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"30","highest_child_id":500,"first_entry_time":16128,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"45","highest_child_id":501,"first_entry_time":16129,"exclusive_time":1,"entries":1}]},{"inclusive_time":43,"id":"45","highest_child_id":509,"first_entry_time":16142,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"29","highest_child_id":503,"first_entry_time":16144,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":504,"first_entry_time":16146,"exclusive_time":0,"entries":1},{"inclusive_time":36,"id":"46","highest_child_id":509,"first_entry_time":16148,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":1,"id":"47","highest_child_id":506,"first_entry_time":16151,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"233","highest_child_id":507,"first_entry_time":16171,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"234","highest_child_id":508,"first_entry_time":16181,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"87","highest_child_id":509,"first_entry_time":16183,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":2,"id":"69","highest_child_id":510,"first_entry_time":16194,"exclusive_time":1,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":75,"id":"235","highest_child_id":525,"first_entry_time":16221,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":25,"id":"9","highest_child_id":513,"first_entry_time":16228,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":513,"first_entry_time":16250,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":22,"id":"236","highest_child_id":525,"first_entry_time":16273,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":16,"id":"72","highest_child_id":524,"first_entry_time":16277,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":516,"first_entry_time":16278,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":517,"first_entry_time":16280,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":518,"first_entry_time":16282,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":520,"first_entry_time":16284,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":520,"first_entry_time":16284,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":522,"first_entry_time":16287,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":522,"first_entry_time":16288,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"234","highest_child_id":523,"first_entry_time":16290,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":524,"first_entry_time":16291,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"71","highest_child_id":525,"first_entry_time":16295,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":380,"id":"237","highest_child_id":548,"first_entry_time":17318,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":527,"first_entry_time":17328,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":300,"id":"9","highest_child_id":544,"first_entry_time":17333,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":135,"id":"24","highest_child_id":534,"first_entry_time":17337,"exclusive_time":98,"entries":1,"callees":[{"inclusive_time":1,"id":"86","highest_child_id":530,"first_entry_time":17363,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":531,"first_entry_time":17365,"exclusive_time":1,"entries":6},{"inclusive_time":3,"id":"17","highest_child_id":532,"first_entry_time":17368,"exclusive_time":2,"entries":6,"allocations":[{"id":"18","count":6}]},{"inclusive_time":0,"id":"29","highest_child_id":533,"first_entry_time":17371,"exclusive_time":0,"entries":3},{"inclusive_time":32,"id":"37","highest_child_id":534,"first_entry_time":17418,"exclusive_time":31,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"27","count":1},{"id":"28","count":3}]},{"inclusive_time":138,"id":"11","highest_child_id":543,"first_entry_time":17489,"exclusive_time":51,"entries":1,"callees":[{"inclusive_time":87,"id":"12","highest_child_id":543,"first_entry_time":17539,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":83,"id":"14","highest_child_id":543,"first_entry_time":17543,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":68,"id":"15","highest_child_id":542,"first_entry_time":17548,"exclusive_time":56,"entries":4,"callees":[{"inclusive_time":5,"id":"38","highest_child_id":540,"first_entry_time":17553,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"39","highest_child_id":540,"first_entry_time":17555,"exclusive_time":0,"entries":1}],"allocations":[{"id":"25","count":2}]},{"inclusive_time":3,"id":"61","highest_child_id":541,"first_entry_time":17580,"exclusive_time":3,"entries":2},{"inclusive_time":3,"id":"17","highest_child_id":542,"first_entry_time":17584,"exclusive_time":2,"entries":4,"allocations":[{"id":"18","count":4}]}],"allocations":[{"id":"2","count":12},{"id":"16","count":2}]},{"inclusive_time":1,"id":"19","highest_child_id":543,"first_entry_time":17602,"exclusive_time":0,"entries":1}],"allocations":[{"id":"7","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":544,"first_entry_time":17631,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":62,"id":"238","highest_child_id":548,"first_entry_time":17636,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":19,"id":"239","highest_child_id":548,"first_entry_time":17672,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":547,"first_entry_time":17687,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":548,"first_entry_time":17691,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"16","count":2},{"id":"6","count":1},{"id":"56","count":1},{"id":"60","count":1}]}],"allocations":[{"id":"18","count":1},{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":39,"id":"240","highest_child_id":553,"first_entry_time":17756,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":0,"id":"49","highest_child_id":550,"first_entry_time":17758,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":17,"id":"9","highest_child_id":552,"first_entry_time":17763,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":552,"first_entry_time":17778,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":1,"id":"241","highest_child_id":553,"first_entry_time":17794,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":4,"id":"55","highest_child_id":554,"first_entry_time":17799,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"242","highest_child_id":555,"first_entry_time":17813,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":402,"id":"79","highest_child_id":579,"first_entry_time":17818,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":331,"id":"9","highest_child_id":573,"first_entry_time":17824,"exclusive_time":139,"entries":1,"callees":[{"inclusive_time":190,"id":"11","highest_child_id":572,"first_entry_time":17959,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":154,"id":"12","highest_child_id":572,"first_entry_time":17994,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":150,"id":"14","highest_child_id":572,"first_entry_time":17998,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":136,"id":"15","highest_child_id":572,"first_entry_time":18003,"exclusive_time":35,"entries":3,"callees":[{"inclusive_time":2,"id":"17","highest_child_id":562,"first_entry_time":18012,"exclusive_time":2,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":91,"id":"43","highest_child_id":567,"first_entry_time":18033,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":59,"id":"243","highest_child_id":567,"first_entry_time":18065,"exclusive_time":52,"entries":1,"callees":[{"inclusive_time":3,"id":"244","highest_child_id":565,"first_entry_time":18096,"exclusive_time":3,"entries":1},{"inclusive_time":1,"id":"245","highest_child_id":566,"first_entry_time":18113,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"191","highest_child_id":567,"first_entry_time":18117,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":6}]}]},{"inclusive_time":0,"id":"44","highest_child_id":568,"first_entry_time":18126,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"32","highest_child_id":571,"first_entry_time":18135,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"33","highest_child_id":571,"first_entry_time":18137,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"34","highest_child_id":571,"first_entry_time":18138,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"45","highest_child_id":572,"first_entry_time":18141,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":9},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"13","count":2}]}]},{"inclusive_time":2,"id":"20","highest_child_id":573,"first_entry_time":18152,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1},{"id":"8","count":1}]},{"inclusive_time":62,"id":"246","highest_child_id":579,"first_entry_time":18158,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":575,"first_entry_time":18160,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"247","highest_child_id":579,"first_entry_time":18206,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"44","highest_child_id":577,"first_entry_time":18208,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"70","highest_child_id":578,"first_entry_time":18216,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":579,"first_entry_time":18219,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":5,"id":"221","highest_child_id":581,"first_entry_time":18222,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":581,"first_entry_time":18227,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"222","count":1},{"id":"13","count":2}]},{"inclusive_time":178,"id":"223","highest_child_id":601,"first_entry_time":18231,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":68,"id":"225","highest_child_id":595,"first_entry_time":18233,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":584,"first_entry_time":18235,"exclusive_time":0,"entries":1},{"inclusive_time":36,"id":"248","highest_child_id":595,"first_entry_time":18264,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":30,"id":"227","highest_child_id":595,"first_entry_time":18270,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":10,"id":"229","highest_child_id":589,"first_entry_time":18272,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"94","highest_child_id":589,"first_entry_time":18274,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":589,"first_entry_time":18276,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"230","count":1}]},{"inclusive_time":2,"id":"96","highest_child_id":590,"first_entry_time":18289,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"130","highest_child_id":591,"first_entry_time":18293,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"97","highest_child_id":595,"first_entry_time":18294,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"99","highest_child_id":593,"first_entry_time":18295,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"100","highest_child_id":594,"first_entry_time":18297,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"47","highest_child_id":595,"first_entry_time":18299,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"98","count":1}]}],"allocations":[{"id":"249","count":1}]}],"allocations":[{"id":"16","count":1},{"id":"13","count":1},{"id":"222","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"6","count":1},{"id":"7","count":1}]},{"inclusive_time":88,"id":"250","highest_child_id":601,"first_entry_time":18367,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":71,"id":"251","highest_child_id":601,"first_entry_time":18384,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"253","highest_child_id":598,"first_entry_time":18397,"exclusive_time":1,"entries":1,"allocations":[{"id":"254","count":1}]},{"inclusive_time":45,"id":"255","highest_child_id":601,"first_entry_time":18409,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":1,"id":"256","highest_child_id":600,"first_entry_time":18420,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"257","highest_child_id":601,"first_entry_time":18454,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"252","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":16,"id":"246","highest_child_id":606,"first_entry_time":18303,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":603,"first_entry_time":18305,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"247","highest_child_id":606,"first_entry_time":18307,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"44","highest_child_id":605,"first_entry_time":18309,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":606,"first_entry_time":18318,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"7","count":1}]}]},{"inclusive_time":1,"id":"258","highest_child_id":607,"first_entry_time":18334,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"259","highest_child_id":608,"first_entry_time":18343,"exclusive_time":1,"entries":1,"allocations":[{"id":"7","count":1}]},{"inclusive_time":3,"id":"260","highest_child_id":609,"first_entry_time":18483,"exclusive_time":2,"entries":1,"allocations":[{"id":"261","count":1},{"id":"2","count":1}]},{"inclusive_time":417,"id":"262","highest_child_id":624,"first_entry_time":18511,"exclusive_time":163,"entries":1,"callees":[{"inclusive_time":32,"id":"9","highest_child_id":613,"first_entry_time":18617,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":14,"id":"24","highest_child_id":612,"first_entry_time":18623,"exclusive_time":14,"entries":1,"allocations":[{"id":"10","count":7},{"id":"25","count":2},{"id":"6","count":2},{"id":"26","count":2},{"id":"28","count":2}]},{"inclusive_time":2,"id":"20","highest_child_id":613,"first_entry_time":18647,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":221,"id":"263","highest_child_id":624,"first_entry_time":18707,"exclusive_time":174,"entries":1,"callees":[{"inclusive_time":43,"id":"264","highest_child_id":621,"first_entry_time":18865,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":616,"first_entry_time":18869,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":8,"id":"267","highest_child_id":619,"first_entry_time":18896,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":618,"first_entry_time":18899,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":619,"first_entry_time":18903,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":620,"first_entry_time":18905,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":621,"first_entry_time":18908,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"16","count":4},{"id":"8","count":1},{"id":"265","count":1},{"id":"50","count":1},{"id":"266","count":1}]},{"inclusive_time":1,"id":"268","highest_child_id":622,"first_entry_time":18921,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":623,"first_entry_time":18925,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":624,"first_entry_time":18928,"exclusive_time":0,"entries":1}],"allocations":[{"id":"3","count":2},{"id":"16","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":9,"id":"269","highest_child_id":627,"first_entry_time":18953,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":626,"first_entry_time":18957,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":627,"first_entry_time":18960,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"58","highest_child_id":628,"first_entry_time":18965,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"270","highest_child_id":631,"first_entry_time":18980,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"70","highest_child_id":630,"first_entry_time":18982,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":631,"first_entry_time":18985,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":4}]},{"inclusive_time":40506,"id":"271","highest_child_id":3334,"first_entry_time":19051,"exclusive_time":123,"entries":1,"callees":[{"inclusive_time":1,"id":"272","highest_child_id":633,"first_entry_time":19071,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"273","highest_child_id":634,"first_entry_time":19080,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"274","highest_child_id":635,"first_entry_time":19093,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":40379,"id":"275","highest_child_id":3333,"first_entry_time":19158,"exclusive_time":40,"entries":8,"callees":[{"inclusive_time":40339,"id":"276","highest_child_id":3333,"first_entry_time":19170,"exclusive_time":32,"entries":8,"callees":[{"inclusive_time":40306,"id":"277","highest_child_id":3333,"first_entry_time":19192,"exclusive_time":170,"entries":8,"callees":[{"inclusive_time":130,"id":"278","highest_child_id":648,"first_entry_time":19231,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":107,"id":"104","highest_child_id":648,"first_entry_time":19251,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":103,"id":"105","highest_child_id":648,"first_entry_time":19253,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":642,"first_entry_time":19254,"exclusive_time":0,"entries":2,"allocations":[{"id":"279","count":1},{"id":"280","count":1}]},{"inclusive_time":97,"id":"94","highest_child_id":648,"first_entry_time":19256,"exclusive_time":39,"entries":2,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":644,"first_entry_time":19258,"exclusive_time":0,"entries":2},{"inclusive_time":4,"id":"281","highest_child_id":645,"first_entry_time":19280,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1},{"id":"282","count":1},{"id":"283","count":1},{"id":"6","count":1},{"id":"25","count":1}]},{"inclusive_time":52,"id":"284","highest_child_id":648,"first_entry_time":19307,"exclusive_time":47,"entries":1,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":647,"first_entry_time":19338,"exclusive_time":1,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":3,"id":"286","highest_child_id":648,"first_entry_time":19355,"exclusive_time":3,"entries":1,"allocations":[{"id":"287","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":6},{"id":"10","count":5}]},{"inclusive_time":24474,"id":"288","highest_child_id":1993,"first_entry_time":19411,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":4,"id":"289","highest_child_id":650,"first_entry_time":19435,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"290","highest_child_id":651,"first_entry_time":19451,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":24402,"id":"291","highest_child_id":1991,"first_entry_time":19477,"exclusive_time":257,"entries":1,"callees":[{"inclusive_time":2,"id":"292","highest_child_id":653,"first_entry_time":19497,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":35,"id":"294","highest_child_id":655,"first_entry_time":19542,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":5,"id":"297","highest_child_id":655,"first_entry_time":19571,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":2},{"id":"295","count":1},{"id":"296","count":1},{"id":"283","count":1}]},{"inclusive_time":24105,"id":"298","highest_child_id":1990,"first_entry_time":19772,"exclusive_time":468,"entries":1,"callees":[{"inclusive_time":2,"id":"299","highest_child_id":657,"first_entry_time":19783,"exclusive_time":2,"entries":2},{"inclusive_time":22,"id":"300","highest_child_id":658,"first_entry_time":19799,"exclusive_time":21,"entries":5,"allocations":[{"id":"27","count":5},{"id":"56","count":5}]},{"inclusive_time":2,"id":"301","highest_child_id":659,"first_entry_time":19844,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"302","highest_child_id":660,"first_entry_time":19855,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"303","highest_child_id":661,"first_entry_time":19867,"exclusive_time":5,"entries":2,"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":1,"id":"304","highest_child_id":662,"first_entry_time":19888,"exclusive_time":1,"entries":1},{"inclusive_time":137,"id":"104","highest_child_id":677,"first_entry_time":19907,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":134,"id":"105","highest_child_id":677,"first_entry_time":19909,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":665,"first_entry_time":19912,"exclusive_time":0,"entries":1,"allocations":[{"id":"305","count":1}]},{"inclusive_time":129,"id":"94","highest_child_id":677,"first_entry_time":19914,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":667,"first_entry_time":19916,"exclusive_time":0,"entries":1},{"inclusive_time":80,"id":"306","highest_child_id":676,"first_entry_time":19944,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"307","highest_child_id":669,"first_entry_time":19955,"exclusive_time":0,"entries":1},{"inclusive_time":64,"id":"104","highest_child_id":676,"first_entry_time":19957,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":62,"id":"105","highest_child_id":676,"first_entry_time":19959,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"106","highest_child_id":672,"first_entry_time":19961,"exclusive_time":0,"entries":1,"allocations":[{"id":"308","count":1}]},{"inclusive_time":58,"id":"94","highest_child_id":676,"first_entry_time":19963,"exclusive_time":38,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":674,"first_entry_time":19965,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"309","highest_child_id":675,"first_entry_time":19981,"exclusive_time":6,"entries":1,"allocations":[{"id":"310","count":1},{"id":"10","count":2}]},{"inclusive_time":12,"id":"311","highest_child_id":676,"first_entry_time":20008,"exclusive_time":12,"entries":1,"allocations":[{"id":"10","count":7},{"id":"6","count":5}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":4,"id":"312","highest_child_id":677,"first_entry_time":20039,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":3},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9,"id":"313","highest_child_id":679,"first_entry_time":20058,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"314","highest_child_id":679,"first_entry_time":20066,"exclusive_time":0,"entries":1}]},{"inclusive_time":23435,"id":"315","highest_child_id":1986,"first_entry_time":20411,"exclusive_time":1081,"entries":1,"callees":[{"inclusive_time":7,"id":"316","highest_child_id":681,"first_entry_time":20453,"exclusive_time":6,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":94,"id":"317","highest_child_id":688,"first_entry_time":20545,"exclusive_time":83,"entries":3,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":683,"first_entry_time":20556,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"319","highest_child_id":684,"first_entry_time":20564,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"320","highest_child_id":685,"first_entry_time":20580,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"321","highest_child_id":686,"first_entry_time":20596,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":1,"id":"322","highest_child_id":687,"first_entry_time":20605,"exclusive_time":0,"entries":3},{"inclusive_time":2,"id":"317","highest_child_id":688,"first_entry_time":25867,"exclusive_time":2,"entries":3}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"323","highest_child_id":689,"first_entry_time":20618,"exclusive_time":1,"entries":1},{"inclusive_time":180,"id":"324","highest_child_id":701,"first_entry_time":20673,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":158,"id":"325","highest_child_id":699,"first_entry_time":20684,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":692,"first_entry_time":20691,"exclusive_time":0,"entries":2},{"inclusive_time":135,"id":"327","highest_child_id":699,"first_entry_time":20704,"exclusive_time":34,"entries":2,"callees":[{"inclusive_time":101,"id":"328","highest_child_id":699,"first_entry_time":20736,"exclusive_time":50,"entries":2,"callees":[{"inclusive_time":40,"id":"329","highest_child_id":697,"first_entry_time":20746,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":19,"id":"331","highest_child_id":697,"first_entry_time":20761,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":2,"id":"332","highest_child_id":697,"first_entry_time":20774,"exclusive_time":2,"entries":2}],"allocations":[{"id":"170","count":2}]}],"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"330","count":2}]},{"inclusive_time":5,"id":"333","highest_child_id":698,"first_entry_time":20789,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"334","count":2}]},{"inclusive_time":5,"id":"335","highest_child_id":699,"first_entry_time":20809,"exclusive_time":4,"entries":5,"allocations":[{"id":"6","count":2}]}]}]}]},{"inclusive_time":2,"id":"58","highest_child_id":700,"first_entry_time":20846,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"335","highest_child_id":701,"first_entry_time":20852,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"56","count":2},{"id":"27","count":2}]},{"inclusive_time":23,"id":"336","highest_child_id":704,"first_entry_time":20881,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":703,"first_entry_time":20883,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":704,"first_entry_time":20902,"exclusive_time":2,"entries":1}]},{"inclusive_time":4772,"id":"338","highest_child_id":750,"first_entry_time":21025,"exclusive_time":204,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":706,"first_entry_time":21027,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":326,"id":"339","highest_child_id":726,"first_entry_time":21047,"exclusive_time":99,"entries":4,"callees":[{"inclusive_time":22,"id":"340","highest_child_id":710,"first_entry_time":21063,"exclusive_time":18,"entries":4,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":709,"first_entry_time":21072,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"342","highest_child_id":710,"first_entry_time":21380,"exclusive_time":1,"entries":6}]},{"inclusive_time":5,"id":"343","highest_child_id":711,"first_entry_time":21085,"exclusive_time":4,"entries":4},{"inclusive_time":200,"id":"344","highest_child_id":726,"first_entry_time":21153,"exclusive_time":98,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":713,"first_entry_time":21155,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"345","highest_child_id":714,"first_entry_time":21175,"exclusive_time":3,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":2,"id":"346","highest_child_id":715,"first_entry_time":21190,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"347","highest_child_id":716,"first_entry_time":21214,"exclusive_time":2,"entries":1},{"inclusive_time":33,"id":"348","highest_child_id":719,"first_entry_time":21239,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":2,"id":"349","highest_child_id":718,"first_entry_time":21251,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"350","highest_child_id":719,"first_entry_time":21267,"exclusive_time":5,"entries":1}]},{"inclusive_time":37,"id":"351","highest_child_id":723,"first_entry_time":21294,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":5,"id":"297","highest_child_id":721,"first_entry_time":21297,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"342","highest_child_id":722,"first_entry_time":21310,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"352","highest_child_id":723,"first_entry_time":21327,"exclusive_time":2,"entries":1}]},{"inclusive_time":18,"id":"352","highest_child_id":726,"first_entry_time":21334,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":726,"first_entry_time":21349,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":726,"first_entry_time":21350,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":13,"id":"354","highest_child_id":727,"first_entry_time":21374,"exclusive_time":12,"entries":4,"allocations":[{"id":"10","count":1}]},{"inclusive_time":31,"id":"355","highest_child_id":730,"first_entry_time":21411,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":18,"id":"297","highest_child_id":729,"first_entry_time":21413,"exclusive_time":18,"entries":3,"allocations":[{"id":"295","count":3},{"id":"26","count":3}]},{"inclusive_time":4,"id":"337","highest_child_id":730,"first_entry_time":21419,"exclusive_time":4,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":16,"id":"317","highest_child_id":736,"first_entry_time":21458,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":732,"first_entry_time":21461,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":733,"first_entry_time":21463,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":734,"first_entry_time":21464,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":735,"first_entry_time":21466,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":736,"first_entry_time":21471,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":7,"id":"356","highest_child_id":737,"first_entry_time":21608,"exclusive_time":7,"entries":1,"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":4168,"id":"352","highest_child_id":750,"first_entry_time":21628,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4165,"id":"353","highest_child_id":750,"first_entry_time":21631,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":740,"first_entry_time":21633,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"317","highest_child_id":746,"first_entry_time":21635,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":742,"first_entry_time":21638,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":743,"first_entry_time":21639,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":744,"first_entry_time":21641,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":745,"first_entry_time":21642,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":746,"first_entry_time":21644,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4127,"id":"357","highest_child_id":750,"first_entry_time":21668,"exclusive_time":63,"entries":1,"callees":[{"inclusive_time":4064,"id":"358","highest_child_id":750,"first_entry_time":21732,"exclusive_time":2512,"entries":1,"callees":[{"inclusive_time":140,"id":"359","highest_child_id":749,"first_entry_time":21750,"exclusive_time":0,"entries":782},{"inclusive_time":1850,"id":"360","highest_child_id":750,"first_entry_time":21776,"exclusive_time":1551,"entries":1546,"allocations":[{"id":"6","count":783}]}],"allocations":[{"id":"170","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":10,"id":"361","highest_child_id":751,"first_entry_time":25847,"exclusive_time":10,"entries":2,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2189,"id":"362","highest_child_id":797,"first_entry_time":26276,"exclusive_time":300,"entries":1,"callees":[{"inclusive_time":1631,"id":"363","highest_child_id":764,"first_entry_time":26304,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":7,"id":"316","highest_child_id":754,"first_entry_time":26306,"exclusive_time":6,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1620,"id":"352","highest_child_id":764,"first_entry_time":26316,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1616,"id":"353","highest_child_id":764,"first_entry_time":26319,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":757,"first_entry_time":26320,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"317","highest_child_id":760,"first_entry_time":26323,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":759,"first_entry_time":26326,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":760,"first_entry_time":26328,"exclusive_time":0,"entries":1}]},{"inclusive_time":1592,"id":"364","highest_child_id":764,"first_entry_time":26343,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1588,"id":"358","highest_child_id":764,"first_entry_time":26347,"exclusive_time":1215,"entries":1,"callees":[{"inclusive_time":133,"id":"359","highest_child_id":763,"first_entry_time":26354,"exclusive_time":0,"entries":782},{"inclusive_time":523,"id":"360","highest_child_id":764,"first_entry_time":26356,"exclusive_time":372,"entries":782,"allocations":[{"id":"6","count":782}]}],"allocations":[{"id":"170","count":6},{"id":"13","count":5}]}]}]}]}]},{"inclusive_time":42,"id":"365","highest_child_id":769,"first_entry_time":28025,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":766,"first_entry_time":28030,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"366","highest_child_id":767,"first_entry_time":28040,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"360","highest_child_id":768,"first_entry_time":28043,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":3}]},{"inclusive_time":3,"id":"367","highest_child_id":769,"first_entry_time":28062,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":22,"id":"368","highest_child_id":773,"first_entry_time":28077,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":9,"id":"369","highest_child_id":773,"first_entry_time":28090,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":772,"first_entry_time":28094,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":773,"first_entry_time":28099,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}]},{"jit_entries":15,"inclusive_time":2,"id":"193","highest_child_id":774,"first_entry_time":28104,"exclusive_time":0,"entries":15},{"jit_entries":15,"inclusive_time":1,"id":"194","highest_child_id":775,"first_entry_time":28106,"exclusive_time":0,"entries":15},{"inclusive_time":29,"id":"303","highest_child_id":776,"first_entry_time":28108,"exclusive_time":26,"entries":15,"allocations":[{"id":"56","count":15}]},{"inclusive_time":8,"id":"360","highest_child_id":777,"first_entry_time":28187,"exclusive_time":6,"entries":8,"allocations":[{"id":"6","count":8}]},{"inclusive_time":3,"id":"367","highest_child_id":778,"first_entry_time":28192,"exclusive_time":3,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":2,"id":"370","highest_child_id":779,"first_entry_time":28212,"exclusive_time":2,"entries":1},{"inclusive_time":88,"id":"371","highest_child_id":785,"first_entry_time":28274,"exclusive_time":41,"entries":4,"callees":[{"inclusive_time":11,"id":"360","highest_child_id":781,"first_entry_time":28276,"exclusive_time":9,"entries":8,"allocations":[{"id":"6","count":4}]},{"inclusive_time":34,"id":"372","highest_child_id":784,"first_entry_time":28295,"exclusive_time":13,"entries":4,"callees":[{"inclusive_time":21,"id":"331","highest_child_id":784,"first_entry_time":28301,"exclusive_time":17,"entries":4,"callees":[{"inclusive_time":3,"id":"374","highest_child_id":784,"first_entry_time":28312,"exclusive_time":2,"entries":4}],"allocations":[{"id":"170","count":4}]}],"allocations":[{"id":"27","count":4},{"id":"10","count":4},{"id":"6","count":4},{"id":"373","count":4}]},{"inclusive_time":3,"id":"375","highest_child_id":785,"first_entry_time":28324,"exclusive_time":2,"entries":4}]},{"inclusive_time":64,"id":"376","highest_child_id":796,"first_entry_time":28380,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":14,"id":"365","highest_child_id":791,"first_entry_time":28382,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":788,"first_entry_time":28386,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":789,"first_entry_time":28388,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"360","highest_child_id":790,"first_entry_time":28391,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"367","highest_child_id":791,"first_entry_time":28393,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":0,"id":"326","highest_child_id":792,"first_entry_time":28398,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"377","highest_child_id":793,"first_entry_time":28413,"exclusive_time":1,"entries":1},{"inclusive_time":20,"id":"378","highest_child_id":796,"first_entry_time":28424,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":10,"id":"379","highest_child_id":796,"first_entry_time":28434,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"380","highest_child_id":796,"first_entry_time":28442,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"261","count":1}]},{"inclusive_time":2,"id":"381","highest_child_id":797,"first_entry_time":28463,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1},{"id":"27","count":15}]},{"inclusive_time":708,"id":"382","highest_child_id":831,"first_entry_time":28490,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":15,"id":"316","highest_child_id":799,"first_entry_time":28492,"exclusive_time":15,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":687,"id":"352","highest_child_id":831,"first_entry_time":28511,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":683,"id":"353","highest_child_id":831,"first_entry_time":28514,"exclusive_time":91,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":802,"first_entry_time":28516,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"317","highest_child_id":805,"first_entry_time":28518,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":804,"first_entry_time":28521,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":805,"first_entry_time":28523,"exclusive_time":0,"entries":1}]},{"inclusive_time":583,"id":"383","highest_child_id":831,"first_entry_time":28613,"exclusive_time":83,"entries":1,"callees":[{"inclusive_time":14,"id":"384","highest_child_id":809,"first_entry_time":28625,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":808,"first_entry_time":28627,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"385","highest_child_id":809,"first_entry_time":28638,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"386","highest_child_id":810,"first_entry_time":28650,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"360","highest_child_id":811,"first_entry_time":28654,"exclusive_time":7,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"372","highest_child_id":812,"first_entry_time":28659,"exclusive_time":4,"entries":2,"allocations":[{"id":"27","count":2},{"id":"10","count":2},{"id":"6","count":2},{"id":"373","count":2}]},{"inclusive_time":2,"id":"375","highest_child_id":813,"first_entry_time":28663,"exclusive_time":1,"entries":2},{"inclusive_time":446,"id":"387","highest_child_id":824,"first_entry_time":28686,"exclusive_time":311,"entries":2,"callees":[{"inclusive_time":130,"id":"388","highest_child_id":822,"first_entry_time":28992,"exclusive_time":92,"entries":2,"callees":[{"inclusive_time":26,"id":"389","highest_child_id":818,"first_entry_time":29013,"exclusive_time":21,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":817,"first_entry_time":29023,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"391","highest_child_id":818,"first_entry_time":29069,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"392","highest_child_id":820,"first_entry_time":29040,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":820,"first_entry_time":29042,"exclusive_time":1,"entries":2}]},{"inclusive_time":2,"id":"393","highest_child_id":821,"first_entry_time":29051,"exclusive_time":1,"entries":2},{"inclusive_time":9,"id":"394","highest_child_id":822,"first_entry_time":29133,"exclusive_time":6,"entries":19}],"allocations":[{"id":"2","count":2},{"id":"27","count":21},{"id":"28","count":2}]},{"inclusive_time":4,"id":"389","highest_child_id":824,"first_entry_time":29073,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"391","highest_child_id":824,"first_entry_time":29074,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":3,"id":"395","highest_child_id":825,"first_entry_time":29088,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":5,"id":"397","highest_child_id":826,"first_entry_time":29106,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"398","count":2}]},{"inclusive_time":16,"id":"365","highest_child_id":831,"first_entry_time":29173,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":828,"first_entry_time":29177,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":829,"first_entry_time":29179,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":830,"first_entry_time":29181,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"367","highest_child_id":831,"first_entry_time":29186,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]}]}]}]},{"inclusive_time":12299,"id":"399","highest_child_id":1772,"first_entry_time":29252,"exclusive_time":56,"entries":1,"callees":[{"inclusive_time":2,"id":"400","highest_child_id":833,"first_entry_time":29276,"exclusive_time":2,"entries":1},{"inclusive_time":12240,"id":"401","highest_child_id":1772,"first_entry_time":29311,"exclusive_time":264,"entries":1,"callees":[{"inclusive_time":7,"id":"402","highest_child_id":835,"first_entry_time":29348,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"400","highest_child_id":836,"first_entry_time":29354,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"403","highest_child_id":837,"first_entry_time":29364,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"342","highest_child_id":838,"first_entry_time":29367,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"404","highest_child_id":839,"first_entry_time":29375,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"294","highest_child_id":842,"first_entry_time":29378,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"292","highest_child_id":841,"first_entry_time":29382,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":4,"id":"297","highest_child_id":842,"first_entry_time":29386,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"295","count":1}]},{"inclusive_time":26,"id":"405","highest_child_id":845,"first_entry_time":29402,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":844,"first_entry_time":29411,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"407","highest_child_id":845,"first_entry_time":29424,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]}]},{"inclusive_time":9,"id":"408","highest_child_id":846,"first_entry_time":29437,"exclusive_time":9,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":2,"id":"409","highest_child_id":847,"first_entry_time":29457,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"410","highest_child_id":848,"first_entry_time":29468,"exclusive_time":0,"entries":1},{"inclusive_time":11910,"id":"411","highest_child_id":1770,"first_entry_time":29638,"exclusive_time":305,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":7,"id":"316","highest_child_id":850,"first_entry_time":29644,"exclusive_time":7,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"412","highest_child_id":851,"first_entry_time":29663,"exclusive_time":1,"entries":1},{"inclusive_time":56,"id":"413","highest_child_id":854,"first_entry_time":29679,"exclusive_time":56,"entries":1,"callees":[{"jit_entries":27,"inclusive_time":3,"id":"193","highest_child_id":853,"first_entry_time":29683,"exclusive_time":0,"entries":27},{"jit_entries":27,"inclusive_time":2,"id":"194","highest_child_id":854,"first_entry_time":29686,"exclusive_time":0,"entries":27}],"allocations":[{"id":"6","count":1},{"id":"170","count":1},{"id":"27","count":27}]},{"inclusive_time":2,"id":"346","highest_child_id":855,"first_entry_time":29738,"exclusive_time":2,"entries":1},{"inclusive_time":93,"id":"339","highest_child_id":875,"first_entry_time":29742,"exclusive_time":18,"entries":9,"callees":[{"inclusive_time":28,"id":"340","highest_child_id":859,"first_entry_time":29744,"exclusive_time":22,"entries":9,"callees":[{"inclusive_time":6,"id":"342","highest_child_id":858,"first_entry_time":29746,"exclusive_time":3,"entries":18},{"inclusive_time":1,"id":"341","highest_child_id":859,"first_entry_time":41079,"exclusive_time":0,"entries":1}]},{"inclusive_time":9,"id":"343","highest_child_id":860,"first_entry_time":29750,"exclusive_time":7,"entries":9},{"inclusive_time":40,"id":"344","highest_child_id":875,"first_entry_time":41083,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":862,"first_entry_time":41084,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"345","highest_child_id":863,"first_entry_time":41090,"exclusive_time":2,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":1,"id":"346","highest_child_id":864,"first_entry_time":41092,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"347","highest_child_id":865,"first_entry_time":41094,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"348","highest_child_id":868,"first_entry_time":41098,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":867,"first_entry_time":41100,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":868,"first_entry_time":41104,"exclusive_time":2,"entries":1}]},{"inclusive_time":6,"id":"351","highest_child_id":872,"first_entry_time":41110,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"414","highest_child_id":870,"first_entry_time":41111,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"342","highest_child_id":871,"first_entry_time":41113,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"415","highest_child_id":872,"first_entry_time":41115,"exclusive_time":0,"entries":1}]},{"inclusive_time":4,"id":"352","highest_child_id":875,"first_entry_time":41118,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":875,"first_entry_time":41120,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":875,"first_entry_time":41121,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":29,"id":"354","highest_child_id":876,"first_entry_time":29753,"exclusive_time":26,"entries":11,"allocations":[{"id":"10","count":1}]},{"inclusive_time":29,"id":"317","highest_child_id":883,"first_entry_time":29767,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":878,"first_entry_time":29769,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"319","highest_child_id":879,"first_entry_time":29771,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"320","highest_child_id":880,"first_entry_time":29773,"exclusive_time":1,"entries":2},{"inclusive_time":5,"id":"321","highest_child_id":881,"first_entry_time":29774,"exclusive_time":4,"entries":2,"allocations":[{"id":"6","count":2},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":882,"first_entry_time":29778,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"317","highest_child_id":883,"first_entry_time":41232,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":10,"id":"405","highest_child_id":886,"first_entry_time":29783,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":885,"first_entry_time":29784,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"407","highest_child_id":886,"first_entry_time":29790,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]}]},{"inclusive_time":10,"id":"348","highest_child_id":889,"first_entry_time":29805,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":888,"first_entry_time":29808,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":889,"first_entry_time":29812,"exclusive_time":3,"entries":1}]},{"inclusive_time":11043,"id":"416","highest_child_id":1726,"first_entry_time":29995,"exclusive_time":136,"entries":2,"deopt_all":1,"callees":[{"inclusive_time":9,"id":"316","highest_child_id":891,"first_entry_time":29999,"exclusive_time":9,"entries":2,"allocations":[{"id":"295","count":2},{"id":"26","count":2}]},{"inclusive_time":6,"id":"408","highest_child_id":892,"first_entry_time":30011,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":35,"id":"317","highest_child_id":899,"first_entry_time":30016,"exclusive_time":27,"entries":4,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":894,"first_entry_time":30019,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"319","highest_child_id":895,"first_entry_time":30021,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"320","highest_child_id":896,"first_entry_time":30023,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"321","highest_child_id":897,"first_entry_time":30024,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":1,"id":"322","highest_child_id":898,"first_entry_time":30026,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"317","highest_child_id":899,"first_entry_time":40704,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":2,"id":"409","highest_child_id":900,"first_entry_time":30029,"exclusive_time":2,"entries":2},{"inclusive_time":88,"id":"417","highest_child_id":912,"first_entry_time":30061,"exclusive_time":40,"entries":2,"callees":[{"inclusive_time":8,"id":"297","highest_child_id":902,"first_entry_time":30070,"exclusive_time":7,"entries":2,"allocations":[{"id":"295","count":2},{"id":"26","count":2}]},{"inclusive_time":35,"id":"418","highest_child_id":909,"first_entry_time":30099,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":7,"id":"316","highest_child_id":904,"first_entry_time":30100,"exclusive_time":7,"entries":2,"allocations":[{"id":"295","count":2},{"id":"26","count":2}]},{"inclusive_time":14,"id":"348","highest_child_id":907,"first_entry_time":30107,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":2,"id":"349","highest_child_id":906,"first_entry_time":30110,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":3,"id":"350","highest_child_id":907,"first_entry_time":30113,"exclusive_time":3,"entries":2}]},{"inclusive_time":2,"id":"337","highest_child_id":908,"first_entry_time":30118,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"352","highest_child_id":909,"first_entry_time":41173,"exclusive_time":2,"entries":1}]},{"inclusive_time":4,"id":"352","highest_child_id":912,"first_entry_time":41177,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":912,"first_entry_time":41179,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":912,"first_entry_time":41180,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"283","count":2}]},{"inclusive_time":20,"id":"419","highest_child_id":915,"first_entry_time":30143,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":13,"id":"316","highest_child_id":914,"first_entry_time":30144,"exclusive_time":13,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":915,"first_entry_time":30160,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"400","highest_child_id":916,"first_entry_time":30166,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":12,"id":"348","highest_child_id":919,"first_entry_time":30172,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":918,"first_entry_time":30175,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"350","highest_child_id":919,"first_entry_time":30178,"exclusive_time":6,"entries":1}]},{"inclusive_time":10481,"id":"420","highest_child_id":1689,"first_entry_time":30200,"exclusive_time":148,"entries":1,"callees":[{"inclusive_time":10333,"id":"421","highest_child_id":1689,"first_entry_time":30348,"exclusive_time":246,"entries":1,"callees":[{"inclusive_time":10,"id":"297","highest_child_id":922,"first_entry_time":30352,"exclusive_time":9,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":9953,"id":"422","highest_child_id":1654,"first_entry_time":30595,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":924,"first_entry_time":30599,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"346","highest_child_id":925,"first_entry_time":30610,"exclusive_time":3,"entries":2},{"inclusive_time":26,"id":"348","highest_child_id":928,"first_entry_time":30615,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":927,"first_entry_time":30617,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":20,"id":"350","highest_child_id":928,"first_entry_time":30621,"exclusive_time":20,"entries":1}]},{"inclusive_time":24,"id":"423","highest_child_id":936,"first_entry_time":30669,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":930,"first_entry_time":30670,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":7,"id":"317","highest_child_id":933,"first_entry_time":30677,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":932,"first_entry_time":30680,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":933,"first_entry_time":30682,"exclusive_time":0,"entries":1}]},{"inclusive_time":6,"id":"352","highest_child_id":936,"first_entry_time":30687,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":936,"first_entry_time":30690,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":936,"first_entry_time":30691,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":9698,"id":"424","highest_child_id":1610,"first_entry_time":30702,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":9668,"id":"425","highest_child_id":1610,"first_entry_time":30733,"exclusive_time":399,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":939,"first_entry_time":30736,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"426","highest_child_id":940,"first_entry_time":30750,"exclusive_time":17,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":941,"first_entry_time":30776,"exclusive_time":0,"entries":1},{"inclusive_time":9248,"id":"428","highest_child_id":1610,"first_entry_time":31151,"exclusive_time":345,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":943,"first_entry_time":31156,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":502,"id":"429","highest_child_id":994,"first_entry_time":31213,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":945,"first_entry_time":31215,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":329,"id":"430","highest_child_id":978,"first_entry_time":31291,"exclusive_time":147,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":947,"first_entry_time":31293,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":10,"id":"348","highest_child_id":950,"first_entry_time":31300,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":949,"first_entry_time":31303,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"350","highest_child_id":950,"first_entry_time":31306,"exclusive_time":4,"entries":1}]},{"inclusive_time":95,"id":"431","highest_child_id":961,"first_entry_time":31347,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":952,"first_entry_time":31349,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":21,"id":"432","highest_child_id":955,"first_entry_time":31375,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":954,"first_entry_time":31379,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"433","highest_child_id":955,"first_entry_time":31394,"exclusive_time":2,"entries":1}]},{"inclusive_time":16,"id":"434","highest_child_id":958,"first_entry_time":31418,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":9,"id":"316","highest_child_id":957,"first_entry_time":31419,"exclusive_time":8,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":958,"first_entry_time":31432,"exclusive_time":1,"entries":1}]},{"inclusive_time":6,"id":"352","highest_child_id":961,"first_entry_time":31436,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":961,"first_entry_time":31439,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":961,"first_entry_time":31441,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":11,"id":"361","highest_child_id":962,"first_entry_time":31444,"exclusive_time":11,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":14,"id":"435","highest_child_id":965,"first_entry_time":31557,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":964,"first_entry_time":31561,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"337","highest_child_id":965,"first_entry_time":31569,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":1}]},{"inclusive_time":45,"id":"352","highest_child_id":978,"first_entry_time":31574,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":42,"id":"353","highest_child_id":978,"first_entry_time":31577,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":968,"first_entry_time":31579,"exclusive_time":0,"entries":1},{"inclusive_time":28,"id":"317","highest_child_id":977,"first_entry_time":31581,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":970,"first_entry_time":31584,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":971,"first_entry_time":31586,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":972,"first_entry_time":31588,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":973,"first_entry_time":31589,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":974,"first_entry_time":31593,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"317","highest_child_id":977,"first_entry_time":31597,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":976,"first_entry_time":31599,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":977,"first_entry_time":31601,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"436","highest_child_id":978,"first_entry_time":31618,"exclusive_time":1,"entries":1}]}]}]},{"inclusive_time":5,"id":"361","highest_child_id":979,"first_entry_time":31622,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":16,"id":"317","highest_child_id":986,"first_entry_time":31628,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":981,"first_entry_time":31630,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":982,"first_entry_time":31632,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":983,"first_entry_time":31633,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":984,"first_entry_time":31635,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":985,"first_entry_time":31639,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":986,"first_entry_time":31642,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":55,"id":"417","highest_child_id":991,"first_entry_time":31647,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":988,"first_entry_time":31650,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":10,"id":"437","highest_child_id":991,"first_entry_time":31691,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":990,"first_entry_time":31692,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"337","highest_child_id":991,"first_entry_time":31699,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"283","count":1}]},{"inclusive_time":9,"id":"352","highest_child_id":994,"first_entry_time":31705,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"353","highest_child_id":994,"first_entry_time":31707,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":994,"first_entry_time":31713,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":9,"id":"361","highest_child_id":995,"first_entry_time":31716,"exclusive_time":8,"entries":2,"allocations":[{"id":"10","count":1}]},{"inclusive_time":44,"id":"317","highest_child_id":1008,"first_entry_time":31723,"exclusive_time":23,"entries":3,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":997,"first_entry_time":31725,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"319","highest_child_id":998,"first_entry_time":31727,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"320","highest_child_id":999,"first_entry_time":31728,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"321","highest_child_id":1000,"first_entry_time":31730,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"322","highest_child_id":1001,"first_entry_time":31732,"exclusive_time":0,"entries":2},{"inclusive_time":16,"id":"317","highest_child_id":1008,"first_entry_time":31735,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1003,"first_entry_time":31738,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1004,"first_entry_time":31739,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1005,"first_entry_time":31740,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"321","highest_child_id":1006,"first_entry_time":31742,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1007,"first_entry_time":31745,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1008,"first_entry_time":31748,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":51,"id":"438","highest_child_id":1014,"first_entry_time":31850,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":10,"id":"343","highest_child_id":1011,"first_entry_time":31855,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"440","highest_child_id":1011,"first_entry_time":31863,"exclusive_time":0,"entries":1}]},{"inclusive_time":15,"id":"441","highest_child_id":1013,"first_entry_time":31882,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"442","highest_child_id":1013,"first_entry_time":31894,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":1,"id":"149","highest_child_id":1014,"first_entry_time":31898,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"10","count":2},{"id":"439","count":1}]},{"inclusive_time":1,"id":"342","highest_child_id":1015,"first_entry_time":31903,"exclusive_time":0,"entries":2},{"inclusive_time":21,"id":"441","highest_child_id":1017,"first_entry_time":31904,"exclusive_time":17,"entries":5,"callees":[{"inclusive_time":4,"id":"442","highest_child_id":1017,"first_entry_time":31911,"exclusive_time":3,"entries":5}],"allocations":[{"id":"56","count":5}]},{"inclusive_time":4,"id":"443","highest_child_id":1018,"first_entry_time":31935,"exclusive_time":3,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"444","highest_child_id":1019,"first_entry_time":31947,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"445","highest_child_id":1020,"first_entry_time":31958,"exclusive_time":1,"entries":2},{"inclusive_time":129,"id":"446","highest_child_id":1028,"first_entry_time":31975,"exclusive_time":76,"entries":1,"callees":[{"inclusive_time":52,"id":"447","highest_child_id":1028,"first_entry_time":32051,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":48,"id":"365","highest_child_id":1028,"first_entry_time":32054,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1024,"first_entry_time":32059,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1025,"first_entry_time":32061,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"360","highest_child_id":1026,"first_entry_time":32063,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"448","highest_child_id":1027,"first_entry_time":32080,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"449","highest_child_id":1028,"first_entry_time":32099,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]}]}]},{"inclusive_time":114,"id":"450","highest_child_id":1042,"first_entry_time":32136,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":13,"id":"451","highest_child_id":1031,"first_entry_time":32145,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":2,"id":"452","highest_child_id":1031,"first_entry_time":32156,"exclusive_time":2,"entries":1}]},{"inclusive_time":37,"id":"447","highest_child_id":1038,"first_entry_time":32160,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":34,"id":"365","highest_child_id":1038,"first_entry_time":32163,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1034,"first_entry_time":32165,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1035,"first_entry_time":32167,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1036,"first_entry_time":32169,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":5,"id":"448","highest_child_id":1037,"first_entry_time":32175,"exclusive_time":5,"entries":2},{"inclusive_time":1,"id":"453","highest_child_id":1038,"first_entry_time":32195,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]}]},{"inclusive_time":42,"id":"454","highest_child_id":1042,"first_entry_time":32208,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1040,"first_entry_time":32209,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"455","highest_child_id":1042,"first_entry_time":32243,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"360","highest_child_id":1042,"first_entry_time":32245,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]}]}]}]},{"inclusive_time":6933,"id":"456","highest_child_id":1525,"first_entry_time":32339,"exclusive_time":59,"entries":1,"callees":[{"inclusive_time":17,"id":"316","highest_child_id":1044,"first_entry_time":32342,"exclusive_time":16,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"346","highest_child_id":1045,"first_entry_time":32363,"exclusive_time":2,"entries":1},{"inclusive_time":10,"id":"348","highest_child_id":1048,"first_entry_time":32367,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1047,"first_entry_time":32369,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"350","highest_child_id":1048,"first_entry_time":32373,"exclusive_time":3,"entries":1}]},{"inclusive_time":6766,"id":"457","highest_child_id":1509,"first_entry_time":32424,"exclusive_time":55,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1050,"first_entry_time":32426,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":75,"id":"339","highest_child_id":1070,"first_entry_time":32434,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":6,"id":"340","highest_child_id":1054,"first_entry_time":32435,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1053,"first_entry_time":32437,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"341","highest_child_id":1054,"first_entry_time":32440,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"343","highest_child_id":1055,"first_entry_time":32442,"exclusive_time":1,"entries":1},{"inclusive_time":64,"id":"344","highest_child_id":1070,"first_entry_time":32445,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1057,"first_entry_time":32446,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"345","highest_child_id":1058,"first_entry_time":32456,"exclusive_time":2,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":1,"id":"346","highest_child_id":1059,"first_entry_time":32458,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"347","highest_child_id":1060,"first_entry_time":32461,"exclusive_time":2,"entries":1},{"inclusive_time":9,"id":"348","highest_child_id":1063,"first_entry_time":32465,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1062,"first_entry_time":32467,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"350","highest_child_id":1063,"first_entry_time":32470,"exclusive_time":3,"entries":1}]},{"inclusive_time":22,"id":"351","highest_child_id":1067,"first_entry_time":32478,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"414","highest_child_id":1065,"first_entry_time":32487,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"342","highest_child_id":1066,"first_entry_time":32490,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"415","highest_child_id":1067,"first_entry_time":32499,"exclusive_time":1,"entries":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1070,"first_entry_time":32503,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1070,"first_entry_time":32506,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1070,"first_entry_time":32507,"exclusive_time":0,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"346","highest_child_id":1071,"first_entry_time":32510,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"348","highest_child_id":1074,"first_entry_time":32513,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1073,"first_entry_time":32515,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1074,"first_entry_time":32518,"exclusive_time":3,"entries":1}]},{"inclusive_time":30,"id":"458","highest_child_id":1082,"first_entry_time":32562,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1076,"first_entry_time":32564,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":7,"id":"340","highest_child_id":1078,"first_entry_time":32571,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1078,"first_entry_time":32577,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"348","highest_child_id":1081,"first_entry_time":32580,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1080,"first_entry_time":32582,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1081,"first_entry_time":32585,"exclusive_time":3,"entries":1}]},{"inclusive_time":1,"id":"337","highest_child_id":1082,"first_entry_time":32590,"exclusive_time":1,"entries":1}]},{"inclusive_time":6358,"id":"420","highest_child_id":1484,"first_entry_time":32594,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":6355,"id":"421","highest_child_id":1484,"first_entry_time":32597,"exclusive_time":325,"entries":1,"callees":[{"inclusive_time":3,"id":"297","highest_child_id":1085,"first_entry_time":32600,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5266,"id":"422","highest_child_id":1433,"first_entry_time":32606,"exclusive_time":310,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1087,"first_entry_time":32608,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"346","highest_child_id":1088,"first_entry_time":32615,"exclusive_time":2,"entries":2},{"inclusive_time":15,"id":"348","highest_child_id":1091,"first_entry_time":32619,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1090,"first_entry_time":32621,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":10,"id":"350","highest_child_id":1091,"first_entry_time":32624,"exclusive_time":10,"entries":1}]},{"inclusive_time":25,"id":"423","highest_child_id":1099,"first_entry_time":32636,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1093,"first_entry_time":32637,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":10,"id":"317","highest_child_id":1096,"first_entry_time":32643,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1095,"first_entry_time":32646,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1096,"first_entry_time":32647,"exclusive_time":0,"entries":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1099,"first_entry_time":32655,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1099,"first_entry_time":32658,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1099,"first_entry_time":32659,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":4676,"id":"424","highest_child_id":1389,"first_entry_time":32662,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4675,"id":"425","highest_child_id":1389,"first_entry_time":32663,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1102,"first_entry_time":32665,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"426","highest_child_id":1103,"first_entry_time":32667,"exclusive_time":9,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1104,"first_entry_time":32679,"exclusive_time":0,"entries":1},{"inclusive_time":4627,"id":"459","highest_child_id":1389,"first_entry_time":32710,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1106,"first_entry_time":32712,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":4568,"id":"460","highest_child_id":1375,"first_entry_time":32726,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4566,"id":"425","highest_child_id":1375,"first_entry_time":32728,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1109,"first_entry_time":32730,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"426","highest_child_id":1110,"first_entry_time":32732,"exclusive_time":4,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1111,"first_entry_time":32738,"exclusive_time":0,"entries":1},{"inclusive_time":4527,"id":"461","highest_child_id":1375,"first_entry_time":32766,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1113,"first_entry_time":32767,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":4461,"id":"462","highest_child_id":1361,"first_entry_time":32781,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4459,"id":"425","highest_child_id":1361,"first_entry_time":32783,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1116,"first_entry_time":32785,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"426","highest_child_id":1117,"first_entry_time":32787,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1118,"first_entry_time":32792,"exclusive_time":0,"entries":1},{"inclusive_time":4379,"id":"463","highest_child_id":1361,"first_entry_time":32861,"exclusive_time":67,"entries":1,"callees":[{"inclusive_time":9,"id":"316","highest_child_id":1120,"first_entry_time":32863,"exclusive_time":9,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"346","highest_child_id":1121,"first_entry_time":32876,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"400","highest_child_id":1122,"first_entry_time":32879,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2116,"id":"464","highest_child_id":1247,"first_entry_time":32913,"exclusive_time":110,"entries":1,"callees":[{"inclusive_time":21,"id":"465","highest_child_id":1126,"first_entry_time":32954,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"466","highest_child_id":1125,"first_entry_time":32965,"exclusive_time":1,"entries":2},{"inclusive_time":0,"id":"149","highest_child_id":1126,"first_entry_time":32971,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":2},{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"467","highest_child_id":1127,"first_entry_time":32986,"exclusive_time":1,"entries":1},{"inclusive_time":1980,"id":"468","highest_child_id":1245,"first_entry_time":33043,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":1,"id":"403","highest_child_id":1129,"first_entry_time":33044,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"342","highest_child_id":1130,"first_entry_time":33047,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"404","highest_child_id":1131,"first_entry_time":33049,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"294","highest_child_id":1134,"first_entry_time":33051,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"292","highest_child_id":1133,"first_entry_time":33055,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":4,"id":"297","highest_child_id":1134,"first_entry_time":33060,"exclusive_time":3,"entries":1,"allocations":[{"id":"469","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"469","count":1}]},{"inclusive_time":6,"id":"405","highest_child_id":1137,"first_entry_time":33065,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"406","highest_child_id":1136,"first_entry_time":33066,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"407","highest_child_id":1137,"first_entry_time":33067,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]}]},{"inclusive_time":44,"id":"470","highest_child_id":1141,"first_entry_time":33086,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":1,"id":"471","highest_child_id":1139,"first_entry_time":33098,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":18,"id":"472","highest_child_id":1141,"first_entry_time":33112,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":5,"id":"473","highest_child_id":1141,"first_entry_time":33124,"exclusive_time":5,"entries":1,"deopt_all":1,"allocations":[{"id":"10","count":1}]}]}]},{"inclusive_time":1,"id":"412","highest_child_id":1142,"first_entry_time":33137,"exclusive_time":1,"entries":1},{"jit_entries":26,"inclusive_time":3,"id":"194","highest_child_id":1143,"first_entry_time":33141,"exclusive_time":0,"entries":26},{"jit_entries":1,"inclusive_time":1,"id":"193","highest_child_id":1144,"first_entry_time":33162,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"408","highest_child_id":1145,"first_entry_time":33165,"exclusive_time":3,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":1,"id":"409","highest_child_id":1146,"first_entry_time":33169,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"302","highest_child_id":1147,"first_entry_time":33172,"exclusive_time":7,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1825,"id":"474","highest_child_id":1245,"first_entry_time":33198,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":51,"id":"475","highest_child_id":1153,"first_entry_time":33223,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":37,"id":"476","highest_child_id":1153,"first_entry_time":33238,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":12,"id":"478","highest_child_id":1152,"first_entry_time":33249,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"480","highest_child_id":1152,"first_entry_time":33260,"exclusive_time":1,"entries":1}],"allocations":[{"id":"479","count":1}]},{"inclusive_time":1,"id":"481","highest_child_id":1153,"first_entry_time":33271,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"477","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1746,"id":"473","highest_child_id":1245,"first_entry_time":33276,"exclusive_time":15,"entries":1,"deopt_all":1,"callees":[{"inclusive_time":1730,"id":"482","highest_child_id":1245,"first_entry_time":33288,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":1700,"id":"483","highest_child_id":1245,"first_entry_time":33318,"exclusive_time":121,"entries":1,"callees":[{"inclusive_time":1,"id":"484","highest_child_id":1157,"first_entry_time":33332,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"466","highest_child_id":1158,"first_entry_time":33335,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"485","highest_child_id":1160,"first_entry_time":33347,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"481","highest_child_id":1160,"first_entry_time":33349,"exclusive_time":0,"entries":1}]},{"inclusive_time":88,"id":"486","highest_child_id":1168,"first_entry_time":33371,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":25,"id":"488","highest_child_id":1163,"first_entry_time":33382,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":3,"id":"490","highest_child_id":1163,"first_entry_time":33405,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":9},{"id":"6","count":1}]}],"allocations":[{"id":"489","count":1}]},{"inclusive_time":1,"id":"491","highest_child_id":1164,"first_entry_time":33417,"exclusive_time":1,"entries":1},{"inclusive_time":30,"id":"492","highest_child_id":1168,"first_entry_time":33427,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":17,"id":"493","highest_child_id":1168,"first_entry_time":33441,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":2,"id":"495","highest_child_id":1167,"first_entry_time":33450,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"496","count":1}]},{"inclusive_time":1,"id":"466","highest_child_id":1168,"first_entry_time":33455,"exclusive_time":0,"entries":1}],"allocations":[{"id":"494","count":1},{"id":"56","count":1}]}]}],"allocations":[{"id":"27","count":1},{"id":"487","count":1},{"id":"6","count":1}]},{"inclusive_time":2,"id":"497","highest_child_id":1169,"first_entry_time":33477,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"498","highest_child_id":1170,"first_entry_time":33492,"exclusive_time":1,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":1481,"id":"499","highest_child_id":1245,"first_entry_time":33536,"exclusive_time":317,"entries":1,"callees":[{"inclusive_time":520,"id":"500","highest_child_id":1194,"first_entry_time":33550,"exclusive_time":64,"entries":1,"callees":[{"inclusive_time":455,"id":"501","highest_child_id":1194,"first_entry_time":33614,"exclusive_time":108,"entries":1,"callees":[{"inclusive_time":10,"id":"502","highest_child_id":1174,"first_entry_time":33630,"exclusive_time":10,"entries":1,"allocations":[{"id":"13","count":1}]},{"inclusive_time":47,"id":"503","highest_child_id":1177,"first_entry_time":33654,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":33,"id":"505","highest_child_id":1177,"first_entry_time":33665,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":6,"id":"507","highest_child_id":1177,"first_entry_time":33692,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":7},{"id":"6","count":1}]}],"allocations":[{"id":"506","count":1}]}],"allocations":[{"id":"504","count":1}]},{"inclusive_time":2,"id":"508","highest_child_id":1178,"first_entry_time":33720,"exclusive_time":1,"entries":2},{"inclusive_time":279,"id":"509","highest_child_id":1192,"first_entry_time":33741,"exclusive_time":83,"entries":2,"callees":[{"inclusive_time":4,"id":"510","highest_child_id":1180,"first_entry_time":33756,"exclusive_time":3,"entries":2,"allocations":[{"id":"2","count":2},{"id":"511","count":2}]},{"inclusive_time":16,"id":"512","highest_child_id":1185,"first_entry_time":33796,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":14,"id":"105","highest_child_id":1185,"first_entry_time":33798,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"106","highest_child_id":1183,"first_entry_time":33800,"exclusive_time":0,"entries":1,"allocations":[{"id":"513","count":1}]},{"inclusive_time":9,"id":"94","highest_child_id":1185,"first_entry_time":33802,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":1185,"first_entry_time":33805,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":173,"id":"514","highest_child_id":1191,"first_entry_time":33847,"exclusive_time":95,"entries":1,"callees":[{"inclusive_time":4,"id":"515","highest_child_id":1187,"first_entry_time":33868,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"516","count":1}]},{"inclusive_time":74,"id":"517","highest_child_id":1191,"first_entry_time":33946,"exclusive_time":64,"entries":1,"callees":[{"inclusive_time":2,"id":"518","highest_child_id":1189,"first_entry_time":33960,"exclusive_time":2,"entries":3},{"inclusive_time":3,"id":"519","highest_child_id":1190,"first_entry_time":33978,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"56","count":1},{"id":"28","count":1}]},{"inclusive_time":4,"id":"520","highest_child_id":1191,"first_entry_time":34015,"exclusive_time":4,"entries":1}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"10","count":5},{"id":"513","count":1},{"id":"25","count":2}]},{"inclusive_time":1,"id":"521","highest_child_id":1192,"first_entry_time":34038,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"522","highest_child_id":1193,"first_entry_time":33773,"exclusive_time":4,"entries":2},{"inclusive_time":3,"id":"523","highest_child_id":1194,"first_entry_time":34065,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":4},{"id":"27","count":2}]}]},{"inclusive_time":87,"id":"524","highest_child_id":1202,"first_entry_time":34127,"exclusive_time":67,"entries":1,"callees":[{"inclusive_time":1,"id":"525","highest_child_id":1196,"first_entry_time":34136,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"526","highest_child_id":1197,"first_entry_time":34148,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"508","highest_child_id":1198,"first_entry_time":34151,"exclusive_time":1,"entries":2},{"inclusive_time":11,"id":"527","highest_child_id":1200,"first_entry_time":34162,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":1,"id":"528","highest_child_id":1200,"first_entry_time":34170,"exclusive_time":1,"entries":2}]},{"inclusive_time":4,"id":"529","highest_child_id":1201,"first_entry_time":34189,"exclusive_time":3,"entries":2},{"inclusive_time":1,"id":"530","highest_child_id":1202,"first_entry_time":34212,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":3},{"id":"27","count":2}]},{"inclusive_time":37,"id":"531","highest_child_id":1216,"first_entry_time":34236,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1204,"first_entry_time":34248,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"531","highest_child_id":1216,"first_entry_time":34251,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1206,"first_entry_time":34253,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"531","highest_child_id":1216,"first_entry_time":34255,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1208,"first_entry_time":34257,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"531","highest_child_id":1216,"first_entry_time":34259,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1210,"first_entry_time":34260,"exclusive_time":0,"entries":1},{"inclusive_time":10,"id":"531","highest_child_id":1216,"first_entry_time":34262,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1212,"first_entry_time":34263,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"531","highest_child_id":1216,"first_entry_time":34265,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1214,"first_entry_time":34266,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"531","highest_child_id":1216,"first_entry_time":34268,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"532","highest_child_id":1216,"first_entry_time":34269,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"533","highest_child_id":1217,"first_entry_time":34321,"exclusive_time":2,"entries":1},{"inclusive_time":36,"id":"534","highest_child_id":1219,"first_entry_time":34344,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":10,"id":"534","highest_child_id":1219,"first_entry_time":34348,"exclusive_time":9,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":3,"id":"535","highest_child_id":1220,"first_entry_time":34389,"exclusive_time":0,"entries":14},{"inclusive_time":51,"id":"536","highest_child_id":1224,"first_entry_time":34423,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":1,"id":"537","highest_child_id":1222,"first_entry_time":34431,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"538","highest_child_id":1223,"first_entry_time":34441,"exclusive_time":2,"entries":7},{"inclusive_time":2,"id":"539","highest_child_id":1224,"first_entry_time":34451,"exclusive_time":1,"entries":4}],"allocations":[{"id":"10","count":1},{"id":"25","count":12}]},{"inclusive_time":146,"id":"540","highest_child_id":1227,"first_entry_time":34491,"exclusive_time":141,"entries":1,"callees":[{"inclusive_time":3,"id":"541","highest_child_id":1226,"first_entry_time":34502,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":3,"id":"528","highest_child_id":1227,"first_entry_time":34507,"exclusive_time":2,"entries":7}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"170","count":7}]},{"inclusive_time":39,"id":"542","highest_child_id":1230,"first_entry_time":34650,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":11,"id":"543","highest_child_id":1230,"first_entry_time":34677,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"528","highest_child_id":1230,"first_entry_time":34681,"exclusive_time":1,"entries":5}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}]},{"inclusive_time":36,"id":"544","highest_child_id":1235,"first_entry_time":34733,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":2,"id":"534","highest_child_id":1232,"first_entry_time":34736,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":0,"id":"528","highest_child_id":1233,"first_entry_time":34739,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"537","highest_child_id":1234,"first_entry_time":34742,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"545","highest_child_id":1235,"first_entry_time":34751,"exclusive_time":2,"entries":7}],"allocations":[{"id":"10","count":2},{"id":"25","count":9}]},{"inclusive_time":207,"id":"546","highest_child_id":1245,"first_entry_time":34810,"exclusive_time":171,"entries":1,"callees":[{"inclusive_time":1,"id":"547","highest_child_id":1237,"first_entry_time":34818,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"534","highest_child_id":1238,"first_entry_time":34822,"exclusive_time":8,"entries":7,"allocations":[{"id":"10","count":7},{"id":"25","count":7}]},{"inclusive_time":4,"id":"532","highest_child_id":1239,"first_entry_time":34825,"exclusive_time":3,"entries":7},{"inclusive_time":4,"id":"548","highest_child_id":1240,"first_entry_time":34852,"exclusive_time":1,"entries":14},{"inclusive_time":6,"id":"549","highest_child_id":1241,"first_entry_time":34863,"exclusive_time":4,"entries":14},{"inclusive_time":7,"id":"550","highest_child_id":1242,"first_entry_time":34875,"exclusive_time":4,"entries":14},{"inclusive_time":6,"id":"551","highest_child_id":1243,"first_entry_time":34885,"exclusive_time":3,"entries":14},{"inclusive_time":7,"id":"552","highest_child_id":1244,"first_entry_time":34895,"exclusive_time":4,"entries":14},{"inclusive_time":7,"id":"553","highest_child_id":1245,"first_entry_time":34906,"exclusive_time":4,"entries":14}],"allocations":[{"id":"10","count":15},{"id":"25","count":8},{"id":"6","count":15}]}],"allocations":[{"id":"10","count":1},{"id":"25","count":2}]}],"allocations":[{"id":"56","count":3},{"id":"27","count":1}]}]}],"allocations":[{"id":"10","count":1}]}]}],"allocations":[{"id":"25","count":2},{"id":"56","count":1},{"id":"170","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"448","highest_child_id":1246,"first_entry_time":35025,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"370","highest_child_id":1247,"first_entry_time":35028,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":2},{"id":"10","count":1}]},{"inclusive_time":2122,"id":"554","highest_child_id":1347,"first_entry_time":35047,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":1,"id":"403","highest_child_id":1249,"first_entry_time":35048,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"342","highest_child_id":1250,"first_entry_time":35051,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"404","highest_child_id":1251,"first_entry_time":35052,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"294","highest_child_id":1254,"first_entry_time":35054,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":3,"id":"407","highest_child_id":1253,"first_entry_time":35059,"exclusive_time":3,"entries":1,"allocations":[{"id":"293","count":1},{"id":"6","count":1}]},{"inclusive_time":4,"id":"297","highest_child_id":1254,"first_entry_time":35064,"exclusive_time":4,"entries":1,"allocations":[{"id":"487","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"487","count":1}]},{"inclusive_time":2055,"id":"555","highest_child_id":1345,"first_entry_time":35100,"exclusive_time":171,"entries":1,"callees":[{"inclusive_time":8,"id":"316","highest_child_id":1256,"first_entry_time":35103,"exclusive_time":8,"entries":1,"allocations":[{"id":"487","count":1},{"id":"26","count":1}]},{"inclusive_time":1521,"id":"556","highest_child_id":1311,"first_entry_time":35279,"exclusive_time":126,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1258,"first_entry_time":35282,"exclusive_time":5,"entries":1,"allocations":[{"id":"487","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"342","highest_child_id":1259,"first_entry_time":35290,"exclusive_time":1,"entries":3},{"inclusive_time":150,"id":"557","highest_child_id":1269,"first_entry_time":35329,"exclusive_time":72,"entries":6,"callees":[{"inclusive_time":19,"id":"316","highest_child_id":1261,"first_entry_time":35331,"exclusive_time":17,"entries":6,"allocations":[{"id":"487","count":6},{"id":"26","count":6}]},{"inclusive_time":48,"id":"558","highest_child_id":1265,"first_entry_time":35379,"exclusive_time":24,"entries":6,"callees":[{"inclusive_time":20,"id":"297","highest_child_id":1263,"first_entry_time":35381,"exclusive_time":19,"entries":6,"allocations":[{"id":"487","count":6},{"id":"26","count":6}]},{"inclusive_time":2,"id":"304","highest_child_id":1264,"first_entry_time":35387,"exclusive_time":1,"entries":6},{"inclusive_time":1,"id":"433","highest_child_id":1265,"first_entry_time":36755,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":6},{"id":"56","count":6}]},{"inclusive_time":6,"id":"337","highest_child_id":1266,"first_entry_time":35392,"exclusive_time":5,"entries":5},{"inclusive_time":5,"id":"352","highest_child_id":1269,"first_entry_time":36758,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"353","highest_child_id":1269,"first_entry_time":36760,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1269,"first_entry_time":36762,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":35,"id":"559","highest_child_id":1272,"first_entry_time":35425,"exclusive_time":12,"entries":5,"callees":[{"inclusive_time":14,"id":"316","highest_child_id":1271,"first_entry_time":35427,"exclusive_time":13,"entries":5,"allocations":[{"id":"487","count":5},{"id":"26","count":5}]},{"inclusive_time":9,"id":"337","highest_child_id":1272,"first_entry_time":35434,"exclusive_time":8,"entries":5}]},{"inclusive_time":1182,"id":"560","highest_child_id":1301,"first_entry_time":35446,"exclusive_time":5,"entries":5,"callees":[{"inclusive_time":1177,"id":"425","highest_child_id":1301,"first_entry_time":35448,"exclusive_time":59,"entries":5,"callees":[{"inclusive_time":4,"id":"349","highest_child_id":1275,"first_entry_time":35450,"exclusive_time":3,"entries":5},{"inclusive_time":1099,"id":"561","highest_child_id":1298,"first_entry_time":35477,"exclusive_time":208,"entries":1,"callees":[{"inclusive_time":538,"id":"562","highest_child_id":1284,"first_entry_time":35501,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":506,"id":"563","highest_child_id":1283,"first_entry_time":35511,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":484,"id":"564","highest_child_id":1283,"first_entry_time":35532,"exclusive_time":406,"entries":1,"callees":[{"inclusive_time":49,"id":"565","highest_child_id":1281,"first_entry_time":35552,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":5,"id":"565","highest_child_id":1281,"first_entry_time":35557,"exclusive_time":4,"entries":7}],"allocations":[{"id":"10","count":1},{"id":"25","count":8}]},{"inclusive_time":25,"id":"508","highest_child_id":1282,"first_entry_time":35607,"exclusive_time":7,"entries":89},{"inclusive_time":58,"id":"566","highest_child_id":1283,"first_entry_time":35622,"exclusive_time":20,"entries":195}],"allocations":[{"id":"6","count":1},{"id":"25","count":1},{"id":"27","count":324},{"id":"56","count":40},{"id":"10","count":5}]}]},{"inclusive_time":3,"id":"567","highest_child_id":1284,"first_entry_time":36034,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":31,"id":"568","highest_child_id":1290,"first_entry_time":36051,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":15,"id":"105","highest_child_id":1289,"first_entry_time":36054,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":1287,"first_entry_time":36056,"exclusive_time":0,"entries":1,"allocations":[{"id":"513","count":1}]},{"inclusive_time":10,"id":"94","highest_child_id":1289,"first_entry_time":36058,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":1289,"first_entry_time":36062,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"569","highest_child_id":1290,"first_entry_time":36079,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":0,"id":"427","highest_child_id":1291,"first_entry_time":36083,"exclusive_time":0,"entries":1},{"inclusive_time":230,"id":"570","highest_child_id":1297,"first_entry_time":36138,"exclusive_time":110,"entries":6,"callees":[{"inclusive_time":3,"id":"410","highest_child_id":1293,"first_entry_time":36144,"exclusive_time":1,"entries":6},{"inclusive_time":2,"id":"571","highest_child_id":1294,"first_entry_time":36155,"exclusive_time":1,"entries":6},{"inclusive_time":116,"id":"572","highest_child_id":1297,"first_entry_time":36217,"exclusive_time":82,"entries":6,"callees":[{"inclusive_time":7,"id":"569","highest_child_id":1296,"first_entry_time":36220,"exclusive_time":6,"entries":6,"allocations":[{"id":"10","count":6}]},{"inclusive_time":29,"id":"520","highest_child_id":1297,"first_entry_time":36229,"exclusive_time":26,"entries":12,"allocations":[{"id":"28","count":4}]}],"allocations":[{"id":"10","count":23},{"id":"28","count":10}]}],"allocations":[{"id":"6","count":12},{"id":"10","count":6}]},{"inclusive_time":91,"id":"573","highest_child_id":1298,"first_entry_time":36484,"exclusive_time":91,"entries":1,"allocations":[{"id":"26","count":2},{"id":"28","count":5},{"id":"10","count":18}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"567","highest_child_id":1299,"first_entry_time":36578,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":12,"id":"426","highest_child_id":1300,"first_entry_time":36583,"exclusive_time":11,"entries":5,"allocations":[{"id":"574","count":1},{"id":"26","count":5}]},{"inclusive_time":1,"id":"427","highest_child_id":1301,"first_entry_time":36592,"exclusive_time":0,"entries":5}],"allocations":[{"id":"27","count":5}]}]},{"inclusive_time":17,"id":"317","highest_child_id":1307,"first_entry_time":36765,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1303,"first_entry_time":36768,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1304,"first_entry_time":36770,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":1305,"first_entry_time":36772,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"321","highest_child_id":1306,"first_entry_time":36773,"exclusive_time":6,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":4}]},{"inclusive_time":0,"id":"322","highest_child_id":1307,"first_entry_time":36780,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"403","highest_child_id":1308,"first_entry_time":36791,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"352","highest_child_id":1311,"first_entry_time":36795,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1311,"first_entry_time":36797,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1311,"first_entry_time":36799,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"10","count":1},{"id":"56","count":1},{"id":"27","count":1}]},{"inclusive_time":354,"id":"352","highest_child_id":1345,"first_entry_time":36801,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":352,"id":"353","highest_child_id":1345,"first_entry_time":36803,"exclusive_time":77,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1314,"first_entry_time":36804,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"317","highest_child_id":1317,"first_entry_time":36806,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1316,"first_entry_time":36808,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1317,"first_entry_time":36810,"exclusive_time":0,"entries":1}]},{"inclusive_time":268,"id":"575","highest_child_id":1345,"first_entry_time":36887,"exclusive_time":44,"entries":1,"callees":[{"inclusive_time":220,"id":"576","highest_child_id":1341,"first_entry_time":36912,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":134,"id":"577","highest_child_id":1336,"first_entry_time":36973,"exclusive_time":74,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1321,"first_entry_time":36977,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"578","highest_child_id":1322,"first_entry_time":36987,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"579","highest_child_id":1323,"first_entry_time":37013,"exclusive_time":8,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]},{"inclusive_time":4,"id":"580","highest_child_id":1324,"first_entry_time":37036,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1},{"id":"283","count":1},{"id":"25","count":1}]},{"inclusive_time":22,"id":"447","highest_child_id":1330,"first_entry_time":37045,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":19,"id":"365","highest_child_id":1330,"first_entry_time":37048,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1327,"first_entry_time":37054,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1328,"first_entry_time":37056,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"360","highest_child_id":1329,"first_entry_time":37058,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"367","highest_child_id":1330,"first_entry_time":37063,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":4,"id":"378","highest_child_id":1333,"first_entry_time":37069,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":3,"id":"379","highest_child_id":1333,"first_entry_time":37071,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1333,"first_entry_time":37072,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":18,"id":"581","highest_child_id":1336,"first_entry_time":37086,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":14,"id":"331","highest_child_id":1336,"first_entry_time":37090,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1336,"first_entry_time":37102,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"582","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":1},{"id":"56","count":4},{"id":"60","count":1}]},{"inclusive_time":2,"id":"395","highest_child_id":1337,"first_entry_time":37108,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":1,"id":"583","highest_child_id":1338,"first_entry_time":37112,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"584","highest_child_id":1341,"first_entry_time":37124,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1341,"first_entry_time":37127,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1341,"first_entry_time":37130,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"585","count":1}]}]},{"inclusive_time":0,"id":"149","highest_child_id":1342,"first_entry_time":37133,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":1343,"first_entry_time":37141,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"332","highest_child_id":1344,"first_entry_time":37144,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"587","highest_child_id":1345,"first_entry_time":37153,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"27","count":2},{"id":"25","count":2}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"588","highest_child_id":1347,"first_entry_time":37165,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":1347,"first_entry_time":37167,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":5,"id":"361","highest_child_id":1348,"first_entry_time":37176,"exclusive_time":5,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":55,"id":"352","highest_child_id":1361,"first_entry_time":37185,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":52,"id":"353","highest_child_id":1361,"first_entry_time":37188,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1351,"first_entry_time":37189,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"317","highest_child_id":1358,"first_entry_time":37192,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":1353,"first_entry_time":37194,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1354,"first_entry_time":37196,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"320","highest_child_id":1355,"first_entry_time":37198,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1356,"first_entry_time":37200,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1357,"first_entry_time":37202,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1358,"first_entry_time":37206,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":13,"id":"589","highest_child_id":1361,"first_entry_time":37227,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1360,"first_entry_time":37236,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1361,"first_entry_time":37239,"exclusive_time":1,"entries":1}]}]}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":5,"id":"361","highest_child_id":1362,"first_entry_time":37244,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":43,"id":"352","highest_child_id":1375,"first_entry_time":37249,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":40,"id":"353","highest_child_id":1375,"first_entry_time":37252,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1365,"first_entry_time":37253,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"317","highest_child_id":1372,"first_entry_time":37255,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1367,"first_entry_time":37258,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1368,"first_entry_time":37259,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1369,"first_entry_time":37261,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1370,"first_entry_time":37262,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1371,"first_entry_time":37268,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1372,"first_entry_time":37272,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"591","highest_child_id":1375,"first_entry_time":37287,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1374,"first_entry_time":37289,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1375,"first_entry_time":37291,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"361","highest_child_id":1376,"first_entry_time":37295,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":36,"id":"352","highest_child_id":1389,"first_entry_time":37301,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":34,"id":"353","highest_child_id":1389,"first_entry_time":37303,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1379,"first_entry_time":37304,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"317","highest_child_id":1386,"first_entry_time":37306,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1381,"first_entry_time":37309,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1382,"first_entry_time":37310,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1383,"first_entry_time":37312,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1384,"first_entry_time":37313,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1385,"first_entry_time":37315,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1386,"first_entry_time":37318,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":5,"id":"592","highest_child_id":1389,"first_entry_time":37332,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1388,"first_entry_time":37334,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1389,"first_entry_time":37336,"exclusive_time":0,"entries":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"361","highest_child_id":1390,"first_entry_time":37340,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":18,"id":"317","highest_child_id":1397,"first_entry_time":37354,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1392,"first_entry_time":37357,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1393,"first_entry_time":37358,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1394,"first_entry_time":37360,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"321","highest_child_id":1395,"first_entry_time":37361,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1396,"first_entry_time":37366,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1397,"first_entry_time":37369,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":153,"id":"593","highest_child_id":1420,"first_entry_time":37656,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":6,"id":"316","highest_child_id":1399,"first_entry_time":37660,"exclusive_time":6,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":137,"id":"458","highest_child_id":1419,"first_entry_time":37669,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1401,"first_entry_time":37671,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"340","highest_child_id":1403,"first_entry_time":37677,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"341","highest_child_id":1403,"first_entry_time":37679,"exclusive_time":0,"entries":1}]},{"inclusive_time":10,"id":"348","highest_child_id":1406,"first_entry_time":37682,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1405,"first_entry_time":37685,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1406,"first_entry_time":37688,"exclusive_time":3,"entries":1}]},{"inclusive_time":93,"id":"594","highest_child_id":1416,"first_entry_time":37706,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":91,"id":"425","highest_child_id":1416,"first_entry_time":37708,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1409,"first_entry_time":37711,"exclusive_time":1,"entries":1},{"inclusive_time":31,"id":"426","highest_child_id":1410,"first_entry_time":37713,"exclusive_time":30,"entries":1,"allocations":[{"id":"574","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1411,"first_entry_time":37749,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"595","highest_child_id":1416,"first_entry_time":37784,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1413,"first_entry_time":37785,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":6,"id":"352","highest_child_id":1416,"first_entry_time":37793,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1416,"first_entry_time":37796,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1416,"first_entry_time":37797,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"352","highest_child_id":1419,"first_entry_time":37801,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1419,"first_entry_time":37804,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1419,"first_entry_time":37805,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1420,"first_entry_time":37808,"exclusive_time":1,"entries":1}]},{"inclusive_time":56,"id":"352","highest_child_id":1433,"first_entry_time":37815,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":53,"id":"353","highest_child_id":1433,"first_entry_time":37818,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1423,"first_entry_time":37819,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"317","highest_child_id":1430,"first_entry_time":37821,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1425,"first_entry_time":37823,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1426,"first_entry_time":37825,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1427,"first_entry_time":37826,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"321","highest_child_id":1428,"first_entry_time":37828,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1429,"first_entry_time":37833,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1430,"first_entry_time":37836,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":19,"id":"596","highest_child_id":1433,"first_entry_time":37851,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1,"id":"597","highest_child_id":1432,"first_entry_time":37861,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1433,"first_entry_time":37869,"exclusive_time":1,"entries":1}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"317","highest_child_id":1434,"first_entry_time":37873,"exclusive_time":0,"entries":1},{"inclusive_time":69,"id":"339","highest_child_id":1454,"first_entry_time":37877,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":6,"id":"340","highest_child_id":1438,"first_entry_time":37878,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1437,"first_entry_time":37880,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"341","highest_child_id":1438,"first_entry_time":37883,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"343","highest_child_id":1439,"first_entry_time":37886,"exclusive_time":1,"entries":1},{"inclusive_time":57,"id":"344","highest_child_id":1454,"first_entry_time":37889,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1441,"first_entry_time":37890,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"345","highest_child_id":1442,"first_entry_time":37896,"exclusive_time":2,"entries":2,"allocations":[{"id":"283","count":2}]},{"inclusive_time":1,"id":"346","highest_child_id":1443,"first_entry_time":37898,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"347","highest_child_id":1444,"first_entry_time":37901,"exclusive_time":2,"entries":1},{"inclusive_time":20,"id":"348","highest_child_id":1447,"first_entry_time":37905,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":9,"id":"349","highest_child_id":1446,"first_entry_time":37907,"exclusive_time":9,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"350","highest_child_id":1447,"first_entry_time":37920,"exclusive_time":4,"entries":1}]},{"inclusive_time":6,"id":"351","highest_child_id":1451,"first_entry_time":37928,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"414","highest_child_id":1449,"first_entry_time":37930,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"342","highest_child_id":1450,"first_entry_time":37932,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"415","highest_child_id":1451,"first_entry_time":37934,"exclusive_time":0,"entries":1}]},{"inclusive_time":8,"id":"352","highest_child_id":1454,"first_entry_time":37938,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"353","highest_child_id":1454,"first_entry_time":37940,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":4,"id":"299","highest_child_id":1454,"first_entry_time":37941,"exclusive_time":4,"entries":1}]}]}]}]},{"inclusive_time":78,"id":"598","highest_child_id":1477,"first_entry_time":38217,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1456,"first_entry_time":38224,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":59,"id":"458","highest_child_id":1476,"first_entry_time":38233,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1458,"first_entry_time":38234,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"340","highest_child_id":1460,"first_entry_time":38240,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"341","highest_child_id":1460,"first_entry_time":38242,"exclusive_time":0,"entries":1}]},{"inclusive_time":9,"id":"348","highest_child_id":1463,"first_entry_time":38245,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1462,"first_entry_time":38247,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1463,"first_entry_time":38251,"exclusive_time":3,"entries":1}]},{"inclusive_time":29,"id":"594","highest_child_id":1473,"first_entry_time":38256,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":27,"id":"425","highest_child_id":1473,"first_entry_time":38257,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1466,"first_entry_time":38259,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1467,"first_entry_time":38262,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1468,"first_entry_time":38265,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"595","highest_child_id":1473,"first_entry_time":38268,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1470,"first_entry_time":38269,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1473,"first_entry_time":38274,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1473,"first_entry_time":38277,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1473,"first_entry_time":38278,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":5,"id":"352","highest_child_id":1476,"first_entry_time":38287,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1476,"first_entry_time":38289,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1476,"first_entry_time":38290,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1477,"first_entry_time":38293,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":15,"id":"599","highest_child_id":1480,"first_entry_time":38339,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":4,"id":"297","highest_child_id":1479,"first_entry_time":38342,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"433","highest_child_id":1480,"first_entry_time":38347,"exclusive_time":1,"entries":1}],"allocations":[{"id":"18","count":2}]},{"inclusive_time":596,"id":"353","highest_child_id":1484,"first_entry_time":38355,"exclusive_time":590,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1482,"first_entry_time":38356,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1483,"first_entry_time":38359,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"600","highest_child_id":1484,"first_entry_time":38947,"exclusive_time":4,"entries":1,"allocations":[{"id":"2","count":1}]}]}],"allocations":[{"id":"10","count":4},{"id":"6","count":2}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"361","highest_child_id":1485,"first_entry_time":38955,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":226,"id":"352","highest_child_id":1509,"first_entry_time":38964,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":223,"id":"353","highest_child_id":1509,"first_entry_time":38967,"exclusive_time":148,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1488,"first_entry_time":38968,"exclusive_time":0,"entries":1},{"inclusive_time":22,"id":"317","highest_child_id":1495,"first_entry_time":38971,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"318","highest_child_id":1490,"first_entry_time":38973,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1491,"first_entry_time":38975,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1492,"first_entry_time":38977,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1493,"first_entry_time":38979,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1494,"first_entry_time":38985,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1495,"first_entry_time":38989,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":51,"id":"601","highest_child_id":1509,"first_entry_time":39138,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":18,"id":"365","highest_child_id":1501,"first_entry_time":39145,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1498,"first_entry_time":39149,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1499,"first_entry_time":39151,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"360","highest_child_id":1500,"first_entry_time":39154,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"367","highest_child_id":1501,"first_entry_time":39159,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":9,"id":"397","highest_child_id":1504,"first_entry_time":39164,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"331","highest_child_id":1504,"first_entry_time":39169,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":1504,"first_entry_time":39172,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":3,"id":"343","highest_child_id":1506,"first_entry_time":39175,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1506,"first_entry_time":39177,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1507,"first_entry_time":39180,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"375","highest_child_id":1508,"first_entry_time":39187,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1509,"first_entry_time":39189,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":3},{"id":"6","count":1},{"id":"25","count":2}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"361","highest_child_id":1510,"first_entry_time":39193,"exclusive_time":4,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":73,"id":"352","highest_child_id":1525,"first_entry_time":39199,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":70,"id":"353","highest_child_id":1525,"first_entry_time":39201,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1513,"first_entry_time":39203,"exclusive_time":0,"entries":1},{"inclusive_time":23,"id":"317","highest_child_id":1520,"first_entry_time":39205,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1515,"first_entry_time":39208,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1516,"first_entry_time":39209,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1517,"first_entry_time":39211,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1518,"first_entry_time":39212,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1519,"first_entry_time":39214,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1520,"first_entry_time":39222,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":12,"id":"602","highest_child_id":1525,"first_entry_time":39260,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":3,"id":"343","highest_child_id":1523,"first_entry_time":39263,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1523,"first_entry_time":39265,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1524,"first_entry_time":39267,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1525,"first_entry_time":39271,"exclusive_time":1,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"403","highest_child_id":1526,"first_entry_time":39303,"exclusive_time":1,"entries":1},{"inclusive_time":1085,"id":"352","highest_child_id":1610,"first_entry_time":39314,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1082,"id":"353","highest_child_id":1610,"first_entry_time":39317,"exclusive_time":344,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1529,"first_entry_time":39322,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"317","highest_child_id":1536,"first_entry_time":39324,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1531,"first_entry_time":39327,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1532,"first_entry_time":39328,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1533,"first_entry_time":39330,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1534,"first_entry_time":39331,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1535,"first_entry_time":39333,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1536,"first_entry_time":39336,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":719,"id":"603","highest_child_id":1610,"first_entry_time":39679,"exclusive_time":286,"entries":1,"callees":[{"inclusive_time":4,"id":"443","highest_child_id":1538,"first_entry_time":39687,"exclusive_time":4,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":3,"id":"343","highest_child_id":1540,"first_entry_time":39695,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1540,"first_entry_time":39698,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"604","highest_child_id":1541,"first_entry_time":39715,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"445","highest_child_id":1542,"first_entry_time":39718,"exclusive_time":0,"entries":1},{"inclusive_time":67,"id":"605","highest_child_id":1555,"first_entry_time":39745,"exclusive_time":30,"entries":1,"callees":[{"inclusive_time":23,"id":"447","highest_child_id":1549,"first_entry_time":39759,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":20,"id":"365","highest_child_id":1549,"first_entry_time":39762,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1546,"first_entry_time":39767,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1547,"first_entry_time":39769,"exclusive_time":0,"entries":1},{"inclusive_time":4,"id":"360","highest_child_id":1548,"first_entry_time":39772,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"367","highest_child_id":1549,"first_entry_time":39778,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":12,"id":"365","highest_child_id":1554,"first_entry_time":39784,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1551,"first_entry_time":39786,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1552,"first_entry_time":39788,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1553,"first_entry_time":39790,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"367","highest_child_id":1554,"first_entry_time":39794,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":2,"id":"606","highest_child_id":1555,"first_entry_time":39809,"exclusive_time":2,"entries":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1556,"first_entry_time":39814,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"441","highest_child_id":1558,"first_entry_time":39818,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"442","highest_child_id":1558,"first_entry_time":39824,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1}]},{"inclusive_time":54,"id":"607","highest_child_id":1571,"first_entry_time":39906,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":32,"id":"608","highest_child_id":1571,"first_entry_time":39927,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":1561,"first_entry_time":39930,"exclusive_time":1,"entries":1},{"inclusive_time":24,"id":"387","highest_child_id":1571,"first_entry_time":39934,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":17,"id":"388","highest_child_id":1569,"first_entry_time":39937,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":6,"id":"389","highest_child_id":1566,"first_entry_time":39941,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":1565,"first_entry_time":39943,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"391","highest_child_id":1566,"first_entry_time":39953,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":1568,"first_entry_time":39946,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"390","highest_child_id":1568,"first_entry_time":39947,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"393","highest_child_id":1569,"first_entry_time":39949,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"27","count":1},{"id":"28","count":1}]},{"inclusive_time":2,"id":"389","highest_child_id":1571,"first_entry_time":39956,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"391","highest_child_id":1571,"first_entry_time":39957,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"27","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"609","highest_child_id":1572,"first_entry_time":39973,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"414","highest_child_id":1573,"first_entry_time":39978,"exclusive_time":1,"entries":1},{"inclusive_time":283,"id":"610","highest_child_id":1607,"first_entry_time":40106,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1575,"first_entry_time":40110,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"611","highest_child_id":1580,"first_entry_time":40124,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":10,"id":"105","highest_child_id":1580,"first_entry_time":40126,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":1578,"first_entry_time":40128,"exclusive_time":1,"entries":1,"allocations":[{"id":"612","count":1}]},{"inclusive_time":5,"id":"94","highest_child_id":1580,"first_entry_time":40131,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":1580,"first_entry_time":40133,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":191,"id":"613","highest_child_id":1595,"first_entry_time":40146,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":188,"id":"291","highest_child_id":1595,"first_entry_time":40149,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":2,"id":"292","highest_child_id":1583,"first_entry_time":40154,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":2},{"id":"293","count":1}]},{"inclusive_time":16,"id":"294","highest_child_id":1585,"first_entry_time":40158,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":9,"id":"297","highest_child_id":1585,"first_entry_time":40165,"exclusive_time":8,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]}],"allocations":[{"id":"6","count":2},{"id":"614","count":1},{"id":"296","count":1},{"id":"283","count":1}]},{"inclusive_time":128,"id":"615","highest_child_id":1594,"first_entry_time":40205,"exclusive_time":70,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1587,"first_entry_time":40208,"exclusive_time":4,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]},{"inclusive_time":52,"id":"616","highest_child_id":1593,"first_entry_time":40279,"exclusive_time":32,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1589,"first_entry_time":40288,"exclusive_time":4,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]},{"inclusive_time":13,"id":"617","highest_child_id":1592,"first_entry_time":40315,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1591,"first_entry_time":40317,"exclusive_time":4,"entries":1,"allocations":[{"id":"614","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"337","highest_child_id":1592,"first_entry_time":40326,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"337","highest_child_id":1593,"first_entry_time":40330,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":1,"id":"337","highest_child_id":1594,"first_entry_time":40332,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"317","highest_child_id":1595,"first_entry_time":40335,"exclusive_time":2,"entries":1}],"allocations":[{"id":"6","count":1}]}]},{"inclusive_time":1,"id":"343","highest_child_id":1596,"first_entry_time":40339,"exclusive_time":0,"entries":1},{"inclusive_time":45,"id":"454","highest_child_id":1607,"first_entry_time":40343,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1598,"first_entry_time":40345,"exclusive_time":0,"entries":1},{"inclusive_time":41,"id":"455","highest_child_id":1607,"first_entry_time":40347,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":1600,"first_entry_time":40349,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"367","highest_child_id":1601,"first_entry_time":40357,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":25,"id":"447","highest_child_id":1607,"first_entry_time":40361,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1603,"first_entry_time":40364,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1604,"first_entry_time":40365,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1605,"first_entry_time":40374,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1606,"first_entry_time":40378,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"586","highest_child_id":1607,"first_entry_time":40382,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":3}]}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":3},{"id":"56","count":2}]},{"inclusive_time":1,"id":"393","highest_child_id":1608,"first_entry_time":40390,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"332","highest_child_id":1609,"first_entry_time":40395,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1610,"first_entry_time":40397,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1},{"id":"10","count":1},{"id":"56","count":1},{"id":"27","count":2}]}]}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":5},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":5,"id":"361","highest_child_id":1611,"first_entry_time":40402,"exclusive_time":5,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":20,"id":"317","highest_child_id":1618,"first_entry_time":40414,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1613,"first_entry_time":40416,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1614,"first_entry_time":40418,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1615,"first_entry_time":40420,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":1616,"first_entry_time":40421,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1617,"first_entry_time":40426,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1618,"first_entry_time":40430,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":71,"id":"593","highest_child_id":1641,"first_entry_time":40439,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1620,"first_entry_time":40441,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":58,"id":"458","highest_child_id":1640,"first_entry_time":40448,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":8,"id":"316","highest_child_id":1622,"first_entry_time":40449,"exclusive_time":7,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":3,"id":"340","highest_child_id":1624,"first_entry_time":40460,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1624,"first_entry_time":40462,"exclusive_time":0,"entries":1}]},{"inclusive_time":9,"id":"348","highest_child_id":1627,"first_entry_time":40465,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1626,"first_entry_time":40467,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1627,"first_entry_time":40470,"exclusive_time":3,"entries":1}]},{"inclusive_time":25,"id":"594","highest_child_id":1637,"first_entry_time":40475,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":23,"id":"425","highest_child_id":1637,"first_entry_time":40477,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1630,"first_entry_time":40479,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1631,"first_entry_time":40481,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1632,"first_entry_time":40485,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"595","highest_child_id":1637,"first_entry_time":40487,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1634,"first_entry_time":40488,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1637,"first_entry_time":40494,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1637,"first_entry_time":40496,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1637,"first_entry_time":40498,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"352","highest_child_id":1640,"first_entry_time":40502,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1640,"first_entry_time":40504,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1640,"first_entry_time":40505,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1641,"first_entry_time":40508,"exclusive_time":1,"entries":1}]},{"inclusive_time":33,"id":"352","highest_child_id":1654,"first_entry_time":40515,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":26,"id":"353","highest_child_id":1654,"first_entry_time":40521,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1644,"first_entry_time":40522,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"317","highest_child_id":1651,"first_entry_time":40524,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1646,"first_entry_time":40527,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1647,"first_entry_time":40528,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1648,"first_entry_time":40530,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"321","highest_child_id":1649,"first_entry_time":40532,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":2}]},{"inclusive_time":0,"id":"322","highest_child_id":1650,"first_entry_time":40536,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1651,"first_entry_time":40539,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"596","highest_child_id":1654,"first_entry_time":40543,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"597","highest_child_id":1653,"first_entry_time":40545,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"587","highest_child_id":1654,"first_entry_time":40547,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":0,"id":"317","highest_child_id":1655,"first_entry_time":40549,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"339","highest_child_id":1659,"first_entry_time":40553,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"340","highest_child_id":1658,"first_entry_time":40554,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1658,"first_entry_time":40556,"exclusive_time":0,"entries":2}]},{"inclusive_time":1,"id":"343","highest_child_id":1659,"first_entry_time":40559,"exclusive_time":1,"entries":1}]},{"inclusive_time":83,"id":"598","highest_child_id":1682,"first_entry_time":40562,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1661,"first_entry_time":40566,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":70,"id":"458","highest_child_id":1681,"first_entry_time":40572,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"316","highest_child_id":1663,"first_entry_time":40573,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":2,"id":"340","highest_child_id":1665,"first_entry_time":40578,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"341","highest_child_id":1665,"first_entry_time":40580,"exclusive_time":0,"entries":1}]},{"inclusive_time":27,"id":"348","highest_child_id":1668,"first_entry_time":40583,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":2,"id":"349","highest_child_id":1667,"first_entry_time":40601,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"350","highest_child_id":1668,"first_entry_time":40606,"exclusive_time":3,"entries":1}]},{"inclusive_time":25,"id":"594","highest_child_id":1678,"first_entry_time":40611,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":23,"id":"425","highest_child_id":1678,"first_entry_time":40613,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1671,"first_entry_time":40615,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1672,"first_entry_time":40617,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1673,"first_entry_time":40621,"exclusive_time":0,"entries":1},{"inclusive_time":12,"id":"595","highest_child_id":1678,"first_entry_time":40623,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"316","highest_child_id":1675,"first_entry_time":40624,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1678,"first_entry_time":40630,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1678,"first_entry_time":40633,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1678,"first_entry_time":40634,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"352","highest_child_id":1681,"first_entry_time":40638,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1681,"first_entry_time":40640,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1681,"first_entry_time":40641,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":1,"id":"337","highest_child_id":1682,"first_entry_time":40644,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2}]},{"inclusive_time":13,"id":"599","highest_child_id":1685,"first_entry_time":40648,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":3,"id":"297","highest_child_id":1684,"first_entry_time":40650,"exclusive_time":3,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":1,"id":"433","highest_child_id":1685,"first_entry_time":40654,"exclusive_time":1,"entries":1}],"allocations":[{"id":"18","count":2}]},{"inclusive_time":18,"id":"353","highest_child_id":1689,"first_entry_time":40662,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1687,"first_entry_time":40663,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1688,"first_entry_time":40665,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"600","highest_child_id":1689,"first_entry_time":40667,"exclusive_time":13,"entries":1,"allocations":[{"id":"2","count":1}]}]}],"allocations":[{"id":"10","count":4},{"id":"6","count":2}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":6,"id":"361","highest_child_id":1690,"first_entry_time":40684,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":3,"id":"346","highest_child_id":1691,"first_entry_time":40691,"exclusive_time":3,"entries":3},{"inclusive_time":3,"id":"340","highest_child_id":1693,"first_entry_time":40710,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"341","highest_child_id":1693,"first_entry_time":40711,"exclusive_time":0,"entries":1}]},{"inclusive_time":13,"id":"339","highest_child_id":1697,"first_entry_time":40717,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":6,"id":"340","highest_child_id":1696,"first_entry_time":40718,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"342","highest_child_id":1696,"first_entry_time":40719,"exclusive_time":1,"entries":4}]},{"inclusive_time":2,"id":"343","highest_child_id":1697,"first_entry_time":40723,"exclusive_time":1,"entries":2}]},{"inclusive_time":12,"id":"618","highest_child_id":1702,"first_entry_time":40736,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":10,"id":"425","highest_child_id":1702,"first_entry_time":40738,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1700,"first_entry_time":40740,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"426","highest_child_id":1701,"first_entry_time":40743,"exclusive_time":2,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":1,"id":"427","highest_child_id":1702,"first_entry_time":40747,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":11,"id":"619","highest_child_id":1707,"first_entry_time":40767,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"425","highest_child_id":1707,"first_entry_time":40768,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"349","highest_child_id":1705,"first_entry_time":40770,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"426","highest_child_id":1706,"first_entry_time":40773,"exclusive_time":1,"entries":1,"allocations":[{"id":"26","count":1}]},{"inclusive_time":0,"id":"427","highest_child_id":1707,"first_entry_time":40776,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":199,"id":"352","highest_child_id":1725,"first_entry_time":40781,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":196,"id":"353","highest_child_id":1725,"first_entry_time":40784,"exclusive_time":89,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1710,"first_entry_time":40785,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"317","highest_child_id":1717,"first_entry_time":40787,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1712,"first_entry_time":40789,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1713,"first_entry_time":40791,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1714,"first_entry_time":40792,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1715,"first_entry_time":40794,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1716,"first_entry_time":40796,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"317","highest_child_id":1717,"first_entry_time":40799,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":90,"id":"620","highest_child_id":1725,"first_entry_time":40889,"exclusive_time":76,"entries":1,"callees":[{"inclusive_time":3,"id":"343","highest_child_id":1720,"first_entry_time":40893,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1720,"first_entry_time":40895,"exclusive_time":0,"entries":1}]},{"inclusive_time":6,"id":"621","highest_child_id":1722,"first_entry_time":40962,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1722,"first_entry_time":40966,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"335","highest_child_id":1723,"first_entry_time":40971,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"301","highest_child_id":1724,"first_entry_time":40975,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"587","highest_child_id":1725,"first_entry_time":40978,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":1}]}]}]},{"inclusive_time":2,"id":"337","highest_child_id":1726,"first_entry_time":41183,"exclusive_time":2,"entries":1}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":4,"id":"361","highest_child_id":1727,"first_entry_time":40981,"exclusive_time":4,"entries":1},{"inclusive_time":17,"id":"622","highest_child_id":1732,"first_entry_time":41053,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1729,"first_entry_time":41056,"exclusive_time":4,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":5,"id":"352","highest_child_id":1732,"first_entry_time":41065,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"353","highest_child_id":1732,"first_entry_time":41067,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1732,"first_entry_time":41069,"exclusive_time":0,"entries":1}]}]}],"allocations":[{"id":"2","count":1}]},{"inclusive_time":2,"id":"588","highest_child_id":1734,"first_entry_time":41206,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"406","highest_child_id":1734,"first_entry_time":41207,"exclusive_time":0,"entries":1}]},{"inclusive_time":301,"id":"352","highest_child_id":1770,"first_entry_time":41246,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":299,"id":"353","highest_child_id":1770,"first_entry_time":41248,"exclusive_time":115,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1737,"first_entry_time":41249,"exclusive_time":0,"entries":1},{"inclusive_time":32,"id":"317","highest_child_id":1744,"first_entry_time":41251,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1739,"first_entry_time":41253,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1740,"first_entry_time":41255,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1741,"first_entry_time":41256,"exclusive_time":0,"entries":1},{"inclusive_time":15,"id":"321","highest_child_id":1742,"first_entry_time":41257,"exclusive_time":15,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"322","highest_child_id":1743,"first_entry_time":41275,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1744,"first_entry_time":41280,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":151,"id":"623","highest_child_id":1770,"first_entry_time":41396,"exclusive_time":70,"entries":1,"callees":[{"inclusive_time":9,"id":"329","highest_child_id":1748,"first_entry_time":41398,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"331","highest_child_id":1748,"first_entry_time":41402,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":1748,"first_entry_time":41405,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"330","count":1}]},{"inclusive_time":1,"id":"590","highest_child_id":1749,"first_entry_time":41410,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"386","highest_child_id":1750,"first_entry_time":41413,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"394","highest_child_id":1751,"first_entry_time":41418,"exclusive_time":1,"entries":4},{"inclusive_time":44,"id":"624","highest_child_id":1758,"first_entry_time":41447,"exclusive_time":29,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":1753,"first_entry_time":41449,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"625","highest_child_id":1755,"first_entry_time":41468,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":1755,"first_entry_time":41470,"exclusive_time":1,"entries":1}]},{"inclusive_time":9,"id":"626","highest_child_id":1758,"first_entry_time":41482,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"397","highest_child_id":1757,"first_entry_time":41484,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":2,"id":"584","highest_child_id":1758,"first_entry_time":41489,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"585","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"583","highest_child_id":1759,"first_entry_time":41492,"exclusive_time":1,"entries":3},{"inclusive_time":8,"id":"627","highest_child_id":1762,"first_entry_time":41504,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1762,"first_entry_time":41508,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1762,"first_entry_time":41510,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"628","count":1}]},{"inclusive_time":1,"id":"332","highest_child_id":1763,"first_entry_time":41514,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"375","highest_child_id":1764,"first_entry_time":41516,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"393","highest_child_id":1765,"first_entry_time":41518,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"392","highest_child_id":1767,"first_entry_time":41520,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":1767,"first_entry_time":41521,"exclusive_time":1,"entries":1}]},{"inclusive_time":5,"id":"629","highest_child_id":1769,"first_entry_time":41537,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"391","highest_child_id":1769,"first_entry_time":41539,"exclusive_time":2,"entries":1,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":1,"id":"587","highest_child_id":1770,"first_entry_time":41545,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":4}]}]}]}]},{"inclusive_time":2,"id":"588","highest_child_id":1772,"first_entry_time":41549,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"406","highest_child_id":1772,"first_entry_time":41550,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1}]},{"inclusive_time":82,"id":"630","highest_child_id":1781,"first_entry_time":41592,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":5,"id":"316","highest_child_id":1774,"first_entry_time":41595,"exclusive_time":5,"entries":1,"allocations":[{"id":"295","count":1},{"id":"26","count":1}]},{"inclusive_time":72,"id":"352","highest_child_id":1781,"first_entry_time":41602,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":69,"id":"353","highest_child_id":1781,"first_entry_time":41605,"exclusive_time":58,"entries":1,"callees":[{"inclusive_time":0,"id":"299","highest_child_id":1777,"first_entry_time":41606,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"317","highest_child_id":1780,"first_entry_time":41608,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1779,"first_entry_time":41611,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1780,"first_entry_time":41613,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"631","highest_child_id":1781,"first_entry_time":41670,"exclusive_time":3,"entries":1}]}]}]},{"inclusive_time":15,"id":"632","highest_child_id":1783,"first_entry_time":41766,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"633","highest_child_id":1783,"first_entry_time":41776,"exclusive_time":1,"entries":2,"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":3},{"id":"170","count":1}]},{"inclusive_time":2,"id":"634","highest_child_id":1784,"first_entry_time":41817,"exclusive_time":1,"entries":1},{"inclusive_time":404,"id":"635","highest_child_id":1845,"first_entry_time":41876,"exclusive_time":61,"entries":1,"callees":[{"inclusive_time":136,"id":"577","highest_child_id":1817,"first_entry_time":41879,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1787,"first_entry_time":41883,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"578","highest_child_id":1788,"first_entry_time":41885,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"447","highest_child_id":1794,"first_entry_time":41889,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":15,"id":"365","highest_child_id":1794,"first_entry_time":41891,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1791,"first_entry_time":41894,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1792,"first_entry_time":41896,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"360","highest_child_id":1793,"first_entry_time":41898,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1794,"first_entry_time":41903,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":74,"id":"636","highest_child_id":1811,"first_entry_time":41925,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":1796,"first_entry_time":41928,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":21,"id":"9","highest_child_id":1798,"first_entry_time":41934,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"20","highest_child_id":1798,"first_entry_time":41953,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":3},{"id":"6","count":2}]},{"inclusive_time":30,"id":"637","highest_child_id":1811,"first_entry_time":41968,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":1800,"first_entry_time":41973,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":1801,"first_entry_time":41977,"exclusive_time":0,"entries":2},{"inclusive_time":17,"id":"72","highest_child_id":1811,"first_entry_time":41979,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":1803,"first_entry_time":41981,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":1804,"first_entry_time":41983,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":1805,"first_entry_time":41985,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":1807,"first_entry_time":41986,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":1807,"first_entry_time":41987,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":1809,"first_entry_time":41990,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":1809,"first_entry_time":41991,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":1810,"first_entry_time":41993,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":1811,"first_entry_time":41994,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"638","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":5,"id":"378","highest_child_id":1814,"first_entry_time":42000,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":3,"id":"379","highest_child_id":1814,"first_entry_time":42001,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"380","highest_child_id":1814,"first_entry_time":42003,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":8,"id":"581","highest_child_id":1817,"first_entry_time":42006,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1817,"first_entry_time":42010,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1817,"first_entry_time":42013,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"582","count":1}]}],"allocations":[{"id":"27","count":2},{"id":"10","count":1},{"id":"6","count":1}]},{"inclusive_time":1,"id":"639","highest_child_id":1818,"first_entry_time":42027,"exclusive_time":1,"entries":1},{"inclusive_time":32,"id":"371","highest_child_id":1824,"first_entry_time":42030,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":1820,"first_entry_time":42031,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":1}]},{"inclusive_time":22,"id":"372","highest_child_id":1823,"first_entry_time":42035,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":5,"id":"331","highest_child_id":1823,"first_entry_time":42051,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"374","highest_child_id":1823,"first_entry_time":42055,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":1,"id":"375","highest_child_id":1824,"first_entry_time":42058,"exclusive_time":1,"entries":1}]},{"inclusive_time":161,"id":"640","highest_child_id":1843,"first_entry_time":42083,"exclusive_time":58,"entries":2,"callees":[{"inclusive_time":7,"id":"641","highest_child_id":1826,"first_entry_time":42095,"exclusive_time":6,"entries":2,"allocations":[{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":60,"id":"642","highest_child_id":1836,"first_entry_time":42129,"exclusive_time":26,"entries":2,"callees":[{"inclusive_time":27,"id":"643","highest_child_id":1833,"first_entry_time":42150,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":4,"id":"96","highest_child_id":1829,"first_entry_time":42156,"exclusive_time":4,"entries":2},{"inclusive_time":10,"id":"97","highest_child_id":1833,"first_entry_time":42160,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"99","highest_child_id":1831,"first_entry_time":42161,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"100","highest_child_id":1832,"first_entry_time":42163,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"47","highest_child_id":1833,"first_entry_time":42165,"exclusive_time":1,"entries":2}],"allocations":[{"id":"6","count":2},{"id":"98","count":2}]}],"allocations":[{"id":"644","count":2},{"id":"645","count":1},{"id":"646","count":1}]},{"inclusive_time":7,"id":"378","highest_child_id":1836,"first_entry_time":42168,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":4,"id":"379","highest_child_id":1836,"first_entry_time":42169,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1836,"first_entry_time":42170,"exclusive_time":0,"entries":2}]}]}],"allocations":[{"id":"6","count":4},{"id":"27","count":2}]},{"inclusive_time":2,"id":"647","highest_child_id":1837,"first_entry_time":42182,"exclusive_time":1,"entries":2},{"inclusive_time":33,"id":"371","highest_child_id":1843,"first_entry_time":42186,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":8,"id":"360","highest_child_id":1839,"first_entry_time":42188,"exclusive_time":7,"entries":4,"allocations":[{"id":"6","count":2}]},{"inclusive_time":14,"id":"372","highest_child_id":1842,"first_entry_time":42191,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":7,"id":"331","highest_child_id":1842,"first_entry_time":42196,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":2,"id":"374","highest_child_id":1842,"first_entry_time":42198,"exclusive_time":1,"entries":2}],"allocations":[{"id":"170","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"10","count":2},{"id":"6","count":2},{"id":"373","count":2}]},{"inclusive_time":2,"id":"375","highest_child_id":1843,"first_entry_time":42201,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":11,"id":"648","highest_child_id":1845,"first_entry_time":42268,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"649","highest_child_id":1845,"first_entry_time":42277,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":1564,"id":"352","highest_child_id":1986,"first_entry_time":42281,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1561,"id":"353","highest_child_id":1986,"first_entry_time":42285,"exclusive_time":372,"entries":1,"callees":[{"inclusive_time":1,"id":"299","highest_child_id":1848,"first_entry_time":42286,"exclusive_time":1,"entries":1},{"inclusive_time":19,"id":"317","highest_child_id":1855,"first_entry_time":42289,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"318","highest_child_id":1850,"first_entry_time":42292,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"319","highest_child_id":1851,"first_entry_time":42294,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"320","highest_child_id":1852,"first_entry_time":42296,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"321","highest_child_id":1853,"first_entry_time":42297,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"322","highest_child_id":1854,"first_entry_time":42299,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"317","highest_child_id":1855,"first_entry_time":42303,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1168,"id":"650","highest_child_id":1986,"first_entry_time":42677,"exclusive_time":439,"entries":1,"callees":[{"inclusive_time":119,"id":"651","highest_child_id":1882,"first_entry_time":42726,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":24,"id":"365","highest_child_id":1862,"first_entry_time":42728,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1859,"first_entry_time":42732,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"366","highest_child_id":1860,"first_entry_time":42734,"exclusive_time":0,"entries":2},{"inclusive_time":3,"id":"360","highest_child_id":1861,"first_entry_time":42738,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":4,"id":"367","highest_child_id":1862,"first_entry_time":42741,"exclusive_time":3,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":4,"id":"378","highest_child_id":1865,"first_entry_time":42747,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"379","highest_child_id":1865,"first_entry_time":42748,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1865,"first_entry_time":42749,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":63,"id":"577","highest_child_id":1880,"first_entry_time":42763,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1867,"first_entry_time":42766,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"578","highest_child_id":1868,"first_entry_time":42768,"exclusive_time":0,"entries":1},{"inclusive_time":13,"id":"579","highest_child_id":1869,"first_entry_time":42770,"exclusive_time":13,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]},{"inclusive_time":4,"id":"580","highest_child_id":1870,"first_entry_time":42789,"exclusive_time":4,"entries":1,"allocations":[{"id":"27","count":1},{"id":"283","count":1},{"id":"25","count":1}]},{"inclusive_time":16,"id":"447","highest_child_id":1876,"first_entry_time":42798,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"365","highest_child_id":1876,"first_entry_time":42800,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1873,"first_entry_time":42803,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1874,"first_entry_time":42805,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1875,"first_entry_time":42807,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1876,"first_entry_time":42811,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":0,"id":"378","highest_child_id":1877,"first_entry_time":42816,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"581","highest_child_id":1880,"first_entry_time":42818,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":1880,"first_entry_time":42821,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"583","highest_child_id":1880,"first_entry_time":42824,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"582","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"10","count":1},{"id":"6","count":1},{"id":"25","count":1},{"id":"56","count":4}]},{"inclusive_time":4,"id":"653","highest_child_id":1882,"first_entry_time":42840,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":1882,"first_entry_time":42842,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"652","count":1}]},{"inclusive_time":23,"id":"654","highest_child_id":1888,"first_entry_time":42858,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":19,"id":"365","highest_child_id":1888,"first_entry_time":42860,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1885,"first_entry_time":42864,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"366","highest_child_id":1886,"first_entry_time":42865,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"360","highest_child_id":1887,"first_entry_time":42867,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1888,"first_entry_time":42870,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]}]},{"inclusive_time":255,"id":"655","highest_child_id":1921,"first_entry_time":42970,"exclusive_time":160,"entries":1,"callees":[{"inclusive_time":2,"id":"329","highest_child_id":1890,"first_entry_time":42975,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"330","count":2}]},{"inclusive_time":2,"id":"326","highest_child_id":1891,"first_entry_time":42980,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"656","highest_child_id":1893,"first_entry_time":42989,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"113","highest_child_id":1893,"first_entry_time":42991,"exclusive_time":0,"entries":1}]},{"inclusive_time":19,"id":"365","highest_child_id":1898,"first_entry_time":42993,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1895,"first_entry_time":42997,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"366","highest_child_id":1896,"first_entry_time":42999,"exclusive_time":0,"entries":2},{"inclusive_time":2,"id":"360","highest_child_id":1897,"first_entry_time":43001,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":3,"id":"367","highest_child_id":1898,"first_entry_time":43004,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":1,"id":"335","highest_child_id":1899,"first_entry_time":43015,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"657","highest_child_id":1900,"first_entry_time":43027,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"658","highest_child_id":1901,"first_entry_time":43040,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"659","highest_child_id":1902,"first_entry_time":43052,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"660","highest_child_id":1903,"first_entry_time":43064,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"661","highest_child_id":1904,"first_entry_time":43079,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"662","highest_child_id":1909,"first_entry_time":43096,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":1,"id":"663","highest_child_id":1906,"first_entry_time":43107,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"664","highest_child_id":1907,"first_entry_time":43116,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"149","highest_child_id":1908,"first_entry_time":43119,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"380","highest_child_id":1909,"first_entry_time":43120,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"665","highest_child_id":1910,"first_entry_time":43130,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"314","highest_child_id":1911,"first_entry_time":43133,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"666","highest_child_id":1912,"first_entry_time":43143,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"667","highest_child_id":1913,"first_entry_time":43156,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"668","count":1}]},{"inclusive_time":14,"id":"669","highest_child_id":1917,"first_entry_time":43174,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"581","highest_child_id":1915,"first_entry_time":43177,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2},{"id":"582","count":2}]},{"inclusive_time":3,"id":"372","highest_child_id":1916,"first_entry_time":43182,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":2,"id":"397","highest_child_id":1917,"first_entry_time":43186,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"375","highest_child_id":1918,"first_entry_time":43189,"exclusive_time":1,"entries":1},{"inclusive_time":12,"id":"670","highest_child_id":1921,"first_entry_time":43212,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"671","highest_child_id":1920,"first_entry_time":43221,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"149","highest_child_id":1921,"first_entry_time":43224,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"2","count":4},{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":16,"id":"672","highest_child_id":1927,"first_entry_time":43280,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":12,"id":"365","highest_child_id":1927,"first_entry_time":43282,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1924,"first_entry_time":43286,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1925,"first_entry_time":43288,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"360","highest_child_id":1926,"first_entry_time":43290,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"367","highest_child_id":1927,"first_entry_time":43293,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":13,"id":"673","highest_child_id":1930,"first_entry_time":43318,"exclusive_time":11,"entries":1,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1929,"first_entry_time":43321,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"674","highest_child_id":1930,"first_entry_time":43329,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":11,"id":"675","highest_child_id":1933,"first_entry_time":43347,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1932,"first_entry_time":43348,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"676","highest_child_id":1933,"first_entry_time":43357,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":9,"id":"677","highest_child_id":1936,"first_entry_time":43398,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1935,"first_entry_time":43400,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"466","highest_child_id":1936,"first_entry_time":43405,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"329","highest_child_id":1937,"first_entry_time":43408,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"330","count":1}]},{"inclusive_time":2,"id":"678","highest_child_id":1938,"first_entry_time":43421,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"395","highest_child_id":1939,"first_entry_time":43431,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":2,"id":"581","highest_child_id":1940,"first_entry_time":43435,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2},{"id":"582","count":2}]},{"inclusive_time":6,"id":"397","highest_child_id":1941,"first_entry_time":43437,"exclusive_time":6,"entries":4,"allocations":[{"id":"10","count":4},{"id":"6","count":4},{"id":"398","count":4}]},{"inclusive_time":4,"id":"670","highest_child_id":1944,"first_entry_time":43441,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"671","highest_child_id":1943,"first_entry_time":43443,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"149","highest_child_id":1944,"first_entry_time":43445,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"332","highest_child_id":1945,"first_entry_time":43447,"exclusive_time":1,"entries":1},{"inclusive_time":24,"id":"372","highest_child_id":1948,"first_entry_time":43450,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":15,"id":"331","highest_child_id":1948,"first_entry_time":43458,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":2,"id":"679","highest_child_id":1948,"first_entry_time":43471,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"27","count":1},{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":2,"id":"680","highest_child_id":1949,"first_entry_time":43483,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"661","highest_child_id":1950,"first_entry_time":43487,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":1,"id":"314","highest_child_id":1951,"first_entry_time":43493,"exclusive_time":0,"entries":2},{"inclusive_time":31,"id":"681","highest_child_id":1956,"first_entry_time":43526,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":8,"id":"372","highest_child_id":1953,"first_entry_time":43528,"exclusive_time":7,"entries":5,"allocations":[{"id":"27","count":5},{"id":"10","count":5},{"id":"6","count":5},{"id":"373","count":5}]},{"inclusive_time":8,"id":"397","highest_child_id":1954,"first_entry_time":43535,"exclusive_time":7,"entries":6,"allocations":[{"id":"10","count":6},{"id":"6","count":6},{"id":"398","count":6}]},{"inclusive_time":1,"id":"395","highest_child_id":1955,"first_entry_time":43544,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":1,"id":"329","highest_child_id":1956,"first_entry_time":43555,"exclusive_time":1,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"330","count":1}]}]},{"inclusive_time":2,"id":"375","highest_child_id":1957,"first_entry_time":43558,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"682","highest_child_id":1958,"first_entry_time":43576,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"683","highest_child_id":1960,"first_entry_time":43588,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"380","highest_child_id":1960,"first_entry_time":43591,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"684","highest_child_id":1962,"first_entry_time":43600,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"664","highest_child_id":1962,"first_entry_time":43602,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"685","highest_child_id":1963,"first_entry_time":43612,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"686","highest_child_id":1965,"first_entry_time":43621,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"671","highest_child_id":1965,"first_entry_time":43624,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"666","highest_child_id":1966,"first_entry_time":43626,"exclusive_time":0,"entries":1},{"inclusive_time":19,"id":"447","highest_child_id":1972,"first_entry_time":43629,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":1968,"first_entry_time":43632,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"366","highest_child_id":1969,"first_entry_time":43634,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"360","highest_child_id":1970,"first_entry_time":43637,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":2,"id":"367","highest_child_id":1971,"first_entry_time":43641,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"586","highest_child_id":1972,"first_entry_time":43645,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"667","highest_child_id":1973,"first_entry_time":43654,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"668","count":1}]},{"inclusive_time":152,"id":"687","highest_child_id":1984,"first_entry_time":43668,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":135,"id":"331","highest_child_id":1984,"first_entry_time":43685,"exclusive_time":116,"entries":1,"callees":[{"inclusive_time":2,"id":"689","highest_child_id":1976,"first_entry_time":43698,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"690","highest_child_id":1977,"first_entry_time":43715,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"691","highest_child_id":1978,"first_entry_time":43727,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"692","highest_child_id":1979,"first_entry_time":43738,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"693","highest_child_id":1980,"first_entry_time":43748,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"694","highest_child_id":1981,"first_entry_time":43763,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"695","highest_child_id":1982,"first_entry_time":43780,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"696","highest_child_id":1983,"first_entry_time":43803,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"697","highest_child_id":1984,"first_entry_time":43818,"exclusive_time":2,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"688","count":1}]},{"inclusive_time":5,"id":"698","highest_child_id":1985,"first_entry_time":43832,"exclusive_time":5,"entries":4,"allocations":[{"id":"6","count":1}]},{"inclusive_time":1,"id":"587","highest_child_id":1986,"first_entry_time":43844,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":2},{"id":"27","count":5}]}]}]}],"allocations":[{"id":"6","count":6},{"id":"10","count":7},{"id":"27","count":7},{"id":"28","count":1}]},{"inclusive_time":19,"id":"699","highest_child_id":1990,"first_entry_time":43857,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":1,"id":"326","highest_child_id":1988,"first_entry_time":43859,"exclusive_time":0,"entries":2},{"inclusive_time":5,"id":"700","highest_child_id":1990,"first_entry_time":43870,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"113","highest_child_id":1990,"first_entry_time":43872,"exclusive_time":0,"entries":4}]}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":2},{"id":"56","count":2}]},{"inclusive_time":1,"id":"317","highest_child_id":1991,"first_entry_time":43878,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1},{"id":"6","count":1}]},{"inclusive_time":3,"id":"343","highest_child_id":1993,"first_entry_time":43881,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":0,"id":"440","highest_child_id":1993,"first_entry_time":43883,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"701","highest_child_id":1994,"first_entry_time":43907,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":5,"id":"702","highest_child_id":1996,"first_entry_time":43931,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"590","highest_child_id":1996,"first_entry_time":43934,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":4563,"id":"703","highest_child_id":2274,"first_entry_time":43957,"exclusive_time":68,"entries":1,"callees":[{"inclusive_time":19,"id":"104","highest_child_id":2002,"first_entry_time":43962,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":17,"id":"105","highest_child_id":2002,"first_entry_time":43964,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2000,"first_entry_time":43965,"exclusive_time":0,"entries":1,"allocations":[{"id":"704","count":1}]},{"inclusive_time":13,"id":"94","highest_child_id":2002,"first_entry_time":43967,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":2002,"first_entry_time":43969,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":2},{"id":"10","count":1}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":4435,"id":"705","highest_child_id":2268,"first_entry_time":44029,"exclusive_time":201,"entries":1,"callees":[{"inclusive_time":213,"id":"706","highest_child_id":2013,"first_entry_time":44041,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":170,"id":"708","highest_child_id":2013,"first_entry_time":44084,"exclusive_time":81,"entries":1,"callees":[{"inclusive_time":2,"id":"386","highest_child_id":2006,"first_entry_time":44088,"exclusive_time":2,"entries":2},{"inclusive_time":73,"id":"709","highest_child_id":2009,"first_entry_time":44112,"exclusive_time":49,"entries":10,"callees":[{"inclusive_time":17,"id":"360","highest_child_id":2008,"first_entry_time":44115,"exclusive_time":13,"entries":20,"allocations":[{"id":"6","count":20}]},{"inclusive_time":11,"id":"710","highest_child_id":2009,"first_entry_time":44134,"exclusive_time":9,"entries":10}],"allocations":[{"id":"27","count":10}]},{"inclusive_time":14,"id":"711","highest_child_id":2013,"first_entry_time":44239,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"360","highest_child_id":2011,"first_entry_time":44242,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"710","highest_child_id":2012,"first_entry_time":44247,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":2013,"first_entry_time":44250,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"10","count":3},{"id":"6","count":1},{"id":"27","count":3}]}],"allocations":[{"id":"707","count":1}]},{"inclusive_time":11,"id":"712","highest_child_id":2015,"first_entry_time":44265,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"714","highest_child_id":2015,"first_entry_time":44275,"exclusive_time":1,"entries":1}],"allocations":[{"id":"713","count":1}]},{"inclusive_time":12,"id":"715","highest_child_id":2017,"first_entry_time":44285,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":2,"id":"717","highest_child_id":2017,"first_entry_time":44295,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1},{"id":"10","count":1}]}],"allocations":[{"id":"716","count":1}]},{"inclusive_time":2,"id":"386","highest_child_id":2018,"first_entry_time":44299,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"395","highest_child_id":2019,"first_entry_time":44304,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":2,"id":"397","highest_child_id":2020,"first_entry_time":44308,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":1,"id":"718","highest_child_id":2021,"first_entry_time":44318,"exclusive_time":1,"entries":1},{"inclusive_time":3987,"id":"719","highest_child_id":2267,"first_entry_time":44426,"exclusive_time":591,"entries":1,"callees":[{"inclusive_time":1,"id":"720","highest_child_id":2023,"first_entry_time":44443,"exclusive_time":1,"entries":1},{"inclusive_time":21,"id":"104","highest_child_id":2028,"first_entry_time":44446,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":19,"id":"105","highest_child_id":2028,"first_entry_time":44448,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2026,"first_entry_time":44449,"exclusive_time":0,"entries":1,"allocations":[{"id":"721","count":1}]},{"inclusive_time":16,"id":"94","highest_child_id":2028,"first_entry_time":44451,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":2028,"first_entry_time":44453,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":5},{"id":"10","count":4}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"149","highest_child_id":2029,"first_entry_time":44469,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"386","highest_child_id":2030,"first_entry_time":44470,"exclusive_time":1,"entries":2},{"inclusive_time":3195,"id":"722","highest_child_id":2242,"first_entry_time":44715,"exclusive_time":50,"entries":1,"callees":[{"inclusive_time":7,"id":"389","highest_child_id":2033,"first_entry_time":44724,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2033,"first_entry_time":44726,"exclusive_time":1,"entries":3}]},{"inclusive_time":4,"id":"392","highest_child_id":2035,"first_entry_time":44728,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2035,"first_entry_time":44729,"exclusive_time":1,"entries":3}]},{"inclusive_time":5,"id":"629","highest_child_id":2037,"first_entry_time":44731,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2037,"first_entry_time":44733,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":2,"id":"723","highest_child_id":2038,"first_entry_time":44746,"exclusive_time":2,"entries":3},{"inclusive_time":3125,"id":"722","highest_child_id":2241,"first_entry_time":44750,"exclusive_time":1160,"entries":3,"callees":[{"inclusive_time":20,"id":"389","highest_child_id":2041,"first_entry_time":44754,"exclusive_time":13,"entries":13,"callees":[{"inclusive_time":7,"id":"390","highest_child_id":2041,"first_entry_time":44756,"exclusive_time":4,"entries":13}]},{"inclusive_time":16,"id":"392","highest_child_id":2043,"first_entry_time":44758,"exclusive_time":10,"entries":13,"callees":[{"inclusive_time":5,"id":"390","highest_child_id":2043,"first_entry_time":44759,"exclusive_time":3,"entries":13}]},{"inclusive_time":18,"id":"629","highest_child_id":2045,"first_entry_time":44760,"exclusive_time":10,"entries":13,"callees":[{"inclusive_time":7,"id":"390","highest_child_id":2045,"first_entry_time":44762,"exclusive_time":5,"entries":13,"allocations":[{"id":"28","count":13}]}]},{"inclusive_time":117,"id":"724","highest_child_id":2051,"first_entry_time":44834,"exclusive_time":70,"entries":8,"callees":[{"inclusive_time":6,"id":"725","highest_child_id":2047,"first_entry_time":44847,"exclusive_time":4,"entries":8},{"inclusive_time":4,"id":"726","highest_child_id":2048,"first_entry_time":44861,"exclusive_time":3,"entries":8},{"inclusive_time":39,"id":"727","highest_child_id":2051,"first_entry_time":44878,"exclusive_time":31,"entries":8,"callees":[{"inclusive_time":5,"id":"725","highest_child_id":2050,"first_entry_time":44880,"exclusive_time":3,"entries":8},{"inclusive_time":4,"id":"728","highest_child_id":2051,"first_entry_time":44893,"exclusive_time":3,"entries":8}],"allocations":[{"id":"27","count":16}]}],"allocations":[{"id":"27","count":16}]},{"inclusive_time":524,"id":"729","highest_child_id":2119,"first_entry_time":45928,"exclusive_time":108,"entries":3,"callees":[{"inclusive_time":5,"id":"394","highest_child_id":2053,"first_entry_time":45934,"exclusive_time":4,"entries":8},{"inclusive_time":47,"id":"730","highest_child_id":2057,"first_entry_time":45980,"exclusive_time":28,"entries":3,"callees":[{"inclusive_time":18,"id":"731","highest_child_id":2056,"first_entry_time":46003,"exclusive_time":15,"entries":3,"callees":[{"inclusive_time":3,"id":"394","highest_child_id":2056,"first_entry_time":46005,"exclusive_time":2,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"394","highest_child_id":2057,"first_entry_time":46315,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":360,"id":"732","highest_child_id":2116,"first_entry_time":46032,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2059,"first_entry_time":46034,"exclusive_time":1,"entries":3},{"inclusive_time":349,"id":"722","highest_child_id":2116,"first_entry_time":46038,"exclusive_time":36,"entries":3,"callees":[{"inclusive_time":10,"id":"389","highest_child_id":2062,"first_entry_time":46043,"exclusive_time":6,"entries":6,"callees":[{"inclusive_time":3,"id":"390","highest_child_id":2062,"first_entry_time":46044,"exclusive_time":2,"entries":6}]},{"inclusive_time":57,"id":"724","highest_child_id":2070,"first_entry_time":46048,"exclusive_time":39,"entries":3,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2064,"first_entry_time":46050,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"726","highest_child_id":2065,"first_entry_time":46052,"exclusive_time":1,"entries":3},{"inclusive_time":10,"id":"733","highest_child_id":2068,"first_entry_time":46075,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2067,"first_entry_time":46077,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"728","highest_child_id":2068,"first_entry_time":46080,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":3},{"id":"10","count":1}]},{"inclusive_time":3,"id":"727","highest_child_id":2070,"first_entry_time":46268,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2070,"first_entry_time":46269,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":236,"id":"729","highest_child_id":2112,"first_entry_time":46092,"exclusive_time":28,"entries":3,"callees":[{"inclusive_time":3,"id":"394","highest_child_id":2072,"first_entry_time":46094,"exclusive_time":2,"entries":6},{"inclusive_time":17,"id":"730","highest_child_id":2076,"first_entry_time":46098,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":10,"id":"731","highest_child_id":2075,"first_entry_time":46100,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":3,"id":"394","highest_child_id":2075,"first_entry_time":46101,"exclusive_time":2,"entries":6}],"allocations":[{"id":"27","count":6}]},{"inclusive_time":1,"id":"394","highest_child_id":2076,"first_entry_time":46382,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":187,"id":"732","highest_child_id":2112,"first_entry_time":46105,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2078,"first_entry_time":46107,"exclusive_time":1,"entries":3},{"inclusive_time":178,"id":"722","highest_child_id":2112,"first_entry_time":46109,"exclusive_time":25,"entries":3,"callees":[{"inclusive_time":6,"id":"389","highest_child_id":2081,"first_entry_time":46113,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2081,"first_entry_time":46114,"exclusive_time":1,"entries":4}]},{"inclusive_time":5,"id":"392","highest_child_id":2083,"first_entry_time":46116,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2083,"first_entry_time":46117,"exclusive_time":1,"entries":4}]},{"inclusive_time":6,"id":"629","highest_child_id":2085,"first_entry_time":46119,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2085,"first_entry_time":46120,"exclusive_time":1,"entries":4,"allocations":[{"id":"28","count":4}]}]},{"inclusive_time":10,"id":"724","highest_child_id":2090,"first_entry_time":46348,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2087,"first_entry_time":46350,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2088,"first_entry_time":46353,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"733","highest_child_id":2090,"first_entry_time":46355,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2090,"first_entry_time":46357,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":126,"id":"729","highest_child_id":2112,"first_entry_time":46396,"exclusive_time":36,"entries":2,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2092,"first_entry_time":46398,"exclusive_time":1,"entries":4},{"inclusive_time":10,"id":"730","highest_child_id":2095,"first_entry_time":46402,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":7,"id":"731","highest_child_id":2095,"first_entry_time":46403,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2095,"first_entry_time":46405,"exclusive_time":1,"entries":4}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":74,"id":"732","highest_child_id":2110,"first_entry_time":46409,"exclusive_time":21,"entries":2,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2097,"first_entry_time":46410,"exclusive_time":1,"entries":2},{"inclusive_time":51,"id":"722","highest_child_id":2109,"first_entry_time":46424,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":5,"id":"389","highest_child_id":2100,"first_entry_time":46429,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2100,"first_entry_time":46431,"exclusive_time":1,"entries":3}]},{"inclusive_time":4,"id":"392","highest_child_id":2102,"first_entry_time":46433,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2102,"first_entry_time":46434,"exclusive_time":1,"entries":3}]},{"inclusive_time":5,"id":"629","highest_child_id":2104,"first_entry_time":46436,"exclusive_time":2,"entries":3,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2104,"first_entry_time":46437,"exclusive_time":1,"entries":3,"allocations":[{"id":"28","count":3}]}]},{"inclusive_time":16,"id":"724","highest_child_id":2109,"first_entry_time":46439,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2106,"first_entry_time":46441,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"726","highest_child_id":2107,"first_entry_time":46443,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"733","highest_child_id":2109,"first_entry_time":46446,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2109,"first_entry_time":46448,"exclusive_time":1,"entries":2}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"27","count":4}]}]},{"inclusive_time":1,"id":"609","highest_child_id":2110,"first_entry_time":46487,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":3,"id":"609","highest_child_id":2111,"first_entry_time":46476,"exclusive_time":2,"entries":5},{"inclusive_time":1,"id":"734","highest_child_id":2112,"first_entry_time":46520,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"27","count":9}]}]}],"allocations":[{"id":"27","count":3}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]},{"inclusive_time":6,"id":"392","highest_child_id":2114,"first_entry_time":46251,"exclusive_time":3,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2114,"first_entry_time":46252,"exclusive_time":1,"entries":4}]},{"inclusive_time":6,"id":"629","highest_child_id":2116,"first_entry_time":46254,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":2,"id":"390","highest_child_id":2116,"first_entry_time":46255,"exclusive_time":2,"entries":4,"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"27","count":3}]},{"inclusive_time":1,"id":"735","highest_child_id":2117,"first_entry_time":46146,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2118,"first_entry_time":46289,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"386","highest_child_id":2119,"first_entry_time":46291,"exclusive_time":1,"entries":1}],"allocations":[{"id":"2","count":3},{"id":"27","count":9}]},{"inclusive_time":1,"id":"386","highest_child_id":2120,"first_entry_time":46570,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"736","highest_child_id":2121,"first_entry_time":46580,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"332","highest_child_id":2122,"first_entry_time":46583,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"653","highest_child_id":2124,"first_entry_time":46585,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":2,"id":"639","highest_child_id":2124,"first_entry_time":46587,"exclusive_time":1,"entries":3}]},{"inclusive_time":1,"id":"737","highest_child_id":2125,"first_entry_time":46596,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"738","highest_child_id":2126,"first_entry_time":46607,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"739","highest_child_id":2127,"first_entry_time":46617,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"393","highest_child_id":2128,"first_entry_time":46628,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2129,"first_entry_time":46642,"exclusive_time":1,"entries":1},{"inclusive_time":1261,"id":"722","highest_child_id":2241,"first_entry_time":46645,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":2132,"first_entry_time":46650,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2132,"first_entry_time":46651,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":2134,"first_entry_time":46653,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"390","highest_child_id":2134,"first_entry_time":46654,"exclusive_time":0,"entries":1}]},{"inclusive_time":3,"id":"629","highest_child_id":2136,"first_entry_time":46656,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2136,"first_entry_time":46657,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":1,"id":"741","highest_child_id":2137,"first_entry_time":46670,"exclusive_time":1,"entries":1},{"inclusive_time":1229,"id":"722","highest_child_id":2240,"first_entry_time":46673,"exclusive_time":111,"entries":1,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":2140,"first_entry_time":46678,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2140,"first_entry_time":46679,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":2142,"first_entry_time":46681,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"390","highest_child_id":2142,"first_entry_time":46682,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"629","highest_child_id":2144,"first_entry_time":46684,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2144,"first_entry_time":46685,"exclusive_time":1,"entries":1,"allocations":[{"id":"28","count":1}]}]},{"inclusive_time":1109,"id":"742","highest_child_id":2240,"first_entry_time":46792,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2146,"first_entry_time":46796,"exclusive_time":1,"entries":1},{"inclusive_time":1100,"id":"722","highest_child_id":2240,"first_entry_time":46800,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":2149,"first_entry_time":46805,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2149,"first_entry_time":46806,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"392","highest_child_id":2151,"first_entry_time":46808,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2151,"first_entry_time":46809,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"629","highest_child_id":2153,"first_entry_time":46811,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2153,"first_entry_time":46813,"exclusive_time":0,"entries":1,"allocations":[{"id":"28","count":1}]}]},{"inclusive_time":1083,"id":"729","highest_child_id":2240,"first_entry_time":46815,"exclusive_time":205,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2155,"first_entry_time":46818,"exclusive_time":1,"entries":2},{"inclusive_time":7,"id":"730","highest_child_id":2159,"first_entry_time":46822,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":5,"id":"731","highest_child_id":2159,"first_entry_time":46824,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"394","highest_child_id":2158,"first_entry_time":46825,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2159,"first_entry_time":46827,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":55,"id":"732","highest_child_id":2177,"first_entry_time":46830,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2161,"first_entry_time":46832,"exclusive_time":0,"entries":1},{"inclusive_time":51,"id":"722","highest_child_id":2177,"first_entry_time":46834,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"389","highest_child_id":2164,"first_entry_time":46838,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2164,"first_entry_time":46839,"exclusive_time":0,"entries":1}]},{"inclusive_time":42,"id":"742","highest_child_id":2177,"first_entry_time":46842,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":39,"id":"722","highest_child_id":2177,"first_entry_time":46845,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":4,"id":"389","highest_child_id":2168,"first_entry_time":46849,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2168,"first_entry_time":46850,"exclusive_time":1,"entries":2}]},{"inclusive_time":3,"id":"392","highest_child_id":2170,"first_entry_time":46852,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2170,"first_entry_time":46853,"exclusive_time":0,"entries":2}]},{"inclusive_time":3,"id":"629","highest_child_id":2172,"first_entry_time":46854,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"390","highest_child_id":2172,"first_entry_time":46856,"exclusive_time":1,"entries":2,"allocations":[{"id":"28","count":2}]}]},{"inclusive_time":5,"id":"653","highest_child_id":2174,"first_entry_time":46859,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":2174,"first_entry_time":46860,"exclusive_time":1,"entries":3}]},{"inclusive_time":1,"id":"737","highest_child_id":2175,"first_entry_time":46863,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"738","highest_child_id":2176,"first_entry_time":46866,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"739","highest_child_id":2177,"first_entry_time":46869,"exclusive_time":0,"entries":1}]}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"734","highest_child_id":2178,"first_entry_time":46888,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"609","highest_child_id":2179,"first_entry_time":46890,"exclusive_time":1,"entries":3},{"inclusive_time":11,"id":"709","highest_child_id":2182,"first_entry_time":46907,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"360","highest_child_id":2181,"first_entry_time":46909,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"710","highest_child_id":2182,"first_entry_time":46915,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"743","highest_child_id":2184,"first_entry_time":46933,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"609","highest_child_id":2184,"first_entry_time":46935,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":2}]},{"inclusive_time":795,"id":"744","highest_child_id":2240,"first_entry_time":47101,"exclusive_time":326,"entries":1,"callees":[{"inclusive_time":3,"id":"609","highest_child_id":2186,"first_entry_time":47107,"exclusive_time":2,"entries":5},{"inclusive_time":10,"id":"709","highest_child_id":2189,"first_entry_time":47111,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":2188,"first_entry_time":47114,"exclusive_time":2,"entries":2,"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"710","highest_child_id":2189,"first_entry_time":47119,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"745","highest_child_id":2190,"first_entry_time":47140,"exclusive_time":2,"entries":1},{"inclusive_time":2,"id":"746","highest_child_id":2191,"first_entry_time":47153,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":71,"id":"747","highest_child_id":2202,"first_entry_time":47245,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2193,"first_entry_time":47248,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2194,"first_entry_time":47265,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2195,"first_entry_time":47268,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2196,"first_entry_time":47276,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"749","highest_child_id":2197,"first_entry_time":47285,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"29","highest_child_id":2198,"first_entry_time":47288,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":2199,"first_entry_time":47289,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"750","highest_child_id":2201,"first_entry_time":47303,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"736","highest_child_id":2201,"first_entry_time":47305,"exclusive_time":0,"entries":1}]},{"inclusive_time":2,"id":"149","highest_child_id":2202,"first_entry_time":47308,"exclusive_time":1,"entries":3,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":1},{"id":"28","count":1}]},{"inclusive_time":9,"id":"751","highest_child_id":2205,"first_entry_time":47328,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":2204,"first_entry_time":47332,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":2205,"first_entry_time":47336,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":83,"id":"752","highest_child_id":2207,"first_entry_time":47348,"exclusive_time":79,"entries":1,"callees":[{"inclusive_time":4,"id":"753","highest_child_id":2207,"first_entry_time":47427,"exclusive_time":4,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"8","count":1}]},{"inclusive_time":11,"id":"754","highest_child_id":2208,"first_entry_time":47516,"exclusive_time":11,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"394","highest_child_id":2209,"first_entry_time":47530,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"755","highest_child_id":2210,"first_entry_time":47550,"exclusive_time":1,"entries":1},{"inclusive_time":273,"id":"756","highest_child_id":2240,"first_entry_time":47623,"exclusive_time":103,"entries":1,"callees":[{"inclusive_time":4,"id":"751","highest_child_id":2213,"first_entry_time":47625,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":2213,"first_entry_time":47629,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":148,"id":"757","highest_child_id":2234,"first_entry_time":47679,"exclusive_time":98,"entries":1,"callees":[{"inclusive_time":2,"id":"758","highest_child_id":2215,"first_entry_time":47741,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":8,"id":"759","highest_child_id":2218,"first_entry_time":47759,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":2217,"first_entry_time":47762,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":2218,"first_entry_time":47766,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":34,"id":"760","highest_child_id":2230,"first_entry_time":47782,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":25,"id":"72","highest_child_id":2229,"first_entry_time":47789,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"73","highest_child_id":2221,"first_entry_time":47791,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":2222,"first_entry_time":47793,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":2223,"first_entry_time":47796,"exclusive_time":0,"entries":1},{"inclusive_time":9,"id":"75","highest_child_id":2225,"first_entry_time":47797,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"76","highest_child_id":2225,"first_entry_time":47805,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":2227,"first_entry_time":47808,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":2227,"first_entry_time":47809,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"29","highest_child_id":2228,"first_entry_time":47811,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":2229,"first_entry_time":47812,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"71","highest_child_id":2230,"first_entry_time":47816,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"761","count":1}]},{"inclusive_time":1,"id":"393","highest_child_id":2231,"first_entry_time":47818,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2232,"first_entry_time":47820,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2233,"first_entry_time":47824,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2234,"first_entry_time":47826,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"762","highest_child_id":2235,"first_entry_time":47847,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"763","highest_child_id":2236,"first_entry_time":47861,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2237,"first_entry_time":47865,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"764","highest_child_id":2239,"first_entry_time":47884,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"360","highest_child_id":2239,"first_entry_time":47887,"exclusive_time":3,"entries":2,"allocations":[{"id":"6","count":2}]}]},{"inclusive_time":2,"id":"394","highest_child_id":2240,"first_entry_time":47894,"exclusive_time":1,"entries":1,"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":2}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":5}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":2,"id":"583","highest_child_id":2241,"first_entry_time":47904,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":4,"id":"583","highest_child_id":2242,"first_entry_time":46205,"exclusive_time":2,"entries":6}]},{"inclusive_time":1,"id":"765","highest_child_id":2243,"first_entry_time":47921,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"113","highest_child_id":2244,"first_entry_time":47923,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"718","highest_child_id":2245,"first_entry_time":47925,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"766","highest_child_id":2247,"first_entry_time":48011,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"726","highest_child_id":2247,"first_entry_time":48018,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"27","count":1}]},{"inclusive_time":2,"id":"767","highest_child_id":2248,"first_entry_time":48054,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"768","highest_child_id":2249,"first_entry_time":48071,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"769","highest_child_id":2250,"first_entry_time":48086,"exclusive_time":1,"entries":1},{"inclusive_time":155,"id":"770","highest_child_id":2266,"first_entry_time":48253,"exclusive_time":97,"entries":1,"callees":[{"inclusive_time":8,"id":"725","highest_child_id":2252,"first_entry_time":48260,"exclusive_time":6,"entries":11,"allocations":[{"id":"27","count":2}]},{"inclusive_time":4,"id":"726","highest_child_id":2253,"first_entry_time":48264,"exclusive_time":2,"entries":8},{"inclusive_time":1,"id":"386","highest_child_id":2254,"first_entry_time":48279,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"374","highest_child_id":2255,"first_entry_time":48281,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"728","highest_child_id":2256,"first_entry_time":48283,"exclusive_time":2,"entries":4},{"inclusive_time":18,"id":"771","highest_child_id":2257,"first_entry_time":48315,"exclusive_time":18,"entries":1,"allocations":[{"id":"27","count":1},{"id":"56","count":2}]},{"inclusive_time":1,"id":"583","highest_child_id":2258,"first_entry_time":48335,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"372","highest_child_id":2261,"first_entry_time":48341,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"331","highest_child_id":2261,"first_entry_time":48346,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"374","highest_child_id":2261,"first_entry_time":48349,"exclusive_time":1,"entries":1}],"allocations":[{"id":"170","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"373","count":1}]},{"inclusive_time":2,"id":"680","highest_child_id":2262,"first_entry_time":48352,"exclusive_time":2,"entries":1},{"inclusive_time":7,"id":"360","highest_child_id":2265,"first_entry_time":48364,"exclusive_time":6,"entries":1,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":2264,"first_entry_time":48368,"exclusive_time":0,"entries":1},{"jit_entries":1,"inclusive_time":0,"id":"194","highest_child_id":2265,"first_entry_time":48370,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"170","count":1},{"id":"27","count":1}]},{"inclusive_time":4,"id":"772","highest_child_id":2266,"first_entry_time":48388,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"25","count":3},{"id":"27","count":24},{"id":"56","count":1}]},{"inclusive_time":1,"id":"682","highest_child_id":2267,"first_entry_time":48410,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"773","highest_child_id":2268,"first_entry_time":48462,"exclusive_time":2,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"386","highest_child_id":2269,"first_entry_time":48466,"exclusive_time":1,"entries":1},{"inclusive_time":39,"id":"774","highest_child_id":2274,"first_entry_time":48482,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":0,"id":"326","highest_child_id":2271,"first_entry_time":48484,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"775","highest_child_id":2272,"first_entry_time":48493,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"776","highest_child_id":2273,"first_entry_time":48503,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"777","highest_child_id":2274,"first_entry_time":48519,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9364,"id":"778","highest_child_id":3238,"first_entry_time":48539,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":9351,"id":"779","highest_child_id":3238,"first_entry_time":48552,"exclusive_time":61,"entries":1,"callees":[{"inclusive_time":13,"id":"104","highest_child_id":2281,"first_entry_time":48554,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":12,"id":"105","highest_child_id":2281,"first_entry_time":48556,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2279,"first_entry_time":48557,"exclusive_time":0,"entries":1,"allocations":[{"id":"780","count":1}]},{"inclusive_time":8,"id":"94","highest_child_id":2281,"first_entry_time":48559,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":0,"id":"95","highest_child_id":2281,"first_entry_time":48561,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":9276,"id":"781","highest_child_id":3238,"first_entry_time":48626,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":2283,"first_entry_time":48633,"exclusive_time":0,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":72,"id":"104","highest_child_id":2291,"first_entry_time":48636,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":63,"id":"105","highest_child_id":2291,"first_entry_time":48638,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"106","highest_child_id":2286,"first_entry_time":48640,"exclusive_time":1,"entries":2,"allocations":[{"id":"782","count":1},{"id":"783","count":1}]},{"inclusive_time":54,"id":"94","highest_child_id":2291,"first_entry_time":48642,"exclusive_time":42,"entries":2,"callees":[{"inclusive_time":1,"id":"95","highest_child_id":2288,"first_entry_time":48644,"exclusive_time":0,"entries":2},{"inclusive_time":6,"id":"784","highest_child_id":2290,"first_entry_time":48664,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":2290,"first_entry_time":48667,"exclusive_time":0,"entries":2,"allocations":[{"id":"282","count":2}]}],"allocations":[{"id":"10","count":3}]},{"inclusive_time":4,"id":"785","highest_child_id":2291,"first_entry_time":48705,"exclusive_time":4,"entries":1}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]}],"allocations":[{"id":"6","count":2}]},{"inclusive_time":1,"id":"786","highest_child_id":2292,"first_entry_time":48719,"exclusive_time":1,"entries":1},{"inclusive_time":9156,"id":"787","highest_child_id":3238,"first_entry_time":48745,"exclusive_time":102,"entries":1,"callees":[{"inclusive_time":9054,"id":"788","highest_child_id":3238,"first_entry_time":48847,"exclusive_time":99,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2295,"first_entry_time":48851,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"693","highest_child_id":2296,"first_entry_time":48854,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"789","highest_child_id":2297,"first_entry_time":48869,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"691","highest_child_id":2298,"first_entry_time":48872,"exclusive_time":1,"entries":3},{"inclusive_time":8923,"id":"787","highest_child_id":3225,"first_entry_time":48876,"exclusive_time":141,"entries":3,"callees":[{"inclusive_time":8782,"id":"790","highest_child_id":3225,"first_entry_time":49013,"exclusive_time":105,"entries":3,"callees":[{"inclusive_time":6,"id":"658","highest_child_id":2301,"first_entry_time":49023,"exclusive_time":6,"entries":3,"allocations":[{"id":"56","count":2}]},{"inclusive_time":8666,"id":"791","highest_child_id":3223,"first_entry_time":49103,"exclusive_time":464,"entries":3,"callees":[{"inclusive_time":3,"id":"661","highest_child_id":2303,"first_entry_time":49111,"exclusive_time":2,"entries":3},{"inclusive_time":298,"id":"792","highest_child_id":2314,"first_entry_time":49129,"exclusive_time":54,"entries":3,"callees":[{"inclusive_time":244,"id":"794","highest_child_id":2314,"first_entry_time":49179,"exclusive_time":78,"entries":3,"callees":[{"inclusive_time":2,"id":"795","highest_child_id":2306,"first_entry_time":49190,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"796","highest_child_id":2307,"first_entry_time":49199,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"285","highest_child_id":2308,"first_entry_time":49202,"exclusive_time":1,"entries":6,"allocations":[{"id":"282","count":6}]},{"inclusive_time":135,"id":"797","highest_child_id":2312,"first_entry_time":49217,"exclusive_time":38,"entries":6,"callees":[{"inclusive_time":97,"id":"798","highest_child_id":2312,"first_entry_time":49250,"exclusive_time":88,"entries":6,"callees":[{"inclusive_time":5,"id":"799","highest_child_id":2311,"first_entry_time":49265,"exclusive_time":4,"entries":6},{"inclusive_time":5,"id":"800","highest_child_id":2312,"first_entry_time":49277,"exclusive_time":2,"entries":12}]}]},{"inclusive_time":27,"id":"801","highest_child_id":2314,"first_entry_time":49316,"exclusive_time":23,"entries":3,"callees":[{"inclusive_time":3,"id":"803","highest_child_id":2314,"first_entry_time":49329,"exclusive_time":3,"entries":3}],"allocations":[{"id":"802","count":3}]}],"allocations":[{"id":"10","count":18},{"id":"6","count":12},{"id":"26","count":6}]}],"allocations":[{"id":"793","count":3}]},{"inclusive_time":17,"id":"804","highest_child_id":2316,"first_entry_time":49342,"exclusive_time":14,"entries":3,"callees":[{"inclusive_time":3,"id":"805","highest_child_id":2316,"first_entry_time":49352,"exclusive_time":2,"entries":3}],"allocations":[{"id":"28","count":3}]},{"inclusive_time":30,"id":"806","highest_child_id":2318,"first_entry_time":49367,"exclusive_time":23,"entries":3,"callees":[{"inclusive_time":7,"id":"808","highest_child_id":2318,"first_entry_time":49388,"exclusive_time":6,"entries":3,"allocations":[{"id":"6","count":27},{"id":"10","count":9}]}],"allocations":[{"id":"807","count":3}]},{"inclusive_time":2,"id":"809","highest_child_id":2319,"first_entry_time":49406,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"810","highest_child_id":2320,"first_entry_time":49418,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"811","highest_child_id":2321,"first_entry_time":49428,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"657","highest_child_id":2322,"first_entry_time":49431,"exclusive_time":1,"entries":3},{"inclusive_time":7839,"id":"812","highest_child_id":3221,"first_entry_time":49756,"exclusive_time":276,"entries":3,"callees":[{"inclusive_time":18,"id":"813","highest_child_id":2324,"first_entry_time":49777,"exclusive_time":17,"entries":3,"allocations":[{"id":"814","count":3},{"id":"10","count":39},{"id":"26","count":3}]},{"inclusive_time":5,"id":"682","highest_child_id":2325,"first_entry_time":49786,"exclusive_time":4,"entries":6},{"inclusive_time":3,"id":"393","highest_child_id":2326,"first_entry_time":49791,"exclusive_time":3,"entries":4},{"inclusive_time":7265,"id":"815","highest_child_id":3161,"first_entry_time":49853,"exclusive_time":80,"entries":3,"callees":[{"inclusive_time":7176,"id":"787","highest_child_id":3157,"first_entry_time":49862,"exclusive_time":68,"entries":6,"callees":[{"inclusive_time":1050,"id":"816","highest_child_id":2343,"first_entry_time":49875,"exclusive_time":836,"entries":1,"callees":[{"inclusive_time":214,"id":"817","highest_child_id":2343,"first_entry_time":50710,"exclusive_time":50,"entries":1,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2331,"first_entry_time":50715,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2332,"first_entry_time":50724,"exclusive_time":1,"entries":1},{"inclusive_time":158,"id":"818","highest_child_id":2342,"first_entry_time":50753,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2334,"first_entry_time":50756,"exclusive_time":1,"entries":1},{"inclusive_time":111,"id":"819","highest_child_id":2342,"first_entry_time":50800,"exclusive_time":71,"entries":1,"callees":[{"inclusive_time":1,"id":"728","highest_child_id":2336,"first_entry_time":50802,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2337,"first_entry_time":50809,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"820","highest_child_id":2338,"first_entry_time":50841,"exclusive_time":1,"entries":1},{"inclusive_time":33,"id":"821","highest_child_id":2341,"first_entry_time":50865,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":2,"id":"822","highest_child_id":2340,"first_entry_time":50883,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"823","highest_child_id":2341,"first_entry_time":50896,"exclusive_time":3,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2342,"first_entry_time":50908,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2343,"first_entry_time":50921,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":13,"id":"828","highest_child_id":2345,"first_entry_time":50938,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":2,"id":"829","highest_child_id":2345,"first_entry_time":50947,"exclusive_time":1,"entries":3}]},{"inclusive_time":227,"id":"830","highest_child_id":2364,"first_entry_time":51007,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":191,"id":"831","highest_child_id":2360,"first_entry_time":51029,"exclusive_time":57,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":2348,"first_entry_time":51031,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"403","highest_child_id":2349,"first_entry_time":51035,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"414","highest_child_id":2350,"first_entry_time":51038,"exclusive_time":0,"entries":1},{"inclusive_time":45,"id":"832","highest_child_id":2352,"first_entry_time":51073,"exclusive_time":36,"entries":1,"callees":[{"inclusive_time":9,"id":"833","highest_child_id":2352,"first_entry_time":51103,"exclusive_time":9,"entries":1,"allocations":[{"id":"26","count":2}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":85,"id":"834","highest_child_id":2360,"first_entry_time":51135,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":62,"id":"835","highest_child_id":2360,"first_entry_time":51158,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":2355,"first_entry_time":51169,"exclusive_time":2,"entries":3},{"inclusive_time":37,"id":"837","highest_child_id":2360,"first_entry_time":51180,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":34,"id":"797","highest_child_id":2360,"first_entry_time":51183,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":31,"id":"798","highest_child_id":2360,"first_entry_time":51186,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2359,"first_entry_time":51208,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"800","highest_child_id":2360,"first_entry_time":51212,"exclusive_time":1,"entries":3}]}]}]}]}]}]},{"inclusive_time":1,"id":"723","highest_child_id":2361,"first_entry_time":51221,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"393","highest_child_id":2362,"first_entry_time":51224,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"815","highest_child_id":2364,"first_entry_time":51227,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"826","highest_child_id":2364,"first_entry_time":51232,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":5258,"id":"838","highest_child_id":3019,"first_entry_time":51257,"exclusive_time":23,"entries":2,"callees":[{"inclusive_time":5235,"id":"839","highest_child_id":3019,"first_entry_time":51279,"exclusive_time":183,"entries":2,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2367,"first_entry_time":51282,"exclusive_time":1,"entries":2},{"inclusive_time":5049,"id":"840","highest_child_id":3019,"first_entry_time":51460,"exclusive_time":104,"entries":2,"callees":[{"inclusive_time":2,"id":"393","highest_child_id":2369,"first_entry_time":51470,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"609","highest_child_id":2370,"first_entry_time":51474,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"586","highest_child_id":2371,"first_entry_time":51478,"exclusive_time":1,"entries":2},{"inclusive_time":5,"id":"397","highest_child_id":2372,"first_entry_time":51481,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"398","count":2}]},{"inclusive_time":4867,"id":"787","highest_child_id":2999,"first_entry_time":51486,"exclusive_time":9,"entries":2,"callees":[{"inclusive_time":4854,"id":"838","highest_child_id":2997,"first_entry_time":51492,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":4850,"id":"839","highest_child_id":2997,"first_entry_time":51495,"exclusive_time":19,"entries":2,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2376,"first_entry_time":51496,"exclusive_time":1,"entries":2},{"inclusive_time":4828,"id":"841","highest_child_id":2997,"first_entry_time":51512,"exclusive_time":121,"entries":2,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2378,"first_entry_time":51514,"exclusive_time":1,"entries":2},{"inclusive_time":4705,"id":"842","highest_child_id":2997,"first_entry_time":51633,"exclusive_time":46,"entries":2,"callees":[{"inclusive_time":4620,"id":"787","highest_child_id":2985,"first_entry_time":51645,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":4570,"id":"790","highest_child_id":2969,"first_entry_time":51649,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":1,"id":"658","highest_child_id":2382,"first_entry_time":51652,"exclusive_time":1,"entries":1},{"inclusive_time":4494,"id":"791","highest_child_id":2959,"first_entry_time":51658,"exclusive_time":102,"entries":1,"callees":[{"inclusive_time":1,"id":"661","highest_child_id":2384,"first_entry_time":51662,"exclusive_time":1,"entries":1},{"inclusive_time":67,"id":"792","highest_child_id":2395,"first_entry_time":51665,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":64,"id":"794","highest_child_id":2395,"first_entry_time":51669,"exclusive_time":26,"entries":1,"callees":[{"inclusive_time":2,"id":"795","highest_child_id":2387,"first_entry_time":51684,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"796","highest_child_id":2388,"first_entry_time":51688,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"285","highest_child_id":2389,"first_entry_time":51690,"exclusive_time":0,"entries":2,"allocations":[{"id":"282","count":2}]},{"inclusive_time":29,"id":"797","highest_child_id":2393,"first_entry_time":51693,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":26,"id":"798","highest_child_id":2393,"first_entry_time":51695,"exclusive_time":22,"entries":2,"callees":[{"inclusive_time":2,"id":"799","highest_child_id":2392,"first_entry_time":51701,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"800","highest_child_id":2393,"first_entry_time":51704,"exclusive_time":1,"entries":5}]}]},{"inclusive_time":5,"id":"801","highest_child_id":2395,"first_entry_time":51728,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"803","highest_child_id":2395,"first_entry_time":51731,"exclusive_time":1,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"10","count":6},{"id":"6","count":4},{"id":"26","count":2}]}],"allocations":[{"id":"793","count":1}]},{"inclusive_time":4,"id":"804","highest_child_id":2397,"first_entry_time":51735,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"805","highest_child_id":2397,"first_entry_time":51737,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":5,"id":"806","highest_child_id":2399,"first_entry_time":51743,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"808","highest_child_id":2399,"first_entry_time":51746,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":9},{"id":"10","count":3}]}],"allocations":[{"id":"807","count":1}]},{"inclusive_time":1,"id":"843","highest_child_id":2400,"first_entry_time":51762,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"844","highest_child_id":2401,"first_entry_time":51774,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"809","highest_child_id":2402,"first_entry_time":51777,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"810","highest_child_id":2403,"first_entry_time":51780,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"811","highest_child_id":2404,"first_entry_time":51782,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"657","highest_child_id":2405,"first_entry_time":51785,"exclusive_time":0,"entries":1},{"inclusive_time":3,"id":"845","highest_child_id":2406,"first_entry_time":51801,"exclusive_time":3,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"846","highest_child_id":2407,"first_entry_time":51816,"exclusive_time":1,"entries":1},{"inclusive_time":4287,"id":"812","highest_child_id":2954,"first_entry_time":51819,"exclusive_time":118,"entries":1,"callees":[{"inclusive_time":3,"id":"813","highest_child_id":2409,"first_entry_time":51822,"exclusive_time":3,"entries":1,"allocations":[{"id":"814","count":1},{"id":"10","count":13},{"id":"26","count":1}]},{"inclusive_time":1,"id":"682","highest_child_id":2410,"first_entry_time":51827,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"393","highest_child_id":2411,"first_entry_time":51832,"exclusive_time":1,"entries":1},{"inclusive_time":4017,"id":"815","highest_child_id":2915,"first_entry_time":51834,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":3992,"id":"787","highest_child_id":2911,"first_entry_time":51840,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":3980,"id":"830","highest_child_id":2909,"first_entry_time":51843,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":51,"id":"831","highest_child_id":2425,"first_entry_time":51844,"exclusive_time":17,"entries":3,"callees":[{"inclusive_time":2,"id":"332","highest_child_id":2416,"first_entry_time":51850,"exclusive_time":2,"entries":3},{"inclusive_time":1,"id":"403","highest_child_id":2417,"first_entry_time":51853,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"414","highest_child_id":2418,"first_entry_time":51855,"exclusive_time":0,"entries":1},{"inclusive_time":14,"id":"832","highest_child_id":2420,"first_entry_time":51857,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":6,"id":"833","highest_child_id":2420,"first_entry_time":51859,"exclusive_time":6,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":14,"id":"834","highest_child_id":2425,"first_entry_time":51874,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":11,"id":"835","highest_child_id":2425,"first_entry_time":51876,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":2423,"first_entry_time":51879,"exclusive_time":2,"entries":3},{"inclusive_time":3,"id":"837","highest_child_id":2425,"first_entry_time":51882,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"797","highest_child_id":2425,"first_entry_time":51884,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":2,"id":"723","highest_child_id":2426,"first_entry_time":51889,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"393","highest_child_id":2427,"first_entry_time":51891,"exclusive_time":1,"entries":3},{"inclusive_time":3913,"id":"815","highest_child_id":2909,"first_entry_time":51893,"exclusive_time":81,"entries":3,"callees":[{"inclusive_time":3820,"id":"787","highest_child_id":2905,"first_entry_time":51897,"exclusive_time":104,"entries":14,"callees":[{"inclusive_time":385,"id":"816","highest_child_id":2453,"first_entry_time":51900,"exclusive_time":14,"entries":9,"callees":[{"inclusive_time":370,"id":"817","highest_child_id":2453,"first_entry_time":51903,"exclusive_time":89,"entries":9,"callees":[{"inclusive_time":7,"id":"725","highest_child_id":2432,"first_entry_time":51905,"exclusive_time":5,"entries":9},{"inclusive_time":4,"id":"726","highest_child_id":2433,"first_entry_time":51908,"exclusive_time":2,"entries":9},{"inclusive_time":234,"id":"847","highest_child_id":2444,"first_entry_time":51948,"exclusive_time":144,"entries":8,"callees":[{"inclusive_time":5,"id":"583","highest_child_id":2435,"first_entry_time":51951,"exclusive_time":3,"entries":8},{"inclusive_time":5,"id":"820","highest_child_id":2436,"first_entry_time":51954,"exclusive_time":3,"entries":8},{"inclusive_time":9,"id":"728","highest_child_id":2437,"first_entry_time":51956,"exclusive_time":6,"entries":16},{"inclusive_time":12,"id":"848","highest_child_id":2438,"first_entry_time":51970,"exclusive_time":11,"entries":8},{"inclusive_time":39,"id":"849","highest_child_id":2440,"first_entry_time":51990,"exclusive_time":28,"entries":8,"callees":[{"inclusive_time":10,"id":"850","highest_child_id":2440,"first_entry_time":52003,"exclusive_time":9,"entries":8,"allocations":[{"id":"851","count":8}]}]},{"inclusive_time":7,"id":"374","highest_child_id":2441,"first_entry_time":52010,"exclusive_time":6,"entries":8},{"inclusive_time":3,"id":"852","highest_child_id":2442,"first_entry_time":52025,"exclusive_time":1,"entries":8},{"inclusive_time":8,"id":"845","highest_child_id":2443,"first_entry_time":52032,"exclusive_time":7,"entries":8,"allocations":[{"id":"27","count":2}]},{"inclusive_time":12,"id":"853","highest_child_id":2444,"first_entry_time":52048,"exclusive_time":10,"entries":8,"allocations":[{"id":"28","count":1}]}],"allocations":[{"id":"27","count":16},{"id":"28","count":8}]},{"inclusive_time":6,"id":"826","highest_child_id":2445,"first_entry_time":52053,"exclusive_time":4,"entries":9,"allocations":[{"id":"827","count":9}]},{"inclusive_time":33,"id":"819","highest_child_id":2453,"first_entry_time":52217,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":1,"id":"728","highest_child_id":2447,"first_entry_time":52219,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2448,"first_entry_time":52232,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2449,"first_entry_time":52234,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"821","highest_child_id":2452,"first_entry_time":52238,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2451,"first_entry_time":52241,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2452,"first_entry_time":52244,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2453,"first_entry_time":52248,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":18}]}]},{"inclusive_time":298,"id":"828","highest_child_id":2462,"first_entry_time":52057,"exclusive_time":274,"entries":13,"callees":[{"inclusive_time":4,"id":"829","highest_child_id":2455,"first_entry_time":52059,"exclusive_time":2,"entries":13},{"inclusive_time":13,"id":"854","highest_child_id":2459,"first_entry_time":52901,"exclusive_time":8,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2457,"first_entry_time":52904,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":2458,"first_entry_time":52906,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"826","highest_child_id":2459,"first_entry_time":52909,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]}]},{"inclusive_time":7,"id":"856","highest_child_id":2462,"first_entry_time":52923,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"855","highest_child_id":2461,"first_entry_time":52925,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"829","highest_child_id":2462,"first_entry_time":52927,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":2452,"id":"838","highest_child_id":2777,"first_entry_time":52261,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":2441,"id":"839","highest_child_id":2777,"first_entry_time":52269,"exclusive_time":397,"entries":3,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2465,"first_entry_time":52271,"exclusive_time":2,"entries":3},{"inclusive_time":529,"id":"857","highest_child_id":2557,"first_entry_time":52297,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2467,"first_entry_time":52300,"exclusive_time":1,"entries":2},{"inclusive_time":521,"id":"787","highest_child_id":2557,"first_entry_time":52303,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":517,"id":"816","highest_child_id":2557,"first_entry_time":52305,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":513,"id":"817","highest_child_id":2557,"first_entry_time":52307,"exclusive_time":79,"entries":2,"callees":[{"inclusive_time":2,"id":"725","highest_child_id":2471,"first_entry_time":52309,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"726","highest_child_id":2472,"first_entry_time":52311,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"728","highest_child_id":2473,"first_entry_time":52315,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"858","highest_child_id":2474,"first_entry_time":52327,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"859","highest_child_id":2475,"first_entry_time":52338,"exclusive_time":1,"entries":2},{"inclusive_time":376,"id":"860","highest_child_id":2542,"first_entry_time":52355,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":372,"id":"787","highest_child_id":2542,"first_entry_time":52358,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":250,"id":"838","highest_child_id":2514,"first_entry_time":52360,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":248,"id":"839","highest_child_id":2514,"first_entry_time":52362,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2480,"first_entry_time":52364,"exclusive_time":0,"entries":1},{"inclusive_time":242,"id":"841","highest_child_id":2514,"first_entry_time":52368,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2482,"first_entry_time":52370,"exclusive_time":0,"entries":1},{"inclusive_time":237,"id":"842","highest_child_id":2514,"first_entry_time":52372,"exclusive_time":56,"entries":1,"callees":[{"inclusive_time":141,"id":"787","highest_child_id":2502,"first_entry_time":52383,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":124,"id":"861","highest_child_id":2500,"first_entry_time":52396,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"862","highest_child_id":2486,"first_entry_time":52408,"exclusive_time":1,"entries":1},{"inclusive_time":95,"id":"863","highest_child_id":2500,"first_entry_time":52425,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":10,"id":"864","highest_child_id":2491,"first_entry_time":52435,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":8,"id":"821","highest_child_id":2491,"first_entry_time":52438,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2490,"first_entry_time":52441,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2491,"first_entry_time":52444,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":57,"id":"865","highest_child_id":2499,"first_entry_time":52456,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":37,"id":"866","highest_child_id":2499,"first_entry_time":52476,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2494,"first_entry_time":52488,"exclusive_time":1,"entries":1},{"inclusive_time":21,"id":"837","highest_child_id":2499,"first_entry_time":52492,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":19,"id":"797","highest_child_id":2499,"first_entry_time":52494,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":13,"id":"798","highest_child_id":2499,"first_entry_time":52499,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2498,"first_entry_time":52506,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2499,"first_entry_time":52509,"exclusive_time":1,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":5,"id":"826","highest_child_id":2500,"first_entry_time":52515,"exclusive_time":5,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":3,"id":"828","highest_child_id":2502,"first_entry_time":52521,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2502,"first_entry_time":52523,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2503,"first_entry_time":52525,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2504,"first_entry_time":52529,"exclusive_time":1,"entries":2},{"inclusive_time":20,"id":"868","highest_child_id":2508,"first_entry_time":52545,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":18,"id":"869","highest_child_id":2508,"first_entry_time":52548,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":2508,"first_entry_time":52560,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2508,"first_entry_time":52562,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":7,"id":"821","highest_child_id":2511,"first_entry_time":52567,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2510,"first_entry_time":52570,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2511,"first_entry_time":52573,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":7,"id":"871","highest_child_id":2513,"first_entry_time":52599,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2513,"first_entry_time":52604,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2514,"first_entry_time":52607,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":4,"id":"828","highest_child_id":2516,"first_entry_time":52611,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2516,"first_entry_time":52612,"exclusive_time":1,"entries":2}]},{"inclusive_time":112,"id":"816","highest_child_id":2542,"first_entry_time":53123,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":109,"id":"817","highest_child_id":2542,"first_entry_time":53125,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2519,"first_entry_time":53126,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2520,"first_entry_time":53129,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2521,"first_entry_time":53132,"exclusive_time":1,"entries":1},{"inclusive_time":42,"id":"863","highest_child_id":2533,"first_entry_time":53138,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"864","highest_child_id":2524,"first_entry_time":53140,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"821","highest_child_id":2524,"first_entry_time":53142,"exclusive_time":2,"entries":1}]},{"inclusive_time":31,"id":"865","highest_child_id":2532,"first_entry_time":53146,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":28,"id":"866","highest_child_id":2532,"first_entry_time":53149,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2527,"first_entry_time":53153,"exclusive_time":1,"entries":1},{"inclusive_time":21,"id":"837","highest_child_id":2532,"first_entry_time":53156,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":19,"id":"797","highest_child_id":2532,"first_entry_time":53158,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":17,"id":"798","highest_child_id":2532,"first_entry_time":53159,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":2,"id":"799","highest_child_id":2531,"first_entry_time":53167,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2532,"first_entry_time":53171,"exclusive_time":1,"entries":3}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2533,"first_entry_time":53178,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":2,"id":"872","highest_child_id":2534,"first_entry_time":53192,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"821","highest_child_id":2535,"first_entry_time":53196,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2536,"first_entry_time":53200,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"873","highest_child_id":2538,"first_entry_time":53216,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2538,"first_entry_time":53219,"exclusive_time":1,"entries":1}]},{"inclusive_time":7,"id":"869","highest_child_id":2541,"first_entry_time":53223,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2541,"first_entry_time":53227,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2541,"first_entry_time":53228,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":2,"id":"826","highest_child_id":2542,"first_entry_time":53232,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]}]}]},{"inclusive_time":2,"id":"855","highest_child_id":2543,"first_entry_time":52615,"exclusive_time":1,"entries":4},{"inclusive_time":8,"id":"874","highest_child_id":2545,"first_entry_time":52631,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2545,"first_entry_time":52634,"exclusive_time":1,"entries":2}]},{"inclusive_time":15,"id":"869","highest_child_id":2548,"first_entry_time":52639,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":9,"id":"870","highest_child_id":2548,"first_entry_time":52642,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2548,"first_entry_time":52647,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":2,"id":"826","highest_child_id":2549,"first_entry_time":52652,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]},{"inclusive_time":21,"id":"819","highest_child_id":2557,"first_entry_time":53092,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"728","highest_child_id":2551,"first_entry_time":53093,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2552,"first_entry_time":53098,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2553,"first_entry_time":53100,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"821","highest_child_id":2556,"first_entry_time":53103,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2555,"first_entry_time":53106,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2556,"first_entry_time":53109,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2557,"first_entry_time":53112,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]}],"allocations":[{"id":"27","count":6}]}]}]}]},{"inclusive_time":1512,"id":"875","highest_child_id":2777,"first_entry_time":53636,"exclusive_time":143,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2559,"first_entry_time":53642,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"876","highest_child_id":2560,"first_entry_time":53661,"exclusive_time":3,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":14,"id":"877","highest_child_id":2562,"first_entry_time":53677,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":2,"id":"879","highest_child_id":2562,"first_entry_time":53687,"exclusive_time":2,"entries":2}],"allocations":[{"id":"878","count":2}]},{"inclusive_time":4,"id":"880","highest_child_id":2563,"first_entry_time":53711,"exclusive_time":3,"entries":4},{"inclusive_time":1250,"id":"787","highest_child_id":2742,"first_entry_time":53722,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1241,"id":"838","highest_child_id":2740,"first_entry_time":53724,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1237,"id":"839","highest_child_id":2740,"first_entry_time":53727,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":2,"id":"394","highest_child_id":2567,"first_entry_time":53729,"exclusive_time":1,"entries":2},{"inclusive_time":105,"id":"841","highest_child_id":2593,"first_entry_time":53733,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2569,"first_entry_time":53735,"exclusive_time":0,"entries":1},{"inclusive_time":100,"id":"842","highest_child_id":2593,"first_entry_time":53737,"exclusive_time":45,"entries":1,"callees":[{"inclusive_time":29,"id":"787","highest_child_id":2581,"first_entry_time":53752,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":22,"id":"816","highest_child_id":2579,"first_entry_time":53754,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":19,"id":"817","highest_child_id":2579,"first_entry_time":53756,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2574,"first_entry_time":53758,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2575,"first_entry_time":53761,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2576,"first_entry_time":53764,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":2577,"first_entry_time":53768,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"859","highest_child_id":2578,"first_entry_time":53770,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2579,"first_entry_time":53774,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2581,"first_entry_time":53777,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2581,"first_entry_time":53779,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2582,"first_entry_time":53781,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2583,"first_entry_time":53785,"exclusive_time":1,"entries":2},{"inclusive_time":8,"id":"868","highest_child_id":2587,"first_entry_time":53789,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"869","highest_child_id":2587,"first_entry_time":53791,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2587,"first_entry_time":53794,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2587,"first_entry_time":53796,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":7,"id":"821","highest_child_id":2590,"first_entry_time":53799,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2589,"first_entry_time":53802,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2590,"first_entry_time":53805,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":6,"id":"881","highest_child_id":2592,"first_entry_time":53824,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2592,"first_entry_time":53828,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2593,"first_entry_time":53836,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":1119,"id":"875","highest_child_id":2740,"first_entry_time":53903,"exclusive_time":172,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2595,"first_entry_time":53907,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"876","highest_child_id":2596,"first_entry_time":53912,"exclusive_time":2,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":5,"id":"877","highest_child_id":2598,"first_entry_time":53916,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":1,"id":"879","highest_child_id":2598,"first_entry_time":53919,"exclusive_time":1,"entries":2}],"allocations":[{"id":"878","count":2}]},{"inclusive_time":3,"id":"880","highest_child_id":2599,"first_entry_time":53923,"exclusive_time":2,"entries":4},{"inclusive_time":733,"id":"787","highest_child_id":2706,"first_entry_time":53928,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":712,"id":"838","highest_child_id":2697,"first_entry_time":53930,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":709,"id":"839","highest_child_id":2697,"first_entry_time":53932,"exclusive_time":151,"entries":2,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2603,"first_entry_time":53933,"exclusive_time":1,"entries":2},{"inclusive_time":206,"id":"841","highest_child_id":2647,"first_entry_time":53937,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"393","highest_child_id":2605,"first_entry_time":53938,"exclusive_time":0,"entries":1},{"inclusive_time":202,"id":"842","highest_child_id":2647,"first_entry_time":53941,"exclusive_time":56,"entries":1,"callees":[{"inclusive_time":84,"id":"787","highest_child_id":2631,"first_entry_time":53949,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":28,"id":"816","highest_child_id":2615,"first_entry_time":53951,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":21,"id":"817","highest_child_id":2615,"first_entry_time":53958,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2610,"first_entry_time":53961,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2611,"first_entry_time":53963,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2612,"first_entry_time":53967,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":2613,"first_entry_time":53971,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"859","highest_child_id":2614,"first_entry_time":53973,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2615,"first_entry_time":53977,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":4,"id":"828","highest_child_id":2617,"first_entry_time":53981,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2617,"first_entry_time":53983,"exclusive_time":1,"entries":2}]},{"inclusive_time":44,"id":"861","highest_child_id":2631,"first_entry_time":54036,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"862","highest_child_id":2619,"first_entry_time":54038,"exclusive_time":1,"entries":1},{"inclusive_time":40,"id":"863","highest_child_id":2631,"first_entry_time":54040,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"864","highest_child_id":2622,"first_entry_time":54043,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"821","highest_child_id":2622,"first_entry_time":54044,"exclusive_time":2,"entries":1}]},{"inclusive_time":29,"id":"865","highest_child_id":2630,"first_entry_time":54048,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":23,"id":"866","highest_child_id":2630,"first_entry_time":54050,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2625,"first_entry_time":54053,"exclusive_time":1,"entries":1},{"inclusive_time":16,"id":"837","highest_child_id":2630,"first_entry_time":54056,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":15,"id":"797","highest_child_id":2630,"first_entry_time":54057,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":13,"id":"798","highest_child_id":2630,"first_entry_time":54059,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2629,"first_entry_time":54067,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":2630,"first_entry_time":54070,"exclusive_time":1,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2631,"first_entry_time":54078,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2632,"first_entry_time":53985,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":2633,"first_entry_time":53988,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"882","highest_child_id":2634,"first_entry_time":53999,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"821","highest_child_id":2637,"first_entry_time":54002,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2636,"first_entry_time":54110,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2637,"first_entry_time":54113,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":24,"id":"865","highest_child_id":2640,"first_entry_time":54007,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":6,"id":"883","highest_child_id":2640,"first_entry_time":54025,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2640,"first_entry_time":54028,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":17,"id":"868","highest_child_id":2644,"first_entry_time":54089,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":12,"id":"869","highest_child_id":2644,"first_entry_time":54091,"exclusive_time":6,"entries":3,"callees":[{"inclusive_time":6,"id":"870","highest_child_id":2644,"first_entry_time":54093,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2644,"first_entry_time":54095,"exclusive_time":0,"entries":3}]}]}]},{"inclusive_time":6,"id":"884","highest_child_id":2646,"first_entry_time":54132,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2646,"first_entry_time":54136,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2647,"first_entry_time":54140,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]},{"inclusive_time":350,"id":"885","highest_child_id":2697,"first_entry_time":54323,"exclusive_time":173,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2649,"first_entry_time":54327,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"586","highest_child_id":2650,"first_entry_time":54331,"exclusive_time":0,"entries":1},{"inclusive_time":32,"id":"787","highest_child_id":2661,"first_entry_time":54333,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":25,"id":"816","highest_child_id":2659,"first_entry_time":54336,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":22,"id":"817","highest_child_id":2659,"first_entry_time":54338,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":2654,"first_entry_time":54340,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":2655,"first_entry_time":54343,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":2656,"first_entry_time":54347,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":2657,"first_entry_time":54352,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"859","highest_child_id":2658,"first_entry_time":54354,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2659,"first_entry_time":54358,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2661,"first_entry_time":54361,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2661,"first_entry_time":54363,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":3,"id":"609","highest_child_id":2662,"first_entry_time":54366,"exclusive_time":2,"entries":5},{"inclusive_time":3,"id":"886","highest_child_id":2663,"first_entry_time":54386,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":1,"id":"829","highest_child_id":2664,"first_entry_time":54390,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"855","highest_child_id":2665,"first_entry_time":54392,"exclusive_time":1,"entries":5},{"inclusive_time":1,"id":"843","highest_child_id":2666,"first_entry_time":54396,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"867","highest_child_id":2667,"first_entry_time":54399,"exclusive_time":1,"entries":1},{"inclusive_time":17,"id":"887","highest_child_id":2671,"first_entry_time":54412,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":14,"id":"821","highest_child_id":2671,"first_entry_time":54414,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2670,"first_entry_time":54424,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2671,"first_entry_time":54431,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":5,"id":"883","highest_child_id":2673,"first_entry_time":54435,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2673,"first_entry_time":54438,"exclusive_time":1,"entries":1}]},{"inclusive_time":10,"id":"888","highest_child_id":2677,"first_entry_time":54460,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2675,"first_entry_time":54463,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"837","highest_child_id":2677,"first_entry_time":54466,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"797","highest_child_id":2677,"first_entry_time":54468,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":18,"id":"869","highest_child_id":2680,"first_entry_time":54471,"exclusive_time":11,"entries":3,"callees":[{"inclusive_time":6,"id":"870","highest_child_id":2680,"first_entry_time":54474,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2680,"first_entry_time":54475,"exclusive_time":1,"entries":3}]}]},{"inclusive_time":1,"id":"889","highest_child_id":2681,"first_entry_time":54488,"exclusive_time":1,"entries":1},{"inclusive_time":43,"id":"890","highest_child_id":2688,"first_entry_time":54546,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":0,"id":"285","highest_child_id":2683,"first_entry_time":54549,"exclusive_time":0,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":1,"id":"829","highest_child_id":2684,"first_entry_time":54554,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2685,"first_entry_time":54556,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2686,"first_entry_time":54559,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"891","highest_child_id":2687,"first_entry_time":54571,"exclusive_time":2,"entries":1},{"inclusive_time":3,"id":"892","highest_child_id":2688,"first_entry_time":54581,"exclusive_time":3,"entries":1,"allocations":[{"id":"56","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":3},{"id":"27","count":1}]},{"inclusive_time":1,"id":"748","highest_child_id":2689,"first_entry_time":54593,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2690,"first_entry_time":54595,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":2691,"first_entry_time":54616,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2692,"first_entry_time":54618,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"821","highest_child_id":2693,"first_entry_time":54620,"exclusive_time":1,"entries":1},{"inclusive_time":24,"id":"893","highest_child_id":2695,"first_entry_time":54633,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":4,"id":"894","highest_child_id":2695,"first_entry_time":54653,"exclusive_time":4,"entries":1}]},{"inclusive_time":1,"id":"895","highest_child_id":2696,"first_entry_time":54666,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"826","highest_child_id":2697,"first_entry_time":54671,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":2},{"id":"27","count":5},{"id":"25","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":15,"id":"828","highest_child_id":2706,"first_entry_time":54675,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2699,"first_entry_time":54676,"exclusive_time":0,"entries":1},{"inclusive_time":6,"id":"854","highest_child_id":2703,"first_entry_time":54678,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2701,"first_entry_time":54680,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2702,"first_entry_time":54681,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2703,"first_entry_time":54683,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":4,"id":"856","highest_child_id":2706,"first_entry_time":54686,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"855","highest_child_id":2705,"first_entry_time":54687,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":2706,"first_entry_time":54689,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":23,"id":"896","highest_child_id":2709,"first_entry_time":54145,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":15,"id":"801","highest_child_id":2709,"first_entry_time":54149,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":2,"id":"803","highest_child_id":2709,"first_entry_time":54161,"exclusive_time":2,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"282","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"829","highest_child_id":2710,"first_entry_time":54691,"exclusive_time":1,"entries":5},{"inclusive_time":55,"id":"897","highest_child_id":2717,"first_entry_time":54715,"exclusive_time":46,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2712,"first_entry_time":54724,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2713,"first_entry_time":54733,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2714,"first_entry_time":54742,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2715,"first_entry_time":54750,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2716,"first_entry_time":54759,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"903","highest_child_id":2717,"first_entry_time":54768,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"855","highest_child_id":2718,"first_entry_time":54783,"exclusive_time":1,"entries":2},{"inclusive_time":55,"id":"904","highest_child_id":2724,"first_entry_time":54801,"exclusive_time":25,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2720,"first_entry_time":54803,"exclusive_time":1,"entries":1},{"inclusive_time":28,"id":"905","highest_child_id":2724,"first_entry_time":54827,"exclusive_time":23,"entries":1,"callees":[{"inclusive_time":1,"id":"906","highest_child_id":2722,"first_entry_time":54838,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"907","highest_child_id":2723,"first_entry_time":54849,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"836","highest_child_id":2724,"first_entry_time":54854,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"56","count":3},{"id":"26","count":1}]}]},{"inclusive_time":1,"id":"867","highest_child_id":2725,"first_entry_time":54857,"exclusive_time":1,"entries":1},{"inclusive_time":44,"id":"908","highest_child_id":2734,"first_entry_time":54932,"exclusive_time":34,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2727,"first_entry_time":54934,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"909","highest_child_id":2728,"first_entry_time":54945,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2729,"first_entry_time":54949,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2730,"first_entry_time":54953,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2731,"first_entry_time":54955,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2732,"first_entry_time":54957,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"910","highest_child_id":2733,"first_entry_time":54965,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"911","highest_child_id":2734,"first_entry_time":54974,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"170","count":2}]},{"inclusive_time":9,"id":"869","highest_child_id":2737,"first_entry_time":54981,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2737,"first_entry_time":54985,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2737,"first_entry_time":54987,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":9,"id":"912","highest_child_id":2739,"first_entry_time":55011,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2739,"first_entry_time":55017,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2740,"first_entry_time":55021,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2742,"first_entry_time":55024,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2742,"first_entry_time":55025,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":18,"id":"896","highest_child_id":2745,"first_entry_time":53866,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":8,"id":"801","highest_child_id":2745,"first_entry_time":53875,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"803","highest_child_id":2745,"first_entry_time":53879,"exclusive_time":2,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"282","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":1,"id":"829","highest_child_id":2746,"first_entry_time":55028,"exclusive_time":0,"entries":5},{"inclusive_time":13,"id":"897","highest_child_id":2753,"first_entry_time":55035,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2748,"first_entry_time":55037,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2749,"first_entry_time":55040,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2750,"first_entry_time":55041,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2751,"first_entry_time":55043,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2752,"first_entry_time":55045,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"903","highest_child_id":2753,"first_entry_time":55047,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"855","highest_child_id":2754,"first_entry_time":55056,"exclusive_time":1,"entries":2},{"inclusive_time":17,"id":"913","highest_child_id":2760,"first_entry_time":55074,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2756,"first_entry_time":55077,"exclusive_time":1,"entries":1},{"inclusive_time":11,"id":"905","highest_child_id":2760,"first_entry_time":55080,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"906","highest_child_id":2758,"first_entry_time":55083,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"907","highest_child_id":2759,"first_entry_time":55086,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"836","highest_child_id":2760,"first_entry_time":55090,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1},{"id":"56","count":3},{"id":"26","count":1}]}]},{"inclusive_time":1,"id":"867","highest_child_id":2761,"first_entry_time":55093,"exclusive_time":1,"entries":1},{"inclusive_time":28,"id":"908","highest_child_id":2771,"first_entry_time":55095,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2763,"first_entry_time":55096,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"909","highest_child_id":2764,"first_entry_time":55100,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"899","highest_child_id":2765,"first_entry_time":55103,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"799","highest_child_id":2766,"first_entry_time":55106,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2767,"first_entry_time":55109,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2768,"first_entry_time":55113,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2769,"first_entry_time":55117,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"910","highest_child_id":2770,"first_entry_time":55119,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"911","highest_child_id":2771,"first_entry_time":55121,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":4},{"id":"28","count":2},{"id":"170","count":2}]},{"inclusive_time":7,"id":"869","highest_child_id":2774,"first_entry_time":55131,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2774,"first_entry_time":55133,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2774,"first_entry_time":55135,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":7,"id":"912","highest_child_id":2776,"first_entry_time":55139,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2776,"first_entry_time":55144,"exclusive_time":1,"entries":1}],"allocations":[{"id":"56","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2777,"first_entry_time":55147,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]}],"allocations":[{"id":"27","count":3}]}]},{"inclusive_time":5,"id":"914","highest_child_id":2779,"first_entry_time":55209,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":2,"id":"826","highest_child_id":2779,"first_entry_time":55212,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":576,"id":"915","highest_child_id":2905,"first_entry_time":55263,"exclusive_time":31,"entries":1,"callees":[{"inclusive_time":45,"id":"831","highest_child_id":2791,"first_entry_time":55265,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":2782,"first_entry_time":55267,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"403","highest_child_id":2783,"first_entry_time":55270,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"414","highest_child_id":2784,"first_entry_time":55272,"exclusive_time":0,"entries":1},{"inclusive_time":18,"id":"832","highest_child_id":2786,"first_entry_time":55275,"exclusive_time":12,"entries":1,"callees":[{"inclusive_time":6,"id":"833","highest_child_id":2786,"first_entry_time":55277,"exclusive_time":5,"entries":1,"allocations":[{"id":"26","count":1}]}],"allocations":[{"id":"10","count":1},{"id":"27","count":1}]},{"inclusive_time":14,"id":"834","highest_child_id":2791,"first_entry_time":55296,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":11,"id":"835","highest_child_id":2791,"first_entry_time":55299,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":2789,"first_entry_time":55301,"exclusive_time":1,"entries":3},{"inclusive_time":3,"id":"837","highest_child_id":2791,"first_entry_time":55304,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"797","highest_child_id":2791,"first_entry_time":55306,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":496,"id":"916","highest_child_id":2904,"first_entry_time":55332,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"741","highest_child_id":2793,"first_entry_time":55334,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"393","highest_child_id":2794,"first_entry_time":55338,"exclusive_time":0,"entries":1},{"inclusive_time":488,"id":"815","highest_child_id":2904,"first_entry_time":55339,"exclusive_time":10,"entries":1,"callees":[{"inclusive_time":475,"id":"787","highest_child_id":2901,"first_entry_time":55345,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":459,"id":"917","highest_child_id":2901,"first_entry_time":55361,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":455,"id":"787","highest_child_id":2901,"first_entry_time":55364,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":453,"id":"838","highest_child_id":2901,"first_entry_time":55366,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":450,"id":"839","highest_child_id":2901,"first_entry_time":55369,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2801,"first_entry_time":55370,"exclusive_time":1,"entries":1},{"inclusive_time":444,"id":"840","highest_child_id":2901,"first_entry_time":55375,"exclusive_time":65,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2803,"first_entry_time":55378,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"609","highest_child_id":2804,"first_entry_time":55384,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"394","highest_child_id":2805,"first_entry_time":55386,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"395","highest_child_id":2806,"first_entry_time":55390,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1},{"id":"396","count":1}]},{"inclusive_time":3,"id":"918","highest_child_id":2807,"first_entry_time":55402,"exclusive_time":3,"entries":1,"allocations":[{"id":"10","count":1},{"id":"919","count":1}]},{"inclusive_time":2,"id":"397","highest_child_id":2808,"first_entry_time":55407,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"6","count":1},{"id":"398","count":1}]},{"inclusive_time":303,"id":"787","highest_child_id":2875,"first_entry_time":55410,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":244,"id":"838","highest_child_id":2861,"first_entry_time":55412,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":242,"id":"839","highest_child_id":2861,"first_entry_time":55415,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":2812,"first_entry_time":55416,"exclusive_time":1,"entries":1},{"inclusive_time":237,"id":"841","highest_child_id":2861,"first_entry_time":55420,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"393","highest_child_id":2814,"first_entry_time":55421,"exclusive_time":0,"entries":1},{"inclusive_time":233,"id":"842","highest_child_id":2861,"first_entry_time":55423,"exclusive_time":27,"entries":1,"callees":[{"inclusive_time":185,"id":"787","highest_child_id":2851,"first_entry_time":55437,"exclusive_time":40,"entries":1,"callees":[{"inclusive_time":143,"id":"920","highest_child_id":2849,"first_entry_time":55476,"exclusive_time":24,"entries":1,"callees":[{"inclusive_time":2,"id":"921","highest_child_id":2818,"first_entry_time":55486,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":2}]},{"inclusive_time":2,"id":"922","highest_child_id":2819,"first_entry_time":55499,"exclusive_time":2,"entries":1,"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"393","highest_child_id":2820,"first_entry_time":55502,"exclusive_time":0,"entries":1},{"inclusive_time":113,"id":"842","highest_child_id":2849,"first_entry_time":55505,"exclusive_time":35,"entries":1,"callees":[{"inclusive_time":51,"id":"787","highest_child_id":2837,"first_entry_time":55513,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":45,"id":"861","highest_child_id":2835,"first_entry_time":55515,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"862","highest_child_id":2824,"first_entry_time":55517,"exclusive_time":1,"entries":1},{"inclusive_time":41,"id":"863","highest_child_id":2835,"first_entry_time":55520,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":4,"id":"864","highest_child_id":2827,"first_entry_time":55522,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":2,"id":"821","highest_child_id":2827,"first_entry_time":55524,"exclusive_time":2,"entries":1}]},{"inclusive_time":29,"id":"865","highest_child_id":2834,"first_entry_time":55528,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":26,"id":"866","highest_child_id":2834,"first_entry_time":55531,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2830,"first_entry_time":55535,"exclusive_time":1,"entries":1},{"inclusive_time":18,"id":"837","highest_child_id":2834,"first_entry_time":55538,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":17,"id":"797","highest_child_id":2834,"first_entry_time":55539,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":14,"id":"798","highest_child_id":2834,"first_entry_time":55541,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":2834,"first_entry_time":55552,"exclusive_time":1,"entries":1}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2835,"first_entry_time":55558,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":2,"id":"828","highest_child_id":2837,"first_entry_time":55562,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2837,"first_entry_time":55563,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2838,"first_entry_time":55565,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2839,"first_entry_time":55568,"exclusive_time":1,"entries":2},{"inclusive_time":10,"id":"868","highest_child_id":2843,"first_entry_time":55573,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":8,"id":"869","highest_child_id":2843,"first_entry_time":55575,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2843,"first_entry_time":55579,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2843,"first_entry_time":55581,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":2,"id":"821","highest_child_id":2844,"first_entry_time":55585,"exclusive_time":2,"entries":1},{"inclusive_time":6,"id":"923","highest_child_id":2846,"first_entry_time":55604,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2846,"first_entry_time":55608,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":2847,"first_entry_time":55612,"exclusive_time":2,"entries":1,"allocations":[{"id":"827","count":1}]},{"inclusive_time":2,"id":"828","highest_child_id":2849,"first_entry_time":55615,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2849,"first_entry_time":55616,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"828","highest_child_id":2851,"first_entry_time":55620,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2851,"first_entry_time":55621,"exclusive_time":0,"entries":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2852,"first_entry_time":55623,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":2853,"first_entry_time":55626,"exclusive_time":1,"entries":2},{"inclusive_time":9,"id":"868","highest_child_id":2857,"first_entry_time":55630,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":7,"id":"869","highest_child_id":2857,"first_entry_time":55632,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2857,"first_entry_time":55635,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2857,"first_entry_time":55637,"exclusive_time":0,"entries":1}]}]}]},{"inclusive_time":2,"id":"821","highest_child_id":2858,"first_entry_time":55641,"exclusive_time":2,"entries":1},{"inclusive_time":5,"id":"883","highest_child_id":2860,"first_entry_time":55649,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2860,"first_entry_time":55651,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2861,"first_entry_time":55655,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":54,"id":"917","highest_child_id":2875,"first_entry_time":55678,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":52,"id":"787","highest_child_id":2875,"first_entry_time":55680,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":49,"id":"914","highest_child_id":2875,"first_entry_time":55682,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"653","highest_child_id":2866,"first_entry_time":55684,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":2866,"first_entry_time":55686,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"845","highest_child_id":2867,"first_entry_time":55689,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"887","highest_child_id":2871,"first_entry_time":55692,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":2871,"first_entry_time":55693,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2870,"first_entry_time":55696,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2871,"first_entry_time":55698,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":26,"id":"865","highest_child_id":2874,"first_entry_time":55702,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":7,"id":"924","highest_child_id":2874,"first_entry_time":55721,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2874,"first_entry_time":55726,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2875,"first_entry_time":55730,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]},{"inclusive_time":5,"id":"886","highest_child_id":2877,"first_entry_time":55659,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"740","highest_child_id":2877,"first_entry_time":55662,"exclusive_time":1,"entries":1}],"allocations":[{"id":"10","count":2},{"id":"25","count":2}]},{"inclusive_time":3,"id":"855","highest_child_id":2878,"first_entry_time":55665,"exclusive_time":1,"entries":6},{"inclusive_time":1,"id":"843","highest_child_id":2879,"first_entry_time":55669,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"867","highest_child_id":2880,"first_entry_time":55673,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":2881,"first_entry_time":55733,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"889","highest_child_id":2882,"first_entry_time":55736,"exclusive_time":1,"entries":1},{"inclusive_time":25,"id":"890","highest_child_id":2889,"first_entry_time":55738,"exclusive_time":17,"entries":1,"callees":[{"inclusive_time":0,"id":"285","highest_child_id":2884,"first_entry_time":55741,"exclusive_time":0,"entries":1,"allocations":[{"id":"282","count":1}]},{"inclusive_time":1,"id":"829","highest_child_id":2885,"first_entry_time":55744,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"748","highest_child_id":2886,"first_entry_time":55746,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2887,"first_entry_time":55748,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"891","highest_child_id":2888,"first_entry_time":55756,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"892","highest_child_id":2889,"first_entry_time":55759,"exclusive_time":2,"entries":1,"allocations":[{"id":"56","count":1}]}],"allocations":[{"id":"26","count":2},{"id":"25","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"748","highest_child_id":2890,"first_entry_time":55767,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"740","highest_child_id":2891,"first_entry_time":55770,"exclusive_time":0,"entries":1},{"inclusive_time":11,"id":"869","highest_child_id":2894,"first_entry_time":55776,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":5,"id":"870","highest_child_id":2894,"first_entry_time":55780,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2894,"first_entry_time":55782,"exclusive_time":0,"entries":2}]}]},{"inclusive_time":1,"id":"583","highest_child_id":2895,"first_entry_time":55793,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":2896,"first_entry_time":55795,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"821","highest_child_id":2897,"first_entry_time":55797,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"893","highest_child_id":2899,"first_entry_time":55801,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":3,"id":"894","highest_child_id":2899,"first_entry_time":55803,"exclusive_time":3,"entries":1}]},{"inclusive_time":1,"id":"895","highest_child_id":2900,"first_entry_time":55808,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2901,"first_entry_time":55817,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":6},{"id":"10","count":1},{"id":"25","count":2},{"id":"56","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2902,"first_entry_time":55821,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"855","highest_child_id":2903,"first_entry_time":55824,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":2904,"first_entry_time":55827,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"579","highest_child_id":2905,"first_entry_time":55830,"exclusive_time":2,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"25","count":1}]}]},{"inclusive_time":5,"id":"855","highest_child_id":2906,"first_entry_time":52063,"exclusive_time":2,"entries":14},{"inclusive_time":4,"id":"829","highest_child_id":2907,"first_entry_time":52065,"exclusive_time":1,"entries":16},{"inclusive_time":9,"id":"869","highest_child_id":2908,"first_entry_time":52067,"exclusive_time":6,"entries":13},{"inclusive_time":3,"id":"826","highest_child_id":2909,"first_entry_time":53047,"exclusive_time":2,"entries":3,"allocations":[{"id":"827","count":3}]}],"allocations":[{"id":"25","count":3}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2911,"first_entry_time":53050,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2911,"first_entry_time":53051,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":1,"id":"855","highest_child_id":2912,"first_entry_time":53054,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"829","highest_child_id":2913,"first_entry_time":53056,"exclusive_time":0,"entries":5},{"inclusive_time":1,"id":"869","highest_child_id":2914,"first_entry_time":53057,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"826","highest_child_id":2915,"first_entry_time":55850,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"829","highest_child_id":2916,"first_entry_time":55853,"exclusive_time":1,"entries":3},{"inclusive_time":8,"id":"925","highest_child_id":2918,"first_entry_time":55880,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":2,"id":"682","highest_child_id":2918,"first_entry_time":55883,"exclusive_time":1,"entries":2}],"allocations":[{"id":"10","count":1},{"id":"27","count":2}]},{"inclusive_time":1,"id":"855","highest_child_id":2919,"first_entry_time":55891,"exclusive_time":0,"entries":1},{"inclusive_time":5,"id":"926","highest_child_id":2921,"first_entry_time":55906,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2921,"first_entry_time":55909,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"896","highest_child_id":2924,"first_entry_time":55913,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":4,"id":"801","highest_child_id":2924,"first_entry_time":55916,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"803","highest_child_id":2924,"first_entry_time":55919,"exclusive_time":1,"entries":1}],"allocations":[{"id":"802","count":1}]}],"allocations":[{"id":"282","count":1},{"id":"6","count":1},{"id":"26","count":1},{"id":"10","count":1}]},{"inclusive_time":2,"id":"821","highest_child_id":2925,"first_entry_time":55923,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"927","highest_child_id":2926,"first_entry_time":55934,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"869","highest_child_id":2929,"first_entry_time":55938,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":3,"id":"870","highest_child_id":2929,"first_entry_time":55940,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2929,"first_entry_time":55942,"exclusive_time":1,"entries":1}]}]},{"inclusive_time":1,"id":"928","highest_child_id":2930,"first_entry_time":55953,"exclusive_time":1,"entries":1},{"inclusive_time":7,"id":"579","highest_child_id":2931,"first_entry_time":55956,"exclusive_time":6,"entries":1,"allocations":[{"id":"10","count":1},{"id":"170","count":1}]},{"inclusive_time":4,"id":"929","highest_child_id":2932,"first_entry_time":55971,"exclusive_time":4,"entries":1},{"inclusive_time":1,"id":"930","highest_child_id":2933,"first_entry_time":55987,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"931","highest_child_id":2934,"first_entry_time":55997,"exclusive_time":1,"entries":2},{"inclusive_time":52,"id":"932","highest_child_id":2940,"first_entry_time":56009,"exclusive_time":13,"entries":2,"callees":[{"inclusive_time":39,"id":"933","highest_child_id":2940,"first_entry_time":56021,"exclusive_time":27,"entries":2,"callees":[{"inclusive_time":6,"id":"934","highest_child_id":2938,"first_entry_time":56036,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2938,"first_entry_time":56040,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"935","highest_child_id":2940,"first_entry_time":56058,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2940,"first_entry_time":56061,"exclusive_time":1,"entries":1}]}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":14,"id":"897","highest_child_id":2947,"first_entry_time":56065,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2942,"first_entry_time":56067,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"899","highest_child_id":2943,"first_entry_time":56069,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"900","highest_child_id":2944,"first_entry_time":56071,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2945,"first_entry_time":56072,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"902","highest_child_id":2946,"first_entry_time":56075,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"903","highest_child_id":2947,"first_entry_time":56077,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]},{"inclusive_time":26,"id":"908","highest_child_id":2954,"first_entry_time":56080,"exclusive_time":18,"entries":1,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":2949,"first_entry_time":56081,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"909","highest_child_id":2950,"first_entry_time":56085,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"799","highest_child_id":2951,"first_entry_time":56088,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"899","highest_child_id":2952,"first_entry_time":56092,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"901","highest_child_id":2953,"first_entry_time":56097,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"911","highest_child_id":2954,"first_entry_time":56104,"exclusive_time":1,"entries":1}],"allocations":[{"id":"25","count":3},{"id":"28","count":6},{"id":"170","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"27","count":2},{"id":"10","count":2},{"id":"25","count":5}]},{"inclusive_time":2,"id":"936","highest_child_id":2955,"first_entry_time":56121,"exclusive_time":1,"entries":1},{"inclusive_time":6,"id":"579","highest_child_id":2957,"first_entry_time":56124,"exclusive_time":6,"entries":1,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":2957,"first_entry_time":56128,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":1},{"id":"170","count":1},{"id":"27","count":1}]},{"inclusive_time":1,"id":"858","highest_child_id":2958,"first_entry_time":56133,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"937","highest_child_id":2959,"first_entry_time":56149,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"27","count":1},{"id":"10","count":1},{"id":"28","count":1},{"id":"25","count":1}]},{"inclusive_time":4,"id":"682","highest_child_id":2960,"first_entry_time":56154,"exclusive_time":2,"entries":6},{"inclusive_time":4,"id":"938","highest_child_id":2962,"first_entry_time":56173,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"658","highest_child_id":2962,"first_entry_time":56175,"exclusive_time":1,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":17,"id":"939","highest_child_id":2968,"first_entry_time":56199,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"658","highest_child_id":2964,"first_entry_time":56201,"exclusive_time":1,"entries":1},{"inclusive_time":8,"id":"821","highest_child_id":2967,"first_entry_time":56205,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2966,"first_entry_time":56208,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"823","highest_child_id":2967,"first_entry_time":56211,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":1,"id":"825","highest_child_id":2968,"first_entry_time":56215,"exclusive_time":0,"entries":1}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2969,"first_entry_time":56217,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"2","count":1},{"id":"27","count":7}]},{"inclusive_time":4,"id":"828","highest_child_id":2971,"first_entry_time":56220,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2971,"first_entry_time":56221,"exclusive_time":1,"entries":2}]},{"inclusive_time":38,"id":"940","highest_child_id":2985,"first_entry_time":57640,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"941","highest_child_id":2973,"first_entry_time":57642,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"658","highest_child_id":2974,"first_entry_time":57644,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"843","highest_child_id":2975,"first_entry_time":57648,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"887","highest_child_id":2979,"first_entry_time":57651,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":2979,"first_entry_time":57653,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2978,"first_entry_time":57656,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2979,"first_entry_time":57658,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":13,"id":"865","highest_child_id":2984,"first_entry_time":57661,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"942","highest_child_id":2984,"first_entry_time":57664,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2982,"first_entry_time":57667,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"943","highest_child_id":2983,"first_entry_time":57670,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"944","highest_child_id":2984,"first_entry_time":57672,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":2985,"first_entry_time":57676,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":2986,"first_entry_time":56224,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":2987,"first_entry_time":56227,"exclusive_time":1,"entries":4},{"inclusive_time":19,"id":"868","highest_child_id":2991,"first_entry_time":56232,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":12,"id":"869","highest_child_id":2991,"first_entry_time":56233,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":5,"id":"870","highest_child_id":2991,"first_entry_time":56236,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":2991,"first_entry_time":56238,"exclusive_time":1,"entries":2}]}]}]},{"inclusive_time":8,"id":"821","highest_child_id":2994,"first_entry_time":56245,"exclusive_time":5,"entries":2,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":2993,"first_entry_time":56248,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":2994,"first_entry_time":56251,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]},{"inclusive_time":8,"id":"883","highest_child_id":2996,"first_entry_time":56255,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":2996,"first_entry_time":56257,"exclusive_time":1,"entries":2}]},{"inclusive_time":2,"id":"826","highest_child_id":2997,"first_entry_time":56260,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"10","count":8},{"id":"25","count":4}]}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":3,"id":"828","highest_child_id":2999,"first_entry_time":56264,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":2999,"first_entry_time":56265,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":3,"id":"394","highest_child_id":3000,"first_entry_time":56268,"exclusive_time":2,"entries":4},{"inclusive_time":3,"id":"886","highest_child_id":3001,"first_entry_time":56270,"exclusive_time":3,"entries":2,"allocations":[{"id":"10","count":4},{"id":"25","count":4}]},{"inclusive_time":3,"id":"855","highest_child_id":3002,"first_entry_time":56273,"exclusive_time":2,"entries":8},{"inclusive_time":2,"id":"843","highest_child_id":3003,"first_entry_time":56276,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"867","highest_child_id":3004,"first_entry_time":56281,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"889","highest_child_id":3005,"first_entry_time":56283,"exclusive_time":1,"entries":2},{"inclusive_time":20,"id":"890","highest_child_id":3009,"first_entry_time":56285,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":1,"id":"285","highest_child_id":3007,"first_entry_time":56287,"exclusive_time":0,"entries":2,"allocations":[{"id":"282","count":2}]},{"inclusive_time":2,"id":"891","highest_child_id":3008,"first_entry_time":56290,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"892","highest_child_id":3009,"first_entry_time":56293,"exclusive_time":2,"entries":2,"allocations":[{"id":"56","count":2}]}],"allocations":[{"id":"26","count":4},{"id":"25","count":4},{"id":"27","count":2}]},{"inclusive_time":11,"id":"869","highest_child_id":3012,"first_entry_time":56301,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":3012,"first_entry_time":56303,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3012,"first_entry_time":56305,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":1,"id":"583","highest_child_id":3013,"first_entry_time":56312,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"820","highest_child_id":3014,"first_entry_time":56313,"exclusive_time":1,"entries":2},{"inclusive_time":3,"id":"821","highest_child_id":3015,"first_entry_time":56316,"exclusive_time":3,"entries":2},{"inclusive_time":14,"id":"893","highest_child_id":3017,"first_entry_time":56319,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":6,"id":"894","highest_child_id":3017,"first_entry_time":56321,"exclusive_time":6,"entries":2}]},{"inclusive_time":1,"id":"895","highest_child_id":3018,"first_entry_time":56331,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"826","highest_child_id":3019,"first_entry_time":56342,"exclusive_time":2,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"27","count":10},{"id":"10","count":4},{"id":"25","count":4},{"id":"56","count":2}]}],"allocations":[{"id":"27","count":2}]}]},{"inclusive_time":557,"id":"915","highest_child_id":3157,"first_entry_time":56811,"exclusive_time":20,"entries":2,"callees":[{"inclusive_time":5,"id":"831","highest_child_id":3022,"first_entry_time":56819,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"332","highest_child_id":3022,"first_entry_time":56821,"exclusive_time":1,"entries":2}]},{"inclusive_time":526,"id":"916","highest_child_id":3156,"first_entry_time":56825,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"741","highest_child_id":3024,"first_entry_time":56827,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"393","highest_child_id":3025,"first_entry_time":56829,"exclusive_time":1,"entries":2},{"inclusive_time":516,"id":"815","highest_child_id":3156,"first_entry_time":56831,"exclusive_time":16,"entries":2,"callees":[{"inclusive_time":494,"id":"787","highest_child_id":3152,"first_entry_time":56835,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":313,"id":"830","highest_child_id":3105,"first_entry_time":56837,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":2,"id":"831","highest_child_id":3030,"first_entry_time":56839,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"332","highest_child_id":3030,"first_entry_time":56840,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"723","highest_child_id":3031,"first_entry_time":56842,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"393","highest_child_id":3032,"first_entry_time":56844,"exclusive_time":0,"entries":1},{"inclusive_time":305,"id":"815","highest_child_id":3105,"first_entry_time":56845,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":291,"id":"787","highest_child_id":3101,"first_entry_time":56849,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":272,"id":"838","highest_child_id":3092,"first_entry_time":56851,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":269,"id":"839","highest_child_id":3092,"first_entry_time":56854,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":3037,"first_entry_time":56855,"exclusive_time":0,"entries":1},{"inclusive_time":264,"id":"857","highest_child_id":3092,"first_entry_time":56859,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"393","highest_child_id":3039,"first_entry_time":56861,"exclusive_time":0,"entries":1},{"inclusive_time":260,"id":"787","highest_child_id":3092,"first_entry_time":56863,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":257,"id":"816","highest_child_id":3092,"first_entry_time":56865,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":255,"id":"817","highest_child_id":3092,"first_entry_time":56867,"exclusive_time":49,"entries":1,"callees":[{"inclusive_time":1,"id":"725","highest_child_id":3043,"first_entry_time":56869,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"726","highest_child_id":3044,"first_entry_time":56871,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"728","highest_child_id":3045,"first_entry_time":56874,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"393","highest_child_id":3046,"first_entry_time":56877,"exclusive_time":0,"entries":1},{"inclusive_time":155,"id":"860","highest_child_id":3076,"first_entry_time":56879,"exclusive_time":4,"entries":3,"callees":[{"inclusive_time":150,"id":"787","highest_child_id":3076,"first_entry_time":56881,"exclusive_time":37,"entries":3,"callees":[{"inclusive_time":59,"id":"914","highest_child_id":3060,"first_entry_time":56884,"exclusive_time":14,"entries":2,"callees":[{"inclusive_time":4,"id":"653","highest_child_id":3051,"first_entry_time":56886,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":3051,"first_entry_time":56887,"exclusive_time":1,"entries":2}]},{"inclusive_time":3,"id":"845","highest_child_id":3052,"first_entry_time":56890,"exclusive_time":2,"entries":2,"allocations":[{"id":"27","count":1}]},{"inclusive_time":19,"id":"887","highest_child_id":3056,"first_entry_time":56894,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":17,"id":"821","highest_child_id":3056,"first_entry_time":56895,"exclusive_time":12,"entries":2,"callees":[{"inclusive_time":2,"id":"822","highest_child_id":3055,"first_entry_time":56903,"exclusive_time":2,"entries":2},{"inclusive_time":2,"id":"823","highest_child_id":3056,"first_entry_time":56906,"exclusive_time":2,"entries":2,"allocations":[{"id":"824","count":2}]}]}]},{"inclusive_time":16,"id":"865","highest_child_id":3059,"first_entry_time":56910,"exclusive_time":4,"entries":2,"callees":[{"inclusive_time":11,"id":"924","highest_child_id":3059,"first_entry_time":56913,"exclusive_time":10,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3059,"first_entry_time":56918,"exclusive_time":1,"entries":2}]}],"allocations":[{"id":"10","count":2}]},{"inclusive_time":2,"id":"826","highest_child_id":3060,"first_entry_time":56922,"exclusive_time":1,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"27","count":2},{"id":"28","count":1}]},{"inclusive_time":5,"id":"828","highest_child_id":3062,"first_entry_time":56924,"exclusive_time":3,"entries":3,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3062,"first_entry_time":56926,"exclusive_time":1,"entries":3}]},{"inclusive_time":49,"id":"940","highest_child_id":3076,"first_entry_time":56995,"exclusive_time":19,"entries":1,"callees":[{"inclusive_time":2,"id":"941","highest_child_id":3064,"first_entry_time":57007,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"658","highest_child_id":3065,"first_entry_time":57010,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"843","highest_child_id":3066,"first_entry_time":57014,"exclusive_time":1,"entries":1},{"inclusive_time":9,"id":"887","highest_child_id":3070,"first_entry_time":57017,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":3070,"first_entry_time":57018,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":3069,"first_entry_time":57021,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":3070,"first_entry_time":57024,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":14,"id":"865","highest_child_id":3075,"first_entry_time":57027,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"942","highest_child_id":3075,"first_entry_time":57029,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3073,"first_entry_time":57033,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"943","highest_child_id":3074,"first_entry_time":57036,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"944","highest_child_id":3075,"first_entry_time":57038,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":3076,"first_entry_time":57042,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":2,"id":"653","highest_child_id":3078,"first_entry_time":56953,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":3078,"first_entry_time":56955,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"583","highest_child_id":3079,"first_entry_time":56957,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":3080,"first_entry_time":56959,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"855","highest_child_id":3081,"first_entry_time":57050,"exclusive_time":1,"entries":6},{"inclusive_time":21,"id":"945","highest_child_id":3087,"first_entry_time":57074,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3083,"first_entry_time":57078,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"837","highest_child_id":3087,"first_entry_time":57081,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":11,"id":"797","highest_child_id":3087,"first_entry_time":57083,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"798","highest_child_id":3087,"first_entry_time":57085,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":3087,"first_entry_time":57091,"exclusive_time":1,"entries":1}]}]}]}]},{"inclusive_time":1,"id":"829","highest_child_id":3088,"first_entry_time":57097,"exclusive_time":0,"entries":1},{"inclusive_time":16,"id":"869","highest_child_id":3091,"first_entry_time":57101,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":9,"id":"870","highest_child_id":3091,"first_entry_time":57104,"exclusive_time":7,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3091,"first_entry_time":57110,"exclusive_time":1,"entries":2}]}]},{"inclusive_time":1,"id":"826","highest_child_id":3092,"first_entry_time":57120,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":3},{"id":"56","count":1}]}]}]}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":16,"id":"828","highest_child_id":3101,"first_entry_time":57124,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3094,"first_entry_time":57126,"exclusive_time":0,"entries":1},{"inclusive_time":7,"id":"854","highest_child_id":3098,"first_entry_time":57128,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3096,"first_entry_time":57130,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"855","highest_child_id":3097,"first_entry_time":57131,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":3098,"first_entry_time":57133,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]},{"inclusive_time":4,"id":"856","highest_child_id":3101,"first_entry_time":57136,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"855","highest_child_id":3100,"first_entry_time":57137,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":3101,"first_entry_time":57139,"exclusive_time":1,"entries":1}]}]}]},{"inclusive_time":1,"id":"855","highest_child_id":3102,"first_entry_time":57143,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"829","highest_child_id":3103,"first_entry_time":57144,"exclusive_time":0,"entries":1},{"inclusive_time":1,"id":"869","highest_child_id":3104,"first_entry_time":57146,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"826","highest_child_id":3105,"first_entry_time":57149,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"25","count":1}]}]},{"inclusive_time":2,"id":"828","highest_child_id":3107,"first_entry_time":57151,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3107,"first_entry_time":57153,"exclusive_time":0,"entries":1}]},{"inclusive_time":173,"id":"838","highest_child_id":3152,"first_entry_time":57198,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":171,"id":"839","highest_child_id":3152,"first_entry_time":57200,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"394","highest_child_id":3110,"first_entry_time":57202,"exclusive_time":0,"entries":1},{"inclusive_time":165,"id":"841","highest_child_id":3152,"first_entry_time":57206,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":0,"id":"393","highest_child_id":3112,"first_entry_time":57208,"exclusive_time":0,"entries":1},{"inclusive_time":161,"id":"842","highest_child_id":3152,"first_entry_time":57210,"exclusive_time":42,"entries":1,"callees":[{"inclusive_time":87,"id":"787","highest_child_id":3142,"first_entry_time":57218,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":50,"id":"861","highest_child_id":3130,"first_entry_time":57220,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"862","highest_child_id":3116,"first_entry_time":57222,"exclusive_time":1,"entries":1},{"inclusive_time":46,"id":"863","highest_child_id":3130,"first_entry_time":57224,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":9,"id":"864","highest_child_id":3121,"first_entry_time":57226,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":7,"id":"821","highest_child_id":3121,"first_entry_time":57228,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"822","highest_child_id":3120,"first_entry_time":57231,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"823","highest_child_id":3121,"first_entry_time":57233,"exclusive_time":1,"entries":1,"allocations":[{"id":"824","count":1}]}]}]},{"inclusive_time":31,"id":"865","highest_child_id":3129,"first_entry_time":57236,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":28,"id":"866","highest_child_id":3129,"first_entry_time":57239,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3124,"first_entry_time":57242,"exclusive_time":1,"entries":1},{"inclusive_time":22,"id":"837","highest_child_id":3129,"first_entry_time":57245,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":20,"id":"797","highest_child_id":3129,"first_entry_time":57246,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":18,"id":"798","highest_child_id":3129,"first_entry_time":57248,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":3128,"first_entry_time":57255,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"800","highest_child_id":3129,"first_entry_time":57257,"exclusive_time":1,"entries":2}]}]}]}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":2,"id":"826","highest_child_id":3130,"first_entry_time":57268,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}]}],"allocations":[{"id":"27","count":1}]},{"inclusive_time":4,"id":"828","highest_child_id":3132,"first_entry_time":57272,"exclusive_time":2,"entries":2,"callees":[{"inclusive_time":1,"id":"829","highest_child_id":3132,"first_entry_time":57273,"exclusive_time":1,"entries":2}]},{"inclusive_time":27,"id":"914","highest_child_id":3142,"first_entry_time":57285,"exclusive_time":8,"entries":1,"callees":[{"inclusive_time":3,"id":"653","highest_child_id":3135,"first_entry_time":57287,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":1,"id":"639","highest_child_id":3135,"first_entry_time":57289,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"845","highest_child_id":3136,"first_entry_time":57292,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"887","highest_child_id":3138,"first_entry_time":57294,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":2,"id":"821","highest_child_id":3138,"first_entry_time":57296,"exclusive_time":2,"entries":1}]},{"inclusive_time":9,"id":"865","highest_child_id":3141,"first_entry_time":57300,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":6,"id":"924","highest_child_id":3141,"first_entry_time":57303,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3141,"first_entry_time":57307,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"10","count":1}]},{"inclusive_time":1,"id":"826","highest_child_id":3142,"first_entry_time":57310,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"27","count":1}]}]},{"inclusive_time":1,"id":"829","highest_child_id":3143,"first_entry_time":57275,"exclusive_time":0,"entries":2},{"inclusive_time":1,"id":"855","highest_child_id":3144,"first_entry_time":57279,"exclusive_time":1,"entries":4},{"inclusive_time":18,"id":"868","highest_child_id":3148,"first_entry_time":57320,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":11,"id":"869","highest_child_id":3148,"first_entry_time":57322,"exclusive_time":6,"entries":2,"callees":[{"inclusive_time":4,"id":"870","highest_child_id":3148,"first_entry_time":57325,"exclusive_time":3,"entries":2,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3148,"first_entry_time":57326,"exclusive_time":0,"entries":2}]}]}]},{"inclusive_time":2,"id":"821","highest_child_id":3149,"first_entry_time":57340,"exclusive_time":2,"entries":1},{"inclusive_time":7,"id":"946","highest_child_id":3151,"first_entry_time":57361,"exclusive_time":5,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3151,"first_entry_time":57365,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"826","highest_child_id":3152,"first_entry_time":57369,"exclusive_time":1,"entries":1,"allocations":[{"id":"827","count":1}]}],"allocations":[{"id":"10","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]}]},{"inclusive_time":1,"id":"855","highest_child_id":3153,"first_entry_time":57155,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"829","highest_child_id":3154,"first_entry_time":57157,"exclusive_time":0,"entries":4},{"inclusive_time":1,"id":"869","highest_child_id":3155,"first_entry_time":57159,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"826","highest_child_id":3156,"first_entry_time":57161,"exclusive_time":1,"entries":2,"allocations":[{"id":"827","count":2}]}],"allocations":[{"id":"25","count":2}]}]},{"inclusive_time":5,"id":"579","highest_child_id":3157,"first_entry_time":57164,"exclusive_time":5,"entries":2,"allocations":[{"id":"10","count":2},{"id":"170","count":2}]}],"allocations":[{"id":"6","count":2},{"id":"25","count":2}]}]},{"inclusive_time":3,"id":"855","highest_child_id":3158,"first_entry_time":50958,"exclusive_time":1,"entries":6},{"inclusive_time":3,"id":"829","highest_child_id":3159,"first_entry_time":50960,"exclusive_time":1,"entries":12},{"inclusive_time":3,"id":"869","highest_child_id":3160,"first_entry_time":50981,"exclusive_time":3,"entries":3},{"inclusive_time":2,"id":"826","highest_child_id":3161,"first_entry_time":56350,"exclusive_time":2,"entries":3,"allocations":[{"id":"827","count":3}]}],"allocations":[{"id":"25","count":3}]},{"inclusive_time":3,"id":"829","highest_child_id":3162,"first_entry_time":56353,"exclusive_time":1,"entries":9},{"inclusive_time":16,"id":"925","highest_child_id":3164,"first_entry_time":56356,"exclusive_time":12,"entries":3,"callees":[{"inclusive_time":4,"id":"682","highest_child_id":3164,"first_entry_time":56359,"exclusive_time":3,"entries":6}],"allocations":[{"id":"10","count":3},{"id":"27","count":6}]},{"inclusive_time":1,"id":"855","highest_child_id":3165,"first_entry_time":56365,"exclusive_time":1,"entries":3},{"inclusive_time":9,"id":"926","highest_child_id":3167,"first_entry_time":56368,"exclusive_time":7,"entries":3,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3167,"first_entry_time":56370,"exclusive_time":1,"entries":3}]},{"inclusive_time":18,"id":"896","highest_child_id":3170,"first_entry_time":56374,"exclusive_time":10,"entries":3,"callees":[{"inclusive_time":8,"id":"801","highest_child_id":3170,"first_entry_time":56377,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":3,"id":"803","highest_child_id":3170,"first_entry_time":56379,"exclusive_time":2,"entries":3}],"allocations":[{"id":"802","count":3}]}],"allocations":[{"id":"282","count":3},{"id":"6","count":3},{"id":"26","count":3},{"id":"10","count":3}]},{"inclusive_time":12,"id":"821","highest_child_id":3173,"first_entry_time":56383,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":2,"id":"822","highest_child_id":3172,"first_entry_time":56386,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"823","highest_child_id":3173,"first_entry_time":56388,"exclusive_time":2,"entries":2,"allocations":[{"id":"824","count":2}]}]},{"inclusive_time":1,"id":"927","highest_child_id":3174,"first_entry_time":56391,"exclusive_time":1,"entries":3},{"inclusive_time":45,"id":"942","highest_child_id":3178,"first_entry_time":56412,"exclusive_time":38,"entries":2,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3176,"first_entry_time":56415,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"943","highest_child_id":3177,"first_entry_time":56425,"exclusive_time":1,"entries":2},{"inclusive_time":4,"id":"944","highest_child_id":3178,"first_entry_time":56448,"exclusive_time":3,"entries":2,"allocations":[{"id":"18","count":4}]}]},{"inclusive_time":5,"id":"947","highest_child_id":3180,"first_entry_time":56470,"exclusive_time":3,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3180,"first_entry_time":56473,"exclusive_time":1,"entries":1}]},{"inclusive_time":15,"id":"869","highest_child_id":3183,"first_entry_time":56477,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":6,"id":"870","highest_child_id":3183,"first_entry_time":56479,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":1,"id":"825","highest_child_id":3183,"first_entry_time":56481,"exclusive_time":1,"entries":3}]}]},{"inclusive_time":1,"id":"928","highest_child_id":3184,"first_entry_time":56485,"exclusive_time":1,"entries":3},{"inclusive_time":13,"id":"579","highest_child_id":3186,"first_entry_time":56488,"exclusive_time":12,"entries":3,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":3186,"first_entry_time":56495,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":3},{"id":"170","count":3},{"id":"27","count":1}]},{"inclusive_time":5,"id":"948","highest_child_id":3188,"first_entry_time":56521,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3188,"first_entry_time":56524,"exclusive_time":1,"entries":1}]},{"inclusive_time":1,"id":"929","highest_child_id":3189,"first_entry_time":56528,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"930","highest_child_id":3190,"first_entry_time":56530,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"931","highest_child_id":3191,"first_entry_time":56533,"exclusive_time":1,"entries":6},{"inclusive_time":2,"id":"679","highest_child_id":3192,"first_entry_time":56536,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"740","highest_child_id":3193,"first_entry_time":56538,"exclusive_time":1,"entries":4},{"inclusive_time":59,"id":"932","highest_child_id":3201,"first_entry_time":56541,"exclusive_time":11,"entries":7,"callees":[{"inclusive_time":48,"id":"933","highest_child_id":3201,"first_entry_time":56544,"exclusive_time":23,"entries":7,"callees":[{"inclusive_time":10,"id":"934","highest_child_id":3197,"first_entry_time":56546,"exclusive_time":8,"entries":3,"callees":[{"inclusive_time":2,"id":"867","highest_child_id":3197,"first_entry_time":56549,"exclusive_time":1,"entries":3}]},{"inclusive_time":6,"id":"949","highest_child_id":3199,"first_entry_time":56610,"exclusive_time":4,"entries":1,"callees":[{"inclusive_time":1,"id":"867","highest_child_id":3199,"first_entry_time":56614,"exclusive_time":1,"entries":1}]},{"inclusive_time":8,"id":"935","highest_child_id":3201,"first_entry_time":56623,"exclusive_time":5,"entries":3,"callees":[{"inclusive_time":2,"id":"867","highest_child_id":3201,"first_entry_time":56625,"exclusive_time":1,"entries":3}]}]}],"allocations":[{"id":"10","count":7}]},{"inclusive_time":1,"id":"725","highest_child_id":3202,"first_entry_time":56554,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"583","highest_child_id":3203,"first_entry_time":56557,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"820","highest_child_id":3204,"first_entry_time":56559,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"950","highest_child_id":3205,"first_entry_time":56573,"exclusive_time":2,"entries":2},{"inclusive_time":1,"id":"728","highest_child_id":3206,"first_entry_time":56580,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"858","highest_child_id":3207,"first_entry_time":56586,"exclusive_time":1,"entries":1},{"inclusive_time":26,"id":"897","highest_child_id":3214,"first_entry_time":56628,"exclusive_time":18,"entries":3,"callees":[{"inclusive_time":2,"id":"898","highest_child_id":3209,"first_entry_time":56630,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"899","highest_child_id":3210,"first_entry_time":56633,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"900","highest_child_id":3211,"first_entry_time":56634,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"901","highest_child_id":3212,"first_entry_time":56636,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"902","highest_child_id":3213,"first_entry_time":56638,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"903","highest_child_id":3214,"first_entry_time":56640,"exclusive_time":1,"entries":3}]},{"inclusive_time":27,"id":"908","highest_child_id":3221,"first_entry_time":56642,"exclusive_time":18,"entries":3,"callees":[{"inclusive_time":1,"id":"898","highest_child_id":3216,"first_entry_time":56644,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"899","highest_child_id":3217,"first_entry_time":56647,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"901","highest_child_id":3218,"first_entry_time":56649,"exclusive_time":0,"entries":3},{"inclusive_time":1,"id":"909","highest_child_id":3219,"first_entry_time":56652,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"799","highest_child_id":3220,"first_entry_time":56654,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"911","highest_child_id":3221,"first_entry_time":56657,"exclusive_time":2,"entries":3}],"allocations":[{"id":"25","count":9},{"id":"170","count":3}]}],"allocations":[{"id":"6","count":3},{"id":"27","count":9},{"id":"10","count":6},{"id":"25","count":16}]},{"inclusive_time":3,"id":"936","highest_child_id":3222,"first_entry_time":56660,"exclusive_time":2,"entries":3,"allocations":[{"id":"6","count":3}]},{"inclusive_time":5,"id":"579","highest_child_id":3223,"first_entry_time":56663,"exclusive_time":5,"entries":3,"allocations":[{"id":"10","count":3},{"id":"170","count":3}]}],"allocations":[{"id":"2","count":6},{"id":"27","count":3},{"id":"10","count":3},{"id":"25","count":3}]},{"inclusive_time":3,"id":"682","highest_child_id":3224,"first_entry_time":56667,"exclusive_time":2,"entries":3},{"inclusive_time":2,"id":"826","highest_child_id":3225,"first_entry_time":56670,"exclusive_time":2,"entries":3,"allocations":[{"id":"827","count":3}]}],"allocations":[{"id":"2","count":3},{"id":"27","count":6}]}]},{"inclusive_time":1,"id":"695","highest_child_id":3226,"first_entry_time":56673,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"690","highest_child_id":3227,"first_entry_time":56680,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"697","highest_child_id":3228,"first_entry_time":56683,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"696","highest_child_id":3229,"first_entry_time":56685,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"333","highest_child_id":3230,"first_entry_time":56688,"exclusive_time":4,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"334","count":2}]},{"inclusive_time":3,"id":"627","highest_child_id":3231,"first_entry_time":56696,"exclusive_time":2,"entries":2,"allocations":[{"id":"10","count":2},{"id":"6","count":2},{"id":"628","count":2}]},{"inclusive_time":2,"id":"375","highest_child_id":3232,"first_entry_time":56699,"exclusive_time":1,"entries":2},{"inclusive_time":2,"id":"658","highest_child_id":3233,"first_entry_time":57472,"exclusive_time":1,"entries":3},{"inclusive_time":1,"id":"951","highest_child_id":3234,"first_entry_time":57486,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"689","highest_child_id":3235,"first_entry_time":57489,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"952","highest_child_id":3236,"first_entry_time":57872,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"953","highest_child_id":3237,"first_entry_time":57884,"exclusive_time":2,"entries":1},{"inclusive_time":1,"id":"954","highest_child_id":3238,"first_entry_time":57899,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"27","count":4},{"id":"25","count":2}]}]}],"allocations":[{"id":"27","count":1}]}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":1589,"id":"955","highest_child_id":3332,"first_entry_time":57934,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":1573,"id":"956","highest_child_id":3332,"first_entry_time":57950,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":1519,"id":"957","highest_child_id":3330,"first_entry_time":57967,"exclusive_time":80,"entries":1,"callees":[{"inclusive_time":1,"id":"958","highest_child_id":3242,"first_entry_time":57975,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"959","highest_child_id":3243,"first_entry_time":57986,"exclusive_time":2,"entries":4},{"inclusive_time":359,"id":"960","highest_child_id":3263,"first_entry_time":58011,"exclusive_time":96,"entries":1,"callees":[{"inclusive_time":119,"id":"961","highest_child_id":3250,"first_entry_time":58025,"exclusive_time":16,"entries":1,"callees":[{"inclusive_time":102,"id":"962","highest_child_id":3250,"first_entry_time":58037,"exclusive_time":4,"entries":4,"callees":[{"inclusive_time":97,"id":"797","highest_child_id":3250,"first_entry_time":58040,"exclusive_time":12,"entries":4,"callees":[{"inclusive_time":85,"id":"798","highest_child_id":3250,"first_entry_time":58049,"exclusive_time":80,"entries":4,"callees":[{"inclusive_time":2,"id":"799","highest_child_id":3249,"first_entry_time":58069,"exclusive_time":2,"entries":4},{"inclusive_time":1,"id":"800","highest_child_id":3250,"first_entry_time":58140,"exclusive_time":1,"entries":2}],"allocations":[{"id":"28","count":4}]}]}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"963","highest_child_id":3251,"first_entry_time":58159,"exclusive_time":2,"entries":1,"allocations":[{"id":"25","count":1}]},{"inclusive_time":133,"id":"964","highest_child_id":3260,"first_entry_time":58190,"exclusive_time":26,"entries":4,"callees":[{"inclusive_time":20,"id":"579","highest_child_id":3254,"first_entry_time":58194,"exclusive_time":19,"entries":4,"callees":[{"jit_entries":1,"inclusive_time":0,"id":"193","highest_child_id":3254,"first_entry_time":58337,"exclusive_time":0,"entries":1}],"allocations":[{"id":"10","count":4},{"id":"170","count":4},{"id":"27","count":1}]},{"inclusive_time":87,"id":"837","highest_child_id":3259,"first_entry_time":58239,"exclusive_time":8,"entries":9,"callees":[{"inclusive_time":79,"id":"797","highest_child_id":3259,"first_entry_time":58241,"exclusive_time":7,"entries":9,"callees":[{"inclusive_time":70,"id":"798","highest_child_id":3259,"first_entry_time":58246,"exclusive_time":64,"entries":7,"callees":[{"inclusive_time":4,"id":"799","highest_child_id":3258,"first_entry_time":58253,"exclusive_time":2,"entries":7},{"inclusive_time":4,"id":"800","highest_child_id":3259,"first_entry_time":58256,"exclusive_time":2,"entries":13}],"allocations":[{"id":"28","count":7}]}]}]},{"inclusive_time":1,"id":"825","highest_child_id":3260,"first_entry_time":58342,"exclusive_time":1,"entries":1}],"allocations":[{"id":"26","count":8},{"id":"25","count":8}]},{"inclusive_time":4,"id":"965","highest_child_id":3261,"first_entry_time":58213,"exclusive_time":3,"entries":4,"allocations":[{"id":"28","count":2}]},{"inclusive_time":2,"id":"966","highest_child_id":3262,"first_entry_time":58223,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"967","highest_child_id":3263,"first_entry_time":58233,"exclusive_time":2,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":2}]},{"inclusive_time":1076,"id":"968","highest_child_id":3330,"first_entry_time":58409,"exclusive_time":384,"entries":1,"callees":[{"inclusive_time":1,"id":"789","highest_child_id":3265,"first_entry_time":58412,"exclusive_time":1,"entries":1},{"inclusive_time":13,"id":"962","highest_child_id":3269,"first_entry_time":58416,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":11,"id":"797","highest_child_id":3269,"first_entry_time":58418,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":9,"id":"798","highest_child_id":3269,"first_entry_time":58419,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":1,"id":"799","highest_child_id":3269,"first_entry_time":58425,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":1}]}]}]},{"inclusive_time":29,"id":"969","highest_child_id":3273,"first_entry_time":58445,"exclusive_time":21,"entries":1,"callees":[{"inclusive_time":3,"id":"970","highest_child_id":3271,"first_entry_time":58456,"exclusive_time":2,"entries":4,"allocations":[{"id":"28","count":3}]},{"inclusive_time":1,"id":"867","highest_child_id":3272,"first_entry_time":58459,"exclusive_time":1,"entries":4},{"inclusive_time":4,"id":"967","highest_child_id":3273,"first_entry_time":58461,"exclusive_time":3,"entries":4}],"allocations":[{"id":"25","count":1},{"id":"28","count":3}]},{"inclusive_time":208,"id":"971","highest_child_id":3292,"first_entry_time":58602,"exclusive_time":135,"entries":1,"callees":[{"inclusive_time":5,"id":"972","highest_child_id":3275,"first_entry_time":58613,"exclusive_time":4,"entries":8,"allocations":[{"id":"28","count":4}]},{"inclusive_time":42,"id":"973","highest_child_id":3280,"first_entry_time":58640,"exclusive_time":35,"entries":4,"callees":[{"inclusive_time":2,"id":"895","highest_child_id":3277,"first_entry_time":58642,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"974","highest_child_id":3278,"first_entry_time":58651,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"975","highest_child_id":3279,"first_entry_time":58660,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"976","highest_child_id":3280,"first_entry_time":58669,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":4}]},{"inclusive_time":1,"id":"977","highest_child_id":3281,"first_entry_time":58695,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"978","highest_child_id":3282,"first_entry_time":58706,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"979","highest_child_id":3283,"first_entry_time":58723,"exclusive_time":1,"entries":1},{"inclusive_time":2,"id":"980","highest_child_id":3284,"first_entry_time":58735,"exclusive_time":2,"entries":1},{"inclusive_time":10,"id":"836","highest_child_id":3285,"first_entry_time":58739,"exclusive_time":6,"entries":22},{"inclusive_time":1,"id":"981","highest_child_id":3286,"first_entry_time":58756,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"982","highest_child_id":3287,"first_entry_time":58768,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"954","highest_child_id":3288,"first_entry_time":58779,"exclusive_time":1,"entries":1},{"inclusive_time":5,"id":"944","highest_child_id":3289,"first_entry_time":58782,"exclusive_time":4,"entries":3,"allocations":[{"id":"18","count":6}]},{"inclusive_time":1,"id":"983","highest_child_id":3290,"first_entry_time":58796,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"952","highest_child_id":3291,"first_entry_time":58800,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"951","highest_child_id":3292,"first_entry_time":58806,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":11},{"id":"25","count":1}]},{"inclusive_time":28,"id":"984","highest_child_id":3294,"first_entry_time":58829,"exclusive_time":23,"entries":9,"callees":[{"inclusive_time":6,"id":"800","highest_child_id":3294,"first_entry_time":59382,"exclusive_time":3,"entries":14}]},{"inclusive_time":9,"id":"985","highest_child_id":3296,"first_entry_time":58843,"exclusive_time":7,"entries":1,"callees":[{"inclusive_time":2,"id":"836","highest_child_id":3296,"first_entry_time":58847,"exclusive_time":1,"entries":4}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":2,"id":"986","highest_child_id":3297,"first_entry_time":58880,"exclusive_time":2,"entries":1},{"inclusive_time":367,"id":"987","highest_child_id":3319,"first_entry_time":59009,"exclusive_time":303,"entries":4,"callees":[{"inclusive_time":2,"id":"895","highest_child_id":3299,"first_entry_time":59012,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"974","highest_child_id":3300,"first_entry_time":59014,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"988","highest_child_id":3301,"first_entry_time":59023,"exclusive_time":1,"entries":4},{"inclusive_time":1,"id":"975","highest_child_id":3302,"first_entry_time":59026,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"989","highest_child_id":3303,"first_entry_time":59034,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"990","highest_child_id":3304,"first_entry_time":59042,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"991","highest_child_id":3305,"first_entry_time":59051,"exclusive_time":1,"entries":4},{"inclusive_time":25,"id":"836","highest_child_id":3306,"first_entry_time":59053,"exclusive_time":11,"entries":73},{"inclusive_time":2,"id":"992","highest_child_id":3307,"first_entry_time":59062,"exclusive_time":2,"entries":4},{"inclusive_time":2,"id":"993","highest_child_id":3308,"first_entry_time":59074,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"994","highest_child_id":3309,"first_entry_time":59085,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"995","highest_child_id":3310,"first_entry_time":59095,"exclusive_time":1,"entries":4},{"inclusive_time":21,"id":"996","highest_child_id":3311,"first_entry_time":59105,"exclusive_time":10,"entries":55},{"inclusive_time":2,"id":"997","highest_child_id":3312,"first_entry_time":59114,"exclusive_time":1,"entries":4},{"inclusive_time":2,"id":"998","highest_child_id":3313,"first_entry_time":59124,"exclusive_time":1,"entries":4},{"inclusive_time":3,"id":"999","highest_child_id":3314,"first_entry_time":59135,"exclusive_time":1,"entries":8},{"inclusive_time":2,"id":"976","highest_child_id":3315,"first_entry_time":59143,"exclusive_time":2,"entries":4},{"inclusive_time":16,"id":"1000","highest_child_id":3316,"first_entry_time":59170,"exclusive_time":11,"entries":26,"allocations":[{"id":"56","count":2}]},{"inclusive_time":2,"id":"944","highest_child_id":3317,"first_entry_time":59198,"exclusive_time":2,"entries":1,"allocations":[{"id":"18","count":2}]},{"inclusive_time":1,"id":"1001","highest_child_id":3318,"first_entry_time":59217,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"1002","highest_child_id":3319,"first_entry_time":59227,"exclusive_time":1,"entries":1}],"allocations":[{"id":"28","count":17},{"id":"25","count":12}]},{"inclusive_time":12,"id":"1003","highest_child_id":3322,"first_entry_time":59401,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"1004","highest_child_id":3321,"first_entry_time":59409,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"967","highest_child_id":3322,"first_entry_time":59412,"exclusive_time":1,"entries":1}]},{"inclusive_time":12,"id":"1005","highest_child_id":3325,"first_entry_time":59427,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":1,"id":"1006","highest_child_id":3324,"first_entry_time":59435,"exclusive_time":1,"entries":1},{"inclusive_time":1,"id":"967","highest_child_id":3325,"first_entry_time":59438,"exclusive_time":1,"entries":1}]},{"inclusive_time":4,"id":"1007","highest_child_id":3327,"first_entry_time":59454,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"979","highest_child_id":3327,"first_entry_time":59456,"exclusive_time":1,"entries":1}]},{"inclusive_time":2,"id":"967","highest_child_id":3328,"first_entry_time":59461,"exclusive_time":1,"entries":1},{"inclusive_time":4,"id":"1008","highest_child_id":3330,"first_entry_time":59476,"exclusive_time":2,"entries":1,"callees":[{"inclusive_time":1,"id":"967","highest_child_id":3330,"first_entry_time":59478,"exclusive_time":1,"entries":1}]}],"allocations":[{"id":"27","count":1},{"id":"25","count":1}]}],"allocations":[{"id":"25","count":1}]},{"inclusive_time":1,"id":"1009","highest_child_id":3331,"first_entry_time":59493,"exclusive_time":1,"entries":1},{"inclusive_time":3,"id":"1010","highest_child_id":3332,"first_entry_time":59519,"exclusive_time":3,"entries":1}]}],"allocations":[{"id":"6","count":1}]},{"inclusive_time":3,"id":"1011","highest_child_id":3333,"first_entry_time":59542,"exclusive_time":3,"entries":1,"allocations":[{"id":"6","count":1}]}]}]}]},{"inclusive_time":1,"id":"1012","highest_child_id":3334,"first_entry_time":59555,"exclusive_time":1,"entries":1}],"allocations":[{"id":"6","count":2},{"id":"27","count":1},{"id":"10","count":1},{"id":"25","count":1}]},{"inclusive_time":2,"id":"1013","highest_child_id":3335,"first_entry_time":59569,"exclusive_time":2,"entries":1,"allocations":[{"id":"1014","count":1}]},{"inclusive_time":866,"id":"1015","highest_child_id":3380,"first_entry_time":59586,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":844,"id":"1016","highest_child_id":3380,"first_entry_time":59608,"exclusive_time":22,"entries":1,"callees":[{"inclusive_time":821,"id":"1017","highest_child_id":3380,"first_entry_time":59631,"exclusive_time":39,"entries":1,"callees":[{"inclusive_time":17,"id":"9","highest_child_id":3340,"first_entry_time":59641,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":3340,"first_entry_time":59655,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":764,"id":"1018","highest_child_id":3380,"first_entry_time":59688,"exclusive_time":131,"entries":1,"callees":[{"inclusive_time":10,"id":"55","highest_child_id":3342,"first_entry_time":59695,"exclusive_time":10,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":157,"id":"1019","highest_child_id":3352,"first_entry_time":59725,"exclusive_time":33,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":3344,"first_entry_time":59729,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":120,"id":"9","highest_child_id":3351,"first_entry_time":59734,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":105,"id":"24","highest_child_id":3350,"first_entry_time":59737,"exclusive_time":80,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":3347,"first_entry_time":59747,"exclusive_time":1,"entries":3},{"inclusive_time":2,"id":"30","highest_child_id":3348,"first_entry_time":59751,"exclusive_time":2,"entries":3},{"inclusive_time":4,"id":"17","highest_child_id":3349,"first_entry_time":59758,"exclusive_time":3,"entries":3,"allocations":[{"id":"18","count":3}]},{"inclusive_time":17,"id":"37","highest_child_id":3350,"first_entry_time":59807,"exclusive_time":16,"entries":6}],"allocations":[{"id":"10","count":17},{"id":"25","count":4},{"id":"6","count":6},{"id":"26","count":6},{"id":"28","count":3}]},{"inclusive_time":1,"id":"20","highest_child_id":3351,"first_entry_time":59852,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":2,"id":"1020","highest_child_id":3352,"first_entry_time":59879,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"1021","highest_child_id":3353,"first_entry_time":59945,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":461,"id":"1022","highest_child_id":3378,"first_entry_time":59984,"exclusive_time":41,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":3355,"first_entry_time":59988,"exclusive_time":1,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":199,"id":"9","highest_child_id":3362,"first_entry_time":59994,"exclusive_time":20,"entries":1,"callees":[{"inclusive_time":176,"id":"24","highest_child_id":3361,"first_entry_time":59998,"exclusive_time":129,"entries":1,"callees":[{"inclusive_time":2,"id":"29","highest_child_id":3358,"first_entry_time":60006,"exclusive_time":0,"entries":8},{"inclusive_time":3,"id":"30","highest_child_id":3359,"first_entry_time":60007,"exclusive_time":2,"entries":8},{"inclusive_time":4,"id":"17","highest_child_id":3360,"first_entry_time":60010,"exclusive_time":2,"entries":8,"allocations":[{"id":"18","count":8}]},{"inclusive_time":45,"id":"37","highest_child_id":3361,"first_entry_time":60069,"exclusive_time":41,"entries":20}],"allocations":[{"id":"10","count":27},{"id":"25","count":6},{"id":"6","count":10},{"id":"26","count":10},{"id":"28","count":6}]},{"inclusive_time":2,"id":"20","highest_child_id":3362,"first_entry_time":60190,"exclusive_time":2,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":219,"id":"1023","highest_child_id":3378,"first_entry_time":60226,"exclusive_time":125,"entries":1,"callees":[{"inclusive_time":36,"id":"1024","highest_child_id":3376,"first_entry_time":60251,"exclusive_time":14,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":3365,"first_entry_time":60259,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3366,"first_entry_time":60264,"exclusive_time":0,"entries":2},{"inclusive_time":19,"id":"72","highest_child_id":3376,"first_entry_time":60267,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":0,"id":"73","highest_child_id":3368,"first_entry_time":60269,"exclusive_time":0,"entries":2},{"inclusive_time":0,"id":"30","highest_child_id":3369,"first_entry_time":60270,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"74","highest_child_id":3370,"first_entry_time":60273,"exclusive_time":0,"entries":1},{"inclusive_time":2,"id":"75","highest_child_id":3372,"first_entry_time":60275,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":3372,"first_entry_time":60276,"exclusive_time":0,"entries":1}]},{"inclusive_time":1,"id":"77","highest_child_id":3374,"first_entry_time":60279,"exclusive_time":1,"entries":1,"callees":[{"inclusive_time":0,"id":"76","highest_child_id":3374,"first_entry_time":60280,"exclusive_time":0,"entries":1}]},{"inclusive_time":0,"id":"86","highest_child_id":3375,"first_entry_time":60282,"exclusive_time":0,"entries":1},{"inclusive_time":0,"id":"78","highest_child_id":3376,"first_entry_time":60284,"exclusive_time":0,"entries":1}]}],"allocations":[{"id":"6","count":1},{"id":"1025","count":1}]},{"inclusive_time":55,"id":"1026","highest_child_id":3377,"first_entry_time":60305,"exclusive_time":55,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":2,"id":"242","highest_child_id":3378,"first_entry_time":60443,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"60","count":1},{"id":"6","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"8","count":3}]},{"inclusive_time":2,"id":"70","highest_child_id":3379,"first_entry_time":60448,"exclusive_time":2,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3380,"first_entry_time":60452,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"8","count":3}]}]}],"allocations":[{"id":"2","count":1},{"id":"3","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":3381,"first_entry_time":60454,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3382,"first_entry_time":60457,"exclusive_time":0,"entries":1}],"allocations":[{"id":"2","count":3},{"id":"16","count":5},{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":1}]},{"inclusive_time":1,"id":"70","highest_child_id":3383,"first_entry_time":60459,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3384,"first_entry_time":60462,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":3}]}],"allocations":[{"id":"6","count":1},{"id":"7","count":1},{"id":"8","count":3}]},{"inclusive_time":210,"id":"1017","highest_child_id":3408,"first_entry_time":60464,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":15,"id":"9","highest_child_id":3387,"first_entry_time":60468,"exclusive_time":13,"entries":1,"callees":[{"inclusive_time":2,"id":"20","highest_child_id":3387,"first_entry_time":60481,"exclusive_time":2,"entries":1}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":187,"id":"1018","highest_child_id":3408,"first_entry_time":60486,"exclusive_time":43,"entries":1,"callees":[{"inclusive_time":9,"id":"55","highest_child_id":3389,"first_entry_time":60490,"exclusive_time":9,"entries":1,"allocations":[{"id":"56","count":1}]},{"inclusive_time":117,"id":"1027","highest_child_id":3401,"first_entry_time":60533,"exclusive_time":28,"entries":1,"callees":[{"inclusive_time":1,"id":"49","highest_child_id":3391,"first_entry_time":60536,"exclusive_time":0,"entries":1,"allocations":[{"id":"50","count":1}]},{"inclusive_time":76,"id":"9","highest_child_id":3398,"first_entry_time":60541,"exclusive_time":15,"entries":1,"callees":[{"inclusive_time":59,"id":"24","highest_child_id":3397,"first_entry_time":60545,"exclusive_time":48,"entries":1,"callees":[{"inclusive_time":1,"id":"234","highest_child_id":3394,"first_entry_time":60553,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"30","highest_child_id":3395,"first_entry_time":60555,"exclusive_time":1,"entries":2},{"inclusive_time":1,"id":"17","highest_child_id":3396,"first_entry_time":60558,"exclusive_time":1,"entries":2,"allocations":[{"id":"18","count":2}]},{"inclusive_time":8,"id":"37","highest_child_id":3397,"first_entry_time":60590,"exclusive_time":8,"entries":2}],"allocations":[{"id":"10","count":12},{"id":"25","count":3},{"id":"6","count":4},{"id":"26","count":4},{"id":"28","count":2}]},{"inclusive_time":1,"id":"20","highest_child_id":3398,"first_entry_time":60616,"exclusive_time":1,"entries":1,"allocations":[{"id":"21","count":1}]}],"allocations":[{"id":"2","count":2},{"id":"10","count":2},{"id":"6","count":1}]},{"inclusive_time":11,"id":"1028","highest_child_id":3401,"first_entry_time":60638,"exclusive_time":9,"entries":1,"callees":[{"inclusive_time":2,"id":"70","highest_child_id":3400,"first_entry_time":60646,"exclusive_time":1,"entries":1},{"inclusive_time":0,"id":"71","highest_child_id":3401,"first_entry_time":60649,"exclusive_time":0,"entries":1}],"allocations":[{"id":"6","count":1},{"id":"16","count":1}]}],"allocations":[{"id":"6","count":1},{"id":"3","count":1},{"id":"8","count":3}]},{"inclusive_time":1,"id":"1021","highest_child_id":3402,"first_entry_time":60652,"exclusive_time":1,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":16,"id":"1023","highest_child_id":3407,"first_entry_time":60656,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":6,"id":"1024","highest_child_id":3405,"first_entry_time":60660,"exclusive_time":6,"entries":1,"callees":[{"inclusive_time":0,"id":"71","highest_child_id":3405,"first_entry_time":60665,"exclusive_time":0,"entries":2}],"allocations":[{"id":"6","count":1},{"id":"1025","count":1}]},{"inclusive_time":2,"id":"1026","highest_child_id":3406,"first_entry_time":60667,"exclusive_time":2,"entries":1,"allocations":[{"id":"6","count":1}]},{"inclusive_time":0,"id":"242","highest_child_id":3407,"first_entry_time":60671,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}],"allocations":[{"id":"60","count":1},{"id":"6","count":1}]},{"inclusive_time":0,"id":"71","highest_child_id":3408,"first_entry_time":60673,"exclusive_time":0,"entries":1}],"allocations":[{"id":"16","count":1},{"id":"56","count":1}]}],"allocations":[{"id":"8","count":3}]},{"inclusive_time":0,"id":"242","highest_child_id":3409,"first_entry_time":60676,"exclusive_time":0,"entries":1,"allocations":[{"id":"6","count":1}]}]}],"allocations":[{"id":"2","count":1},{"id":"3","count":1}]}]}}]');
// grab the "dictionary" from the very first entry
var id_to_things = rawData[0];
// the rest of the program expects the list to contain callframes, not the dictionary
// so we just shift it off the beginning.
rawData.shift();
// Extract some common things out of the raw data.
var nodeIdToName = {};
var nodeIdToFile = {};
var nodeIdToLine = {};
(function () {
function walkCallGraphNode(node) {
if (!nodeIdToName[node.id]) {
var existing_data = id_to_things[node.id.toString()];
node.name = existing_data.name;
node.line = existing_data.line;
node.file = existing_data.file;
nodeIdToName[node.id] = node.name == "" ? "<anon>" : node.name;
nodeIdToLine[node.id] = node.line < 1 ? "<unknown>" : node.line;
nodeIdToFile[node.id] = node.file == "" ? "<unknown>" : node.file;
}
if (node.callees)
node.callees.map(walkCallGraphNode);
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
}());
var maxSeqNum = 0;
var gcParticipants = [];
var gcTimings = [];
(function() {
rawData.forEach(function (data, index) {
gcs = data.gcs;
if (gcs.length == 0)
return;
let seq = gcs[gcs.length - 1].sequence;
if (seq > maxSeqNum)
maxSeqNum = seq;
gcs.forEach(function (data) {
if (typeof gcParticipants[data.sequence] == "undefined")
gcParticipants[data.sequence] = [];
if (typeof gcTimings[data.sequence] == "undefined")
gcTimings[data.sequence] = { start: Infinity, end: -Infinity, full: 0 };
gcParticipants[data.sequence].push(index);
if (data.start_time < gcTimings[data.sequence].start)
gcTimings[data.sequence].start = data.start_time;
if (data.start_time + data.time > gcTimings[data.sequence].end)
gcTimings[data.sequence].end = data.start_time + data.time;
gcTimings[data.sequence].full = data.full;
});
});
gcTimings.forEach(function (data) {
data.total = data.end - data.start;
});
}());
// Register application and add controllers, increase recursion depth for callGraphController
var moarProfApp = angular.module('moarProfApp', ['ui.bootstrap']).config(function($rootScopeProvider) {
$rootScopeProvider.digestTtl(100);
});
moarProfApp.controller('NavigationController', function ($scope) {
$scope.Tab = 'Overview';
});
moarProfApp.controller('OverviewController', function ($scope) {
/* It's okay to take only the first thread's data here:
* - the total time of the main thread should be the maximum
* anyway, since all other threads are spawned from it.
* - Spesh time is stashed in the main thread's profile data,
* even though it's actually spent in another thread.
*/
var totalTime = rawData[0].total_time;
var speshTime = rawData[0].spesh_time;
var gcTime = 0;
var gcNursery = 0;
var gcFull = 0;
var gcNurseryTime = 0;
var gcFullTime = 0;
var totalEntries = 0;
var inlineEntries = 0;
var jitEntries = 0;
var speshEntries = 0;
var replacements = 0;
var allocations = 0;
var deoptOnes = 0;
var deoptAlls = 0;
var osrs = 0;
var numThreads = rawData.length;
var averageParticipants = 0;
gcParticipants.forEach(function (run) {
averageParticipants += run.length;
});
averageParticipants = averageParticipants / gcParticipants.length;
gcTimings.map(function (gc) {
gcTime += gc.total;
if (gc.full) {
gcFull++;
gcFullTime += gc.total;
}
else {
gcNursery++;
gcNurseryTime += gc.total;
}
});
function walkCallGraphNode(node) {
totalEntries += node.entries || 0;
inlineEntries += node.inlined_entries || 0;
speshEntries += node.spesh_entries || 0;
jitEntries += node.jit_entries || 0;
deoptOnes += node.deopt_one || 0;
deoptAlls += node.deopt_all || 0;
osrs += node.osr || 0;
if (node.allocations) {
node.allocations.map(function (alloc) {
if (alloc.count)
allocations += alloc.count;
if (alloc.replaced)
replacements += alloc.replaced;
});
}
if (node.callees)
node.callees.map(walkCallGraphNode);
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
$scope.NumThreads = numThreads;
// Time spent
var overheadTime = gcTime;
var executingTime = totalTime - overheadTime;
$scope.TotalTime = +(totalTime / 1000).toFixed(2);
$scope.GCOverheadTime = +(overheadTime / 1000).toFixed(2);
$scope.GCOverheadTimePercent = +(100 * overheadTime / totalTime).toFixed(2);
$scope.ExecutingTime = +(executingTime / 1000).toFixed(2);
$scope.ExecutingTimePercent = +(100 * executingTime / totalTime).toFixed(2);
$scope.GCTime = +(gcTime / 1000).toFixed(2);
$scope.GCTimePercent = +(100 * gcTime / totalTime).toFixed(2);
$scope.SpeshTime = +(speshTime / 1000).toFixed(2);
$scope.SpeshTimePercent = +(100 * speshTime / totalTime).toFixed(2);
// Routines
var interpEntries = totalEntries - (jitEntries + speshEntries);
$scope.EntriesWithoutInline = totalEntries - inlineEntries;
$scope.EntriesInline = inlineEntries;
$scope.InlinePercent = +(100 * inlineEntries / totalEntries).toFixed(2);
$scope.InterpFrames = interpEntries;
$scope.InterpFramesPercent = +(100 * interpEntries / totalEntries).toFixed(2);
$scope.SpeshFrames = speshEntries;
$scope.SpeshFramesPercent = +(100 * speshEntries / totalEntries).toFixed(2);
$scope.JITFrames = jitEntries;
$scope.JITFramesPercent = +(100 * jitEntries / totalEntries).toFixed(2);
// Garbage collection
$scope.GCRuns = gcNursery + gcFull;
$scope.FullGCRuns = gcFull;
$scope.NurseryAverage = +((gcNurseryTime / 1000) / gcNursery).toFixed(2);
$scope.FullAverage = +((gcFullTime / 1000) / gcFull).toFixed(2);
$scope.AverageParticipants = averageParticipants.toFixed(2);
$scope.ScalarReplacements = replacements;
$scope.ScalarReplacementPercent = allocations + replacements > 0
? +(100 * replacements / (allocations + replacements)).toFixed(2)
: 0;
// Dynamic optimization
var optimizedFrames = speshEntries + jitEntries;
$scope.OptimizedFrames = optimizedFrames;
$scope.DeoptOnes = deoptOnes;
$scope.DeoptOnePercent = +(100 * deoptOnes / (optimizedFrames || 1)).toFixed(2);
$scope.DeoptAlls = deoptAlls;
$scope.OSRs = osrs;
});
moarProfApp.controller('RoutinesController', function ($scope) {
// Walk call graph to build data.
var idToEntries = {};
var idToSpeshEntries = {};
var idToJITEntries = {};
var idToExclusive = {};
var idToInclusive = {};
var idToOSR = {};
var idRecDepth = {};
var totalExclusive = 0;
var totalInclusive = rawData[0].call_graph.inclusive_time;
function walkCallGraphNode(node) {
if (!idToEntries[node.id]) {
idToEntries[node.id] = 0;
idToSpeshEntries[node.id] = 0;
idToJITEntries[node.id] = 0;
idToExclusive[node.id] = 0;
idToInclusive[node.id] = 0;
idToOSR[node.id] = false;
idRecDepth[node.id] = 0;
}
idToEntries[node.id] += node.entries || 0;
idToSpeshEntries[node.id] += node.spesh_entries || 0;
idToJITEntries[node.id] += node.jit_entries || 0;
idToExclusive[node.id] += node.exclusive_time || 0;
totalExclusive += node.exclusive_time || 0;
if (node.osr > 0)
idToOSR[node.id] = true;
if (idRecDepth[node.id] == 0)
idToInclusive[node.id] += node.inclusive_time;
if (node.callees) {
idRecDepth[node.id]++;
node.callees.map(walkCallGraphNode);
idRecDepth[node.id]--;
}
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
// Build object list per routine.
var routineList = [];
for (id in idToEntries) {
var speshEntriesPercent = +(100 * idToSpeshEntries[id] / idToEntries[id]).toFixed(2);
var jitEntriesPercent = +(100 * idToJITEntries[id] / idToEntries[id]).toFixed(2);
var interpEntriesPercent = 100 - (speshEntriesPercent + jitEntriesPercent);
var entry = {
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Entries: idToEntries[id],
InterpEntriesPercent: interpEntriesPercent,
SpeshEntriesPercent: speshEntriesPercent,
JITEntriesPercent: jitEntriesPercent,
InclusiveTime: +(idToInclusive[id] / 1000).toFixed(2),
InclusiveTimePercent: +(100 * idToInclusive[id] / totalInclusive).toFixed(2),
ExclusiveTime: +(idToExclusive[id] / 1000).toFixed(2),
ExclusiveTimePercent: +(100 * idToExclusive[id] / totalExclusive).toFixed(2),
OSR: idToOSR[id]
};
routineList.push(entry);
}
$scope.Routines = routineList;
$scope.predicate = "InclusiveTime";
$scope.reverse = true;
});
moarProfApp.controller('CallGraphController', function ($scope) {
$scope.Current = rawData[0].call_graph;
$scope.total_time = rawData[0].total_time;
$scope.SuchCallers = false;
$scope.RecentCallers = [];
$scope.predicate = "Time";
$scope.reverse = true;
var all_callers = [];
updateCurrentData();
$scope.toCallee = function (callee) {
// Update caller history.
all_callers.push($scope.Current);
$scope.RecentCallers.push($scope.Current);
if ($scope.RecentCallers.length > 5)
$scope.RecentCallers.shift();
// Update current node and callees.
$scope.Current = callee;
updateCurrentData();
};
$scope.toCaller = function (caller) {
// Update caller history.
while (all_callers.length > 0) {
var removed = all_callers.pop();
if ($scope.RecentCallers.length > 0)
$scope.RecentCallers.pop();
if (removed == caller)
break;
}
if (all_callers.length > $scope.RecentCallers.length) {
var ptr = all_callers.length - $scope.RecentCallers.length;
while (ptr >= 0 && $scope.RecentCallers.length < 5) {
$scope.RecentCallers.unshift(all_callers[ptr]);
ptr--;
}
}
// Update current node and callees.
$scope.Current = caller;
updateCurrentData();
}
/*
* Given a callee, create a unique, repeatable color;
* h/t https://stackoverflow.com/questions/3426404
*/
$scope.backgroundColor = function (callee) {
var str = callee.$$hashKey + callee.file + callee.name;
for (var i = 0, hash = 0; i < str.length; hash = str.charCodeAt(i++) + ((hash << 5) - hash));
for (var i = 0, colour = "#"; i < 3; colour += ("00" + ((hash >> i++ * 8) & 0xFF).toString(16)).slice(-2));
return colour;
}
function updateCurrentData() {
// Line and file.
var current = $scope.Current;
$scope.Line = current.line;
$scope.File = current.file;
// Entry statistics.
var interpEntries = current.entries - (current.spesh_entries + current.jit_entries);
var nonInlineEntries = current.entries - current.inlined_entries;
$scope.Entries = nonInlineEntries;
$scope.Percent = (100 * nonInlineEntries / current.entries).toFixed(2);
$scope.InlineEntries = current.inlined_entries;
$scope.InlinePercent = (100 * current.inlined_entries / current.entries).toFixed(2);
$scope.InterpEntries = interpEntries;
$scope.InterpPercent = (100 * interpEntries / current.entries).toFixed(2);
$scope.SpeshEntries = current.spesh_entries;
$scope.SpeshPercent = (100 * current.spesh_entries / current.entries).toFixed(2);
$scope.JITEntries = current.jit_entries;
$scope.JITPercent = (100 * current.jit_entries / current.entries).toFixed(2);
// Callees.
$scope.Callees = calleesOf(current);
}
function calleesOf(node) {
if (!node.callees)
return [];
var totalExclusive = 0.0;
node.callees.map(function (c) { totalExclusive += c.exclusive_time; });
return node.callees.map(function (c) {
var speshCallsPercent = +(100 * c.spesh_entries / c.entries).toFixed(2);
var jitCallsPercent = +(100 * c.jit_entries / c.entries).toFixed(2);
var interpCallsPercent = 100 - (speshCallsPercent + jitCallsPercent);
var inlinedPercent = +(100 * c.inlined_entries / c.entries).toFixed(2);
return {
Name: nodeIdToName[c.id],
Line: nodeIdToLine[c.id],
File: nodeIdToFile[c.id],
Calls: c.entries,
Time: +(c.inclusive_time / 1000).toFixed(2),
TimePercent: +(100 * c.inclusive_time / node.inclusive_time).toFixed(2),
InterpCallsPercent: interpCallsPercent,
SpeshCallsPercent: speshCallsPercent,
JITCallsPercent: jitCallsPercent,
InlinedPercent: inlinedPercent,
VeryInline: inlinedPercent >= 95,
SometimesInline: inlinedPercent < 95 && inlinedPercent > 10,
Node: c
};
});
}
});
moarProfApp.controller('AllocationsController', function ($scope, $uibModal) {
// Traverse all call nodes, counting up the allocations.
var typeIdToName = {};
var typeIdToAllocations = {};
var typeIdToAllocationsByType = {};
var typeIdToRoutineStats = {};
var maxAllocations = 1;
function walkCallGraphNode(node) {
if (node.allocations) {
node.allocations.map(function (alloc) {
alloc.type = id_to_things[alloc.id];
if (!typeIdToName[alloc.id]) {
typeIdToName[alloc.id] = alloc.type == "" ? "<anon>" : alloc.type;
typeIdToAllocations[alloc.id] = 0;
typeIdToAllocationsByType[alloc.id] = [0, 0, 0];
typeIdToRoutineStats[alloc.id] = {};
}
typeIdToAllocations[alloc.id] += alloc.count;
typeIdToAllocationsByType[alloc.id][0] += alloc.count - (alloc.spesh || 0) - (alloc.jit || 0);
typeIdToAllocationsByType[alloc.id][1] += alloc.spesh || 0;
typeIdToAllocationsByType[alloc.id][2] += alloc.jit || 0;
if (typeIdToAllocations[alloc.id] > maxAllocations)
maxAllocations = typeIdToAllocations[alloc.id];
if (typeIdToRoutineStats[alloc.id][node.id]) {
typeIdToRoutineStats[alloc.id][node.id]['count'] += alloc.count || 0;
typeIdToRoutineStats[alloc.id][node.id]['spesh'] += alloc.spesh || 0;
typeIdToRoutineStats[alloc.id][node.id]['jit'] += alloc.jit || 0;
} else {
typeIdToRoutineStats[alloc.id][node.id] = {
count: alloc.count || 0,
spesh: alloc.spesh || 0,
jit: alloc.jit || 0
};
}
});
}
if (node.callees) {
node.callees.map(walkCallGraphNode);
}
}
rawData.forEach(function (thread) {
if (typeof thread.call_graph != "undefined")
walkCallGraphNode(thread.call_graph);
});
// Build allocation summary.
var allocationSummary = [];
for (id in typeIdToName) {
var maxAllocationByRoutine = 1;
for (var rid in typeIdToRoutineStats[id])
if (typeIdToRoutineStats[id][rid]['count'] > maxAllocationByRoutine)
maxAllocationByRoutine = typeIdToRoutineStats[id][rid]['count'];
var routineStats = [];
for (var rid in typeIdToRoutineStats[id])
routineStats.push({
Name: nodeIdToName[rid],
Line: nodeIdToLine[rid],
File: nodeIdToFile[rid],
Allocations: typeIdToRoutineStats[id][rid]['count'],
AllocationsSpesh: typeIdToRoutineStats[id][rid]['spesh'],
AllocationsJit: typeIdToRoutineStats[id][rid]['jit'],
AllocationsPercent: (100 * typeIdToRoutineStats[id][rid]['count'] / maxAllocationByRoutine),
AllocationsInterpPercent: (100 * (typeIdToRoutineStats[id][rid]['count'] - typeIdToRoutineStats[id][rid]['jit'] - typeIdToRoutineStats[id][rid]['spesh']) / maxAllocationByRoutine),
AllocationsSpeshPercent: (100 * typeIdToRoutineStats[id][rid]['spesh'] / maxAllocationByRoutine),
AllocationsJitPercent: (100 * typeIdToRoutineStats[id][rid]['jit'] / maxAllocationByRoutine)
});
var entry = {
Name: typeIdToName[id],
Allocations: typeIdToAllocations[id],
AllocationsPercent: +(100 * typeIdToAllocations[id] / maxAllocations).toFixed(2),
AllocationsInterpPercent: +(100 * typeIdToAllocationsByType[id][0] / maxAllocations).toFixed(2),
AllocationsSpeshPercent: +(100 * typeIdToAllocationsByType[id][1] / maxAllocations).toFixed(2),
AllocationsJitPercent: +(100 * typeIdToAllocationsByType[id][2] / maxAllocations).toFixed(2),
RoutineStats: routineStats
};
allocationSummary.push(entry);
}
$scope.AllocationSummary = allocationSummary;
$scope.predicate = "Allocations";
$scope.reverse = true;
$scope.routinePredicate = "Allocations";
$scope.routineReverse = true;
// Allocating routines handlng.
$scope.modalInstance = null;
$scope.showAllocatingRoutines = function (alloc) {
// Show modal dialog with data.
$scope.CurrentAllocatingRoutine = alloc.Name;
$scope.CurrentAllocatingRoutineStats = alloc.RoutineStats;
$scope.modalInstance = $uibModal.open({
templateUrl: 'myModalContent.html',
scope: $scope
});
}
});
moarProfApp.controller('GCController', function ($scope) {
// Find longest GC run.
var longestGC = 0;
gcTimings.map(function (timing) {
if (timing.total > longestGC)
longestGC = timing.total;
});
// Produce something nice to render.
var run = 0;
$scope.GCs = rawData[0].gcs.map(function (gc) {
var totalBytes = gc.cleared_bytes + gc.retained_bytes + gc.promoted_bytes;
return {
Run: ++run,
StartTime: +(gc.start_time / 1000).toFixed(2),
Time: +(gc.time / 1000).toFixed(2),
Full: (gc.full != 0),
TimePercent: +(100 * gc.time / longestGC).toFixed(2),
RetainedKilobytes: Math.round(gc.retained_bytes / 1024),
PromotedKilobytes: Math.round(gc.promoted_bytes / 1024),
ClearedKilobytes: Math.round(gc.cleared_bytes / 1024),
RetainedPercent: +(100 * gc.retained_bytes / totalBytes).toFixed(2),
PromotedPercent: +(100 * gc.promoted_bytes / totalBytes).toFixed(2),
ClearedPercent: +(100 * gc.cleared_bytes / totalBytes).toFixed(2),
Gen2Roots: 'gen2_roots' in gc ? gc.gen2_roots : 0
};
});
$scope.predicate = 'Run';
$scope.reverse = false;
});
moarProfApp.controller('OSRDeoptController', function ($scope) {
// Walk call graph to build data.
var idToOSR = {};
var idToDeoptOne = {};
var idToDeoptAll = {};
var maxOSR = 1;
var maxDeoptOne = 1;
var maxDeoptAll = 1;
function walkCallGraphNode(node) {
if (!idToOSR[node.id]) {
idToOSR[node.id] = 0;
idToDeoptOne[node.id] = 0;
idToDeoptAll[node.id] = 0;
}
idToOSR[node.id] += node.osr || 0;
idToDeoptOne[node.id] += node.deopt_one || 0;
idToDeoptAll[node.id] += node.deopt_all || 0;
if (idToOSR[node.id] > maxOSR)
maxOSR = idToOSR[node.id];
if (idToDeoptOne[node.id] > maxDeoptOne)
maxDeoptOne = idToDeoptOne[node.id];
if (idToDeoptAll[node.id] > maxDeoptAll)
maxDeoptAll = idToDeoptAll[node.id];
if (node.callees)
node.callees.map(walkCallGraphNode);
}
walkCallGraphNode(rawData[0].call_graph);
// Build up OSR, deopt one, and deopt all tables.
var osrs = [];
var deoptOnes = [];
var deoptAlls = [];
for (id in idToOSR) {
if (idToOSR[id] > 0) {
osrs.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToOSR[id],
Percent: Math.round(100 * idToOSR[id] / maxOSR)
});
}
if (idToDeoptOne[id] > 0) {
deoptOnes.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToDeoptOne[id],
Percent: Math.round(100 * idToDeoptOne[id] / maxDeoptOne)
});
}
if (idToDeoptAll[id] > 0) {
deoptAlls.push({
Name: nodeIdToName[id],
Line: nodeIdToLine[id],
File: nodeIdToFile[id],
Count: idToDeoptAll[id],
Percent: Math.round(100 * idToDeoptAll[id] / maxDeoptAll)
});
}
}
$scope.OSRs = osrs;
$scope.DeoptOnes = deoptOnes;
$scope.DeoptAlls = deoptAlls;
$scope.predicate = 'Count';
$scope.reverse = true;
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment